@charset "UTF-8";
/*
Theme Name: webmix
Author: webmix
Author URI: https://www.webmix.nl
Description: Webmix Custom Theme
*/
/* Reset Stylesheet */
/* Box-sizing: make sure padding and border are included in element width */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* Remove default padding and margin from body */
body, p, blockquote, figure, dl, dd, ol, ul {
  margin: 0;
  padding: 0;
}
/* Remove list styles on lists */
ul, ol {
  list-style: none;
}
/* Remove quotes from blockquote */
blockquote::before, blockquote::after, q::before, q::after {
  content: "";
}
/* Remove default table spacing */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* Reset links */
a {
  text-decoration: none;
  color: inherit;
}
/* Remove focus outlines but keep accessibility */
button, input, textarea, select {
  font: inherit;
  /* Inherit fonts */
  border: none;
  /* Remove borders */
  outline: none;
  background: none;
  padding: 0;
}
/* Normalize images and media */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
/* Set a base font size and smooth scrolling */
html {
  font-size: 100%;
  /* 16px default */
  line-height: 1.5;
  scroll-behavior: smooth;
  margin-top: 0 !important;
}
/* Make body inherit base font-family */
body {
  font-family: sans-serif;
  /* Set your preferred default font-family */
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}
/* Remove focus outline for mouse users but keep it for keyboard users */
:focus:not(:focus-visible) {
  outline: none;
}
header {
  background: transparent;
  position: fixed;
  width: 100%;
  z-index: 9999;
  padding: 2rem;
  transition: all ease 0.3s;
  font-family: "Switzer-Regular" !important;
}
@media (max-width: 1440px) {
  header {
    padding: 2rem 0.8rem;
  }
}
@media (max-width: 540px) {
  header {
    padding: 0;
    max-height: 76px;
  }
}
header .container-longer {
  max-width: 100% !important;
  padding: 1rem 2rem;
  transition: all ease 0.3s;
}
header .logo a {
  display: flex;
  width: 80px;
  gap: 0.7rem;
}
header .logo a .shape {
  height: 100%;
  animation: rotate 1.4s ease;
  animation-delay: 1.5s;
  transition: all ease 0.3s;
}
@media (max-width: 768px) {
  header .logo a .shape {
    width: 90px;
  }
}
@media (max-width: 540px) {
  header .logo a .shape {
    width: 25px;
  }
}
header .logo a .name {
  transition: all ease 0.3s;
}
@media (max-width: 540px) {
  header .logo a .name {
    width: 65px;
  }
}
@media (max-width: 992px) {
  header .menu {
    display: none !important;
  }
}
header .menu .navigation {
  display: flex;
  gap: 2rem;
}
header .menu .navigation li a {
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9rem;
}
header .hamburger {
  cursor: pointer;
}
header .hamburger .hamburger-wrapper {
  position: relative;
}
header .hamburger .hamburger-wrapper .line {
  position: absolute;
  width: 30px;
  height: 1px;
  background: #fff;
  transition: all ease 0.3s;
  transition-delay: 0.1s;
}
header .hamburger .hamburger-wrapper:after, header .hamburger .hamburger-wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  height: 1px;
  width: 30px;
  background: #fff;
  transition: all ease 0.3s;
}
header .hamburger .hamburger-wrapper:after {
  top: 8px;
  transform: rotate(0deg);
  transition: top 0.3s ease 0.3s, transform 0.3s ease;
}
header .hamburger .hamburger-wrapper:before {
  bottom: 8px;
  transform: rotate(0deg);
  transition: bottom 0.3s ease 0.3s, transform 0.3s ease;
}
header .contact .phone-icon {
  width: 35px;
  margin-right: 2rem;
}
header .contact .phone-icon:hover {
  animation: headShake;
  animation-duration: 1s;
}
@media (max-width: 540px) {
  header .contact .phone-icon {
    display: none;
  }
}
header .contact .btn {
  animation: pulsewhite 3.5s infinite;
}
@media (max-width: 992px) {
  .on-scroll header {
    padding-top: 0;
    margin-top: 1rem;
  }
}
@media (max-width: 540px) {
  .on-scroll header {
    margin-top: 0;
  }
}
.on-scroll header .name {
  opacity: 0;
  transform: translateX(-10px);
}
.on-scroll header .container-longer {
  backdrop-filter: blur(23px);
  -webkit-backdrop-filter: blur(23px);
  transition: all ease 0.3s;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}
.hamburger-open .hamburger-wrapper.active .line {
  opacity: 0;
}
.hamburger-open .hamburger-wrapper.active:after {
  top: 0;
  transform: rotate(45deg);
  transition: top 0.3s ease, transform 0.3s ease 0.3s;
}
.hamburger-open .hamburger-wrapper.active:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 0.3s ease, transform 0.3s ease 0.3s;
}
@keyframes pulsewhite {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(192, 222, 110, 0.8);
    box-shadow: 0 0 0 0 rgba(192, 222, 110, 0.8);
  }
  40% {
    -moz-box-shadow: 0 0 0 10px rgba(192, 222, 110, 0);
    box-shadow: 0 0 0 10px rgba(192, 222, 110, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(192, 222, 110, 0);
    box-shadow: 0 0 0 0 rgba(192, 222, 110, 0);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-30deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
body, html {
  overflow-x: hidden;
}
.animate__animated.animate__fadeInUp {
  animation-duration: 0.5s;
}
.delay-1 {
  animation-delay: 0.3s;
}
.delay-2 {
  animation-delay: 0.6s;
}
.animate {
  opacity: 1 !important;
  transform: translateX(0) !important;
}
.btn-close:focus, .btn:focus {
  outline: none;
  box-shadow: none;
}
.btn {
  border: none;
  height: fit-content;
  width: fit-content;
  transition: all ease 0.3s;
}
.btn.btn-primary {
  background: #c0de6e;
  color: #191919;
  border-radius: 0.5rem;
  padding: 0.7rem 2rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all ease 0.3s;
  border: 1px solid #c0de6e;
}
.btn.btn-primary:hover {
  background: transparent;
  transition: all ease 0.3s;
}
.btn.btn-primary:focus {
  background: #c0de6e;
  border-color: #c0de6e;
}
@media (max-width: 540px) {
  .btn.btn-primary {
    padding: 0.7rem 0.8rem;
  }
}
.btn.btn-border-green {
  background: transparent;
  color: #c0de6e;
  border-radius: 0.5rem;
  padding: 0.7rem 2rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all ease 0.3s;
  border: 1px solid #c0de6e;
}
.btn.btn-border-green:hover {
  background: #c0de6e;
  transition: all ease 0.3s;
  color: #191919;
}
@media (max-width: 540px) {
  .btn.btn-border-green {
    padding: 0.7rem 0.8rem;
  }
}
.btn.btn-border-black {
  background: transparent;
  color: #191919;
  border-radius: 0.5rem;
  padding: 0.7rem 2rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all ease 0.3s;
  border: 1px solid #191919;
}
.btn.btn-border-black:hover {
  background: #c0de6e;
  transition: all ease 0.3s;
  border-color: #c0de6e;
}
@media (max-width: 540px) {
  .btn.btn-border-black {
    padding: 0.7rem 0.8rem;
  }
}
#wpadminbar {
  display: none;
}
.container {
  max-width: 1460px;
  margin: 0 auto;
}
p, span {
  font-weight: 300;
  margin-bottom: 2rem;
}
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 2rem;
}
h1 {
  font-size: 3.2rem;
}
h2 {
  font-size: 2.7rem;
}
small {
  font-size: 0.8rem;
}
.container-longer {
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 1rem;
}
section {
  padding: 14rem 0;
  width: 100%;
}
@media (max-width: 992px) {
  section {
    padding: 10rem 0;
  }
}
@media (max-width: 540px) {
  section {
    padding: 8rem 0;
  }
}
.ratings small {
  color: #fff;
  font-family: "NohemiExtLt";
  font-size: 0.75rem;
}
.ratings svg {
  width: 15px;
  margin-right: 0.1rem;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "NohemiRegular" !important;
}
@media (max-width: 992px) {
  h1 {
    font-size: 2.6rem;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}
@media (max-width: 540px) {
  h2 {
    font-size: 1.6rem;
  }
}
p {
  font-family: "Switzer-Light" !important;
}
.btn {
  font-family: "Switzer-Regular" !important;
}
.hero {
  height: 100vh;
  width: 100%;
  padding: 0;
  display: flex;
  background: #191919;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    height: auto;
  }
}
.hero .left {
  width: 45%;
  height: 100%;
  position: relative;
  height: 93%;
}
@media (max-width: 768px) {
  .hero .left {
    padding: 8rem 1rem 2rem;
    height: 100%;
  }
}
.hero .left .content-wrapper {
  width: 85%;
  position: absolute;
  bottom: 0;
  left: 3rem;
  font-weight: 200;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 60%;
}
@media (max-width: 1200px) {
  .hero .left .content-wrapper {
    width: 95%;
  }
}
@media (max-width: 992px) {
  .hero .left .content-wrapper {
    left: 1rem;
  }
}
@media (max-width: 768px) {
  .hero .left .content-wrapper {
    width: 100%;
    position: static;
  }
}
.hero .left .content-wrapper .text h1, .hero .left .content-wrapper .text span {
  color: #fff;
  margin-bottom: 2rem;
}
@media (max-width: 1200px) {
  .hero .left .content-wrapper .text h1, .hero .left .content-wrapper .text span {
    margin-bottom: 1rem;
  }
}
.hero .left .content-wrapper .text .btn:hover {
  color: #fff;
}
.hero .left .content-wrapper .text .rotate-wrapper {
  position: relative;
  height: 60px;
  overflow: hidden;
  margin-top: 0.7rem;
}
@media (max-width: 992px) {
  .hero .left .content-wrapper .text .rotate-wrapper {
    height: 52px;
  }
}
@media (max-width: 768px) {
  .hero .left .content-wrapper .text .rotate-wrapper {
    height: 40px;
  }
}
.hero .left .content-wrapper .text .rotate-wrapper .rotate-word {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.hero .left .content-wrapper .ratings {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .hero .left .content-wrapper .ratings {
    margin-top: 2rem;
  }
}
.hero .left .content-wrapper .ratings svg {
  margin-right: 0.3rem;
  overflow: visible;
}
.hero .left .content-wrapper .ratings svg #pulse {
  animation: pulse2 1.4s;
  transform-origin: 50% 50%;
  animation-delay: 0.8s;
}
.hero .left .content-wrapper .ratings svg #core {
  animation: pulse1 1.4s;
  animation-delay: 0.8s;
  transform-origin: 50% 50%;
}
.hero .left .content-wrapper .thumbnail {
  width: 90px;
  height: auto;
  border-radius: 0.5rem;
  border: 1px solid #c0de6e;
  object-fit: cover;
  object-position: top;
  margin-bottom: 1rem;
  aspect-ratio: 1;
}
@media (max-width: 540px) {
  .hero .left .content-wrapper .thumbnail {
    width: 70px;
  }
}
@media (max-width: 768px) {
  .hero .left {
    width: 100%;
  }
}
.hero .right {
  width: 50%;
  height: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .hero .right {
    width: 100%;
  }
}
.hero .right .name {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 20%;
  top: 30%;
  transform: translate(-20%, -30%);
}
@media (max-width: 768px) {
  .hero .right .name {
    top: 50%;
    transform: translate(-20%, -50%);
  }
}
@media (max-width: 540px) {
  .hero .right .name {
    top: 40%;
    transform: translate(-10%, -40%);
    right: 10%;
  }
}
.hero .right .name span {
  margin: 0;
  color: #c0de6e;
  font-family: "NohemiRegular";
}
.hero .right .name small {
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-family: "NohemiExtLt";
}
.hero .right img {
  height: 93%;
  object-fit: cover;
  border-radius: 0 0 0 3rem;
  width: 100%;
  object-position: top;
}
@media (max-width: 768px) {
  .hero .right img {
    height: 450px;
    border-radius: 3rem 0 0 0;
  }
}
@media (max-width: 540px) {
  .hero .right img {
    height: 400px;
  }
}
.second-section {
  height: fit-content;
  position: relative;
  z-index: 0;
}
@-moz-document url-prefix() {
  .second-section .container {
    height: auto !important;
  }
}
.second-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 57%;
  background: #777b75;
  z-index: -1;
}
@media (max-width: 540px) {
  .second-section:after {
    height: 70%;
  }
}
.second-section .container {
  height: 100%;
  width: 100%;
}
.second-section .container .section-title {
  color: #fff;
  text-align: center;
  width: 70%;
  margin: 0 auto;
  padding: 10rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .second-section .container .section-title {
    width: 100%;
    padding: 7rem 0;
  }
}
.second-section .container .section-image {
  height: auto;
  width: 100%;
  top: 0;
  right: 0;
  object-fit: cover;
  object-position: top;
  border-radius: 1rem;
  margin: 0 auto;
  aspect-ratio: 1.7777777778;
  clip-path: inset(15%);
  will-change: clip-path;
}
@media (max-width: 540px) {
  .second-section .container .section-image {
    aspect-ratio: 1;
    height: 325px !important;
  }
}
.partners {
  height: fit-content;
}
.partners .partners-title {
  margin-bottom: 4rem;
}
.partners .partners-title h2 {
  color: #c0de6e;
}
.partners .partner-slider {
  width: 100%;
}
.partners .partner-slider .slide {
  width: 25%;
  height: fit-content;
}
@media (max-width: 992px) {
  .partners .partner-slider .slide {
    width: 33%;
    margin-right: 1rem;
  }
}
@media (max-width: 540px) {
  .partners .partner-slider .slide {
    width: 50%;
  }
}
.partners .partner-slider .slide img {
  width: 50%;
  height: auto;
}
@media (max-width: 992px) {
  .partners .partner-slider .slide img {
    width: 80%;
  }
}
.service-section {
  background: #ededed;
}
.service-section .service-title {
  padding-bottom: 6rem;
}
.service-section .col {
  min-height: 280px;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .service-section .col {
    min-height: auto;
  }
  .service-section .col:nth-last-child(n + 2) {
    margin-bottom: 3rem;
  }
}
.service-section .col p, .service-section .col h3 {
  margin-bottom: 1.5rem;
}
.service-section .col .btn {
  margin-top: 1.5rem;
}
.service-section .col .service-item {
  opacity: 0;
  transform: translateY(15px);
}
.service-section .col:nth-last-child(-n + 2) .wrapper {
  position: relative;
}
@media (max-width: 768px) {
  .service-section .col:nth-last-child(-n + 2) .wrapper {
    padding-top: 3rem;
  }
}
.service-section .col:nth-last-child(-n + 2) .wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: -13%;
  height: 100%;
  border-left: 1px solid #191919;
}
@media (max-width: 992px) {
  .service-section .col:nth-last-child(-n + 2) .wrapper:before {
    left: -6%;
  }
}
@media (max-width: 768px) {
  .service-section .col:nth-last-child(-n + 2) .wrapper:before {
    border-top: 1px solid #191919;
    border-left: none;
    left: 0;
    width: 100%;
  }
}
.service-section .col small {
  color: #777b75;
  font-family: "Switzer-Light";
}
.usp-section h2 {
  color: #191919;
}
.usp-section h2 span {
  color: #c0de6e;
}
.cta-section-1 {
  background: #191919;
  position: relative;
}
.cta-section-1 .cta-title {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.cta-section-1 .cta-title h2, .cta-section-1 .cta-title span {
  color: #fff;
  width: 40%;
}
@media (max-width: 992px) {
  .cta-section-1 .cta-title h2, .cta-section-1 .cta-title span {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .cta-section-1 .cta-title h2, .cta-section-1 .cta-title span {
    width: 100%;
  }
}
.cta-section-1 .cta-image {
  width: 50%;
  height: 57vh;
  position: absolute;
  right: 0;
  bottom: -10%;
}
@media (max-width: 992px) {
  .cta-section-1 .cta-image {
    height: 350px;
  }
}
@media (max-width: 768px) {
  .cta-section-1 .cta-image {
    width: 90%;
    position: relative;
    float: right;
    margin-top: 3rem;
  }
}
@media (max-width: 540px) {
  .cta-section-1 .cta-image {
    height: 300px;
  }
}
@media (max-height: 950px) and (min-width: 992px) {
  .cta-section-1 .cta-image {
    height: 85%;
  }
}
.cta-section-1 .cta-image #cta-shape {
  position: absolute;
  top: -120px;
  right: 0;
}
@media (max-width: 992px) {
  .cta-section-1 .cta-image #cta-shape {
    width: 350px;
  }
}
@media (max-width: 540px) {
  .cta-section-1 .cta-image #cta-shape {
    width: 240px;
    top: -50px;
  }
}
.cta-section-1 .cta-image img {
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.cijfers-section {
  background: #ededed;
  padding: 20rem 0 16rem;
}
@media (max-width: 992px) {
  .cijfers-section {
    padding: 16rem 0 8rem;
  }
}
@media (max-width: 768px) {
  .cijfers-section {
    padding: 22rem 0 8rem;
  }
}
.cijfers-section [data-aos="new-animation"] {
  opacity: 0;
  transition-property: transform, opacity;
}
.cijfers-section [data-aos="new-animation"].aos-animate {
  opacity: 1;
}
@media (min-width: 768px) {
  .cijfers-section [data-aos="new-animation"] {
    transform: translateY(15px);
  }
  .cijfers-section [data-aos="new-animation"].aos-animate {
    transform: translateY(0);
  }
}
.cijfers-section .row {
  padding: 0 12px;
}
@media (max-width: 1200px) {
  .cijfers-section .row {
    gap: 3rem;
    margin: 0 auto;
    justify-content: center !important;
  }
}
@media (max-width: 540px) {
  .cijfers-section .row {
    gap: 1.5rem;
  }
}
.cijfers-section .row .usp-block {
  border-radius: 2rem;
  padding: 3rem;
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1440px) {
  .cijfers-section .row .usp-block {
    width: 31%;
  }
}
@media (max-width: 1200px) {
  .cijfers-section .row .usp-block {
    width: 70%;
  }
}
@media (max-width: 540px) {
  .cijfers-section .row .usp-block {
    width: 100%;
  }
}
.cijfers-section .row .usp-block h2 {
  display: flex;
  flex-direction: column;
  font-weight: 300;
  margin-bottom: 6rem;
  font-family: "NohemiExtLt" !important;
}
@media (max-width: 768px) {
  .cijfers-section .row .usp-block h2 {
    font-size: 1.5rem;
  }
}
.cijfers-section .row .usp-block h2 span {
  margin-bottom: 0;
  font-size: 4rem;
  font-family: "NohemiLight" !important;
}
@media (max-width: 768px) {
  .cijfers-section .row .usp-block h2 span {
    font-size: 3rem;
  }
}
.cijfers-section .row .usp-block p {
  margin: 0;
}
.cijfers-section .row .usp-block:nth-child(1) {
  background: #191919;
}
.cijfers-section .row .usp-block:nth-child(1) h2 {
  color: #fff;
}
.cijfers-section .row .usp-block:nth-child(1) h2 span {
  color: #c0de6e;
}
.cijfers-section .row .usp-block:nth-child(1) p {
  color: #fff;
}
.cijfers-section .row .usp-block:nth-child(2) {
  background: #c0de6e;
}
.cijfers-section .row .usp-block:nth-child(2) * {
  color: #fff;
}
.cijfers-section .row .usp-block:nth-child(3) {
  background: #fff;
}
.cijfers-section .row .usp-block:nth-child(3) h2 {
  color: #191919;
}
.cijfers-section .row .usp-block:nth-child(3) h2 span {
  color: #c0de6e;
}
.accordion .accordion-item {
  border-bottom: 1px solid #6a6a6a;
}
.accordion .accordion-item:last-child {
  border-bottom: 1px solid #6a6a6a;
}
@media (max-width: 540px) {
  .accordion .accordion-item .accordion-header {
    margin-bottom: 0 !important;
  }
}
.accordion .accordion-button {
  padding: 2rem 0;
  font-size: 1.5rem;
}
.accordion .accordion-button:focus {
  box-shadow: none;
}
.accordion .accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
  color: #c0de6e;
  transition: all ease 0.3s;
}
.accordion .accordion-button:not(.collapsed):before {
  transition: all ease 0.3s;
  transform: translateY(-50%) rotate(135deg);
}
.accordion .accordion-button.button-0 {
  padding-top: 0;
}
.accordion .accordion-button.button-0:before {
  top: 25%;
}
.accordion .accordion-button:after {
  content: none;
}
.accordion .accordion-button:before {
  content: url("data:image/svg+xml,%3Csvg version='1.1' id='fi_808559' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 341.4 341.4' style='enable-background:new 0 0 341.4 341.4;' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpolygon points='192,149.4 192,0 149.4,0 149.4,149.4 0,149.4 0,192 149.4,192 149.4,341.4 192,341.4 192,192 341.4,192 341.4,149.4 '%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E");
  position: absolute;
  right: 0;
  top: 50%;
  width: 15px;
  transform: translateY(-50%);
  transition: all ease 0.3s;
}
.accordion .accordion-body {
  padding: 0 0 2rem;
}
.accordion .images {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  width: 100%;
}
.accordion .images img {
  width: auto;
  filter: grayscale(1);
  height: 50px;
}
@media (max-width: 768px) {
  .accordion .images img {
    height: 35px;
  }
}
.faq-section {
  background: #ededed;
}
.faq-section .row {
  background: #fff;
  border: 1px solid #c0de6e;
  border-radius: 1rem;
  padding: 4rem;
  position: relative;
  min-height: 800px;
  max-width: 95%;
  margin: auto;
}
@media (max-width: 992px) {
  .faq-section .row {
    max-width: 100%;
    margin: auto;
    padding: 3rem 1rem;
  }
}
.faq-section .row .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 540px) {
  .faq-section .row .left {
    padding: 0;
  }
}
.faq-section .row .left h2 {
  margin-bottom: 6rem;
}
@media (max-width: 992px) {
  .faq-section .row .left h2 {
    margin-bottom: 4rem;
  }
}
.faq-section .row .right {
  position: absolute;
  right: -3%;
  height: 86%;
  top: 7%;
  padding: 0;
}
@media (max-width: 992px) {
  .faq-section .row .right {
    position: static;
  }
}
.faq-section .row .accordion-button {
  background: #fff;
}
.faq-section .row .accordion-button:not(.collapsed) {
  background: #fff;
}
.faq-section .row .accordion-body {
  background: #fff;
}
.faq-section .row .faq-image {
  border-radius: 1rem;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  .faq-section .row .faq-image {
    height: 300px;
  }
}
.testimony-section {
  position: relative;
  background: #ededed;
  padding-top: 10rem;
  padding-bottom: 0;
}
@media (max-width: 540px) {
  .testimony-section {
    padding-top: 8rem;
  }
}
.testimony-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 61%;
  background: #191919;
  z-index: 0;
}
.testimony-section .testimony-title {
  position: relative;
  z-index: 1;
}
.testimony-section .testimony-title h2, .testimony-section .testimony-title span {
  color: #fff;
}
.testimony-section .testimony-grid {
  display: flex;
  gap: 4rem;
  min-height: 100%;
  z-index: 1;
}
@media (max-width: 992px) {
  .testimony-section .testimony-grid {
    display: grid;
  }
}
@media (max-width: 1200px) {
  .testimony-section .testimony-grid {
    gap: 2rem;
  }
}
@media (max-width: 992px) {
  .testimony-section .testimony-grid {
    gap: 1rem;
  }
}
.testimony-section .testimony-grid .column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 992px) {
  .testimony-section .testimony-grid .column {
    gap: 1rem;
  }
}
.testimony-section .testimony-grid .testimony-card {
  background: #fff;
  border-radius: 2rem;
  padding: 3.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  height: 100%;
  width: 100%;
  margin: 0;
}
.testimony-section .testimony-grid .testimony-card:nth-child(1) {
  color: #fff;
  background: #3f3f3d;
}
@media (max-width: 540px) {
  .testimony-section .testimony-grid .testimony-card {
    padding: 3rem;
    height: 100% !important;
  }
}
.testimony-section .testimony-grid .testimony-card p {
  margin-bottom: 0;
}
.testimony-section .testimony-grid .testimony-card:before {
  content: url(/wp-content/themes/webmix/assets/glair-quote.svg);
  position: absolute;
  top: 8%;
  left: 7%;
  width: 16px;
  height: 16px;
}
@media (max-width: 540px) {
  .testimony-section .testimony-grid .testimony-card:before {
    top: 7%;
    left: 6%;
  }
}
.testimony-section .testimony-grid .testimony-card .details {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.testimony-section .testimony-grid .testimony-card .details .name {
  display: flex;
  flex-direction: column;
}
.testimony-section .testimony-grid .testimony-card .details .name span {
  margin: 0;
  color: #c0de6e;
}
.testimony-section .testimony-grid .testimony-card .details .name small {
  margin: 0;
  font-family: "Switzer-Light";
}
.testimony-section .testimony-grid .testimony-card .details .image {
  position: absolute;
  left: -7%;
  bottom: 50px;
}
@media (max-width: 992px) {
  .testimony-section .testimony-grid .testimony-card .details .image {
    position: static;
  }
}
.testimony-section .testimony-grid .testimony-card .details .image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #fff;
}
.cta-section-2 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  height: fit-content;
  position: relative;
}
.cta-section-2 .cta-block {
  background: #191919;
  border-radius: 2rem;
  padding: 3rem;
  width: fit-content;
  max-width: 650px;
  position: relative;
}
.cta-section-2 .cta-block h2 {
  font-size: 3.2rem;
  margin-top: 1rem;
  color: #fff;
}
@media (max-width: 768px) {
  .cta-section-2 .cta-block h2 {
    font-size: 2rem;
  }
}
.cta-section-2 .cta-block span {
  color: #fff;
}
.description {
  font-size: 1.2rem;
  font-family: "NohemiExtLt" !important;
}
@media (max-width: 992px) {
  .description {
    font-size: 1rem;
  }
}
#contactFormModal {
  z-index: 99999;
  padding-right: 0 !important;
  overflow-y: hidden;
}
@media (max-width: 768px) {
  #contactFormModal {
    overflow-y: auto;
  }
}
#contactFormModal .modal-dialog {
  max-width: 100% !important;
  margin: 0;
  max-height: 100vh !important;
  background: #777b75;
}
#contactFormModal .modal-dialog .modal-header {
  border-radius: 0;
  position: absolute;
  z-index: 99999;
  width: 100%;
  border-bottom: 0;
  max-width: 100%;
  display: flex;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 1rem 3.1rem;
  margin-top: 1rem;
}
@media (max-width: 1760px) {
  #contactFormModal .modal-dialog .modal-header {
    padding: 1rem 3rem;
  }
}
@media (max-width: 992px) {
  #contactFormModal .modal-dialog .modal-header {
    padding: 1rem;
  }
}
#contactFormModal .modal-dialog .modal-header .shape {
  width: 35px;
}
#contactFormModal .modal-dialog .modal-header .close-button {
  background: #c0de6e;
  border-radius: 0.5rem;
  padding: 0.5rem;
}
#contactFormModal .modal-dialog .modal-header .close-button .btn-close {
  margin: 0;
  opacity: 1;
}
#contactFormModal .modal-dialog .modal-body {
  background: #777b75;
  padding: 0;
}
#contactFormModal .modal-dialog .modal-body .modal-hero {
  height: 100vh;
  width: 100%;
  padding: 0;
  display: flex;
}
@media (max-width: 768px) {
  #contactFormModal .modal-dialog .modal-body .modal-hero {
    flex-direction: column;
    height: auto;
  }
}
#contactFormModal .modal-dialog .modal-body .modal-hero .left {
  width: 45%;
  height: 100%;
  position: relative;
  height: 93%;
}
@media (max-width: 768px) {
  #contactFormModal .modal-dialog .modal-body .modal-hero .left {
    padding: 8rem 1rem 2rem;
    height: 100%;
  }
}
#contactFormModal .modal-dialog .modal-body .modal-hero .left .content-wrapper {
  width: 85%;
  position: absolute;
  bottom: 0;
  left: 3rem;
  font-weight: 200;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 75%;
}
@media (max-width: 992px) {
  #contactFormModal .modal-dialog .modal-body .modal-hero .left .content-wrapper {
    left: 1rem;
  }
}
@media (max-width: 768px) {
  #contactFormModal .modal-dialog .modal-body .modal-hero .left .content-wrapper {
    width: 100%;
    position: static;
  }
}
#contactFormModal .modal-dialog .modal-body .modal-hero .left .content-wrapper * {
  color: #fff;
}
#contactFormModal .modal-dialog .modal-body .modal-hero .left .content-wrapper .ratings {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  #contactFormModal .modal-dialog .modal-body .modal-hero .left .content-wrapper .ratings {
    margin-top: 2rem;
  }
}
#contactFormModal .modal-dialog .modal-body .modal-hero .left .content-wrapper .thumbnail {
  width: 90px;
  height: auto;
  border-radius: 0.5rem;
  border: 1px solid #c0de6e;
  object-fit: cover;
  object-position: top;
  margin-bottom: 1rem;
  aspect-ratio: 1;
}
@media (max-width: 540px) {
  #contactFormModal .modal-dialog .modal-body .modal-hero .left .content-wrapper .thumbnail {
    width: 70px;
  }
}
@media (max-width: 768px) {
  #contactFormModal .modal-dialog .modal-body .modal-hero .left {
    width: 100%;
  }
}
#contactFormModal .modal-dialog .modal-body .modal-hero .right {
  width: 55%;
  height: 100%;
  position: relative;
}
@media (max-width: 768px) {
  #contactFormModal .modal-dialog .modal-body .modal-hero .right {
    width: 100%;
  }
}
#contactFormModal .modal-dialog .modal-body .modal-hero .right img {
  height: 93%;
  object-fit: cover;
  border-radius: 0 0 0 3rem;
  width: 100%;
}
@media (max-width: 768px) {
  #contactFormModal .modal-dialog .modal-body .modal-hero .right img {
    height: 450px;
    border-radius: 0;
  }
}
#contactFormModal .modal-dialog .modal-body .modal-hero .right .gform_wrapper {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 60%;
}
@media (max-width: 1440px) {
  #contactFormModal .modal-dialog .modal-body .modal-hero .right .gform_wrapper {
    width: 70%;
    left: 45%;
  }
}
@media (max-width: 768px) {
  #contactFormModal .modal-dialog .modal-body .modal-hero .right .gform_wrapper {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
  }
}
@media (max-width: 540px) {
  #contactFormModal .modal-dialog .modal-body .modal-hero .right .gform_wrapper {
    width: 93%;
  }
}
#contactFormModal .modal-dialog .modal-body .modal-hero .right .gform_wrapper .gform_button {
  position: static;
}
#contactFormModal .modal-dialog .modal-body .modal-hero .right .gform_wrapper .textarea {
  height: 200px;
}
@media (max-width: 768px) {
  #contactFormModal .modal-dialog .modal-body .modal-hero .right .gform_wrapper .textarea {
    height: 125px;
    padding: 1.2rem;
  }
}
@media (max-width: 768px) {
  #contactFormModal .modal-dialog .modal-body .modal-hero .right .gform_wrapper .gform_fields {
    row-gap: 10px !important;
  }
}
@media (max-width: 768px) {
  #contactFormModal .modal-dialog .modal-body .modal-hero .right .gform_wrapper .gform_fields input {
    padding: 1.2rem;
  }
}
.modal-open {
  overflow: hidden;
  padding-right: 0 !important;
}
.social-icons {
  display: flex;
  gap: 1rem;
}
.social-icons .social-icon svg {
  width: 18px;
}
.social-icons .social-icon svg path, .social-icons .social-icon svg circle {
  fill: #fff !important;
}
.social-icons .social-icon.social-x svg .x {
  fill: #191919;
}
@keyframes pulse1 {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulse2 {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
footer {
  background: #191919;
  padding: 5rem 4rem;
}
@media (max-width: 992px) {
  footer {
    padding: 4rem 2rem;
  }
}
@media (max-width: 540px) {
  footer {
    padding: 4rem 1rem;
  }
}
footer .container-longer {
  padding: 0;
}
footer .left {
  display: flex;
  align-items: end;
  gap: 2rem;
}
footer .left h3 {
  margin: 0;
  color: #fff;
}
footer .left img {
  width: 250px;
}
@media (max-width: 992px) {
  footer .left img {
    width: 150px;
  }
}
@media (max-width: 540px) {
  footer .left img {
    width: 100px;
  }
}
footer .right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
footer .right h4 {
  color: #c0de6e;
  margin-bottom: 1rem;
}
footer .right address, footer .right p, footer .right a {
  color: #fff;
  font-family: "Switzer-Light";
}
/**
* @license
*
* Font Family: Switzer
* Designed by: Jérémie Hornus
* URL: https://www.fontshare.comfonts/Switzer/Switzer
* © 2025 Indian Type Foundry
*
*/
@font-face {
  font-family: "Switzer-Thin";
  src: url("fonts/Switzer/Switzer-Thin.woff2") format("woff2"), url("fonts/Switzer/Switzer-Thin.woff") format("woff"), url("fonts/Switzer/Switzer-Thin.ttf") format("truetype");
  font-weight: 100;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Switzer-ThinItalic";
  src: url("fonts/Switzer/Switzer-ThinItalic.woff2") format("woff2"), url("fonts/Switzer/Switzer-ThinItalic.woff") format("woff"), url("fonts/Switzer/Switzer-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Switzer-Extralight";
  src: url("fonts/Switzer/Switzer-Extralight.woff2") format("woff2"), url("fonts/Switzer/Switzer-Extralight.woff") format("woff"), url("fonts/Switzer/Switzer-Extralight.ttf") format("truetype");
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Switzer-ExtralightItalic";
  src: url("fonts/Switzer/Switzer-ExtralightItalic.woff2") format("woff2"), url("fonts/Switzer/Switzer-ExtralightItalic.woff") format("woff"), url("fonts/Switzer/Switzer-ExtralightItalic.ttf") format("truetype");
  font-weight: 200;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Switzer-Light";
  src: url("fonts/Switzer/Switzer-Light.woff2") format("woff2"), url("fonts/Switzer/Switzer-Light.woff") format("woff"), url("fonts/Switzer/Switzer-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Switzer-LightItalic";
  src: url("fonts/Switzer/Switzer-LightItalic.woff2") format("woff2"), url("fonts/Switzer/Switzer-LightItalic.woff") format("woff"), url("fonts/Switzer/Switzer-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Switzer-Regular";
  src: url("fonts/Switzer/Switzer-Regular.woff2") format("woff2"), url("fonts/Switzer/Switzer-Regular.woff") format("woff"), url("fonts/Switzer/Switzer-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Switzer-Italic";
  src: url("fonts/Switzer/Switzer-Italic.woff2") format("woff2"), url("fonts/Switzer/Switzer-Italic.woff") format("woff"), url("fonts/Switzer/Switzer-Italic.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Switzer-Medium";
  src: url("fonts/Switzer/Switzer-Medium.woff2") format("woff2"), url("fonts/Switzer/Switzer-Medium.woff") format("woff"), url("fonts/Switzer/Switzer-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Switzer-MediumItalic";
  src: url("fonts/Switzer/Switzer-MediumItalic.woff2") format("woff2"), url("fonts/Switzer/Switzer-MediumItalic.woff") format("woff"), url("fonts/Switzer/Switzer-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Switzer-Semibold";
  src: url("fonts/Switzer/Switzer-Semibold.woff2") format("woff2"), url("fonts/Switzer/Switzer-Semibold.woff") format("woff"), url("fonts/Switzer/Switzer-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Switzer-SemiboldItalic";
  src: url("fonts/Switzer/Switzer-SemiboldItalic.woff2") format("woff2"), url("fonts/Switzer/Switzer-SemiboldItalic.woff") format("woff"), url("fonts/Switzer/Switzer-SemiboldItalic.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Switzer-Bold";
  src: url("fonts/Switzer/Switzer-Bold.woff2") format("woff2"), url("fonts/Switzer/Switzer-Bold.woff") format("woff"), url("fonts/Switzer/Switzer-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Switzer-BoldItalic";
  src: url("fonts/Switzer/Switzer-BoldItalic.woff2") format("woff2"), url("fonts/Switzer/Switzer-BoldItalic.woff") format("woff"), url("fonts/Switzer/Switzer-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Switzer-Extrabold";
  src: url("fonts/Switzer/Switzer-Extrabold.woff2") format("woff2"), url("fonts/Switzer/Switzer-Extrabold.woff") format("woff"), url("fonts/Switzer/Switzer-Extrabold.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Switzer-ExtraboldItalic";
  src: url("fonts/Switzer/Switzer-ExtraboldItalic.woff2") format("woff2"), url("fonts/Switzer/Switzer-ExtraboldItalic.woff") format("woff"), url("fonts/Switzer/Switzer-ExtraboldItalic.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Switzer-Black";
  src: url("fonts/Switzer/Switzer-Black.woff2") format("woff2"), url("fonts/Switzer/Switzer-Black.woff") format("woff"), url("fonts/Switzer/Switzer-Black.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Switzer-BlackItalic";
  src: url("fonts/Switzer/Switzer-BlackItalic.woff2") format("woff2"), url("fonts/Switzer/Switzer-BlackItalic.woff") format("woff"), url("fonts/Switzer/Switzer-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
  font-style: italic;
}
/**
* This is a variable font
* You can control variable axes as shown below:
* font-variation-settings: wght 400.0;
*
* available axes:
'wght' (range from 100.0 to 900.0
*/
@font-face {
  font-family: "Switzer-Variable";
  src: url("fonts/Switzer/Switzer-Variable.woff2") format("woff2"), url("fonts/Switzer/Switzer-Variable.woff") format("woff"), url("fonts/Switzer/Switzer-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}
/**
* This is a variable font
* You can control variable axes as shown below:
* font-variation-settings: wght 400.0;
*
* available axes:
'wght' (range from 100.0 to 900.0
*/
@font-face {
  font-family: "Switzer-VariableItalic";
  src: url("fonts/Switzer/Switzer-VariableItalic.woff2") format("woff2"), url("fonts/Switzer/Switzer-VariableItalic.woff") format("woff"), url("fonts/Switzer/Switzer-VariableItalic.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
  font-style: italic;
}
/* Webfont: fonts/Nohemi/Nohemi-Black */
@font-face {
  font-family: "NohemiBlack";
  src: url("fonts/Nohemi/Nohemi-Black.eot");
  /* IE9 Compat Modes */
  src: url("fonts/Nohemi/Nohemi-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Nohemi/Nohemi-Black.woff") format("woff"), url("fonts/Nohemi/Nohemi-Black.woff2") format("woff2"), url("fonts/Nohemi/Nohemi-Black.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
/* Webfont: fonts/Nohemi/Nohemi-Bold */
@font-face {
  font-family: "NohemiBold";
  src: url("fonts/Nohemi/Nohemi-Bold.eot");
  /* IE9 Compat Modes */
  src: url("fonts/Nohemi/Nohemi-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Nohemi/Nohemi-Bold.woff") format("woff"), url("fonts/Nohemi/Nohemi-Bold.woff2") format("woff2"), url("fonts/Nohemi/Nohemi-Bold.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: bold;
  text-rendering: optimizeLegibility;
}
/* Webfont: fonts/Nohemi/Nohemi-ExtraBold */
@font-face {
  font-family: "NohemiExtBd";
  src: url("fonts/Nohemi/Nohemi-ExtraBold.eot");
  /* IE9 Compat Modes */
  src: url("fonts/Nohemi/Nohemi-ExtraBold.eot?#iefix") format("embedded-opentype"), url("fonts/Nohemi/Nohemi-ExtraBold.woff") format("woff"), url("fonts/Nohemi/Nohemi-ExtraBold.woff2") format("woff2"), url("fonts/Nohemi/Nohemi-ExtraBold.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
/* Webfont: fonts/Nohemi/Nohemi-ExtraLight */
@font-face {
  font-family: "NohemiExtLt";
  src: url("fonts/Nohemi/Nohemi-ExtraLight.eot");
  /* IE9 Compat Modes */
  src: url("fonts/Nohemi/Nohemi-ExtraLight.eot?#iefix") format("embedded-opentype"), url("fonts/Nohemi/Nohemi-ExtraLight.woff") format("woff"), url("fonts/Nohemi/Nohemi-ExtraLight.woff2") format("woff2"), url("fonts/Nohemi/Nohemi-ExtraLight.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
/* Webfont: fonts/Nohemi/Nohemi-Light */
@font-face {
  font-family: "NohemiLight";
  src: url("fonts/Nohemi/Nohemi-Light.eot");
  /* IE9 Compat Modes */
  src: url("fonts/Nohemi/Nohemi-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Nohemi/Nohemi-Light.woff") format("woff"), url("fonts/Nohemi/Nohemi-Light.woff2") format("woff2"), url("fonts/Nohemi/Nohemi-Light.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
/* Webfont: fonts/Nohemi/Nohemi-Medium */
@font-face {
  font-family: "NohemiMed";
  src: url("fonts/Nohemi/Nohemi-Medium.eot");
  /* IE9 Compat Modes */
  src: url("fonts/Nohemi/Nohemi-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/Nohemi/Nohemi-Medium.woff") format("woff"), url("fonts/Nohemi/Nohemi-Medium.woff2") format("woff2"), url("fonts/Nohemi/Nohemi-Medium.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
/* Webfont: fonts/Nohemi/Nohemi-Regular */
@font-face {
  font-family: "NohemiRegular";
  src: url("fonts/Nohemi/Nohemi-Regular.eot");
  /* IE9 Compat Modes */
  src: url("fonts/Nohemi/Nohemi-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Nohemi/Nohemi-Regular.woff") format("woff"), url("fonts/Nohemi/Nohemi-Regular.woff2") format("woff2"), url("fonts/Nohemi/Nohemi-Regular.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
/* Webfont: fonts/Nohemi/Nohemi-SemiBold */
@font-face {
  font-family: "NohemiSemBd";
  src: url("fonts/Nohemi/Nohemi-SemiBold.eot");
  /* IE9 Compat Modes */
  src: url("fonts/Nohemi/Nohemi-SemiBold.eot?#iefix") format("embedded-opentype"), url("fonts/Nohemi/Nohemi-SemiBold.woff") format("woff"), url("fonts/Nohemi/Nohemi-SemiBold.woff2") format("woff2"), url("fonts/Nohemi/Nohemi-SemiBold.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
/* Webfont: fonts/Nohemi/Nohemi-Thin */
@font-face {
  font-family: "NohemiThin";
  src: url("fonts/Nohemi/Nohemi-Thin.eot");
  /* IE9 Compat Modes */
  src: url("fonts/Nohemi/Nohemi-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Nohemi/Nohemi-Thin.woff") format("woff"), url("fonts/Nohemi/Nohemi-Thin.woff2") format("woff2"), url("fonts/Nohemi/Nohemi-Thin.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
form .gform_button {
  background: #c0de6e !important;
  color: #191919 !important;
  border-radius: 0.5rem !important;
  padding: 1rem 1.5rem !important;
  text-transform: uppercase !important;
  font-size: 0.85rem !important;
  position: absolute;
  bottom: 50px;
  right: 100px;
  transition: all ease 0.3s;
}
@media (max-width: 768px) {
  form .gform_button {
    bottom: 50px;
  }
}
@media (max-width: 540px) {
  form .gform_button {
    right: 70px;
  }
}
form .gform-body {
  font-family: "NohemiLight" !important;
}
form .gform-body .gform_fields {
  row-gap: 20px !important;
}
form .gform-body .gform_fields .ginput_container input, form .gform-body .gform_fields .ginput_container .textarea {
  border-radius: 0.5rem;
  border: none;
  color: #676767;
  font-size: 0.8rem;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
}
form .gform-body .gform_fields .ginput_container input:focus, form .gform-body .gform_fields .ginput_container .textarea:focus {
  outline: none !important;
}
body menu {
  font-family: "NohemiExtLt";
}
body menu .logo {
  display: block;
}
body menu .logo img {
  height: 3rem;
}
body menu .row {
  height: 95%;
  align-content: space-between;
  opacity: 0;
  transition: all ease 0.3s;
}
body menu .row .contact a {
  color: #fff;
}
body menu .row nav {
  width: 100%;
  display: block;
  position: relative;
  top: 50%;
}
@media (max-width: 540px) and (min-height: 650px) {
  body menu .row nav {
    top: 65%;
  }
}
body menu .row nav .close-menu {
  cursor: pointer;
  display: block;
}
body menu .row nav .close-menu i {
  margin: 0;
  font-size: 1.25rem;
}
body menu .row nav ul li {
  position: relative;
  margin-bottom: 1rem;
  font-size: 1.9rem;
  transition: all ease 0.3s;
}
body menu .row nav ul li:hover {
  transform: translateY(-5px) !important;
}
body menu .row nav ul li.current-menu-item a.nav-link {
  position: relative;
}
body menu .row nav ul li.current-menu-item a.nav-link::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20%;
  height: 1px;
}
body menu .row nav ul li a.nav-link {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
}
body menu .row nav ul li a.nav-link.dropdown-toggle {
  position: relative;
}
body menu .row nav ul li a.nav-link.dropdown-toggle:after {
  display: none;
}
body menu .row nav ul li a.nav-link:hover {
  color: #c0de6e;
  background: unset;
}
body menu.slide-in {
  position: fixed;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}
body menu.slide-in .backdrop {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: transparent;
  overflow: hidden;
  transition: all ease 0.5s;
  pointer-events: none;
  margin: 0;
}
body menu.slide-in .backdrop .container {
  max-width: 100%;
  position: absolute;
  height: 100vh;
  background-color: #3f3f3d;
  color: #c0de6e;
  z-index: 2;
  transition: all ease 0.5s;
  transform: translateX(100%);
  right: 0;
  top: 0;
}
body menu.slide-in.active {
  pointer-events: all;
}
body menu.slide-in.active .backdrop {
  pointer-events: all;
  z-index: 1;
}
body menu.slide-in.active .container {
  transform: translateX(0);
}
