@import url("https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap");
/* Defaults
-------------------------------------------------------------- */
html {
  font-size: 19px;
  scroll-behavior: smooth;
}

body {
  color: #222121;
  font-size: 1rem;
  direction: ltr;
  line-height: 1.4;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
}
body.has-overflow {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  display: block;
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 0.8em;
}
h2:last-child {
  margin-bottom: 0;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1rem;
}

div,
p,
span,
a,
input,
input[type=submit],
select,
textarea {
  font-family: "Raleway", sans-serif;
}

strong,
b {
  font-weight: bold;
}

i,
em {
  font-style: italic;
}

ul li,
ol li {
  text-align: left;
}

a,
input[type=submit],
button,
.transition {
  transition: all 400ms ease;
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  color: #83BC4E;
}

img {
  max-width: 100%;
  height: auto;
}

img.grayscale {
  filter: grayscale(100%);
  filter: gray;
  filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale");
}

img.grayscale:hover {
  filter: none;
  -webkit-filter: grayscale(0%);
}

.round {
  border-radius: 50%;
}

.bold {
  font-weight: 700;
}

.center {
  text-align: center;
}

.white-color {
  color: #fff;
}

.primary-color {
  color: #83BC4E;
}

.green-color {
  color: #1A7200;
}

.blue-color {
  color: #2942E4;
}

.turquoise-color {
  color: #0AA4AF;
}

.dark-bg {
  background-color: #222121;
  color: #fff;
}

.primary-bg {
  background-color: #83BC4E;
}

.green-bg {
  background-color: #1A7200;
}

.blue-bg {
  background-color: #2942E4;
}

.light-blue-bg {
  background-color: #317998;
}

.turquoise-bg {
  background-color: #0AA4AF;
}

.green-border {
  border-color: #1A7200;
}

.blue-border {
  border-color: #2942E4;
}

.light-blue-border {
  border-color: #317998;
}

.light-blue-color {
  color: #317998;
}

.turquoise-border {
  border-color: #0AA4AF !important;
}

.bg-cover {
  background-size: cover;
  background-position: center;
}

.green-filter, .primary-filter {
  position: relative;
  opacity: 0.3;
  background-color: #83BC4E;
  background-blend-mode: multiply;
}

.turquoise-filter {
  position: relative;
  opacity: 0.3;
  background-color: #0AA4AF;
  background-blend-mode: multiply;
}

.blue-filter {
  position: relative;
  opacity: 0.3;
  background-color: #2942E4;
  background-blend-mode: multiply;
}

.light-blue-filter {
  position: relative;
  opacity: 0.3;
  background-color: #317998;
  background-blend-mode: multiply;
  background-blend-mode: multiply;
}

.dark-filter {
  position: relative;
  opacity: 0.9;
  background-color: #222121;
  background-blend-mode: multiply;
}

.bg-absolute {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.medium-text {
  font-size: 1.3rem;
}

.big-text {
  font-size: 1.8rem;
}

.flex-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.flex-strech {
  display: flex;
  align-items: stretch;
}

.button {
  position: relative;
  padding: 5px 20px;
  border: 1px solid;
  display: inline-block;
  margin-top: 30px;
  cursor: pointer;
  transition: 0.5s;
  color: #222121;
  background-color: transparent;
}
.button::before {
  content: "";
  position: absolute;
  border-top: 1px solid;
  right: 19px;
  top: calc(0.68em + 5px);
  width: 0;
  transition: 0.5s;
  opacity: 0;
}
.button::after {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(0.45em + 5px);
  width: 0.5em;
  height: 0.5em;
  transition: 0.2s 0s;
  opacity: 0;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(-45deg);
}
.button:hover {
  padding-right: 2.5em;
  text-decoration: none;
  outline: 0;
  color: inherit;
}
.button:hover::before {
  opacity: 1;
  width: 1em;
}
.button:hover::after {
  opacity: 1;
  transition: 0.5s 0.2s;
}
.button.white-button {
  color: #fff;
}
.button.white-button.icon-button svg path {
  fill: #fff;
}
.button.icon-button {
  line-height: 1;
  padding: 8px 8px;
}
.button.icon-button::after, .button.icon-button::before {
  content: none;
}
.button.icon-button svg {
  height: 1.2rem;
  width: auto;
}
.button.icon-button svg path {
  fill: #222121;
}
.button.external-button::before {
  transform: rotate(-45deg);
}
.button.external-button::after {
  transform: rotate(-90deg);
  top: calc(0.45em + 3px);
  right: 22px;
}
.button.tag-button {
  padding: 4px 10px;
  font-size: 13px;
  background-color: #eee;
  border: 0;
}
.button.tag-button::after, .button.tag-button::before {
  content: none;
}

.content ul {
  line-height: 1.4;
  margin-bottom: 1.5em;
  list-style: none;
  margin-left: 5px;
  padding-left: 0;
}
.content ul li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 25px;
}
.content ul li::before {
  content: "";
  width: 11px;
  height: 11px;
  background-color: #83BC4E;
  position: absolute;
  left: 0;
  top: 6px;
}
.content ol {
  list-style: decimal;
}
.content p {
  margin-bottom: 0.6em;
}
.content p:last-child {
  margin-bottom: 0;
}
.content a {
  color: inherit;
  position: relative;
}
.content a::after {
  content: "";
  position: absolute;
  border-top: 1px solid;
  height: 1px;
  left: 0;
  width: 100%;
  bottom: 0px;
  opacity: 0.6;
}
.content a:hover, .content a:focus {
  color: inherit;
  opacity: 0.7;
  text-decoration: none;
  outline: 0;
}
.content a:hover::after, .content a:focus::after {
  animation-name: stripeLink;
  animation-duration: 1s;
}
.content.blue-content ul li::before {
  background-color: #2942E4;
}
.content.turquoise-content ul li::before {
  background-color: #0AA4AF;
}
.content.green-content ul li::before {
  background-color: #1A7200;
}

.close-x {
  position: absolute;
  right: 0;
  top: 0;
  margin: 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: 0;
  transform: rotate(45deg);
}
.close-x::before {
  content: "";
  background-color: #222121;
  position: absolute;
  width: 20px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.close-x::after {
  content: "";
  background-color: #222121;
  position: absolute;
  width: 2px;
  height: 20px;
  left: 50%;
  transform: translate(-50%, 50%);
  bottom: 50%;
  transition: 0.3s;
}

.popup {
  top: -200%;
  left: 0;
  z-index: 99999999;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 33, 33, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s;
}
.popup.active-popup {
  top: 0;
  opacity: 1;
}
.popup.active-popup .popup-content {
  transform: translateY(0);
}
.popup .popup-content {
  transform: translateY(-150%);
  background-color: #fff;
  max-width: 1200px;
  width: 95%;
  max-height: 90%;
  padding: 4em 8%;
  margin: 0 auto;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  transition: 0.5s transform 0.2s;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
}

.event-banner {
  bottom: 0;
  left: 0;
  z-index: 9999998;
  position: fixed;
  width: 100%;
  height: auto;
  background-color: #222121;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s;
  transform: translateY(100%);
  border-bottom: 9px solid #83BC4E;
}
.event-banner.active-banner {
  transform: translateY(0);
}
.event-banner .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 15px 0;
}
.event-banner .container > * {
  margin-right: 30px;
  margin-bottom: 20px;
}
.event-banner .container > *:last-child {
  margin-right: 0;
}
.event-banner h2 {
  font-size: 1.5rem;
}
.event-banner .location {
  display: flex;
  font-weight: 700;
  align-items: center;
  line-height: 1.2;
}
.event-banner .location svg {
  margin-right: 15px;
}
.event-banner .location .content {
  font-family: "Montserrat", sans-serif;
}
.event-banner .close-x {
  z-index: 3;
}
.event-banner .close-x::before, .event-banner .close-x::after {
  background-color: #fff;
}

.breadcrumbs {
  margin-bottom: 15px;
}
.breadcrumbs a {
  position: relative;
  margin-left: 1em;
}
.breadcrumbs a::before {
  content: "<";
  position: absolute;
  right: 100%;
  padding-right: 0.2em;
}

@keyframes vertHideApear {
  0% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  50% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  51% {
    transform-origin: top;
  }
  100% {
    transform: scaleY(1);
    transform-origin: top;
  }
}
@keyframes horzHideApear {
  0% {
    transform: scaleX(1);
    transform-origin: 100%;
  }
  50% {
    transform: scaleX(0);
    transform-origin: 100%;
  }
  51% {
    transform-origin: left;
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes stripeLink {
  0% {
    transform: scaleX(1);
    transform-origin: 100%;
  }
  50% {
    transform: scaleX(0);
    transform-origin: 100%;
  }
  51% {
    transform: scaleX(0);
    transform-origin: left;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.vert-seperator {
  height: 100%;
  position: relative;
  margin-bottom: 20px;
  transition: 0.5s;
  width: 9px;
  transform-origin: left;
  background-color: #222121;
  margin-right: 15px;
}
.vert-seperator.green-seperator {
  background-color: #83BC4E;
}
.vert-seperator.white-seperator {
  background-color: #fff;
}
.vert-seperator.viewed {
  animation-name: vertHideApear;
  animation-duration: 1.2s;
  animation-delay: 1.2s;
}

.horz-seperator {
  height: 100%;
  position: relative;
  border-color: inherit;
  transition: 0.5s;
  width: 9px;
  transform-origin: left;
  background-color: #222121;
}

.fadein-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: 0.8s;
}
.fadein-left.viewed {
  opacity: 1;
  transform: translateX(0);
}

.fadein-right {
  opacity: 0;
  transform: translateX(100px);
  transition: 0.8s;
}
.fadein-right.viewed {
  opacity: 1;
  transform: translateX(0);
}

.fadein-top {
  opacity: 0;
  transform: translateY(-100px);
  transition: 0.8s;
}
.fadein-top.viewed {
  opacity: 1;
  transform: translate(0);
}

.fadein-bottom {
  opacity: 0;
  transform: translateY(100px);
  transition: 0.8s;
}
.fadein-bottom.viewed {
  opacity: 1;
  transform: translate(0);
}

/****************************************************************
    LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT
****************************************************************/
.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: block;
}

.flex_container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

header {
  position: fixed;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 5555555;
  box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.5);
  padding: 0;
}
header .flex_container {
  align-items: flex-end;
}
header .logo {
  padding: 10px 0;
}
header .logo svg {
  height: 85px;
  width: auto;
}
header .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
header .right form.searchandfilter li:not(.sf-field-search) {
  display: none;
}
header .right form.searchandfilter li.sf-field-search {
  display: flex;
  align-items: center;
}
header .right form.searchandfilter li.sf-field-search h4 {
  padding: 0;
  margin: 0 10px 0 0;
  font-size: 1rem;
}
header .searchform input[type=text] {
  border-radius: 0;
  border: 1px solid #ddd;
}
header .searchform input[type=submit] {
  background-color: #eee;
  border-radius: 0;
  border: 1px solid #eee;
}

footer {
  background-color: #222121;
  color: #fff;
  font-size: 0.8rem;
  padding: 50px 0 10px 0;
}
footer .flex_container {
  align-items: flex-start;
}
footer .footer-menus {
  padding-bottom: 50px;
}
footer .wrap_footer_menu ul#footer-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .wrap_footer_menu ul#footer-menu > li {
  margin-right: 30px;
}
footer .wrap_footer_menu ul#footer-menu > li a {
  color: #fff;
}
footer .wrap_footer_menu ul#footer-menu > li > a {
  font-weight: 700;
}
footer .wrap_footer_menu ul#footer-menu > li > ul.sub-menu {
  padding: 0;
  margin: 0;
  margin-top: 10px;
  list-style: none;
}
footer .wrap_footer_menu ul#footer-menu > li > ul.sub-menu > li {
  margin: 10px 0;
}
footer .wrap_footer_menu ul#footer-menu > li > ul.sub-menu a {
  font-weight: 400;
}
footer .footer-links {
  flex: 1;
  border-left: 2px solid #fff;
  padding-left: 30px;
}

/** Main Menu */
ul#main-menu {
  position: relative;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  list-style: none;
  padding: 0;
  margin: 0;
}
ul#main-menu > li {
  position: relative;
  padding: 0 10px;
}
ul#main-menu > li > a {
  position: relative;
  display: block;
  font-size: 1rem;
  color: inherit;
  padding: 10px 0;
}
ul#main-menu > li > a::after {
  content: "";
  position: absolute;
  background: #83BC4E;
  left: 0;
  bottom: 0;
  height: 7px;
  width: 0;
  transition: 0.5s width, 0.2s opacity;
  opacity: 0;
}
ul#main-menu > li > a:focus, ul#main-menu > li > a:hover {
  text-decoration: none;
  color: #83BC4E;
  outline: 0;
}
ul#main-menu > li:focus, ul#main-menu > li:hover {
  text-decoration: none;
  outline: 0;
}
ul#main-menu > li:focus > a::after, ul#main-menu > li:hover > a::after {
  width: 100%;
  opacity: 1;
}
ul#main-menu > li.current-menu-item > a {
  color: #222121;
}
ul#main-menu > li > a:focus,
ul#main-menu > li > a:hover {
  text-decoration: none;
  color: #222121;
}
ul#main-menu {
  /** Sub Menu  ***/
}
ul#main-menu > li > ul.sub-menu {
  position: absolute;
  padding: 0;
  z-index: 10;
  left: 10px;
  top: 100%;
  width: 250px;
  display: none;
  background: #fff;
  box-shadow: 0px 6px 6px rgba(35, 31, 32, 0.1);
  color: #83BC4E;
  font-weight: 400;
}
ul#main-menu > li > ul.sub-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-image: linear-gradient(0deg, rgba(35, 31, 32, 0), rgba(35, 31, 32, 0.15));
}
ul#main-menu > li > ul.sub-menu > li {
  position: relative;
  display: block;
  margin: 0 15px;
}
ul#main-menu > li > ul.sub-menu > li:last-child a {
  border: 0;
}
ul#main-menu > li > ul.sub-menu > li a {
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  padding: 12px 0;
  color: inherit;
  border-bottom: 1px solid #eee;
}
ul#main-menu > li > ul.sub-menu > li a:hover, ul#main-menu > li > ul.sub-menu > li a:focus {
  outline: 0;
  text-decoration: none;
  color: #222121;
}
ul#main-menu > li > ul.sub-menu > li a:hover > a, ul#main-menu > li > ul.sub-menu > li a:focus > a {
  color: #222121;
}
ul#main-menu > li.menu-item-has-children:hover > ul.sub-menu {
  display: block;
}

.tax-product_cat .top-title-section .flex-strech {
  max-width: 875px;
  margin-top: 20px;
}
.tax-product_cat .top-title-section .flex-strech p:last-of-type {
  margin-bottom: 0;
}
.tax-product_cat .top-title-section .vert-seperator {
  background-color: #fff;
}

.breadcrumbs a {
  text-decoration: none;
}

.app {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.app .title {
  color: #222121;
}
.app .icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  margin-right: 10px;
  background-color: #222121;
}

body.single-case-study .breadcrumbs a {
  font-size: 1.1rem;
}
body.single-case-study .breadcrumbs a::after {
  display: none;
}
body.single-case-study .breadcrumbs a::before {
  padding-right: 0.5em;
  font-family: monospace;
  line-height: 1.7em;
}
body.single-case-study .main-section {
  padding-top: 0;
  margin-top: 70px;
}
body.single-case-study .main-section > .bg-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 35vw;
  aspect-ratio: 4/2.5;
  background-position: center;
  background-size: cover;
}
body.single-case-study .slick-dots li::before {
  display: none;
}
body.single-case-study .bullet-gallery {
  height: 100%;
}
body.single-case-study .bullet-gallery .slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
}
body.single-case-study .bullet-gallery .slick-list {
  height: 100%;
}
body.single-case-study .bullet-gallery .slick-track {
  display: flex;
  align-items: center;
  height: 100%;
}
body.single-case-study .bullet-gallery .slick-track img {
  max-height: 75%;
  max-width: 75%;
  width: auto;
  height: auto;
}
body.single-case-study .slick-slide {
  height: auto !important;
}
body.single-case-study .slick-slide > div {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.single-case-study .related-section {
  padding-top: 0;
}
body.single-case-study .related-section .slick-slide {
  padding: 0 20px;
}
body.single-case-study .related-section .related-product a {
  color: #0AA4AF;
}
body.single-case-study .related-section .title-read {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
body.single-case-study .related-section .title-read h2 {
  margin-bottom: 0;
}
body.single-case-study .related-section .read-wrapper {
  display: none;
}
body.single-case-study .contact-section .vert-seperator {
  background-color: #fff;
}
body.single-case-study .name-job {
  display: flex;
  justify-content: flex-end;
}
body.single-case-study .name-job .name {
  margin-right: 5px;
}
body.single-case-study .block {
  margin-bottom: 50px;
}
body.single-case-study .block .right {
  padding-left: 0.7rem;
}
body.single-case-study .block p:last-of-type {
  margin-bottom: 0;
}
body.single-case-study .block.black {
  background-color: #212121;
  padding: 40px 30px;
  margin: 100px 0;
}
body.single-case-study .block.grey {
  background-color: #EBEBEB;
  padding: 40px 30px;
  flex: 0 0 75%;
  max-width: 75%;
  margin: 70px 0;
}
body.single-case-study .block.grey .title {
  color: #222121;
}
body.single-case-study .block.grey .flex-strech {
  margin-bottom: 10px;
}
body.single-case-study .block h2 {
  margin-bottom: 25px;
}
body.single-case-study .block ul, body.single-case-study .block ol {
  list-style: none;
  padding: 7px 0 7px 1rem;
}
body.single-case-study .block ul li, body.single-case-study .block ol li {
  position: relative;
  margin-bottom: 10px;
}
body.single-case-study .block ul li::before, body.single-case-study .block ol li::before {
  content: "";
  width: 9px;
  height: 9px;
  background-color: #0AA4AF;
  position: absolute;
  left: -1rem;
  top: 0.45rem;
}
body.single-case-study .block .title {
  color: #0AA4AF;
  font-size: 1.3rem;
  margin-bottom: 5px;
}
body.single-case-study .text-gallery-block {
  margin-bottom: 150px;
}
body.single-case-study .app {
  margin-top: 25px;
  margin-bottom: 15px;
}
body.single-case-study .gallery-block {
  margin: 80px 0;
}
body.single-case-study .gallery-block .slick-prev,
body.single-case-study .gallery-block .slick-next {
  display: none !important;
}
body.single-case-study .gallery-block .slick-slide {
  margin-right: 25px;
  height: auto !important;
}
body.single-case-study .gallery-block .slick-slide > div {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.single-case-study .gallery-block .bg-image {
  width: 19.5vw;
  padding-top: 67%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

.post-type-archive-case-study .row {
  margin-bottom: 90px;
}
.post-type-archive-case-study .row h2 {
  font-size: 1.6rem;
  color: #0AA4AF;
  font-weight: bold;
}
.post-type-archive-case-study .row .left-side {
  max-width: 92%;
}
.post-type-archive-case-study .row .right {
  margin-bottom: 45px;
}
.post-type-archive-case-study .row .image {
  width: 100%;
  aspect-ratio: 4/2.7;
}
.post-type-archive-case-study .row:nth-of-type(even) {
  flex-direction: row-reverse;
}
.post-type-archive-case-study .row:nth-of-type(even) .left-side {
  margin-right: 0;
  margin-left: auto;
}
.post-type-archive-case-study .top-title-section .flex-strech {
  align-items: flex-end;
}
.post-type-archive-case-study .top-title-section .left {
  margin-right: 20px;
}
.post-type-archive-case-study .top-title-section h1 {
  line-height: 1.2;
  margin-bottom: 0;
}
.post-type-archive-case-study .top-title-section h1 p {
  margin-bottom: 0;
}
.post-type-archive-case-study .top-title-section h1 strong {
  font-weight: normal;
  color: #222121;
}

.post-type-archive-applications .wpcf7 form.sent .wpcf7-response-output {
  border-color: #fff;
  margin-top: 5px;
}
.post-type-archive-applications .df-popup-button {
  top: 31.6%;
}
.post-type-archive-applications .trio {
  width: 100%;
}
.post-type-archive-applications form label, .post-type-archive-applications form p {
  width: 100%;
}
.post-type-archive-applications .vert-seperator {
  background-color: #fff;
}
.post-type-archive-applications .main-section {
  padding: 10px 0 50px 0;
}
.post-type-archive-applications .top-button {
  margin: 20px 0 60px 0;
  border-color: #0AA4AF;
}
.post-type-archive-applications .single-application {
  width: 100%;
  height: 370px;
  margin-bottom: 30px;
  display: block;
  position: relative;
  padding: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.post-type-archive-applications .single-application .title {
  font-size: 1.55rem;
  transition: 0s;
}
.post-type-archive-applications .single-application .title.top {
  position: relative;
  z-index: 2;
}
.post-type-archive-applications .single-application .top-bg {
  background-image: linear-gradient(to top, rgb(34, 33, 33), rgba(34, 33, 33, 0));
  z-index: 2;
  transition: 0.4s;
  opacity: 1;
}
.post-type-archive-applications .single-application .hidden {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.7s ease;
  padding: 25px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.post-type-archive-applications .single-application .hidden .turquoise-filter {
  background-color: #08838C;
  opacity: 0.9;
}
.post-type-archive-applications .single-application .hidden .icon {
  position: relative;
  z-index: 2;
  height: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.post-type-archive-applications .single-application .hidden .icon img {
  max-height: 100%;
  width: auto;
}
.post-type-archive-applications .single-application .hidden .title {
  margin: 15px 0;
  position: relative;
  z-index: 2;
}
.post-type-archive-applications .single-application .hidden .button {
  color: #fff;
  border-color: #fff;
  margin-top: 0;
}
.post-type-archive-applications .single-application .hidden .button:hover {
  background-color: #fff;
  color: #000000;
}
.post-type-archive-applications .single-application:hover .top-bg {
  opacity: 0;
}
.post-type-archive-applications .single-application:hover .title.top {
  opacity: 0;
  transition: 0.5s;
}
.post-type-archive-applications .single-application:hover .hidden {
  opacity: 1;
}

body.single-applications .df-popup-button {
  top: 32%;
}
body.single-applications h1 {
  margin-bottom: 0;
}
body.single-applications .top-text {
  font-size: 1.1rem;
}
body.single-applications .top-title-section .big-text {
  font-size: 1.7rem;
}
body.single-applications .top-title-section .icon {
  width: 73px;
  height: 73px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  background-color: #222121;
}
body.single-applications .top-title-section .icon img {
  max-width: 65%;
  max-height: 65%;
}
body.single-applications .top-title-section .icon-title {
  display: flex;
  align-items: center;
  margin: 20px 0;
}
body.single-applications .top-section {
  padding: 60px 0 0 0;
  min-height: unset !important;
  margin-bottom: 150px;
}
body.single-applications .top-section .container {
  padding: 0 15px;
}
body.single-applications .top-section .left {
  max-width: 575px;
}
body.single-applications .top-section .image {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 420px;
}
body.single-applications .top-section .gallery-slider .slick-list {
  box-shadow: none;
}
body.single-applications .details {
  margin-top: 50px;
  display: flex;
  justify-content: flex-start;
  font-size: 1.1rem;
}
body.single-applications .details p {
  padding: 15px 20px;
  border: 2px solid #0AA4AF;
  margin-bottom: 0;
}
body.single-applications h2 {
  font-size: 2.7rem;
}
body.single-applications .scollTo {
  height: 60px;
  width: 100%;
}
body.single-applications .form-section {
  padding: 0;
  scroll-padding-top: 60px;
}
body.single-applications .form-section .container {
  padding: 50px 60px 30px 60px;
  background-color: #0AA4AF;
}
body.single-applications .form-section h2 {
  margin-bottom: 50px;
}
body.single-applications .form-section textarea {
  width: 100%;
  height: 100px;
}
body.single-applications .form-section .wpcf7 form {
  align-items: center;
}
body.single-applications .form-section .wpcf7 form > label {
  width: 100%;
}
body.single-applications .form-section input, body.single-applications .form-section textarea {
  background-color: #fff;
  padding: 10px;
  font-size: 17px;
  border: 0;
  outline: none;
  width: 100%;
}
body.single-applications .form-section input[type=submit], body.single-applications .form-section textarea[type=submit] {
  background-color: #000000;
  color: #fff;
  text-align: center;
  border: 0;
  outline: none;
  font-weight: bold;
  padding: 10px 35px;
  width: auto;
  font-size: 1.1rem;
}
body.single-applications .form-section label {
  color: #fff;
}
body.single-applications .form-section .trio {
  display: flex;
  justify-content: space-between;
}
body.single-applications .form-section .trio label {
  width: 32%;
}
body.single-applications .related-section {
  padding-top: 0;
}
body.single-applications .related-section .slick-track {
  margin: 0 auto;
}
body.single-applications .related-section .slick-slide {
  padding: 0 20px;
  transition: 0.5s;
  opacity: 0;
}
body.single-applications .related-section .slick-slide.slick-active {
  opacity: 1;
}
body.single-applications .related-section .container {
  padding: 0 15px;
}
body.single-applications .related-section h2 {
  margin-bottom: 60px;
}
body.single-applications .read-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
body.single-applications .related-product h3 a {
  color: #0AA4AF;
}
body.single-applications .related-product .btns {
  display: flex;
}
body.single-applications .related-product .btns a {
  font-size: 16px;
  padding: 6px 15px 4px 15px;
}
body.single-applications .related-product .btns a:hover {
  padding-right: 2.5rem;
}
body.single-applications .related-product .btns a:first-of-type {
  margin-right: 10px;
}
body.single-applications .related-product .details {
  margin: 15px 0 0 0;
  border: 0;
  flex-direction: column;
  align-items: flex-start;
}
body.single-applications .related-product .details p {
  margin-bottom: 2px;
  border: 0;
  padding: 0;
  font-size: 19px;
}
body.single-applications .related-product .details p:nth-of-type(1), body.single-applications .related-product .details p:nth-of-type(2) {
  color: #0AA4AF;
}

.related-case {
  max-width: 270px;
}
.related-case h3 {
  font-size: 1.3rem;
}
.related-case .image {
  width: 100%;
  aspect-ratio: 7/5;
}
.related-case h3 {
  margin: 15px 0 5px 0;
}

.bg-image {
  background-position: center;
  background-size: cover;
}

/****** General ******/
.fixed-contact {
  position: fixed !important;
  overflow: hidden;
  top: 46%;
  right: 0;
  background-color: #0AA4AF;
  color: #fff;
  padding: 20px 20px 0 20px;
  z-index: 6666;
}
.fixed-contact a {
  color: #fff;
}
.fixed-contact a:hover {
  text-decoration: none;
}
.fixed-contact .wpcf7-not-valid-tip {
  font-size: 14px;
  position: absolute;
}
.fixed-contact img {
  height: 35px;
  width: auto;
}
.fixed-contact form {
  max-width: 220px;
  opacity: 0;
  transition: 0.3s;
  transition-delay: 0s;
}
.fixed-contact .wpcf7 textarea {
  height: 80px;
}
.fixed-contact .wpcf7 input,
.fixed-contact .wpcf7 textarea {
  background-color: #fff;
  padding: 5px !important;
  width: 100%;
  font-size: 17px;
}
.fixed-contact .wpcf7 input[type=submit],
.fixed-contact .wpcf7 textarea[type=submit] {
  background-color: #000000;
  color: #fff;
  text-align: center;
  border: 0;
  outline: none;
}
.fixed-contact .top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  cursor: pointer;
}
.fixed-contact .top .title {
  margin-left: 15px;
  font-size: 1.2rem;
}
.fixed-contact .wpcf7 label {
  margin-bottom: 17px;
  font-weight: 400;
  font-size: 17px;
  color: #222121;
}
.fixed-contact .bottom {
  max-height: 0;
  transition: 0.4s;
}
.fixed-contact .close-x {
  display: none;
}
.fixed-contact.active {
  overflow: auto;
}
.fixed-contact.active .top {
  cursor: auto;
}
.fixed-contact.active form {
  opacity: 1;
  transition-delay: 0.3s;
}
.fixed-contact.active .bottom {
  max-height: 415px;
}
.fixed-contact.active .close-x {
  display: block;
}

.df-popup-button {
  padding: 10px 20px !important;
  font-size: 20px;
}
.df-popup-button::after {
  min-width: 110px !important;
  height: 135px !important;
}

.page-template-accessibility {
  direction: rtl;
}
.page-template-accessibility a.accessibility {
  margin-top: 5px;
  display: block;
}
.page-template-accessibility .main-container {
  padding: 70px 15px;
}
.page-template-accessibility h1 {
  text-align: center;
}
.page-template-accessibility h2 {
  font-size: 2rem;
  margin-top: 50px;
  text-align: right;
}
.page-template-accessibility p {
  text-align: right !important;
  line-height: 1.4;
}
.page-template-accessibility .content ul {
  direction: rtl;
  list-style: disc;
}
.page-template-accessibility .content ul p {
  text-align: right;
}
.page-template-accessibility .content ul li {
  font-size: 0.9rem;
  text-align: right;
  margin-bottom: 10px;
}

/* fixes potential theme css conflict */
.acf-map img {
  max-width: inherit !important;
}

#page-wrap {
  padding-top: 105px;
  transition: 0.2s;
}

.section {
  position: relative;
  padding: 100px 0;
}

.top-title-section {
  padding: 50px 0;
}
.top-title-section .bg-absolute {
  filter: grayscale(1);
}

.top-section {
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 200px;
}
.top-section .bg-element {
  position: absolute;
  height: 95%;
  right: 100px;
  top: 50px;
}
.top-section .bg-element svg {
  height: 100%;
  width: auto;
}
.top-section .container.main-message {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.top-section .vert-seperator {
  margin: 0 auto;
}
.top-section .slogan {
  margin: 0;
  line-height: 1.1;
  font-size: 3.4rem;
}
.top-section .flex-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cats-container.mobile {
  display: none;
}

.home .top-section h1 {
  font-size: 1.3rem;
}
.home .cats-container {
  max-width: 1500px;
}

.home-top-cats {
  margin-top: 50px;
  margin-bottom: -150px;
}
.home-top-cats .single-cat-wrapper {
  display: flex;
  align-items: flex-end;
  margin-bottom: 50px;
}
.home-top-cats .single-cat-wrapper h2 {
  font-size: 1.6rem;
}
.home-top-cats .single-cat {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  min-height: 300px;
  padding: 50px 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom-width: 9px;
  border-bottom-style: solid;
  transition: 0.5s;
  width: 100%;
  max-width: 400px;
  color: inherit;
}
.home-top-cats .single-cat:hover {
  text-decoration: none;
}
.home-top-cats .single-cat .icon {
  height: 95px;
  width: 160px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 15px;
  transition: 0.5s;
}
.home-top-cats .single-cat svg {
  max-height: 100%;
  max-width: 100%;
  width: auto;
}
.home-top-cats .single-cat svg path {
  transition: 0.5s;
}
.home-top-cats .single-cat .seperator {
  position: relative;
  margin-bottom: 20px;
  border-bottom-width: 9px;
  border-bottom-style: solid;
  border-color: inherit;
  transition: 0.5s;
  width: 100px;
  transform-origin: left;
  opacity: 0;
}
.home-top-cats .single-cat .hidden {
  display: none;
}
.home-top-cats .single-cat:hover {
  background-color: #222121;
  color: #fff;
  padding: 40px 40px 30px;
}
.home-top-cats .single-cat:hover .icon {
  height: 65px;
  width: 120px;
}
.home-top-cats .single-cat:hover svg path {
  fill: #fff !important;
}
.home-top-cats .single-cat:hover .seperator {
  animation-name: horzHideApear;
  animation-duration: 1s;
  animation-delay: 0.5s;
  opacity: 1;
}

.accordion-section h2 {
  margin-bottom: 0.8em;
}
.accordion-section .accordion {
  display: flex;
  align-items: stretch;
  height: 70vh;
}
.accordion-section .accordion .one-flex {
  width: 100%;
  background-size: auto;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  transition: 0.5s;
  position: relative;
  background-size: auto 100%;
}
.accordion-section .accordion .one-flex::before {
  content: "";
  background-color: #222121;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.accordion-section .accordion .one-flex .bg-absolute {
  opacity: 0;
  background-size: auto 100%;
}
.accordion-section .accordion .one-flex .texts {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 30px 0;
}
.accordion-section .accordion .one-flex .texts h3 {
  padding: 0 30px;
}
.accordion-section .accordion .one-flex .texts .content {
  max-width: 0;
  opacity: 0;
  transition: 0.5s max-width 0s, 0.1s opacity 0s;
  padding: 0 30px;
}
.accordion-section .accordion .one-flex:hover {
  background-color: #83BC4E;
  flex: 2.5;
  opacity: 1;
}
.accordion-section .accordion .one-flex:hover::before {
  content: "";
  background-color: #83BC4E;
  opacity: 1;
}
.accordion-section .accordion .one-flex:hover .bg-absolute {
  opacity: 0.3;
}
.accordion-section .accordion .one-flex:hover .texts .content {
  max-width: 400px;
  opacity: 1;
  transition: 0.5s max-width 0s, 0.5s opacity 0.5s;
}

.product-cats-section .flex-strech {
  display: flex;
  align-items: stretch;
}
.product-cats-section .flex-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.product-cats-section .cats-slider .single-cat {
  width: 100%;
  padding-top: 100%;
  display: flex !important;
  align-items: flex-end;
  position: relative;
}
.product-cats-section .cats-slider .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  filter: grayscale(1);
}
.product-cats-section .cats-slider .text-wrapper {
  position: relative;
  width: 100%;
  margin-top: -100%;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product-cats-section .cats-slider .text-wrapper .bg-absolute {
  opacity: 0.7;
}
.product-cats-section .cats-slider .text-wrapper h3 {
  margin: 0;
  flex: 1;
  max-width: 50%;
}
.product-cats-section .cats-slider .text-wrapper .button {
  margin: 10px 0;
}

.slick-slider {
  display: flex;
  flex-wrap: wrap;
}

.slick-dots {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 15px 0 0 0;
  list-style: none;
  display: flex;
}
.slick-dots li {
  margin: 0 7px;
  display: flex;
}
.slick-dots li button {
  padding: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #222121;
  background-color: transparent;
  transition: 0.4s;
  font-size: 0;
}
.slick-dots li.slick-active button {
  background-color: #222121;
}

.projects-section .title-wrapper h2 {
  margin: 5px 25px 5px 0;
}
.projects-section .title-wrapper .button {
  margin: 0;
  align-self: center;
}
.projects-section .title-wrapper .right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.projects-section .flex-strech {
  display: flex;
  align-items: stretch;
  margin-bottom: 40px;
}
.projects-section .project-cat-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.projects-section .project-cat-wrapper .top {
  width: 100%;
}
.projects-section .image-part {
  position: relative;
  width: 100%;
  padding-top: 85%;
  display: flex !important;
  align-items: flex-end;
  margin-bottom: 30px;
}
.projects-section .image-part .text-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.projects-section .image-part .icon {
  height: 95px;
  width: 160px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 15px;
  z-index: 1;
}
.projects-section .image-part svg {
  max-height: 100%;
  max-width: 100%;
  width: auto;
}
.projects-section .image-part svg path {
  fill: #fff;
}
.projects-section .image-part .bg-absolute {
  opacity: 0.7;
}
.projects-section .image-part h3 {
  margin: 0;
}

.about-section .bg-element {
  position: absolute;
  height: 95%;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50px;
  text-align: center;
}
.about-section .bg-element svg {
  height: 100%;
  width: auto;
}
.about-section .flex-strech {
  display: flex;
  align-items: stretch;
  margin-bottom: 40px;
}

.map-wrapper {
  position: relative;
}
.map-wrapper .grid {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.map-wrapper > svg {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
}
.map-wrapper .pins {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.map-wrapper .pin {
  position: absolute;
}
.map-wrapper .pin a {
  color: inherit;
}
.map-wrapper .pin .text {
  transform: scale(0);
  transform-origin: left top;
  transition: 0.5s;
  height: 8.3em;
  width: 8.3em;
  display: flex;
  align-items: center;
  padding: 15px;
  position: absolute;
  z-index: -1;
  margin-top: -5px;
  margin-left: -5px;
}
.map-wrapper .pin .marker {
  position: absolute;
  width: 10px;
  height: 10px;
  left: -5px;
  top: -5px;
}
.map-wrapper .pin:hover .text {
  transform: scale(1);
  z-index: 1;
}

.detailed-map-section .map-wrapper .pin .text {
  cursor: pointer;
  display: block;
  height: auto;
  width: auto;
  min-width: 130px;
  font-size: 0.8rem;
  padding: 15px 15px;
}
.detailed-map-section .map-wrapper .pin .text svg {
  margin-top: 10px;
  width: 20px;
  height: 20px;
}
.detailed-map-section .map-legend {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.detailed-map-section .map-legend .field-wrapper {
  display: flex;
  align-items: center;
  margin-right: 30px;
}
.detailed-map-section .map-legend .marker {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.companies-section .companies {
  display: flex;
  align-items: stretch;
  margin-top: 50px;
}
.companies-section .companies .one-flex {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: 0.5s;
  position: relative;
  padding: 100px 15px 60px 15px;
}
.companies-section .companies .one-flex .bg-absolute {
  opacity: 0.8;
  transition: 0.5s;
}
.companies-section .companies .one-flex .icon {
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
}
.companies-section .companies .one-flex .texts {
  position: relative;
  margin-top: 50px;
  margin-bottom: 0;
  transition: 0.5s;
  max-width: 250px;
}
.companies-section .companies .one-flex .texts .content {
  opacity: 0;
  transition: 0.5s max-width 0s, 0.1s opacity 0s;
}
.companies-section .companies .one-flex .button {
  opacity: 0;
}
.companies-section .companies .one-flex:hover {
  opacity: 1;
}
.companies-section .companies .one-flex:hover .bg-absolute {
  opacity: 0.95;
}
.companies-section .companies .one-flex:hover .texts {
  margin-top: 0;
  margin-bottom: 50px;
}
.companies-section .companies .one-flex:hover .texts .content {
  max-width: 400px;
  opacity: 1;
  transition: 0.5s max-width 0s, 0.5s opacity 0.5s;
}
.companies-section .companies .one-flex:hover .button {
  opacity: 1;
}

.why-us-section .flex-strech {
  display: flex;
  align-items: stretch;
  margin-bottom: 100px;
}
.why-us-section h3 {
  margin: 0;
}
.why-us-section .icon {
  margin-bottom: 30px;
}
.why-us-section .content {
  margin-top: 15px;
  max-width: 220px;
}

.news-section .flex-strech {
  display: flex;
  align-items: stretch;
  margin-bottom: 100px;
}
.news-section .title-wrapper h2 {
  margin: 5px 25px 5px 0;
}
.news-section .title-wrapper .button {
  margin: 0;
  align-self: center;
}
.news-section .title-wrapper .right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.single-news {
  display: flex;
  flex-direction: column;
}
.single-news .flex-strech {
  flex: 1;
}
.single-news .image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 95%;
  background-color: #eee;
  margin-bottom: 20px;
}
.single-news .image-wrapper img {
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-news .date {
  font-size: 1rem;
  margin-bottom: 20px;
}
.single-news .title {
  font-size: 1.3em;
}
.single-news .right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.single-news .right .button {
  margin: 30px 0 0 0;
}

.news-archive-section .single-news {
  margin-bottom: 100px;
}

.page-wrap.single-news .top-title-section {
  padding-bottom: 30px;
}
.page-wrap.single-news .main-news-section {
  padding-top: 50px;
}

.contact-section .flex-strech {
  display: flex;
  align-items: stretch;
  margin-bottom: 100px;
}
.contact-section h3 {
  margin: 0;
}

.socials {
  display: flex;
  margin-top: 30px;
}
.socials .single-social {
  margin-right: 10px;
}

.wpcf7 form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.wpcf7 .flex {
  display: flex;
}
.wpcf7 .single-col {
  flex: 1;
}
.wpcf7 .left {
  margin-right: 20px;
}
.wpcf7 label {
  margin-bottom: 25px;
  font-weight: 700;
}
.wpcf7 .wpcf7-form-control-wrap {
  width: 100%;
}
.wpcf7 input:not([type=submit]):not([type=checkbox]),
.wpcf7 textarea {
  border: 0;
  width: 100%;
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.9);
  transition: 0.4s;
}
.wpcf7 input:not([type=submit]):not([type=checkbox]):focus,
.wpcf7 textarea:focus {
  outline: 0;
  background-color: rgb(255, 255, 255);
}
.wpcf7 .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .wpcf7-list-item label {
  font-weight: 400;
  font-size: 0.9rem;
}
.wpcf7 textarea {
  height: 244px;
}
.wpcf7 a {
  color: inherit;
  position: relative;
}
.wpcf7 a::after {
  content: "";
  position: absolute;
  border-top: 1px solid;
  height: 1px;
  left: 0;
  width: 100%;
  bottom: 0px;
  opacity: 0.6;
}
.wpcf7 a:hover, .wpcf7 a:focus {
  color: inherit;
  opacity: 0.7;
  text-decoration: none;
  outline: 0;
}
.wpcf7 a:hover::after, .wpcf7 a:focus::after {
  animation-name: stripeLink;
  animation-duration: 1s;
}
.wpcf7 .submit-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: 0.5s;
  background-color: #222121;
  color: #fff;
}
.wpcf7 .submit-wrapper input {
  color: #fff;
  padding: 5px 20px;
  border: 0;
  background-color: transparent;
}
.wpcf7 .submit-wrapper .wpcf7-spinner {
  position: absolute;
}
.wpcf7 .submit-wrapper::before {
  content: "";
  position: absolute;
  border-top: 1px solid;
  right: 19px;
  top: calc(0.68em + 5px);
  width: 0;
  transition: 0.5s;
  opacity: 0;
}
.wpcf7 .submit-wrapper::after {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(0.45em + 5px);
  width: 0.5em;
  height: 0.5em;
  transition: 0.2s 0s;
  opacity: 0;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(-45deg);
}
.wpcf7 .submit-wrapper:hover {
  text-decoration: none;
  outline: 0;
}
.wpcf7 .submit-wrapper:hover input {
  padding-right: 2.5em;
}
.wpcf7 .submit-wrapper:hover::before {
  opacity: 1;
  width: 1em;
}
.wpcf7 .submit-wrapper:hover::after {
  opacity: 1;
  transition: 0.5s 0.2s;
}

.main-cats-page .row {
  width: calc(100% + 30px);
}
.main-cats-page .main-cats-section {
  padding-top: 0;
  padding-left: 15px;
  padding-right: 15px;
}
.main-cats-page .main-cats-section .single-cat {
  margin-top: 30px;
  width: 100%;
  padding-top: 100%;
  display: flex !important;
  align-items: flex-end;
  position: relative;
}
.main-cats-page .main-cats-section .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  filter: grayscale(1);
}
.main-cats-page .main-cats-section .text-wrapper {
  position: relative;
  width: 100%;
  margin-top: -100%;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.main-cats-page .main-cats-section .text-wrapper .bg-absolute {
  opacity: 0.7;
}
.main-cats-page .main-cats-section .text-wrapper h3 {
  margin: 0;
}
.main-cats-page .main-cats-section .text-wrapper .button {
  margin: 10px 0;
}
.main-cats-page .detailed-map-section .flex-strech {
  display: flex;
  align-items: stretch;
  margin-bottom: 100px;
}
.main-cats-page .detailed-map-section h2 {
  margin-bottom: 0;
}
.main-cats-page .map-wrapper path {
  fill: #DFDFDF;
}

.term-box-wrapper {
  margin-bottom: 30px;
}

.term-box {
  position: relative;
  padding-top: 100%;
  display: block;
}
.term-box .text {
  position: absolute;
  padding: 15px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}
.term-box:hover {
  color: #fff;
}
.term-box:hover .text {
  background-color: rgba(0, 0, 0, 0.2);
}

.filter-wrapper {
  margin-bottom: 40px;
  background-color: #eee;
  padding: 15px 15px;
}

.searchandfilter h4 {
  font-size: 1.3rem;
  font-weight: 700;
}
.searchandfilter ul {
  padding: 0;
}
.searchandfilter .sf-field-taxonomy-product_cat {
  display: none;
}
.searchandfilter li[data-sf-field-type=search] input {
  padding: 5px 10px;
  border-radius: 0;
  border: 1px solid #ddd;
}
.searchandfilter li[data-sf-field-input-type=checkbox] {
  position: relative;
}
.searchandfilter li[data-sf-field-input-type=checkbox] input {
  position: absolute;
  opacity: 0;
}
.searchandfilter li[data-sf-field-input-type=checkbox] label {
  position: relative;
  padding-left: 25px;
}
.searchandfilter li[data-sf-field-input-type=checkbox] label::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.5);
  left: 0;
  top: 4px;
}
.searchandfilter li[data-sf-field-input-type=checkbox] input:checked ~ label::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #222121;
  left: 2px;
  top: 6px;
}

.single-product-wrapper {
  margin-bottom: 50px;
}

.single-product {
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.single-product h3 {
  margin-bottom: 15px;
}
.single-product a:hover {
  opacity: 0.5;
  text-decoration: none;
}
.single-product .left {
  flex: 1;
}
.single-product .icon svg, .single-product .icon img {
  width: 70px;
  height: auto;
}

.pagination .page-numbers {
  display: inline-block;
  padding: 5px 10px;
  margin: 0 2px 0 0;
  border: 1px solid #eee;
  line-height: 1;
  text-decoration: none;
  color: #222121;
}
.pagination .page-numbers.current,
.pagination a.page-numbers:hover {
  background: #eee;
}

.about-icons-section .row {
  margin-bottom: 80px;
  margin-top: 80px;
}
.about-icons-section .icon {
  width: 150px;
  max-width: 100%;
}
.about-icons-section .icon svg {
  width: 100%;
  height: auto;
}

.about-main-cats-section {
  padding-top: 0;
}
.about-main-cats-section .flex_container {
  flex-direction: column;
  align-items: stretch;
}
.about-main-cats-section .bg-absolute {
  opacity: 0.7;
}
.about-main-cats-section .single-cat-wrapper {
  min-height: 30vw;
}
.about-main-cats-section .single-cat-wrapper .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  filter: grayscale(1);
  left: 0;
}
.about-main-cats-section .single-cat {
  padding: 50px 30px;
  position: relative;
  height: 100%;
}
.about-main-cats-section .icon {
  height: 100px;
  margin-bottom: 30px;
}
.about-main-cats-section svg {
  width: auto;
  height: 100%;
}
.about-main-cats-section svg path {
  fill: #fff;
}
.about-main-cats-section .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.icons-repeater-section svg {
  width: 190px;
  height: 150px;
}
.icons-repeater-section svg path {
  fill: #83BC4E;
}
.icons-repeater-section h2 {
  color: #83BC4E;
}
.icons-repeater-section.primary-bg {
  color: #fff;
}
.icons-repeater-section.primary-bg h2 {
  color: #fff;
}
.icons-repeater-section.primary-bg svg path {
  fill: #fff;
  stroke: none;
}
.icons-repeater-section.dark-bg .vert-seperator {
  background-color: #83BC4E;
}
.icons-repeater-section.dark-bg h2 {
  color: #fff;
}
.icons-repeater-section.dark-bg svg path {
  fill: #fff;
  stroke: none;
}

.top-global-section {
  padding-bottom: 20px;
}

.suppliers-filter-section {
  background-color: #eee;
  padding: 30px 0;
}
.suppliers-filter-section .searchandfilter h4 {
  font-size: 1rem;
  opacity: 0.5;
}
.suppliers-filter-section .searchandfilter > ul > li > ul {
  display: flex;
  flex-wrap: wrap;
}
.suppliers-filter-section li.sf-level-0 {
  margin-right: 15px;
}
.suppliers-filter-section li.sf-level-0 input {
  position: absolute;
  opacity: 0;
}
.suppliers-filter-section li.sf-level-0 label {
  transition: 0.4s;
  border: 1px solid;
  padding: 5px 15px;
}
.suppliers-filter-section li.sf-level-0.sf-option-active label {
  background-color: #222121;
  border-color: #222121;
  color: #fff;
}
.suppliers-filter-section li.sf-level-0.sf-option-active.green label {
  background-color: #1A7200;
  border-color: #1A7200;
}
.suppliers-filter-section li.sf-level-0.sf-option-active.blue label {
  background-color: #2942E4;
  border-color: #2942E4;
}
.suppliers-filter-section li.sf-level-0.sf-option-active.turquoise label {
  background-color: #0AA4AF;
  border-color: #0AA4AF;
}
.suppliers-filter-section li.sf-level-0:not(.sf-option-active) label:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.1);
}

.single-supplier .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.single-supplier .arrow {
  transform: rotate(180deg);
  transform-origin: center;
  transition: 0.4s;
}
.single-supplier h3 {
  font-size: 1.2rem;
  margin: 0;
  margin-right: 15px;
}
.single-supplier.green-fill .single-detail path {
  fill: #1A7200;
}
.single-supplier.blue-fill .single-detail path {
  fill: #2942E4;
}
.single-supplier.turquoise-fill .single-detail path {
  fill: #0AA4AF;
}
.single-supplier .details {
  -moz-column-count: 2;
       column-count: 2;
}
.single-supplier .single-detail {
  display: flex;
  margin-bottom: 20px;
}
.single-supplier .single-detail .icon {
  width: 25px;
  margin-right: 10px;
}
.single-supplier .single-detail .title {
  margin-right: 0.3em;
}
.single-supplier .single-detail a {
  text-decoration: underline;
}
.single-supplier .single-detail a:not(:hover) {
  color: inherit;
}
.single-supplier .single-detail .content {
  flex: 1;
}
.single-supplier.accordion {
  border-bottom: 1px solid #222121;
  margin-bottom: 30px;
  padding-top: 30px;
}
.single-supplier.accordion .details {
  display: none;
  padding-bottom: 30px;
}
.single-supplier.accordion .top {
  cursor: pointer;
}
.single-supplier.accordion.active .arrow {
  transform: rotate(0deg);
}

.main-news-section .content h2 {
  font-size: 1.5rem;
}
.main-news-section .date {
  font-size: 1rem;
  font-weight: 700;
}
.main-news-section .cats-slider .single-cat {
  width: 100%;
  padding-top: 100%;
  display: flex !important;
  align-items: flex-end;
}
.main-news-section .cats-slider .text-wrapper {
  position: relative;
  width: 100%;
  margin-top: -100%;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.main-news-section .cats-slider .text-wrapper .bg-absolute {
  opacity: 0.7;
}
.main-news-section .cats-slider .text-wrapper h3 {
  margin: 0;
  flex: 1;
  max-width: 50%;
}
.main-news-section .cats-slider .text-wrapper .button {
  margin: 10px 0;
}

.board-section .title-wrapper {
  margin-bottom: 80px;
}
.board-section .image img {
  height: 200px;
  width: auto;
  margin-bottom: 20px;
}
.board-section .board-member-wrapper {
  margin-bottom: 80px;
}
.board-section .board-member-wrapper .flex-strech {
  height: 100%;
}
.board-section .board-member-wrapper .right {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
}
.board-section .popup-content .right {
  flex: 1;
  justify-content: flex-start;
}
.board-section .popup-content .title {
  margin-bottom: 15px;
}
.board-section .popup-content .image {
  margin-right: 50px;
}
.board-section .popup-content .image img {
  width: 200px;
  height: auto;
}

.certs-section .cert-row {
  margin-top: 50px;
  margin-bottom: 80px;
}
.certs-section .cert-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.certs-section .cert-img img {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
  max-height: 300px;
}

body #acwp-toolbar-btn-wrap {
  bottom: 15px;
  right: 15px;
  top: auto !important;
  left: auto !important;
}

.section.search-results article {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 2px solid #ddd;
}
.section.search-results article .tag {
  background-color: #eee;
  font-size: 0.8em;
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 10px;
}
.section.search-results article a {
  color: #222121 !important;
}

.gallery-slider {
  width: 100%;
}
.gallery-slider .slick-list {
  width: 100%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.gallery-slider .single-image {
  width: 100%;
  display: flex !important;
  align-items: flex-end;
  position: relative;
}
.gallery-slider .single-image img {
  max-height: 500px;
  margin: 0 auto;
}
.gallery-slider .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
}

#page-wrap.single-product {
  padding-bottom: 0;
}
#page-wrap.single-product .single-product-wrapper .single-product {
  border-bottom: 0;
}
#page-wrap.single-product .contact-section .flex-strech .left {
  flex: none;
}

.children-section .top-button-wrapper {
  margin-top: -70px;
  margin-bottom: 40px;
}
.children-section .top-button-wrapper .top-button {
  margin-top: 0;
}

.df-popup-button {
  position: fixed !important;
  top: 50%;
  right: 0;
  z-index: 5555;
  background-color: #222121 !important;
  color: #fff !important;
  margin: 0 !important;
  border-radius: 0 !important;
  display: flex !important;
  align-items: center;
  max-width: 230px;
}
.df-popup-button::after {
  content: "";
  min-width: 90px;
  height: 110px;
  display: inline-block;
  background-image: url("../../img/BROCHURE.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -50px;
  margin-bottom: -50px;
}

.df-lightbox-wrapper {
  z-index: 9999999 !important;
}

/* Edit Above Only*/
.mobile_menu_button {
  position: relative;
  display: none;
  margin-bottom: 10px;
}

.triggerMobileMenu {
  position: relative;
  width: 30px;
  height: 19px;
  padding: 0;
  border: 0;
  margin: 0 auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  background: none;
  text-indent: -99999px;
}

.triggerMobileMenu span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #83BC4E;
  border-radius: 0px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.triggerMobileMenu span:nth-child(1) {
  top: 0px;
}

.triggerMobileMenu span:nth-child(2) {
  top: 8px;
}

.triggerMobileMenu span:nth-child(3) {
  top: 16px;
}

.triggerMobileMenu.open span:nth-child(1) {
  top: 11px;
  transform: rotate(135deg);
}

.triggerMobileMenu.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.triggerMobileMenu.open span:nth-child(3) {
  top: 11px;
  transform: rotate(-135deg);
}

.button.triggerMobileMenu:focus,
.button.triggerMobileMenu:hover {
  background: none;
  outline: none;
}

/** off-cnavas (mobile menu wrapper) ****************/
.off-canvas {
  position: fixed;
  z-index: 1;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #fff;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.off-canvas.is-open {
  z-index: 9999;
  background: #fff;
  transform: translate(0);
}

.position-left {
  transform: translateX(-100%);
  left: 0;
}

.position-right {
  transform: translateX(100%);
  right: 0;
}

body.admin-bar .off-canvas {
  top: 32px;
}

/** Mobile Menu Style **************/
.mobile_menu_holder {
  position: relative;
  padding: 30px 15px;
}
.mobile_menu_holder form.searchandfilter li:not(.sf-field-search) {
  display: none;
}
.mobile_menu_holder form.searchandfilter li.sf-field-search h4 {
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 1rem;
}

.mobile_menu_title {
  position: relative;
  display: block;
  text-align: center;
  font-size: 1.5rem;
  padding: 10px 0;
  background: #83BC4E;
  border-bottom: 1px solid #83BC4E;
  font-weight: 500;
  color: #fff;
}

ul#mobile-menu {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

ul#mobile-menu li {
  position: relative;
  display: block;
}

ul#mobile-menu > li {
  border-bottom: 1px solid #83BC4E;
}

ul#mobile-menu li a {
  position: relative;
  display: block;
  font-size: 1rem;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 10px 0;
  color: #222121;
}

ul#mobile-menu ul.sub-menu {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  margin-left: 15px;
}

ul#mobile-menu ul.sub-menu li a {
  padding: 0px 15px 10px 20px;
  font-size: 0.9rem;
}

ul#mobile-menu ul.sub-menu li a:before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #83BC4E;
  position: absolute;
  left: 0;
  top: 6px;
}

ul#mobile-menu > li > a:focus,
ul#mobile-menu > li.current-menu-item > a,
ul#mobile-menu ul.sub-menu li.current-menu-item a,
ul.mobile_menu > li a:hover {
  color: #83BC4E;
}

/****************************************************************************************************************/
@media only screen and (max-width: 1540px) {
  html {
    font-size: 17px;
  }
  header .logo img, header .logo svg {
    height: 60px;
  }
  #page-wrap {
    padding-top: 80px;
  }
  .app {
    margin-bottom: 20px;
  }
  .post-type-archive-case-study .row {
    margin-bottom: 60px;
  }
  .post-type-archive-case-study .row:last-of-type {
    margin-bottom: 10px;
  }
  .post-type-archive-case-study .button {
    margin-top: 10px;
  }
  body.single-applications .top-section {
    padding: 40px 0 0 0;
    margin-bottom: 60px;
  }
  body.single-applications .top-section .image {
    height: 325px;
  }
  body.single-applications .details {
    margin-top: 25px;
  }
  body.single-applications .details p {
    padding: 10px;
  }
  body.single-applications .top-title-section {
    padding: 35px 0;
  }
  body.single-applications .top-title-section .icon-title {
    margin: 10px 0;
  }
  body.single-applications .top-title-section .icon {
    width: 65px;
    height: 65px;
    margin-right: 10px;
  }
  body.single-applications .form-section .container {
    padding: 40px 40px 20px 40px;
  }
  body.single-applications .related-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  body.single-applications .related-section h2 {
    margin-bottom: 25px;
  }
  body.single-applications .related-section h3 {
    font-size: 1.55rem;
  }
  body.single-applications .related-section .related-product .details {
    margin: 8px 0 0 0;
  }
  body.single-applications .related-section .related-product .button {
    margin-top: 10px;
  }
  body.single-applications .df-popup-button, .post-type-archive-applications .df-popup-button {
    top: 20%;
  }
  body.single-applications .fixed-contact, .post-type-archive-applications .fixed-contact {
    padding: 15px 10px 0 15px;
    top: 38%;
  }
  body.single-applications .fixed-contact .wpcf7 form .wpcf7-response-output, .post-type-archive-applications .fixed-contact .wpcf7 form .wpcf7-response-output {
    font-size: 15px;
    padding: 5px;
    margin-top: 15px;
    border-color: #fff;
  }
  body.single-applications .fixed-contact .wpcf7-spinner, .post-type-archive-applications .fixed-contact .wpcf7-spinner {
    position: absolute;
    bottom: 27px;
    left: 50%;
    transform: translateX(-50%);
  }
  body.single-applications .fixed-contact input,
  body.single-applications .fixed-contact textarea, .post-type-archive-applications .fixed-contact input,
  .post-type-archive-applications .fixed-contact textarea {
    padding: 3px !important;
    font-size: 15px;
  }
  body.single-applications .fixed-contact textarea, .post-type-archive-applications .fixed-contact textarea {
    height: 65px;
  }
  body.single-applications .fixed-contact form, .post-type-archive-applications .fixed-contact form {
    max-width: 215px;
  }
  body.single-applications .fixed-contact form > label, .post-type-archive-applications .fixed-contact form > label {
    margin-bottom: 10px;
  }
  body.single-applications .fixed-contact .wpcf7 label, .post-type-archive-applications .fixed-contact .wpcf7 label {
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 15px;
  }
  body.single-applications .fixed-contact img, .post-type-archive-applications .fixed-contact img {
    height: 30px;
  }
  body.single-applications .fixed-contact .top, .post-type-archive-applications .fixed-contact .top {
    margin-bottom: 12px;
  }
  body.single-applications .fixed-contact.active .bottom, .post-type-archive-applications .fixed-contact.active .bottom {
    padding-bottom: 15px;
  }
  .post-type-archive-applications .top-button {
    margin: 15px 0 40px 0;
  }
  .post-type-archive-applications .single-application {
    padding: 15px 15px 0 15px;
    height: 300px;
  }
  .post-type-archive-applications .single-application .title {
    margin: 10px 0;
  }
  .post-type-archive-applications .single-application .hidden {
    padding: 15px;
  }
  .post-type-archive-applications .single-application .hidden .title {
    margin: 10px 0;
  }
  .top-section .top-cats .single-cat {
    min-height: 250px;
    padding: 30px 30px 20px;
  }
  .top-section .top-cats .single-cat .icon {
    height: 60px;
    width: 100px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 15px;
  }
  .top-section .top-cats .single-cat:hover {
    background-color: #222121;
    color: #fff;
    padding: 30px 30px 20px;
  }
  .wpcf7 textarea {
    height: 229px;
  }
  .accordion-section .accordion:hover .one-flex:not(:hover) .texts h3 {
    font-size: 1.2rem;
  }
  .accordion-section .accordion .one-flex .texts h3 {
    transition: 0.3s;
  }
}
/* end of (max-width: 1440px) */
/****************************************************************************************************************/
@media only screen and (max-width: 1200px) {
  .mobile_menu_button {
    display: block;
    margin-bottom: 0;
  }
  .wrap_main_menu {
    display: none;
  }
  header .searchform {
    display: none;
  }
  header .flex_container {
    align-items: center;
  }
  .accordion-section .accordion {
    flex-wrap: wrap;
    height: auto;
  }
  .accordion-section .accordion .one-flex {
    width: 50%;
    min-height: 50vw;
    flex: auto;
    border: 2px solid;
  }
  .accordion-section .accordion .one-flex:hover {
    flex: auto;
  }
  .accordion-section .accordion .one-flex h3 {
    font-size: 1.75rem !important;
  }
  .companies-section .companies {
    flex-wrap: wrap;
  }
  .companies-section .companies .one-flex {
    width: 50%;
    min-height: 50vw;
    flex: auto;
    border: 2px solid;
    padding: 30px 15px 30px 15px;
  }
} /* end of (max-width: 1200px) */
/****************************************************************************************************************/
@media only screen and (max-width: 990px) {
  body.single-case-study .related-section .title-read {
    flex-direction: column;
    align-items: flex-start;
  }
  body.single-case-study .related-section .title-read button {
    margin-top: 15px;
  }
  body.single-case-study .block {
    margin-bottom: 20px;
  }
  body.single-case-study .block.text-gallery-block {
    margin-bottom: 80px;
  }
  body.single-case-study .block.gallery-block .bg-image {
    width: 44vw;
  }
  body.single-case-study .block.gallery-block .slick-prev, body.single-case-study .block.gallery-block .slick-next {
    display: none !important;
  }
  body.single-case-study .block.grey {
    max-width: 100%;
    margin: 40px 0;
    padding: 40px 15px;
  }
  body.single-case-study .block.grey .vert-seperator {
    width: 6px;
    margin-right: 10px;
  }
  body.single-case-study .block.grey .title {
    font-size: 1.15rem;
  }
  body.single-case-study .block.grey .right {
    padding-left: 0;
  }
  body.single-case-study .block.black {
    margin: 30px 0;
    padding: 40px 15px;
  }
  body.single-case-study .block.black .right {
    padding-left: 0;
  }
  body.single-case-study .main-section {
    margin-top: 40px;
  }
  body.single-case-study .main-section > .bg-image {
    position: static;
    width: 100%;
    margin-bottom: 20px;
  }
  .post-type-archive-case-study .top-title-section .left {
    margin-right: 13px;
  }
  .post-type-archive-case-study .top-title-section img {
    width: 40px;
    height: auto;
  }
  .post-type-archive-case-study .row .left-side {
    width: 100%;
    max-width: 100%;
  }
  .post-type-archive-case-study .row .image {
    margin-top: 15px;
  }
  body.single-applications .fixed-contact, .post-type-archive-applications .fixed-contact {
    top: auto;
    bottom: 150px;
    padding: 5px 15px;
  }
  body.single-applications .fixed-contact .top, .post-type-archive-applications .fixed-contact .top {
    margin-bottom: 0;
  }
  body.single-applications .fixed-contact .top .title, .post-type-archive-applications .fixed-contact .top .title {
    font-size: 0.9rem;
  }
  body.single-applications .fixed-contact .top .icon, .post-type-archive-applications .fixed-contact .top .icon {
    width: 20px;
  }
  body.single-applications .fixed-contact .top .icon svg, .post-type-archive-applications .fixed-contact .top .icon svg {
    width: 100%;
    height: auto;
  }
  body.single-applications .fixed-contact .bottom, .post-type-archive-applications .fixed-contact .bottom {
    display: none;
    margin-top: 12px;
  }
  body.single-applications .fixed-contact.active, .post-type-archive-applications .fixed-contact.active {
    bottom: 50%;
    transform: translateY(50%);
    max-width: 230px;
    z-index: 55555555555;
  }
  body.single-applications .fixed-contact.active .bottom, .post-type-archive-applications .fixed-contact.active .bottom {
    display: block;
  }
  body.single-applications .df-popup-button, .post-type-archive-applications .df-popup-button {
    top: auto !important;
  }
  .post-type-archive-applications .maim-section {
    padding-bottom: 20px;
  }
  .post-type-archive-applications .top-button {
    margin: 60px 0 25px 0;
  }
  .post-type-archive-applications .single-application, .post-type-archive-applications .single-application:hover {
    height: 50vw;
    margin-bottom: 20px;
  }
  .post-type-archive-applications .single-application .title.top, .post-type-archive-applications .single-application:hover .title.top {
    font-size: 1.35rem;
    line-height: 1.2;
    opacity: 1;
  }
  .post-type-archive-applications .single-application .title.top::after, .post-type-archive-applications .single-application:hover .title.top::after {
    content: " +";
  }
  .post-type-archive-applications .single-application .hidden, .post-type-archive-applications .single-application:hover .hidden {
    display: none;
  }
  .post-type-archive-applications .single-application .top-bg, .post-type-archive-applications .single-application:hover .top-bg {
    opacity: 1;
  }
  .tax-product_cat .top-title-section .vert-seperator {
    margin-right: 10px;
    width: 6px;
  }
  .df-popup-button {
    right: -3px;
    padding: 8px 5px 8px 8px !important;
  }
  .df-popup-button::after {
    min-width: 80px !important;
    height: 100px !important;
  }
  body.single-applications .top-text, body.single-applications .top-section .details {
    font-size: 1rem;
  }
  body.single-applications h2 {
    font-size: 2.1rem;
  }
  body.single-applications .top-section .details {
    margin-bottom: 25px;
  }
  body.single-applications .top-section .image {
    height: 200px;
  }
  body.single-applications .form-section h2 {
    margin-bottom: 30px;
  }
  body.single-applications .form-section .container {
    padding: 40px 15px 20px 15px;
  }
  body.single-applications .form-section .wpcf7 {
    margin-bottom: 0;
  }
  body.single-applications .form-section input, body.single-applications .form-section textarea {
    padding: 5px 10px;
  }
  body.single-applications .form-section .trio {
    flex-direction: column;
  }
  body.single-applications .form-section .trio label {
    width: 100%;
  }
  body.single-applications .related-product {
    margin-bottom: 40px;
  }
  body.single-applications .related-product h3 {
    margin-bottom: 0;
  }
  body.single-applications .read-wrapper {
    margin-top: 0;
  }
  body.single-applications .read-wrapper .button {
    margin-top: 15px;
  }
  body.single-applications .top-title-section .big-text {
    font-size: 1.1rem;
  }
  body.single-applications .top-title-section .icon-title {
    flex-direction: column;
    align-items: flex-start;
  }
  body.single-applications .top-title-section .icon-title .icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
} /* end of (max-width: 990px) */
/****************************************************************************************************************/
@media only screen and (max-width: 768px) {
  .mobile-reverse {
    flex-direction: column-reverse;
  }
  body.admin-bar .off-canvas {
    top: 46px;
  }
  h1, h2 {
    font-size: 1.8rem;
  }
  .section {
    padding: 70px 0;
  }
  header form.searchandfilter {
    display: none;
  }
  .top-title-section {
    padding: 40px 0;
  }
  .top-section {
    min-height: 60vh !important;
    margin-bottom: 0;
  }
  .top-section .slogan {
    font-size: 2.5rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 9px solid #222121;
  }
  .top-section h1 {
    font-size: 2em;
  }
  .cats-container.mobile {
    display: block;
    margin-top: -100px;
    margin-bottom: 50px;
  }
  .cats-container.desk {
    display: none;
  }
  .home-top-cats .single-cat {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  .home-top-cats .single-cat .icon {
    height: 75px;
    width: 110px;
  }
  .home-top-cats .single-cat .seperator {
    opacity: 1;
  }
  .home-top-cats .single-cat .hidden {
    display: block;
  }
  .accordion-section .accordion {
    min-height: none;
  }
  .accordion-section .accordion .one-flex {
    padding: 15px 0;
  }
  .accordion-section .accordion .one-flex::before {
    content: "";
    opacity: 0.7;
  }
  .accordion-section .accordion .one-flex .bg-absolute {
    opacity: 0;
  }
  .accordion-section .accordion .one-flex .texts {
    flex-direction: column;
    align-items: flex-start;
  }
  .accordion-section .accordion .one-flex .texts .content {
    opacity: 1;
    max-width: none;
  }
  .accordion-section .accordion .one-flex:hover {
    flex: auto;
  }
  .accordion-section .accordion .one-flex:hover::before {
    content: "";
    opacity: 0.7;
    background-color: #222121;
  }
  .accordion-section .accordion .one-flex:hover .bg-absolute {
    opacity: 0;
  }
  .companies-section .companies .one-flex,
  .companies-section .companies .one-flex:hover {
    padding: 50px 15px;
    flex: auto;
  }
  .companies-section .companies .one-flex .bg-absolute,
  .companies-section .companies .one-flex:hover .bg-absolute {
    opacity: 0.95;
  }
  .companies-section .companies .one-flex .texts,
  .companies-section .companies .one-flex:hover .texts {
    margin: 0;
  }
  .companies-section .companies .one-flex .texts .content,
  .companies-section .companies .one-flex:hover .texts .content {
    opacity: 1;
  }
  .companies-section .companies .one-flex .button,
  .companies-section .companies .one-flex:hover .button {
    opacity: 1;
  }
  .product-cats-section .cats-slider .text-wrapper {
    padding: 15px 20px;
  }
  .product-cats-section .cats-slider {
    padding-top: 50px;
  }
  .product-cats-section .cats-slider .text-wrapper h3 {
    max-width: none;
  }
  .projects-section .project-cat-wrapper {
    margin-bottom: 50px;
  }
  .why-us-section .flex-strech {
    margin-bottom: 50px;
  }
  .why-us-section .single-icon {
    margin-bottom: 50px;
  }
  .why-us-section .single-icon .icon {
    margin-bottom: 15px;
  }
  .why-us-section .single-icon svg {
    width: 80px;
    height: auto;
  }
  .why-us-section .single-icon .content {
    margin-top: 10px;
    max-width: 300px;
  }
  .news-section .flex-strech {
    margin-bottom: 50px;
  }
  .contact-section .flex-strech {
    margin-bottom: 50px;
  }
  footer .wrap_footer_menu {
    display: none;
  }
  .children-section {
    padding-top: 20px;
  }
  .children-section .top-button-wrapper {
    margin-top: 0;
  }
  .filter-title h3 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    margin: 0;
  }
  .filter-title h3::after {
    content: "+";
  }
  .filter-wrapper .searchandfilter {
    display: none;
  }
  .main-about-section .image-wrapper {
    margin-top: 50px;
  }
  .about-main-cats-section {
    padding-top: 0;
  }
  .icons-repeater-section .icon {
    margin-bottom: 30px;
  }
  .icons-repeater-section svg {
    width: 100px;
    height: 130px;
  }
  .about-icons-section .icon {
    margin-bottom: 30px;
  }
  .top-global-section {
    padding-bottom: 10px;
  }
  .top-global-section .big-text {
    font-size: 1.3rem;
  }
  .map-wrapper .pin .marker {
    width: 6px;
    height: 6px;
    left: -3px;
    top: -3px;
  }
  .suppliers-filter-section {
    padding: 20px 0;
  }
  .suppliers-filter-section li.sf-level-0 {
    margin-right: 10px;
  }
  .suppliers-section {
    padding-top: 40px;
  }
  .single-supplier .details {
    -moz-column-count: 1;
         column-count: 1;
  }
  .single-supplier .single-detail {
    flex-wrap: wrap;
  }
  .single-supplier .single-detail .content {
    flex: auto;
    width: 100%;
    padding-left: 35px;
  }
  .main-news-section .cats-slider {
    margin-top: 30px;
  }
  .main-innovation-section .image-wrapper {
    margin-top: 50px;
  }
  .board-section .board-member-wrapper .popup .flex-strech {
    flex-direction: column;
  }
  .board-section .board-member-wrapper .popup img {
    width: 100px;
  }
  .certs-section .cert-img {
    justify-content: flex-start;
  }
  .event-banner h2 {
    font-size: 1.2rem;
  }
  .event-banner .content {
    font-size: 1rem;
  }
  .event-banner svg {
    height: 30px;
    width: auto;
  }
  .df-popup-button {
    top: auto;
    bottom: 70px;
    max-width: 170px;
    font-size: 0.9em;
  }
  .df-popup-button::after {
    min-width: 60px;
  }
} /* end of (max-width: 768px) */
/****************************************************************************************************************/
@media only screen and (max-width: 640px) {
  header .logo img, header .logo svg {
    height: 40px;
  }
  #page-wrap {
    padding-top: 60px;
  }
  .wpcf7 {
    margin-bottom: 40px;
  }
  .wpcf7 .flex {
    flex-direction: column;
  }
  .wpcf7 .left {
    margin-right: 0;
  }
  .wpcf7 textarea {
    height: 150px;
  }
  .detailed-map-section .map-legend {
    justify-content: flex-start;
    margin-top: 30px;
  }
  .detailed-map-section .map-legend .field-wrapper {
    margin-right: 18px;
    margin-bottom: 10px;
  }
  .detailed-map-section .map-legend .marker {
    width: 10px;
    height: 10px;
    margin-right: 5px;
  }
} /* end of (max-width: 640px) */
/****************************************************************************************************************/
@media only screen and (max-width: 480px) {
  .page-template-accessibility .main-container {
    padding: 40px 15px;
  }
  .page-template-accessibility h2 {
    font-size: 1.2rem;
  }
  .accordion-section .accordion .one-flex {
    width: 100%;
  }
  .companies-section .companies .one-flex {
    width: 100%;
  }
  .main-cats-page .main-cats-section .text-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 10px;
  }
  .children-section .row {
    margin-right: -8px;
    margin-left: -8px;
  }
  .term-box-wrapper {
    margin-bottom: 16px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .term-box-wrapper h3 {
    font-size: 1.5rem;
  }
  .top-section h1 {
    font-size: 1.5em;
  }
} /* end of (max-width: 480px) */
/****************************************************************************************************************/
/* end of (max-width: 320px) */
/****************************************************************************************************************//*# sourceMappingURL=style.css.map */