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

body {
  color: #2C2C2C;
  font-size: 1.8rem;
  direction: ltr;
  line-height: 1.3;
  font-weight: 400;
  font-family: "Ubuntu", sans-serif;
}
body.has-overflow {
  overflow: hidden;
}

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

h1 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #282561;
}

h2 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #282561;
}

h3 {
  font-weight: 700;
  font-size: 3rem;
}

h4 {
  font-size: 2rem;
}

h6 {
  font-size: 2rem;
}

div,
p,
span,
a,
input,
input[type=submit],
select,
textarea {
  font-family: "Ubuntu", 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: #282561;
}

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%;
}

.content {
  font-size: 2rem;
}
.content ol, .content ul {
  margin-left: 10px;
  padding-left: 10px;
  font-size: 1em;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 1em;
}
.content ol {
  list-style: none;
  counter-reset: my-list-counter;
  padding-left: 2em;
  padding: 0;
}
.content ol li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 0.5em;
}
.content ol li::before {
  counter-increment: my-list-counter;
  content: counter(my-list-counter, decimal-leading-zero) " ";
  position: absolute;
  left: 0;
  color: #F68B33;
  font-weight: 700;
}
.content ul {
  list-style: none;
  padding-left: 20px;
  padding: 0;
}
.content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0.5em;
}
.content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background-color: #F68B33;
  border-radius: 50%;
}
.content p {
  font-size: 1em;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.content h2 {
  font-size: 2em;
  margin-top: 1em;
  margin-bottom: 0.2em;
}
.content h2:first-child {
  margin-top: 0;
}
.content h3 {
  font-size: 1.5em;
  margin-top: 1em;
}
.content h3:first-child {
  margin-top: 0;
}
.content a {
  color: inherit;
  text-decoration: underline;
}
.content a:hover {
  opacity: 0.6;
}
.content .vc_btn3 {
  margin: 50px 0;
  text-decoration: none;
}

.popup {
  top: -200%;
  left: 0;
  z-index: 99999999;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 44, 44, 0.75);
  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-background {
  transform: translateY(0);
}
.popup .popup-background {
  transform: translateY(-150%);
  transition: 0.5s transform 0.2s;
  background-color: #fff;
  position: relative;
  margin: 0 auto;
  max-width: 95%;
  max-height: 90%;
  border-radius: 15px;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.popup .popup-background.primary-bg {
  background-color: #282561;
}
.popup .popup-background.primary-bg .close-x::before {
  background-color: #fff;
}
.popup .popup-background.primary-bg .close-x::after {
  content: "";
  background-color: #fff;
}
.popup .popup-content {
  padding: 3em 8% 3em;
  overflow-y: auto;
  overflow-x: hidden;
}
.popup .popup-content h2 {
  font-size: 5rem;
}
.popup .popup-content .buttons {
  margin-top: 50px;
}
.popup .popup-content iframe {
  max-width: 100%;
}
.popup .top-image {
  margin-top: -90px;
}
.popup .top-image img {
  border-radius: 64% 36% 40% 60%/42% 53% 47% 58%;
}
.popup .back-button {
  cursor: pointer;
  text-decoration: underline;
  transition: 0.5s;
}
.popup .back-button:hover {
  opacity: 0.7;
}
.popup .close-x {
  position: absolute;
  left: 0;
  top: 0;
  margin: 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  transform: rotate(45deg);
}
.popup .close-x::before {
  content: "";
  background-color: #2C2C2C;
  position: absolute;
  width: 20px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup .close-x::after {
  content: "";
  background-color: #2C2C2C;
  position: absolute;
  width: 2px;
  height: 20px;
  left: 50%;
  transform: translate(-50%, 50%);
  bottom: 50%;
  transition: 0.3s;
}

.button, .vc_btn3 {
  position: relative;
  display: inline-block;
  color: #fff;
  border-radius: 50px;
  transition: 0.4s;
  padding: 10px 30px;
  border: 2px solid;
  background-color: #F68B33;
  border-color: #F68B33;
  font-size: 2rem;
  font-weight: 700;
}
.button:hover, .button:focus, .vc_btn3:hover, .vc_btn3:focus {
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  color: #fff;
  background-color: rgb(211.1830985915, 100.4154929577, 9.3169014085);
  border-color: rgb(211.1830985915, 100.4154929577, 9.3169014085);
}
.button.outline-button, .vc_btn3.outline-button {
  background: none;
  background-color: transparent;
}
.button.outline-button::before, .vc_btn3.outline-button::before {
  content: none;
}
.button.outline-button:hover, .vc_btn3.outline-button:hover {
  background-color: rgb(235.6056338028, 112.0281690141, 10.3943661972);
  border-color: rgb(235.6056338028, 112.0281690141, 10.3943661972);
}
.button.black-outline-button, .vc_btn3.black-outline-button {
  color: #000;
  background: none;
  background-color: transparent;
  border: 2px solid;
}
.button.black-outline-button::before, .vc_btn3.black-outline-button::before {
  content: none;
}
.button.black-button, .vc_btn3.black-button {
  color: #fff;
  background: none;
  background-color: #000;
  border: 0;
}
.button.black-button::before, .vc_btn3.black-button::before {
  content: none;
}

.fixed-download-button {
  position: fixed;
  bottom: 30px;
  right: 0;
  z-index: 10;
  display: inline-block;
  color: #fff;
  border-radius: 50px;
  transition: 0.4s;
  padding: 10px 30px;
  border: 2px solid;
  border-radius: 50px 0 0 50px;
  background-color: #282561;
  border-color: #282561;
  font-size: 2rem;
  font-weight: 700;
}
.fixed-download-button:hover, .fixed-download-button:focus {
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  color: #fff;
  background-color: rgb(17.1641791045, 15.8768656716, 41.6231343284);
  border-color: rgb(17.1641791045, 15.8768656716, 41.6231343284);
}

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

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

.small-med-text {
  font-size: 2.5rem;
}

.small-text {
  font-size: 1.6rem;
}

.small-title {
  font-size: 3rem;
}

.med-title {
  font-size: 4rem;
}

.big-title {
  font-size: 8rem;
  line-height: 1.1;
}

.mobile {
  display: none;
}

/****** General ******/
.fadein-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: 0.5s;
}
.fadein-left.viewed {
  opacity: 1;
  transform: translateX(0);
}

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

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

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

.hidden-auto {
  opacity: 0;
  transform: translateY(80px);
  transition: 0.5s;
}
.hidden-auto.active {
  opacity: 1;
  transform: translate(0);
}

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

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

.row {
  margin-left: -20px;
  margin-right: -20px;
}
.row > * {
  padding-right: 20px;
  padding-left: 20px;
}

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

header {
  padding-top: 10px;
  position: fixed;
  width: 100%;
  z-index: 99999;
}
header .logo {
  display: flex;
  align-items: center;
}
header .logo img {
  height: 100px;
  width: auto;
}
header .logo .tagline {
  color: #fff;
  width: 5em;
  margin-left: 10px;
}
header nav.nav {
  display: flex;
  align-items: center;
}
header .search-wrapper {
  position: relative;
  width: 45px;
  height: 45px;
  margin-right: 15px;
}
header .search-wrapper form {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 50px;
  position: absolute;
  right: 0;
  transition: 0.5s;
  width: 45px;
  height: 45px;
  padding: 12px;
}
header .search-wrapper form input[type=text] {
  border: 0;
  width: 0;
  opacity: 0;
  flex: 1;
  background-color: transparent;
}
header .search-wrapper form input[type=text]:focus {
  outline: 0;
}
header .search-wrapper svg {
  margin-inline-end: 10px;
  min-width: 21px;
}
header .search-wrapper:hover form, header .search-wrapper.active form {
  width: 200px;
}
header .search-wrapper:hover form input[type=text], header .search-wrapper.active form input[type=text] {
  width: 150px;
  border: 0;
  opacity: 1;
}
header.white-header, header.minimal {
  padding-top: 30px;
  padding-bottom: 30px;
}
header.white-header .logo img, header.minimal .logo img {
  margin-top: -20px;
  margin-bottom: -20px;
  height: 85px;
}
header.white-header .logo .tagline, header.minimal .logo .tagline {
  color: #282561;
  width: 8em;
  font-size: 16px;
  font-weight: 100;
  padding: 5px 0;
  display: none;
}
header.white-header .flex_container, header.minimal .flex_container {
  align-items: stretch;
  padding: 0;
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 1px 1px 10px rgba(44, 44, 44, 0.1);
}
header.white-header #main-menu, header.minimal #main-menu {
  height: 100%;
}
header.white-header #main-menu > li.menu-button, header.minimal #main-menu > li.menu-button {
  height: 100%;
  display: flex;
  align-items: center;
}

.header-padding {
  padding-top: 100px;
}

footer {
  background-color: #fff;
  position: relative;
  padding: 20px 0;
}
footer a {
  text-decoration: underline;
  color: inherit;
}
footer .container {
  padding: 10px 15px;
}
footer .bg-element {
  position: absolute;
  top: 20px;
  height: calc(100% - 40px);
  width: calc(100% - 100px);
  border-radius: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
footer .rights-credit {
  display: flex;
  justify-content: space-between;
  font-size: 1.7rem;
}
footer .rights-credit .credit-links {
  display: flex;
  justify-content: flex-end;
}
footer .rights-credit .credit-links > * {
  margin-left: 20px;
}

/** Main Menu */
ul#main-menu {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  list-style: none;
  background-color: #fff;
  border-radius: 50px;
  margin: 0;
}

ul#main-menu > li {
  position: relative;
}
ul#main-menu > li > a {
  position: relative;
  display: block;
  font-size: 1.8rem;
  color: #2C2C2C;
  line-height: 1.2;
  padding: 15px 20px;
}
ul#main-menu > li > a:focus, ul#main-menu > li > a:hover {
  text-decoration: none;
  color: #F68B33;
}
ul#main-menu > li.menu-button {
  padding: 0 20px;
  background-color: #F68B33;
  border-radius: 50px;
}
ul#main-menu > li.menu-button > a {
  font-weight: 700;
  color: #fff;
}
ul#main-menu > li.current-menu-item > a {
  color: #2C2C2C;
}

/** Sub Menu  ***/
ul#main-menu ul.sub-menu {
  position: absolute;
  z-index: 10;
  left: -15px;
  top: 100%;
  width: 250px;
  display: none;
  padding-top: 10px;
}

ul#main-menu > li.menu-item-has-children:hover > ul.sub-menu {
  display: block;
}

ul#main-menu ul.sub-menu li {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 20px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}

ul#main-menu ul.sub-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9em;
  padding: 10px 15px;
  color: #282561;
  margin-right: 2px;
  margin-left: 2px;
  margin-bottom: 5px;
}

ul#main-menu ul.sub-menu li a:hover,
ul#main-menu ul.sub-menu li a:focus {
  text-decoration: none;
  color: #2C2C2C;
}

ul#main-menu ul.sub-menu li:hover > a {
  color: #2C2C2C;
}

/****** General ******/
.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.white {
  color: #fff;
}
.white h1, .white h2 {
  color: inherit;
}

.orange {
  color: #F68B33;
}

.primary-color {
  color: #282561;
}

.text-color {
  color: #2c2c2c;
}

.lightblue-color {
  color: #97DAF8;
}

.white-bg {
  background-color: #fff;
}

.gray-bg {
  background-color: #E6EAF2;
}

.orange-bg {
  background-color: #F68B33;
}

.lightblue-bg {
  background-color: #97DAF8;
}

.primary-bg {
  background-color: #282561;
  color: #fff;
}

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

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

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

.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;
}

.dot-element {
  position: absolute;
  opacity: 5%;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.dot-element img {
  position: absolute;
}

section {
  padding: 100px 0;
  position: relative;
  background-color: #fff;
}

.top-section-space {
  min-height: calc(100vh + 100px);
}

.hp-main-section {
  position: fixed;
  width: 100%;
  min-height: calc(100vh + 100px);
  padding-bottom: 150px;
  display: flex;
  align-items: center;
}
.hp-main-section .video-wrapper {
  position: absolute;
  opacity: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transition: 0.5s;
}
.hp-main-section .video-wrapper video {
  background-color: #2c2c2c;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hp-main-section .video-wrapper.viewed {
  opacity: 1;
}
.hp-main-section .hp-video-overlay {
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(44, 44, 44, 0.2);
}
.hp-main-section .dot-element img {
  right: 0;
  top: 50%;
  transform: translate(30%, -50%);
}
.hp-main-section h1 {
  font-size: 11rem;
  max-width: 8em;
  margin: 0 auto;
  line-height: 1;
}
.hp-main-section .content {
  max-width: 15em;
  margin: 0 auto;
}
.hp-main-section .circle-button {
  margin: 4em auto 0;
  width: 210px;
  height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 110px;
  padding: 25px 20px 15px;
  border: 2px solid #F68B33;
  line-height: 1.1;
}
.hp-main-section .circle-button svg {
  margin-top: 10px;
}
.hp-main-section .circle-button:hover {
  border: 2px solid #fff;
  color: #fff;
  background-color: rgb(235.6056338028, 112.0281690141, 10.3943661972);
}
.hp-main-section .circle-button:hover svg path {
  fill: #fff;
}

.hp-products-section {
  padding-top: 0;
}
.hp-products-section .dot-element img {
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
}
.hp-products-section .product-text {
  position: relative;
  margin-top: -100px;
  padding-top: 80px;
  border-radius: 30px;
  margin-bottom: 150px;
}
.hp-products-section .product-text .content {
  max-width: 20em;
  margin: 0 auto;
}
.hp-products-section .single-cat {
  margin-bottom: 30px;
  margin-top: 50px;
  display: block;
}
.hp-products-section .single-cat a {
  color: inherit;
}
.hp-products-section .single-cat .image-wrapper {
  position: relative;
  margin: 0 auto 15px;
  width: 230px;
  height: 230px;
  border-radius: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hp-products-section .single-cat .image-wrapper .plus {
  opacity: 0;
  transition: 0.5s;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.hp-products-section .single-cat a:hover {
  color: inherit;
}
.hp-products-section .single-cat a:hover .image-wrapper {
  background-color: #97DAF8;
}
.hp-products-section .single-cat a:hover .image-wrapper .plus {
  opacity: 1;
  transform: translate(50%, -50%);
}

.hp-updates-section {
  background-image: linear-gradient(0deg, #E6EAF2 50%, #fff 50%);
}
.hp-updates-section h2 {
  margin-left: 50px;
  border-radius: 15px;
  max-width: 90%;
  width: 500px;
  padding: 20px 30px;
  margin-bottom: -0.8em;
  z-index: 2;
  position: relative;
}

.updates-slider {
  background-color: #fff;
  border: 3px solid #E6EAF2;
  border-radius: 20px;
  padding: 70px 70px 20px;
}
.updates-slider .logo {
  margin: 10px 0;
}
.updates-slider .logo img {
  max-width: 380px;
  max-height: 150px;
  height: auto;
}
.updates-slider .button {
  margin-top: 20px;
}
.updates-slider .image img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #E6EAF2;
}
.updates-slider .swiper-pagination {
  margin-top: 50px;
  padding-left: 0;
  justify-content: flex-start;
}

.custom-prev,
.custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: 0.3s;
  z-index: 10;
}
.custom-prev::after,
.custom-next::after {
  content: none;
}
.custom-prev:hover,
.custom-next:hover {
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
.custom-prev:hover circle,
.custom-next:hover circle {
  fill: rgb(235.6056338028, 112.0281690141, 10.3943661972);
}

.custom-prev {
  left: 10px;
}

.custom-next {
  right: 10px;
}

.swiper-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background-color: #E6EAF2;
  border-radius: 50%;
  opacity: 1;
  transition: background-color 0.3s ease;
}
.swiper-pagination-bullet:hover {
  background-color: rgb(196.4473684211, 205.8157894737, 224.5526315789);
}

.swiper-pagination-bullet-active {
  background-color: #F68B33;
}
.swiper-pagination-bullet-active:hover {
  cursor: auto;
  background-color: #F68B33;
}

.hp-numbers-section {
  background-color: #E6EAF2;
  padding-bottom: 150px;
}
.hp-numbers-section .dot-element {
  height: 200%;
}
.hp-numbers-section .dot-element img {
  right: 0;
  bottom: 50%;
  transform: translate(50%, 50%);
}
.hp-numbers-section .container {
  z-index: 4;
}
.hp-numbers-section .title-wrapper {
  display: flex;
  align-items: flex-end;
  margin-top: -80px;
}
.hp-numbers-section .title-wrapper img {
  margin-left: -40px;
}
.hp-numbers-section .title-wrapper h2 {
  margin-left: -200px;
  margin-bottom: 150px;
}
.hp-numbers-section .single-number-col {
  padding: 0 15px;
}
.hp-numbers-section .single-number-col:nth-child(even) {
  transform: translateY(50px);
}
.hp-numbers-section .single-number {
  margin-top: 30px;
  background-color: #fff;
  border-radius: 20px;
  padding: 15px;
}

.hp-eco-section {
  padding-top: 150px;
}
.hp-eco-section .dot-element img {
  left: 0;
  top: 0;
  transform: translate(-70%, 20%);
}
.hp-eco-section .container {
  z-index: 4;
}
.hp-eco-section .tag {
  border-radius: 15px;
  max-width: 100%;
  width: 600px;
  padding: 20px 30px;
  margin-left: -50px;
  margin-bottom: 20px;
}
.hp-eco-section .big-title {
  margin-bottom: 0.2em;
}
.hp-eco-section .button {
  margin-top: 20px;
}
.hp-eco-section .images-col {
  position: relative;
}
.hp-eco-section .image img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.hp-eco-section .logo {
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border: 3px solid #E6EAF2;
  border-radius: 50%;
  background-color: #fff;
}

.hp-customize-section {
  background-color: transparent;
  padding-bottom: 0;
  z-index: 2;
}
.hp-customize-section .dot-element img {
  right: 0;
  top: 0;
  transform: translate(10%, -20%);
  z-index: 5;
}
.hp-customize-section .primary-bg {
  position: relative;
  border-radius: 30px;
  padding: 80px 50px;
}
.hp-customize-section .primary-bg .content {
  margin: 20px 0 40px;
}
.hp-customize-section .primary-bg .button {
  margin: 0 10px;
}
.hp-customize-section .primary-bg .leaf-img {
  width: 183px;
  position: absolute;
  right: calc(100% - 43px);
  top: -30px;
}

.hp-sustainable-section {
  margin-top: -150px;
  padding-top: 300px;
  padding-bottom: 150px;
  color: #fff;
  z-index: 1;
}
.hp-sustainable-section .big-title {
  max-width: 12em;
  margin: 0 auto;
}
.hp-sustainable-section .video-wrapper {
  position: absolute;
  opacity: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transition: 0.5s;
  overflow: hidden;
}
.hp-sustainable-section .video-wrapper video {
  background-color: #2c2c2c;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hp-sustainable-section .video-wrapper.viewed {
  opacity: 1;
}
.hp-sustainable-section .content {
  margin: 20px 0;
  max-width: 40em;
  margin: 0 auto 40px;
}

.hp-media-section {
  padding-top: 150px;
}
.hp-media-section .content {
  margin: 20px 0 40px;
}
.hp-media-section .media-slider {
  margin-right: calc((100vw - 1400px) / -2);
  padding: 50px 0;
}
.hp-media-section .single-media.slide-1 {
  margin-top: 50px;
}
.hp-media-section .single-media.slide-2, .hp-media-section .single-media.slide-4 {
  margin-top: -50px;
}
.hp-media-section .swiper-pagination {
  justify-content: flex-start;
  margin-top: 50px;
}

.wpcf7 label {
  width: 100%;
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.wpcf7 input:not([type=submit]):not([type=checkbox]),
.wpcf7 textarea {
  width: 100%;
  padding: 7px 15px;
  color: #2c2c2c;
  background-color: #fff;
  border-radius: 10px;
  border: 0;
  margin-top: 5px;
}
.wpcf7 input[type=checkbox] {
  border: 0;
  width: 0.9em;
  height: 0.9em;
  border-radius: 3em;
  margin-right: 10px;
}
.wpcf7 select {
  width: 100%;
  padding: 5px 15px;
  border: 1px solid #2C2C2C;
}
.wpcf7 select option {
  color: #2c2c2c;
}
.wpcf7 textarea {
  height: 100px;
}
.wpcf7 input[type=submit] {
  position: relative;
  display: inline-block;
  color: #fff;
  border-radius: 50px;
  transition: 0.4s;
  padding: 10px 30px;
  border: 2px solid;
  background-color: #F68B33;
  border-color: #F68B33;
  font-size: 2rem;
  font-weight: 700;
}
.wpcf7 input[type=submit]:hover, .wpcf7 input[type=submit]:focus {
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  color: #fff;
  background-color: rgb(235.6056338028, 112.0281690141, 10.3943661972);
  border-color: rgb(235.6056338028, 112.0281690141, 10.3943661972);
}
.wpcf7 .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .wpcf7-acceptance label {
  display: flex;
  align-items: center;
}
.wpcf7 .wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 1.8rem;
}
.wpcf7 .bottom {
  display: flex;
  flex-direction: column;
}
.wpcf7 .bottom input[type=submit] {
  align-self: flex-end;
}
.wpcf7 .wpcf7-spinner {
  position: absolute;
}
.wpcf7 a {
  color: inherit;
  text-decoration: underline;
}
.wpcf7 a:hover {
  opacity: 0.7;
}
.wpcf7 .submit-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hbspt-form .field {
  width: 100%;
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.hbspt-form input:not([type=submit]):not([type=checkbox]),
.hbspt-form textarea, .hbspt-form select {
  width: 100%;
  padding: 7px 15px;
  color: #2c2c2c;
  background-color: #fff;
  border-radius: 10px;
  border: 0;
  margin-top: 5px;
  height: 2.2em;
}
.hbspt-form input[type=checkbox] {
  border: 0;
  width: 0.9em;
  height: 0.9em;
  border-radius: 3em;
  margin-right: 10px;
}
.hbspt-form select {
  width: 100%;
  padding: 5px 15px;
  border: 1px solid #2C2C2C;
}
.hbspt-form select option {
  color: #2c2c2c;
}
.hbspt-form textarea {
  height: 100px;
}
.hbspt-form input[type=submit] {
  position: relative;
  display: inline-block;
  color: #fff;
  border-radius: 50px;
  transition: 0.4s;
  padding: 10px 30px;
  border: 2px solid;
  background-color: #F68B33;
  border-color: #F68B33;
  font-size: 2rem;
  font-weight: 700;
}
.hbspt-form input[type=submit]:hover, .hbspt-form input[type=submit]:focus {
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  color: #fff;
  background-color: rgb(235.6056338028, 112.0281690141, 10.3943661972);
  border-color: rgb(235.6056338028, 112.0281690141, 10.3943661972);
}
.hbspt-form fieldset {
  max-width: 100% !important;
}
.hbspt-form fieldset > .field > .input > .hs-input {
  width: 100% !important;
}
.hbspt-form fieldset.form-columns-1 > .field > .input {
  margin-right: 0;
}
.hbspt-form fieldset.form-columns-2 > .field > .input {
  margin-right: 30px;
}
.hbspt-form fieldset.form-columns-2 > .field:last-child > .input {
  margin-right: 0;
}
.hbspt-form a {
  color: inherit;
  text-decoration: underline;
}
.hbspt-form a:hover {
  opacity: 0.7;
}
.hbspt-form .hs-submit {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hbspt-form .hs-error-msgs {
  list-style: none;
  padding: 0;
}
.hbspt-form .hs-error-msgs .hs-error-msg {
  display: block;
}

.contact-section {
  color: #fff;
  padding: 100px 0 30px;
  overflow: hidden;
}
.contact-section .bg-element {
  position: absolute;
  top: 0;
  height: 100%;
  width: calc(100% - 100px);
  border-radius: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.contact-section h2 {
  margin-bottom: 70px;
}
.contact-section .single-location {
  padding-bottom: 40px;
}
.contact-section .single-location .details {
  display: none;
}
.contact-section .single-location h3 {
  position: relative;
  cursor: pointer;
}
.contact-section .single-location h3::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  left: -30px;
  top: 0.3em;
  background: #F68B33;
  transition: 0.4s;
}
.contact-section .single-location h3:hover::before {
  background: rgb(235.6056338028, 112.0281690141, 10.3943661972);
}
.contact-section .single-location a {
  text-decoration: none;
}
.contact-section .single-location .content {
  margin-bottom: 1em;
}
.contact-section .single-location:first-child .details {
  display: block;
}
.contact-section .image-col {
  position: relative;
}
.contact-section .image {
  margin-top: -50px;
}
.contact-section .image img {
  width: 450px;
  max-width: 450px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.contact-section .socials {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.contact-section .socials .single-social {
  margin: 0 10px;
  height: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.contact-section .socials .single-social svg {
  max-width: 100%;
  max-height: 100%;
}
.contact-section .socials .single-social svg:hover path {
  fill: rgb(235.6056338028, 112.0281690141, 10.3943661972);
}

.top-title-section {
  padding: 0 0 30px;
}
.top-title-section .bg {
  position: relative;
  padding-top: 20px;
  border-radius: 0 20px 20px 0;
}
.top-title-section .bg::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  background-color: #97DAF8;
  width: 50vw;
  height: 100%;
}
.top-title-section .bg.primary-bg::before {
  background-color: #282561;
}
.top-title-section h1, .top-title-section h2 {
  padding: 0.3em 0 30px;
}
.top-title-section.overlap-top .container {
  padding-bottom: 100px;
}

.video-section .video-wrapper {
  overflow: hidden;
  position: absolute;
  opacity: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transition: 0.5s;
}
.video-section .video-wrapper video {
  background-color: #2c2c2c;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-section .video-wrapper.viewed {
  opacity: 1;
}
.video-section .hp-video-overlay {
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(44, 44, 44, 0.2);
}
.video-section .dot-element img {
  right: 0;
  top: 50%;
  transform: translate(30%, -50%);
}

.bg-image-section {
  background-attachment: fixed;
}

#breadcrumbs a {
  color: inherit;
  text-decoration: underline;
}

.filter-col {
  margin-top: -30px;
}
.filter-col .sticky {
  top: 0;
  position: sticky;
  padding-top: 30px;
}
.filter-col .sticky.stuck {
  background-color: #fff;
  height: 100vh;
}
.filter-col .sticky.stuck .scroll-wrapper {
  overflow: auto;
  height: 100%;
}
.filter-col h3 {
  font-size: 3rem;
  width: 50%;
  padding: 5px 0 10px;
  height: 5rem;
  margin: 0;
}

.searchandfilter {
  width: 320px;
  max-width: 100%;
}
.searchandfilter > ul {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.searchandfilter > ul > li {
  border: 3px solid #E6EAF2;
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 25px;
  font-size: 1.6rem;
}
.searchandfilter > ul > li.sf-field-reset {
  margin-top: -5rem;
  height: 5rem;
  top: 0;
  display: flex;
  justify-content: flex-end;
  align-self: flex-end;
  width: 50%;
  align-items: center;
  padding: 0;
  border: 0;
  margin-bottom: 5px;
}
.searchandfilter > ul > li.sf-field-reset h4 {
  font-size: 3rem;
}
.searchandfilter > ul > li.sf-field-reset a {
  color: inherit;
  text-decoration: underline;
}
.searchandfilter > ul > li h4 {
  font-size: 2rem;
  font-weight: 700;
}
.searchandfilter > ul > li.sf-field-search label {
  width: 100%;
}
.searchandfilter > ul > li.sf-field-search input {
  background-color: #E6EAF2;
  border: 0;
  width: 100%;
  padding: 5px 10px;
  border-radius: 6px;
}
.searchandfilter > ul > li.sf-field-search input:focus {
  outline: 0;
  background-color: rgb(213.2236842105, 219.9078947368, 233.2763157895);
}
.searchandfilter > ul > li .sf-meta-range {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.searchandfilter > ul > li .sf-meta-range .meta-slider {
  max-width: 100%;
  width: 100%;
  order: 1;
  border: 0;
  background-color: #E6EAF2;
  border-radius: 4px;
  height: 12px;
}
.searchandfilter > ul > li .sf-meta-range > label {
  order: 2;
}
.searchandfilter > ul > li .sf-meta-range .sf-input-range-number {
  border-radius: 6px;
  border: 3px solid #E6EAF2;
}
.searchandfilter > ul > li .sf-meta-range .noUi-connect {
  background-color: #F68B33;
  border-radius: 4px;
}
.searchandfilter > ul > li .sf-meta-range .noUi-handle {
  opacity: 0;
  cursor: pointer;
}
.searchandfilter > ul > li .sf-meta-range .noUi-handle:hover {
  opacity: 1;
}
.searchandfilter > ul > li[data-sf-field-input-type=checkbox] ul {
  padding: 0;
}
.searchandfilter > ul > li[data-sf-field-input-type=checkbox] ul li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  /* Checked SVG */
}
.searchandfilter > ul > li[data-sf-field-input-type=checkbox] ul li .sf-input-checkbox {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
.searchandfilter > ul > li[data-sf-field-input-type=checkbox] ul li .sf-label-checkbox {
  padding-left: 20px;
  cursor: pointer;
}
.searchandfilter > ul > li[data-sf-field-input-type=checkbox] ul li .sf-label-checkbox::before {
  content: "";
  position: absolute;
  left: 0;
  width: 15px;
  height: 16px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
  border-radius: 3px;
  background-color: #E6EAF2;
  margin-right: 5px;
  margin-top: 2px;
}
.searchandfilter > ul > li[data-sf-field-input-type=checkbox] ul li .sf-input-checkbox:checked ~ .sf-label-checkbox::before {
  background-image: url('data:image/svg+xml;utf8,<svg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg"><rect y="0.5" width="15" height="15" rx="3" fill="%23F68B33"/><path d="M3 8L6.5 12L12 4.5" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.searchandfilter > ul > li[data-sf-field-input-type=checkbox].sf-field-taxonomy-product_cat ul li {
  margin: 0 0;
  padding: 0;
}
.searchandfilter > ul > li[data-sf-field-input-type=checkbox].sf-field-taxonomy-product_cat label {
  background-size: 2.5em auto;
  background-repeat: no-repeat;
  background-position: 13px center;
  padding-left: 50px !important;
  padding: 0.6em 0;
}
.searchandfilter > ul > li[data-sf-field-input-type=checkbox]:not(.sf-field-taxonomy-product_cat) .sub-title {
  padding: 5px 10px;
  background-color: #E6EAF2;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: 0.3s;
}
.searchandfilter > ul > li[data-sf-field-input-type=checkbox]:not(.sf-field-taxonomy-product_cat) .sub-title::after {
  content: "";
  display: inline-block;
  margin-top: 5px;
  width: 18px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2214%22%20viewBox%3D%220%200%2018%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M8.18118%2012.8909C8.57934%2013.4588%209.42066%2013.4588%209.81882%2012.8909L17.4228%202.04465C17.8874%201.38194%2017.4133%200.4706%2016.6039%200.4706L1.39606%200.4706C0.586708%200.4706%200.11263%201.38194%200.577236%202.04465L8.18118%2012.8909Z%22%20fill%3D%22%23282561%22/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.searchandfilter > ul > li[data-sf-field-input-type=checkbox]:not(.sf-field-taxonomy-product_cat) .sub-title:hover {
  background-color: rgb(213.2236842105, 219.9078947368, 233.2763157895);
  cursor: pointer;
}
.searchandfilter > ul > li[data-sf-field-input-type=checkbox]:not(.sf-field-taxonomy-product_cat) .sub-title.active::after {
  transform: scaleY(-1);
}
.searchandfilter > ul > li[data-sf-field-input-type=checkbox]:not(.sf-field-taxonomy-product_cat) .scroll-box {
  padding-right: 15px;
  background-color: #E6EAF2;
  margin-top: -4px;
}
.searchandfilter > ul > li[data-sf-field-input-type=checkbox]:not(.sf-field-taxonomy-product_cat) .scroll-box ul {
  padding: 10px;
  border-radius: 0 0 6px 6px;
  display: none;
  overflow: auto;
  max-height: 250px;
  /* Remove scrollbar buttons/arrows */
}
.searchandfilter > ul > li[data-sf-field-input-type=checkbox]:not(.sf-field-taxonomy-product_cat) .scroll-box ul > li .sf-label-checkbox::before {
  background-color: #fff;
}
.searchandfilter > ul > li[data-sf-field-input-type=checkbox]:not(.sf-field-taxonomy-product_cat) .scroll-box ul::-webkit-scrollbar {
  width: 8px;
  padding: 5px 5px;
  margin: 5px;
}
.searchandfilter > ul > li[data-sf-field-input-type=checkbox]:not(.sf-field-taxonomy-product_cat) .scroll-box ul::-webkit-scrollbar-track {
  background: white;
  border-radius: 2px;
  margin: 5px;
}
.searchandfilter > ul > li[data-sf-field-input-type=checkbox]:not(.sf-field-taxonomy-product_cat) .scroll-box ul::-webkit-scrollbar-thumb {
  background-color: #97DAF8;
  border-radius: 2px;
  border: none;
}
.searchandfilter > ul > li[data-sf-field-input-type=checkbox]:not(.sf-field-taxonomy-product_cat) .scroll-box ul::-webkit-scrollbar-button {
  display: none;
  height: 0;
  width: 0;
}
.search-filter-scroll-loading {
  width: 30px !important;
  margin: 20px auto 10px;
  padding: 0;
}

.archive-products-section {
  padding-top: 0;
}
.archive-products-section .single-product-wrapper {
  margin-bottom: 40px;
}

.single-product-wrapper .single-product {
  color: inherit;
}
.single-product-wrapper .single-product .image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}
.single-product-wrapper .single-product .image-wrapper::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  left: 0;
  transition: 0.5s;
}
.single-product-wrapper .single-product .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-product-wrapper .single-product .plus {
  opacity: 0;
  transition: 0.5s;
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(50%, -40%);
}
.single-product-wrapper .single-product:hover .image-wrapper::after {
  opacity: 1;
}
.single-product-wrapper .single-product:hover .image-wrapper .plus {
  z-index: 5;
  opacity: 1;
  transform: translate(50%, -50%);
}

.single-product-section {
  padding-top: 0;
}
.single-product-section .category-tag {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.single-product-section .category-tag .image-wrapper {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.single-product-section .category-tag .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-product-section .prod-id {
  margin: 20px 0;
}
.single-product-section .product-data {
  margin-top: 50px;
}
.single-product-section .product-data .data-row {
  display: flex;
  flex-wrap: wrap;
}
.single-product-section .product-data .data-row:not(:last-child) {
  margin-bottom: 20px;
  border-bottom: 3px solid #E6EAF2;
}
.single-product-section .product-data .single-data {
  width: 8em;
  margin-right: 20px;
  padding-bottom: 20px;
}
.single-product-section .downloads-part {
  margin-top: 80px;
  width: 350px;
  max-width: 100%;
}
.single-product-section .downloads-part h2 {
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.single-product-section .downloads-part a {
  padding: 0.3em 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: inherit;
}
.single-product-section .downloads-part a .download-icon {
  width: 45px;
  height: 45px;
  padding: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.3s;
}
.single-product-section .downloads-part a svg path {
  fill: #2C2C2C;
}
.single-product-section .downloads-part a:hover .download-icon {
  background-color: #F68B33;
}
.single-product-section .downloads-part a:hover svg path {
  fill: #fff;
}
.single-product-section .gallery .gallery-wrapper {
  position: relative;
  margin-bottom: 20px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1/1;
  border-radius: 20px;
}
.single-product-section .gallery .gallery-wrapper .logo-wrapper {
  position: absolute;
  top: 20px;
  z-index: 3;
  background-color: #fff;
  padding: 10px;
  border-radius: 0 10px 10px 0;
  border: 2px solid #E6EAF2;
  border-left: 0;
}
.single-product-section .gallery .gallery-wrapper .logo-wrapper img {
  max-height: 50px;
  max-width: 140px;
  height: auto;
  width: auto;
}
.single-product-section .gallery .slider-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 20px;
}
.single-product-section .gallery .swiper-thumbs .slider-img {
  border-radius: 10px;
}
.single-product-section .gallery .custom-next {
  right: 0;
  transform: translate(50%, 0);
}
.single-product-section .gallery .custom-prev {
  left: 0;
  transform: translate(-50%, 0);
}
.single-product-section .gallery .swiper-pagination {
  justify-content: flex-start;
  margin-top: 30px;
}
.single-product-section .gallery .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0;
}
.single-product-section .button-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: flex-end;
}

.complementary-section .container::before {
  content: "";
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  position: absolute;
  top: -30px;
  left: -30px;
  border-radius: 20px;
  border: 3px solid #E6EAF2;
}
.complementary-section .title-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.complementary-section .swiper-slide {
  padding: 10px 10px 0 10px;
}
.complementary-section .slider-col {
  position: relative;
  padding: 0 80px;
}
.complementary-section .custom-prev,
.complementary-section .custom-next {
  top: 85px;
  transform: none;
}

.product-customize-section .primary-bg {
  position: relative;
  border-radius: 30px;
  padding: 80px 50px;
}
.product-customize-section .primary-bg h2 {
  font-size: 4rem;
  max-width: 15em;
  margin: 0 auto 40px;
}
.product-customize-section .primary-bg .button {
  margin: 0 10px;
}
.product-customize-section .primary-bg .leaf-img {
  width: 183px;
  position: absolute;
  left: calc(100% - 43px);
  top: -30px;
  transform: scaleX(-1);
}

.product-media-section {
  padding-bottom: 50px;
}
.product-media-section .container {
  padding-bottom: 100px;
  border-bottom: 3px solid #E6EAF2;
}
.product-media-section .custom-prev,
.product-media-section .custom-next {
  transform: none;
}
.product-media-section .slider-col {
  position: relative;
  padding: 0 80px;
}
.product-media-section .title-col h2 {
  margin-bottom: 40px;
}

.single-media {
  position: relative;
  display: block;
  color: #2c2c2c;
  margin-left: 15px;
}
.single-media .media-image {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 20px;
  padding-top: 52%;
  width: 100%;
  overflow: hidden;
}
.single-media .media-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(44, 44, 44, 0.5);
  transition: 0.2s;
}
.single-media .cat {
  position: absolute;
  top: 30px;
  background-color: #282561;
  color: #fff;
  border-radius: 0 30px 30px 0;
  padding: 10px 25px 10px 20px;
}
.single-media .button {
  position: absolute;
  opacity: 0;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.single-media .text-badge {
  position: relative;
  margin-left: -15px;
  margin-top: -30px;
  background-color: #E6EAF2;
  border-radius: 10px;
  padding: 15px;
  max-width: 90%;
  margin-bottom: 15px;
}
.single-media .text-badge .date {
  margin-bottom: 10px;
}
.single-media:link:hover .button, .single-media:visited:hover .button {
  opacity: 1;
}
.single-media:link:hover .media-image::before, .single-media:visited:hover .media-image::before {
  opacity: 1;
}

.related-products-section .related-products-slider {
  margin: 50px 0;
}
.related-products-section .swiper-wrapper {
  padding-top: 10px;
}

.main-content-section {
  padding-top: 20px;
}

.page-wrap.single-case-study .top-title-section .bg {
  padding-bottom: 50px;
}

.single-case-study-section {
  padding-top: 50px;
}
.single-case-study-section .text-side {
  position: relative;
  margin-top: -130px;
  padding-top: 30px;
}
.single-case-study-section .text-side::before {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 0;
  left: -30px;
  width: calc(100% + 60px);
  height: 100%;
  border-radius: 30px;
}
.single-case-study-section .text-side h1 {
  padding-bottom: 0.8em;
}
.single-case-study-section .text-side .image-wrapper {
  padding: 0 0 40px;
  position: relative;
}
.single-case-study-section .text-side .image-wrapper img {
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 17/10;
}
.single-case-study-section .text-side .content {
  position: relative;
}
.single-case-study-section .text-side .wp-block-group.lightblue-bg {
  position: relative;
  margin: 50px 0;
  padding: 50px 0;
}
.single-case-study-section .text-side .wp-block-group.lightblue-bg::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  background-color: #97DAF8;
  width: 50vw;
  height: 100%;
}
.single-case-study-section .text-side .wp-block-group.lightblue-bg::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  background-color: #97DAF8;
  width: calc(100% + 80px);
  height: 100%;
  border-radius: 0 30px 30px 0;
}
.single-case-study-section .sticky-part {
  margin-top: -50px;
}
.single-case-study-section .sticky-part .sticky {
  padding-top: 50px;
  top: 0;
  position: sticky;
}
.single-case-study-section .sticky-part .sticky img {
  border-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 17/10;
}

.archive-case-studies-section {
  padding-top: 20px;
}
.archive-case-studies-section .single-case-study-wrapper {
  margin-bottom: 40px;
}

.single-case-study-wrapper .single-case-study {
  color: inherit;
}
.single-case-study-wrapper .single-case-study .image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 17/10;
  border-radius: 20px;
  background-color: #E6EAF2;
  margin-bottom: 15px;
  overflow: hidden;
}
.single-case-study-wrapper .single-case-study .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-case-study-wrapper .single-case-study .plus {
  opacity: 0;
  transition: 0.5s;
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(50%, -40%);
}
.single-case-study-wrapper .single-case-study .small-text {
  margin-bottom: 0.5em;
}
.single-case-study-wrapper .single-case-study:hover .image-wrapper {
  background-color: #97DAF8;
}
.single-case-study-wrapper .single-case-study:hover .image-wrapper .plus {
  opacity: 1;
  transform: translate(50%, -50%);
}

.case-study-related-section {
  padding-top: 50px;
}
.case-study-related-section .container::before {
  content: "";
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  position: absolute;
  top: -30px;
  left: -30px;
  border-radius: 20px;
  border: 3px solid #E6EAF2;
}
.case-study-related-section .title-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-study-related-section .slider-col {
  position: relative;
  padding: 0 80px;
}
.case-study-related-section .custom-prev,
.case-study-related-section .custom-next {
  top: 85px;
  transform: none;
}

.page-wrap.sustainability .top-title-section .container {
  padding-bottom: 100px;
}

.main-sustainability-section {
  padding-top: 50px;
  padding-bottom: 0;
  z-index: 1;
}
.main-sustainability-section .text-side {
  position: relative;
  padding-top: 30px;
}
.main-sustainability-section .text-side::before {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 0;
  left: -30px;
  width: calc(100% + 60px);
  height: 100%;
  border-radius: 30px 30px 0 0;
}
.main-sustainability-section .text-side .content {
  position: relative;
}
.main-sustainability-section .image-wrapper {
  position: relative;
  z-index: 2;
}
.main-sustainability-section .image-wrapper img {
  margin-bottom: -80px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 34/25.5;
}
.main-sustainability-section .row {
  margin-top: 40px;
}
.main-sustainability-section .row:first-child {
  margin-top: 0;
  margin-top: -130px;
}
.main-sustainability-section .image-row {
  margin-top: 80px;
}
.main-sustainability-section .image-right-side {
  margin-bottom: 50px;
}

.sustainability-icons-section {
  background-image: radial-gradient(circle, #97DAF8 0%, #E6EAF2 20%);
  background-position: -105vw;
  background-size: 200%;
}
.sustainability-icons-section .container {
  padding-top: 50px;
}
.sustainability-icons-section .icon-wrapper {
  margin-bottom: 40px;
}

.sustainability-sticky-section .sticky-part {
  margin-top: -50px;
}
.sustainability-sticky-section .sticky-part .sticky {
  padding-top: 50px;
  top: 0;
  position: sticky;
}
.sustainability-sticky-section .image-wrapper {
  margin-bottom: 50px;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.sustainability-sticky-section .image-wrapper img {
  border-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 16/10;
}
.sustainability-sticky-section .image-wrapper h3 {
  margin: 0;
  width: 100%;
  padding: 50px 50px 30px;
  position: absolute;
  bottom: 0;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.sustainability-video-section {
  padding-top: 300px;
}
.sustainability-video-section .top-image {
  height: 450px;
  margin-top: -380px;
  z-index: 3;
  position: relative;
  margin-left: 30px;
}
.sustainability-video-section .top-image img {
  height: 100%;
  width: auto;
}
.sustainability-video-section .container {
  padding-top: 100px;
  padding-bottom: 100px;
}
.sustainability-video-section .video-wrapper {
  border-radius: 20px;
  position: absolute;
  opacity: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transition: 0.5s;
  overflow: hidden;
}
.sustainability-video-section .video-wrapper video {
  background-color: #2c2c2c;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sustainability-video-section .video-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}
.sustainability-video-section .video-wrapper.viewed {
  opacity: 1;
}
.sustainability-video-section .content {
  max-width: 40em;
  margin: 40px auto 0;
}

.downloads-section h2 {
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.downloads-section a {
  padding: 0.3em 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: inherit;
}
.downloads-section a .download-icon, .downloads-section a .link-icon {
  width: 45px;
  height: 45px;
  padding: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.3s;
}
.downloads-section a .link-icon svg path {
  fill: none;
}
.downloads-section a svg path {
  fill: #2C2C2C;
}
.downloads-section a:hover .download-icon, .downloads-section a:hover .link-icon {
  background-color: #F68B33;
}
.downloads-section a:hover .link-icon svg path {
  fill: none;
  stroke: white;
}
.downloads-section a:hover svg path {
  fill: #fff;
}

.about-sustainability-section {
  background-color: transparent;
  z-index: 2;
}
.about-sustainability-section .container {
  padding-top: 50px;
  padding-bottom: 50px;
}
.about-sustainability-section .top-image {
  position: relative;
  margin-left: -50px;
  margin-top: -180px;
  z-index: 5;
}
.about-sustainability-section .video-wrapper {
  border-radius: 20px;
  position: absolute;
  opacity: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transition: 0.5s;
  overflow: hidden;
}
.about-sustainability-section .video-wrapper video {
  background-color: #2c2c2c;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about-sustainability-section .video-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
.about-sustainability-section .video-wrapper.viewed {
  opacity: 1;
}

.about-bullet-section {
  padding-top: 300px;
  padding-bottom: 250px;
  margin-top: -200px;
  position: relative;
  z-index: 1;
  background-color: #E6EAF2;
}
.about-bullet-section h2 {
  position: relative;
  padding-left: 30px;
}
.about-bullet-section h2::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -50px;
  background-color: #97DAF8;
  width: 5em;
  height: 5em;
  border-radius: 50%;
}
.about-bullet-section h2 span {
  position: relative;
}
.about-bullet-section .single-bullet-col {
  padding: 0 15px;
}
.about-bullet-section .single-bullet {
  margin-top: 30px;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 30px;
}
.about-bullet-section .single-bullet svg {
  margin-top: -35px;
  width: 35px;
  height: auto;
  padding-bottom: 10px;
}

.about-sticky-section {
  z-index: 3;
}
.about-sticky-section .top-image {
  position: absolute;
  right: 0;
  top: -200px;
  z-index: 2;
  pointer-events: none;
}
.about-sticky-section .sticky-part {
  margin-top: -50px;
}
.about-sticky-section .sticky-part .sticky {
  padding-top: 50px;
  top: 0;
  position: sticky;
}
.about-sticky-section .sticky-part .image-title {
  position: relative;
}
.about-sticky-section .sticky-part h2 {
  position: absolute;
  width: 30%;
  left: 35%;
  top: 5%;
}
.about-sticky-section .sticky-part img {
  width: 100%;
}
.about-sticky-section .box {
  margin-bottom: 50px;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 2px solid #E6EAF2;
  padding: 50px 30px;
}
.about-sticky-section .box .icon {
  margin-bottom: 20px;
}
.about-sticky-section .box h3 {
  margin-bottom: 10px;
}

.page-wrap.solution .top-image {
  position: absolute;
  right: 0;
  bottom: 0;
}

.solution-bullet-section {
  margin-top: 100px;
  padding-bottom: 0;
  background-color: #E6EAF2;
  z-index: 2;
}
.solution-bullet-section .bullets-wrapper {
  padding-bottom: 100px;
}
.solution-bullet-section .single-bullet {
  margin-bottom: 50px;
}
.solution-bullet-section .single-bullet::before {
  content: "";
  position: absolute;
  right: calc(100% + 20px);
  top: 15px;
  width: 20px;
  height: 20px;
  background-color: #F68B33;
  border-radius: 50%;
  transition: 0.7s 0.5s;
  transform: translateY(-50px) scale(0);
}
.solution-bullet-section .single-bullet.active::before {
  transform: translateY(0) scale(1);
}
.solution-bullet-section .single-bullet:last-child {
  margin-bottom: 0;
}
.solution-bullet-section .circle-image {
  position: relative;
  display: inline-block;
  margin-top: 0;
  transform: translateY(100px);
}
.solution-bullet-section .circle-image img {
  height: 400px;
}
.solution-bullet-section .circle-image::before {
  content: "";
  position: absolute;
  right: -100px;
  top: 50%;
  width: 30px;
  height: 30px;
  background-color: #F68B33;
  border-radius: 50%;
  transform: translate(50%, -50%) scale(0);
  transition: 1s;
}
.solution-bullet-section .circle-image.viewed::before {
  right: 0;
  transform: translate(50%, -50%) scale(1);
}
@keyframes dotOnImage {
  0% {
    right: 0;
  }
  50% {
    right: 50%;
  }
  100% {
    right: 0;
  }
}
.solution-bullet-section .left-col {
  padding-right: 10%;
  position: relative;
}
.solution-bullet-section .left-col::before {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 100px;
  width: 80%;
  height: calc(100% - 100px);
  border-right: 3px solid #F68B33;
  border-bottom: 3px solid #F68B33;
  border-radius: 0 0 20px 0;
}
.solution-bg-section {
  margin-bottom: 50px;
}
.solution-bg-section .container {
  padding-top: 50px;
  border-radius: 20px;
}
.solution-bg-section .container::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: rgba(40, 37, 97, 0.5);
}
.solution-bg-section img {
  position: relative;
  margin-top: 50px;
  margin-bottom: -50px;
}

.title-archive-section {
  padding-top: 50px;
  padding-bottom: 0;
  z-index: 1;
}
.title-archive-section .row {
  margin-top: -130px;
}
.title-archive-section .text-side {
  position: relative;
  padding-top: 30px;
}
.title-archive-section .text-side::before {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 0;
  left: -30px;
  width: calc(100% + 60px);
  height: 100%;
  border-radius: 30px 30px 0 0;
}
.title-archive-section .text-side .content {
  position: relative;
}
.title-archive-section .searchandfilter {
  margin-top: 30px;
  width: 100%;
}
.title-archive-section .searchandfilter > ul > li {
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.title-archive-section .searchandfilter > ul > li h4 {
  font-size: 3rem;
  margin-inline-end: 20px;
}
.title-archive-section .searchandfilter > ul > li select {
  background: #E6EAF2;
  border: 0;
  padding: 10px 10px;
  border-radius: 4px;
}

.main-archive-section {
  padding-top: 70px;
}
.main-archive-section .single-media-wrapper {
  margin-bottom: 50px;
}

.single-post-section {
  padding-top: 30px;
}
.single-post-section .image-wrapper {
  margin-bottom: 50px;
}
.single-post-section .image-wrapper img {
  width: 100%;
  max-height: 50vh;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.single-post-section .content > :first-child {
  font-weight: 700;
  font-size: 1.2em;
  margin-bottom: 1em;
}
.single-post-section img {
  border-radius: 15px;
}
.single-post-section p img {
  margin: 50px 0;
}
.single-post-section .wp-block-image {
  margin: 50px 0;
}

.upcoming-events {
  margin-bottom: 150px;
}
.upcoming-events .date {
  margin: 10px 0;
}
.upcoming-events .button {
  margin-top: 30px;
  margin-bottom: 20px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .page-numbers:not(.prev):not(.next) {
  font-size: 2rem;
  padding: 0 5px;
  color: #2c2c2c;
}
.pagination .page-numbers:not(.prev):not(.next).current {
  opacity: 0.5;
}
.pagination .prev, .pagination .next {
  font-size: 0;
  width: 50px;
  height: 50px;
  background-color: #F68B33;
  border-radius: 50%;
  margin: 0 15px;
}

.single-event-section {
  padding-top: 30px;
}
.single-event-section h1 {
  margin-bottom: 30px;
}
.single-event-section .single-detail {
  display: flex;
  margin-bottom: 30px;
}
.single-event-section .single-detail svg {
  width: 40px;
  height: auto;
  margin-inline-end: 20px;
}
.single-event-section .single-detail .text {
  flex: 1;
}
.single-event-section .image-wrapper {
  margin-bottom: 50px;
}
.single-event-section .image-wrapper img {
  width: 100%;
  border-radius: 15px;
  max-height: 50vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.webinar-timeline {
  margin-top: 50px;
}
.webinar-timeline .timeline-item {
  position: relative;
  padding-inline-start: 40px;
  padding-bottom: 20px;
}
.webinar-timeline .timeline-item::before {
  content: "";
  position: absolute;
  left: -9px;
  background-color: #F68B33;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 0.3em;
}
.webinar-timeline .timeline-item::after {
  content: "";
  position: absolute;
  left: 0;
  background-color: #F68B33;
  width: 2px;
  height: 100%;
  border-radius: 50%;
  top: 0.3em;
}
.webinar-timeline .timeline-item:last-child::after {
  content: none;
}

.webinar-speakers-section .single-speaker-wrapper {
  margin-top: 50px;
}
.webinar-speakers-section .image-wrapper {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #eee;
  overflow: hidden;
  margin: 0 auto 20px;
}
.webinar-speakers-section .image-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
  width: 200px;
  max-width: 100%;
}

.webinar-form-wrapper {
  background-color: #E6EAF2;
  border-radius: 30px;
  padding: 40px;
  margin-top: -100px;
}
.webinar-form-wrapper textarea, .webinar-form-wrapper input {
  background-color: #fff;
  border: 0;
}
.webinar-form-wrapper label {
  display: none;
}
.webinar-form-wrapper .hs-error-msgs {
  list-style: none;
  padding: 0;
}
.webinar-form-wrapper .hs-error-msgs .hs-error-msg {
  display: block;
}
.webinar-form-wrapper input:not([type=submit]):not([type=checkbox]),
.webinar-form-wrapper textarea, .webinar-form-wrapper select {
  width: 100%;
  padding: 7px 15px;
  color: #2c2c2c;
  background-color: #fff;
  border-radius: 10px;
  border: 0;
  height: 2.5em;
  margin-top: 20px;
}
.webinar-form-wrapper input[type=checkbox] {
  border: 0;
  width: 0.9em;
  height: 0.9em;
  border-radius: 3em;
  margin-right: 10px;
}
.webinar-form-wrapper select {
  width: 100%;
  padding: 5px 15px;
}
.webinar-form-wrapper select option {
  color: #2c2c2c;
}
.webinar-form-wrapper textarea {
  height: 100px;
}
.webinar-form-wrapper input[type=submit] {
  position: relative;
  display: inline-block;
  color: #fff;
  border-radius: 50px;
  transition: 0.4s;
  padding: 10px 30px;
  border: 2px solid;
  background-color: #F68B33;
  border-color: #F68B33;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 10px;
}
.webinar-form-wrapper input[type=submit]:hover, .webinar-form-wrapper input[type=submit]:focus {
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  color: #fff;
  background-color: rgb(235.6056338028, 112.0281690141, 10.3943661972);
  border-color: rgb(235.6056338028, 112.0281690141, 10.3943661972);
}
.webinar-form-wrapper a {
  color: inherit;
  text-decoration: underline;
}
.webinar-form-wrapper a:hover {
  opacity: 0.7;
}

.perlen-credit {
  display: flex;
  align-items: center;
  margin: 20px 0;
}
.perlen-credit .content {
  width: 10em;
}
.perlen-credit img {
  width: 150px;
  height: auto;
}

.search-page .top-title-section .bg {
  padding-bottom: 30px;
}
.search-page .top-title-section .bg h1 {
  padding-bottom: 15px;
}

.section.search-results {
  padding-top: 30px;
}

/* Edit Above Only*/
.mobile_menu_button {
  position: relative;
  display: none;
}

.triggerMobileMenu {
  position: relative;
  width: 30px;
  height: 20px;
  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: 2px;
  width: 100%;
  background: #282561;
  border-radius: 9px;
  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: 9px;
}
.triggerMobileMenu span:nth-child(3) {
  top: 18px;
}
.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;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  color: #fff;
  top: 100px;
  width: calc(100% - 20px);
  height: calc(100% - 150px);
  overflow-y: auto;
  left: 0;
  transform: translateY(150%);
  padding: 20px;
}
.off-canvas.is-open {
  z-index: 9999;
  transform: translate(0);
  left: 10px;
  bottom: 10px;
}
.off-canvas .search-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.off-canvas .search-wrapper input[type=text] {
  border: 0;
  border-bottom: 1px solid #2C2C2C;
  width: 150px;
  margin: 0 auto;
}

/** Mobile Menu Style **************/
.mobile_menu_holder {
  position: relative;
}

ul#mobile-menu {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  justify-content: center;
  text-align: center;
}
ul#mobile-menu li {
  position: relative;
  display: block;
  text-align: center;
}
ul#mobile-menu li a {
  position: relative;
  display: block;
  font-size: 2.2rem;
  text-decoration: none;
  padding: 10px 15px;
  color: #2C2C2C;
}
ul#mobile-menu li.button {
  margin-top: 20px;
  display: inline-block;
}
ul#mobile-menu li.button a {
  padding: 0;
}
ul#mobile-menu ul.sub-menu {
  position: relative;
  display: block;
  padding: 0;
}
ul#mobile-menu ul.sub-menu li a {
  padding: 0px 15px 10px 15px;
  font-size: 0.8em;
}

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: #282561;
}

/****************************************************************************************************************/
@media only screen and (max-width: 1540px) {
  html {
    font-size: 8px;
  }
  h1 {
    font-size: 5rem;
  }
  h2 {
    font-size: 5rem;
  }
  .big-text {
    font-size: 4rem;
  }
  .big-title {
    font-size: 7rem;
  }
  .container {
    max-width: 1250px;
  }
  header .logo img {
    height: 80px;
  }
  section {
    padding: 80px 0;
  }
  .hp-main-section {
    padding-bottom: 100px;
  }
  .hp-main-section h1 {
    font-size: 9rem;
  }
  .hp-main-section .circle-button {
    padding: 25px 25px 15px;
    width: 190px;
    height: 190px;
  }
  .hp-main-section .circle-button svg {
    width: 23px;
  }
  .hp-eco-section .dot-element {
    display: none;
  }
  .hp-products-section .product-text {
    margin-top: -70px;
    padding-top: 70px;
  }
  .hp-products-section .single-cat {
    margin: 30px 0;
  }
  .hp-numbers-section .title-wrapper h2 {
    margin-bottom: 180px;
  }
  .hp-media-section {
    padding-top: 100px;
  }
  .hp-media-section .media-slider {
    margin-right: calc((100vw - 1250px) / -2);
  }
  .hp-media-section .single-media h3 {
    padding: 15px;
    bottom: 20px;
  }
  .hp-eco-section .logo {
    width: 180px;
    height: 180px;
    right: -50px;
  }
  .hp-customize-section {
    padding-bottom: 0;
  }
  .hp-sustainable-section {
    padding-top: 200px;
    padding-bottom: 100px;
  }
  .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }
  .contact-section {
    padding-top: 80px;
  }
  .contact-section .single-location h3::before {
    top: 0.2em;
  }
  .contact-section .image {
    display: none;
  }
  .searchandfilter > ul > li[data-sf-field-input-type=checkbox].sf-field-taxonomy-product_cat label {
    padding-left: 42px !important;
  }
  .searchandfilter > ul > li[data-sf-field-input-type=checkbox] ul li .sf-label-checkbox::before {
    width: 14px;
    height: 14px;
    margin-top: 1px;
  }
  .page-wrap.solution .top-image {
    bottom: -50 px;
  }
  .page-wrap.solution .top-image img {
    height: 380px;
  }
}
/* end of (max-width: 1540px) */
/****************************************************************************************************************/
@media only screen and (max-width: 1370px) {
  .container {
    max-width: 1100px;
  }
  .hp-media-section .media-slider {
    margin-right: calc((100vw - 1100px) / -2);
  }
}
/* end of (max-width: 1300px) */
/****************************************************************************************************************/
@media only screen and (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
  .hp-media-section .media-slider {
    margin-right: calc((100vw - 1000px) / -2);
  }
  .contact-section {
    padding: 40px 0;
  }
  .contact-section .bg-element {
    width: calc(100% - 40px);
    border-radius: 20px;
  }
  .contact-section > .container {
    padding: 0 40px;
  }
  .contact-section .image {
    display: none;
  }
  footer .bg-element {
    width: calc(100% - 40px);
    border-radius: 5px;
  }
  footer > .container {
    padding: 10px 40px;
  }
  .single-case-study-section .text-side::before {
    width: calc(100% + 30px);
    border-radius: 0;
  }
  .single-case-study-section .text-side .wp-block-group.lightblue-bg::after {
    width: 100%;
  }
  .case-study-related-section .container::before {
    width: calc(100% - 10px);
    left: 5px;
  }
} /* end of (max-width: 1200px) */
/****************************************************************************************************************/
@media only screen and (max-width: 990px) {
  .hp-media-section .media-slider {
    margin-right: -20px;
  }
  ul#main-menu > li > a {
    padding: 8px 10px;
  }
  ul#main-menu > li.menu-button {
    padding: 0 10px;
  }
  header.white-header, header.minimal {
    padding: 20px 0;
  }
  header.white-header .logo .tagline, header.minimal .logo .tagline {
    font-size: 1.5rem;
    margin-left: 8px;
  }
  header.white-header .logo img, header.minimal .logo img {
    height: 55px;
  }
  .top-title-section {
    padding: 10px 0 20px;
  }
  .top-title-section h1 {
    padding: 15px 0 20px;
  }
} /* end of (max-width: 990px) */
/****************************************************************************************************************/
@media only screen and (max-width: 768px) {
  .desk {
    display: none;
  }
  .mobile {
    display: block;
  }
  .container {
    padding: 0 15px;
  }
  .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .row > * {
    padding-right: 15px;
    padding-left: 15px;
  }
  header .logo img {
    height: 60px;
  }
  .mobile_menu_button {
    display: flex;
    align-items: center;
    margin-right: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .wrap_main_menu, header .search-wrapper {
    display: none;
  }
  body.admin-bar .off-canvas {
    top: 46px;
  }
  .medium-text {
    font-size: 2.5rem;
  }
  .big-text {
    font-size: 3.5rem;
  }
  .big-title {
    font-size: 4.5rem;
  }
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 3.5rem;
  }
  h3 {
    font-size: 2.5rem;
  }
  .button {
    padding: 8px 20px;
  }
  section {
    padding: 50px 0;
  }
  .hp-main-section {
    min-height: 0;
  }
  .hp-main-section h1 {
    font-size: 6rem;
  }
  .hp-main-section .circle-button {
    margin-top: 30px;
    padding: 20px 15px 10px;
    width: 120px;
    height: 120px;
    font-size: 2rem;
  }
  .hp-products-section .single-cat {
    margin: 30px 0 0;
  }
  .hp-products-section .single-cat .image-wrapper {
    width: 150px;
    height: 150px;
  }
  .hp-updates-section h2 {
    margin-left: -15px;
    border-radius: 10px;
    padding: 10px 15px;
  }
  .updates-slider {
    padding: 40px 20px 20px;
  }
  .updates-slider .row {
    flex-direction: column-reverse;
  }
  .updates-slider .logo img {
    max-height: 100px;
    max-width: 100%;
  }
  .updates-slider .image {
    margin-bottom: 20px;
  }
  .updates-slider .image img {
    width: 90%;
  }
  .updates-slider .swiper-pagination {
    margin-top: 25px;
    justify-content: center;
  }
  .arrow-col {
    padding: 0;
  }
  .custom-prev,
  .custom-next {
    width: 35px;
    height: 35px;
  }
  .swiper-pagination-bullet {
    margin: 0 2px !important;
  }
  .hp-numbers-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .hp-numbers-section .title-wrapper img {
    margin-left: 0;
    width: 200px;
  }
  .hp-numbers-section .title-wrapper h2 {
    margin-bottom: 70px;
    margin-left: -90px;
  }
  .hp-numbers-section .single-number-col {
    padding: 0 10px;
  }
  .hp-numbers-section .single-number-col:nth-child(even) {
    transform: translateY(0);
  }
  .hp-numbers-section .single-number-col:nth-child(odd) {
    transform: translateY(30px);
  }
  .hp-numbers-section .single-number-col .single-number {
    margin-top: 20px;
    padding: 10px;
  }
  .hp-numbers-section .single-number-col .single-number .medium-text {
    font-size: 2rem;
  }
  .hp-eco-section {
    padding-top: 90px;
  }
  .hp-eco-section .tag {
    border-radius: 10px;
    padding: 10px 15px;
    margin-left: -10px;
  }
  .hp-eco-section .images-col {
    margin-top: 30px;
    max-width: 85%;
  }
  .hp-eco-section .logo {
    width: 100px;
    height: 100px;
    padding: 15px;
    right: 0;
  }
  .complementary-section .container::before {
    content: none;
  }
  .complementary-section h2 {
    margin-bottom: 30px;
    text-align: center;
  }
  .case-study-related-section {
    padding-top: 50px;
  }
  .case-study-related-section .container::before {
    content: none;
  }
  .case-study-related-section h2 {
    margin-bottom: 30px;
    text-align: center;
  }
  .hp-customize-section {
    overflow: hidden;
  }
  .hp-customize-section .primary-bg {
    border-radius: 20px;
    padding: 30px 30px 5px;
  }
  .hp-customize-section .primary-bg .button {
    margin-bottom: 25px;
  }
  .hp-customize-section .primary-bg .leaf-img {
    width: 86px;
    right: calc(100% - 20px);
  }
  .hp-sustainable-section .big-title {
    margin-bottom: 20px;
  }
  .hp-media-section {
    padding-top: 70px;
  }
  .hp-media-section .media-slider {
    margin-top: 20px;
    padding: 20px 0;
  }
  .hp-media-section .single-media.slide-1 {
    margin-top: 20px;
  }
  .hp-media-section .single-media.slide-2, .hp-media-section .single-media.slide-4 {
    margin-top: -20px;
  }
  .hp-media-section .single-media .cat {
    padding: 5px 15px 5px 10px;
  }
  .hp-media-section .single-media h3 {
    border-radius: 5px;
    padding: 10px;
    font-size: 1.8rem;
    max-width: 95%;
  }
  .contact-section h2 {
    margin-bottom: 30px;
  }
  .contact-section .wpcf7 {
    margin-bottom: 50px;
  }
  .contact-section .hbspt-form {
    margin-bottom: 50px;
  }
  .contact-section .hbspt-form fieldset.form-columns-2 > .field > .input {
    margin-right: 0;
  }
  .contact-section .single-location h3::before {
    top: 0.1em;
  }
  footer .rights-credit {
    flex-direction: column;
    align-items: center;
  }
  footer .rights-credit .credit-links {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer .rights-credit .credit-links > * {
    margin-top: 10px;
    margin-left: 0;
  }
  .archive-products-section .single-product-wrapper {
    margin-bottom: 25px;
  }
  .archive-products-section .single-product-wrapper .single-product .image-wrapper {
    margin-bottom: 10px;
  }
  .filter-col {
    z-index: 555555;
    padding: 0;
  }
  .filter-col h3 {
    width: 100%;
  }
  .filter-col h3::after {
    content: "+";
  }
  .filter-col .sticky {
    width: 8em;
    max-width: 100%;
    position: relative;
    padding: 15px 15px 10px;
  }
  .filter-col .sticky.stuck {
    position: fixed;
    height: auto;
    left: 0;
    max-height: 100vh;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0 10px 10px 0;
    padding-top: 15px !important;
    top: auto;
    bottom: 50px;
  }
  .filter-col .searchandfilter {
    display: none;
  }
  .filter-col.show .sticky {
    top: 0;
    bottom: auto;
    left: 0;
    width: 300px;
    position: fixed;
    height: auto;
    max-height: 100vh;
    overflow: auto;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 0;
    background-color: #fff;
  }
  .filter-col.show .searchandfilter {
    padding-bottom: 50px;
    display: block;
  }
  .filter-col.show h3 {
    width: 50%;
  }
  .filter-col.show h3::after {
    content: "-";
  }
  .single-product-section .gallery {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .single-product-section .gallery .gallery-wrapper .logo-wrapper {
    padding: 5px 10px;
  }
  .single-product-section .gallery .gallery-wrapper .logo-wrapper img {
    max-height: 40px;
    max-width: 120px;
  }
  .single-product-section .product-data {
    margin-top: 30px;
  }
  .single-product-section .downloads-part {
    margin-top: 20px;
  }
  .product-customize-section {
    overflow: hidden;
  }
  .product-customize-section .primary-bg {
    border-radius: 20px;
    padding: 30px 30px 5px;
  }
  .product-customize-section .primary-bg .button {
    margin-bottom: 25px;
  }
  .product-customize-section .primary-bg .leaf-img {
    width: 86px;
    left: calc(100% - 20px);
  }
  .product-media-section .title-col h2 {
    margin-bottom: 20px;
  }
  .product-media-section .title-col .button {
    margin-bottom: 30px;
  }
  .product-media-section .swiper-button-prev, .product-media-section .swiper-button-next {
    display: none;
  }
  .product-media-section .slider-col {
    padding: 0;
  }
  .product-media-section .product-media-slider h3 {
    border-radius: 5px;
    padding: 10px;
    font-size: 1.8rem;
    max-width: 95%;
  }
  .related-products-section .related-products-slider {
    margin-right: -15px;
  }
  .top-title-section.overlap-top .container {
    padding-bottom: 0;
  }
  .main-sustainability-section {
    padding-top: 20px;
    overflow: hidden;
  }
  .main-sustainability-section .text-side {
    padding-top: 0;
  }
  .main-sustainability-section .row {
    margin-top: 0;
  }
  .main-sustainability-section .row:first-child {
    margin-top: 0;
  }
  .main-sustainability-section .content, .main-sustainability-section h2, .main-sustainability-section h3 {
    margin-bottom: 15px;
  }
  .main-sustainability-section .image-wrapper img {
    margin-bottom: 20px;
  }
  .sustainability-icons-section {
    background-position: -200vw -200px;
    background-size: 400%;
  }
  .sustainability-icons-section .container {
    padding-top: 0;
  }
  .sustainability-icons-section h2.big-title {
    margin-bottom: 50px;
  }
  .sustainability-icons-section .icon {
    margin-bottom: 20px;
  }
  .sustainability-icons-section .icon svg, .sustainability-icons-section .icon img {
    height: 50px;
    width: auto;
  }
  .sustainability-sticky-section .image-wrapper {
    margin-top: 20px;
    margin-bottom: 0;
  }
  .sustainability-sticky-section .image-wrapper h3 {
    padding: 30px 30px 15px;
    font-size: 3rem;
  }
  .sustainability-sticky-section .image-wrapper img {
    border-radius: 15px;
  }
  .sustainability-video-section {
    padding-top: 150px;
  }
  .sustainability-video-section .top-image {
    margin-top: -200px;
    margin-left: 0;
    margin-bottom: 20px;
    height: auto;
  }
  .sustainability-video-section .top-image img {
    max-width: 50%;
  }
  .sustainability-video-section .video-wrapper {
    left: 0;
  }
  .about-sustainability-section .top-image {
    width: 150px;
    height: auto;
    margin-top: -90px;
    margin-left: 30px;
  }
  .about-sustainability-section .video-wrapper {
    left: 0;
  }
  .about-sticky-section .top-image {
    display: none;
  }
  .about-sticky-section .sticky-part {
    overflow: hidden;
  }
  .about-sticky-section .sticky-part .image-title {
    margin-right: -10%;
  }
  .about-bullet-section {
    padding-bottom: 50px;
  }
  .page-wrap.solution .top-image {
    position: relative;
    margin-top: 20px;
  }
  .page-wrap.solution .top-image img {
    height: auto;
    max-height: 150px;
  }
  .solution-bullet-section .circle-image {
    transform: translate(0);
    margin-top: 20px;
  }
  .solution-bullet-section .circle-image img {
    height: 200px;
  }
  .solution-bullet-section .bullets-wrapper {
    margin-left: 50px;
  }
  .solution-bullet-section .bullets-wrapper .single-bullet {
    margin-top: 30px;
    margin-bottom: 0;
  }
  .single-case-study-section .text-side .wp-block-group.lightblue-bg::after {
    width: 15px;
  }
} /* end of (max-width: 768px) */
/****************************************************************************************************************/
/* end of (max-width: 576px) */
/****************************************************************************************************************/
/* end of (max-width: 480px) */
/****************************************************************************************************************//*# sourceMappingURL=style.css.map */