@charset "UTF-8";
:root {
  --eggplant: #54214d;
  --secondary-eggplant-tint: #8f4f87;
  --secondary-eggplant: #dcbfd8;
  --green: #12877a;
  --beige: #f7f5f0;
  --blue: #ccebff;
  --purple: #d6dbfb;
  --light-purple: #f5f6fe;
  --light-blue: #e6f7ff;
  --light-pink: #fbf0fa;
  --secondary-green: #a0ede2;
  --light-green: #dffffa;
  --light-beige: #fcfbfa;
  --primary-beige: #f7f5f0;
}

@font-face {
  font-family: "polin";
  src: url("../../fonts/Polin-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "polin";
  src: url("../../fonts/Polin-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "polin";
  src: url("../../fonts/Polin-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "w4-icons";
  src: url("../../fonts/icomoon.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
.view-desktop {
  display: block;
}
.view-mobile {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .view-desktop {
    display: none;
  }
  .view-mobile {
    display: block;
  }
}

body {
  margin: 0;
  font-family: "polin", sans-serif;
  font-weight: 400;
  color: var(--eggplant);
}

section {
  padding: 0 5rem;
  box-sizing: border-box;
}

.basic-grid {
  width: 100%;
  max-width: 144rem;
  margin: auto;
}
.basic-grid.narrow {
  max-width: 107rem;
}
@media only screen and (max-width: 1023px) {
  .basic-grid {
    max-width: 100%;
    padding: 0 2rem;
    box-sizing: border-box;
  }
}

.btn-primary {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 2.4rem */
  color: white;
  background: var(--green);
  padding: 1rem 3.8rem;
  border-radius: 5rem;
  text-decoration: none;
  transition: 0.3s all;
  display: inline-block;
}
.btn-primary:hover {
  background: #46d1bd;
}

.btn-secondary {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 2.4rem */
  color: var(--eggplant);
  border: 1px solid var(--eggplant);
  text-decoration: none;
  padding: 1rem 3.8rem;
  border-radius: 5rem;
  display: inline-block;
  align-self: flex-start;
  transition: 0.3s all;
}
.btn-secondary:hover {
  background: #8f4f87;
  color: white;
  border-color: #8f4f87;
}

.white-text {
  color: white;
}

.headline-1 {
  font-family: "polin", sans-serif;
  font-size: 5.8rem;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 6.38rem */
  white-space: pre-line;
}
.headline-1.light {
  font-weight: 300;
}
.headline-1 strong {
  font-weight: 600;
}

.headline-2 {
  font-family: "polin", sans-serif;
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 4.55rem */
  white-space: pre-line;
}

.headline-3 {
  font-family: "polin", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 3rem */
  white-space: pre-line;
}

.papragraph-main,
p,
ul,
ol {
  font-family: "polin", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 2.4rem */
}

.caption {
  border-radius: 5.5rem;
  border-width: 0.25rem;
  border-style: solid;
  padding: 1rem 2rem;
  width: fit-content;
  margin-top: 0;
}
.caption.transparent {
  border-color: var(--eggplant);
}
.caption.solid {
  background: var(--Primary-Eggplant, #54214d);
  color: white;
  border-width: 0;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: grey;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000;
}

form {
  display: grid;
  width: 100%;
  grid-template-rows: repeat(4, 4.8rem);
  gap: 2.1rem;
}
form .wpcf7-form-control-wrap {
  position: relative;
}
form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  position: absolute;
  left: 1rem;
  top: 1rem;
  user-select: none;
  font-size: 1.3rem;
}
form input:not([type=checkbox]),
form textarea {
  line-height: 4.8rem;
  width: 100%;
  padding: 0 2rem;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  border-radius: 0.8rem;
  border: none;
  direction: rtl !important;
}
form input:not([type=checkbox])#email:not(:placeholder-shown), form input:not([type=checkbox])#phone:not(:placeholder-shown),
form textarea#email:not(:placeholder-shown),
form textarea#phone:not(:placeholder-shown) {
  direction: ltr;
}
form input:not([type=checkbox])#email:not(:placeholder-shown) + .wpcf7-not-valid-tip, form input:not([type=checkbox])#phone:not(:placeholder-shown) + .wpcf7-not-valid-tip,
form textarea#email:not(:placeholder-shown) + .wpcf7-not-valid-tip,
form textarea#phone:not(:placeholder-shown) + .wpcf7-not-valid-tip {
  left: auto;
  right: 1rem;
}
form input:not([type=checkbox])[type=submit],
form textarea[type=submit] {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  color: white;
  background: var(--green);
  padding: 1rem 3.8rem;
  border-radius: 5rem;
  text-decoration: none;
  display: inline-block;
  width: auto;
  transition: 0.3s all;
}
form input:not([type=checkbox])[type=submit]:hover,
form textarea[type=submit]:hover {
  background: #46d1bd;
}
form textarea {
  height: 16rem;
}
form input[type=checkbox] {
  opacity: 0;
  visibility: hidden;
}
form input[type=checkbox]:checked + span:before {
  background-color: var(--green) !important;
}
form input[type=checkbox] + span {
  color: white;
  font-size: 1.6rem;
  display: flex;
  align-items: flex-start;
}
form input[type=checkbox] + span:before {
  margin-left: 1rem;
  width: 2.1rem;
  height: 2.1rem;
  display: block;
  content: "";
  background-color: white !important;
  border-radius: 0.2rem;
  background: url("../../assets/check.svg") no-repeat center center;
  background-size: 1.2rem;
  transition: 0.3s background-color;
}
form input[type=checkbox] + span a {
  color: white;
}
form .submit-con {
  display: flex;
  justify-content: flex-end;
}
form .submit-con .wpcf7-spinner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--green) url(../../assets/loader.svg) center no-repeat !important;
  z-index: 1;
  opacity: 1;
  border-radius: 5rem;
  margin: 0;
}
form .respons-wrapper {
  display: flex;
  justify-content: flex-start;
  flex-grow: 1;
  align-items: center;
}
form .respons-wrapper .wpcf7-response-output {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  color: white !important;
  font-size: 1.4rem !important;
}
@media only screen and (max-width: 1023px) {
  form input[type=checkbox] + span {
    font-size: 1.3rem;
    align-items: center;
  }
}

button {
  border: none;
}

.testimonials-area {
  padding: 13rem 0;
  background: var(--eggplant);
  color: var(--beige);
  padding: 7rem 0;
}
.testimonials-area .tests-splide {
  padding: 7rem 0;
}
.testimonials-area .testemonial-item.is-next .test-inner, .testimonials-area .testemonial-item.is-prev .test-inner {
  opacity: 0.6;
}
.testimonials-area .testemonial-item.is-active .test-inner {
  scale: 1;
  opacity: 1;
}
.testimonials-area .test-inner {
  border-radius: 0.8rem;
  border: 2px solid var(--beige);
  width: 40rem;
  height: 30rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  scale: 0.9;
  opacity: 0.3;
  transition: 0.3s all;
}
.testimonials-area .test-inner p.quote {
  position: relative;
  padding-top: 4rem;
  flex-grow: 1;
}
.testimonials-area .test-inner p.quote::before {
  content: "”";
  font-size: 14rem;
  line-height: 0;
  vertical-align: top;
  margin-right: 0.5rem;
  color: var(--beige);
  position: absolute;
  right: -1rem;
}
.testimonials-area .test-inner .persons-details {
  grid-template-columns: auto;
}
.testimonials-area .test-inner .persons-details.with-image {
  grid-template-columns: 6rem auto auto;
}
.testimonials-area .test-inner .persons-details.with-image .name,
.testimonials-area .test-inner .persons-details.with-image .role {
  margin: 0 1.5rem 0 0;
}
.testimonials-area .test-inner .persons-details .companys-logo-con {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.testimonials-area .test-inner .persons-details .companys-logo-con img {
  max-height: 3rem;
  width: auto;
}
.testimonials-area .test-inner .name-and-role {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.testimonials-area .test-inner .name,
.testimonials-area .test-inner .role {
  grid-column: 2/3;
  margin: 0;
  display: flex;
  align-items: flex-end;
  font-size: 1.6rem;
  font-style: normal;
  line-height: 150%; /* 2.4rem */
}
.testimonials-area .test-inner .name {
  font-weight: 600;
}
.testimonials-area .test-inner .role {
  font-weight: 400;
}
.testimonials-area .test-inner .photo-con {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 2rem;
}
.testimonials-area .test-inner .photo-con img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials-area .splide__arrow--prev {
  height: 100%;
  right: 0;
  width: 50%;
  border-radius: 0;
  opacity: 0 !important;
}
.testimonials-area .splide__arrow--next {
  height: 100%;
  left: 0;
  width: 50%;
  border-radius: 0;
  opacity: 0 !important;
}
.testimonials-area .special-cursor-mover {
  position: absolute;
  width: 4.5rem;
  height: 4.5rem;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  transition: 0.1s all;
  z-index: 9999;
}
.testimonials-area .special-cursor-mover .special-cursor-rotator {
  scale: 0.3;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s transform, 0.5s scale, 0.2s opacity;
  background: url(../../assets/up-arrow.svg) no-repeat center/contain;
}

.contact-area {
  padding: 13rem 0;
  background: var(--eggplant);
}
.contact-area h2 {
  color: white;
  margin: 0;
}
.contact-area .text-side {
  flex: 0 0 50%;
}
.contact-area .form-side {
  flex: 0 0 50%;
}
@media only screen and (max-width: 1023px) {
  .contact-area {
    padding: 4rem 0;
  }
}

.title-text-cta-image-component.short-hero,
section.short-hero {
  background: var(--eggplant);
  height: 70vh;
  margin-top: 6rem;
}
.title-text-cta-image-component img,
section img {
  width: 100%;
  height: auto;
}
.title-text-cta-image-component.two-columns:not(:has(.basic-grid)),
.title-text-cta-image-component.two-columns .basic-grid,
section.two-columns:not(:has(.basic-grid)),
section.two-columns .basic-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  height: 100%;
  gap: 14rem;
}
.title-text-cta-image-component.two-columns:not(:has(.basic-grid)) div:first-child,
.title-text-cta-image-component.two-columns .basic-grid div:first-child,
section.two-columns:not(:has(.basic-grid)) div:first-child,
section.two-columns .basic-grid div:first-child {
  order: 2;
}
.title-text-cta-image-component.two-columns:not(:has(.basic-grid)) .title,
.title-text-cta-image-component.two-columns .basic-grid .title,
section.two-columns:not(:has(.basic-grid)) .title,
section.two-columns .basic-grid .title {
  margin-bottom: 0;
}
.title-text-cta-image-component.two-columns:not(:has(.basic-grid)) .btn,
.title-text-cta-image-component.two-columns .basic-grid .btn,
section.two-columns:not(:has(.basic-grid)) .btn,
section.two-columns .basic-grid .btn {
  margin-top: 2rem;
}

.filters {
  margin: 8rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.filters .filter {
  font-size: 2rem;
  padding: 1rem 3rem;
  background-color: transparent;
  border: 0.1rem solid var(--eggplant);
  border-radius: 5rem;
  transition: 0.3s all;
  white-space: normal;
}
.filters button.filter:hover, .filters button.filter.active {
  background-color: var(--eggplant);
  color: white;
  cursor: pointer;
}
@media only screen and (max-width: 1023px) {
  .filters {
    margin: 4rem 0;
  }
  .filters .filter {
    font-size: 1.4rem;
    padding: 0.5rem 2rem;
  }
}

.loader-area {
  display: none;
  align-items: center;
  justify-content: center;
  margin: 20rem 0;
}
.loader-area img {
  width: 6rem;
  height: 6rem;
}
.loader-area.show {
  display: flex;
}
@media only screen and (max-width: 1023px) {
  .loader-area {
    margin: 10rem 0;
  }
}

.appear-animation {
  transform: translate(0px, 100px);
  opacity: 0;
}

.load-animation {
  opacity: 0;
  animation: load-animation 0.5s;
  animation-fill-mode: forwards;
}

@keyframes load-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .headline-1 {
    font-size: 3.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    white-space: normal;
  }
  .headline-2 {
    font-size: 2.7rem;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    white-space: normal;
  }
  .headline-3 {
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    white-space: normal;
  }
  .papragraph-main,
  p,
  ul,
  ol {
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    white-space: normal;
  }
  .btn-primary {
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    padding: 1.3rem 3.8rem;
  }
  section.testimonials-area {
    padding-bottom: 4rem !important;
    transform: translate3d(0, 0, 0);
    display: block !important;
  }
  section.testimonials-area .test-inner {
    width: 80vw;
    max-width: 40rem;
    height: auto;
  }
  section.testimonials-area .test-inner p.quote::before {
    font-size: 11rem;
  }
  section.testimonials-area .test-inner .persons-details.with-image {
    grid-template-columns: 6rem auto;
  }
  section.testimonials-area .test-inner .persons-details .companys-logo-con {
    justify-content: flex-start;
    padding-top: 2rem;
  }
  section.testimonials-area .tests-splide {
    display: flex;
    flex-direction: column-reverse;
    padding: 0;
  }
  section.testimonials-area .splide__arrows {
    display: flex;
    justify-content: center;
    gap: 2.8rem;
    padding-top: 2rem;
  }
  section.testimonials-area .splide__arrow {
    opacity: 1 !important;
    transform: none !important;
    height: 3.5rem;
    width: 3.5rem;
    border-radius: 50%;
    border: 1px solid #8f4f86;
    background: transparent !important;
    position: static;
  }
  section.testimonials-area .splide__arrow svg path {
    stroke: #8f4f86;
    fill: #8f4f86;
  }
  section.contact-area {
    display: block !important;
  }
  section.contact-area .basic-grid {
    display: block;
    padding: 0 2rem;
    box-sizing: border-box;
  }
  section.contact-area .basic-grid h2 {
    text-align: center;
    margin-bottom: 4rem;
  }
  section.contact-area .basic-grid .submit-con {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
  }
  section.contact-area .basic-grid .submit-con .respons-wrapper {
    margin-bottom: 1.5rem;
  }
}
@media only screen and (min-width: 1921px) {
  html {
    font-size: 12px;
  }
}
@media only screen and (min-width: 1701px) {
  html {
    font-size: 10px;
  }
}
@media only screen and (min-width: 1521px) and (max-width: 1700px) {
  html {
    font-size: 9px;
  }
}
@media only screen and (min-width: 1432px) and (max-width: 1520px) {
  html {
    font-size: 8px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1431px) {
  html {
    font-size: 7px;
  }
}
@media only screen and (max-width: 1023px) {
  html {
    font-size: 10px;
  }
}
/*mobile devices*/
@media only screen and (min-width: 1024px) {
  #mobile-menu-btn {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  #mobile-menu-btn {
    width: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    height: 3rem;
  }
  .kav {
    height: 2px;
    width: 27px;
    background-color: #54214D;
    transition: 0.3s all;
    display: block;
  }
  .kav-1 {
    transform: translateY(-9px);
  }
  .kav-3 {
    transform: translateY(9px);
  }
  .menu-opened .kav-1 {
    transform: translateY(2px) rotate(45deg);
  }
  .menu-opened .kav-3 {
    transform: translateY(-2px) rotate(-45deg);
  }
  .menu-opened .kav-2 {
    opacity: 0;
  }
  header .h-third:first-child {
    position: absolute;
    z-index: 10000000000000000;
  }
  .social-menu {
    position: absolute;
    top: 24px;
    left: 14rem;
  }
  .main-nav {
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100%;
    transition: 0.5s all ease-in-out;
    background: rgba(46, 66, 213, 0.5);
    backdrop-filter: blur(3px);
  }
  .menu-opened .main-nav {
    left: 0;
  }
  .main-nav > div, .main-nav > ul {
    height: 100%;
  }
  .main-nav ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .main-nav ul li {
    margin: 2rem 0 !important;
  }
}
.main-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  padding: 2.2rem 0;
  background: white;
  z-index: 99999999;
}
.main-header .mobile-header-strip {
  display: none;
}
.main-header .header-container {
  display: grid;
  grid-template-columns: 1fr 15rem 1fr;
  height: 4.4rem;
  align-items: center;
}
.main-header .header-container .logo-wrapper a {
  display: block;
}
.main-header .header-container .logo-wrapper a img {
  width: 100%;
  height: auto;
}
.main-header .header-container .main-menu-wrapper li {
  position: relative;
}
.main-header .header-container .main-menu-wrapper li.menu-item-has-children a {
  margin-left: 0.4rem;
  cursor: pointer;
}
.main-header .header-container .main-menu-wrapper li.menu-item-has-children:after {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  border-left: 1px solid var(--eggplant);
  border-bottom: 1px solid var(--eggplant);
  transform: rotate(-45deg) translateY(-0.4rem);
  transition: 0.3s all ease-in-out;
}
.main-header .header-container .main-menu-wrapper li.active:after {
  transform: rotate(135deg) translateY(0.4rem);
}
.main-header .header-container .main-menu-wrapper li.active .sub-menu-container {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.main-header .header-container .main-menu-wrapper li.active .blackish {
  opacity: 1;
  pointer-events: all;
}
.main-header .header-container .main-menu-wrapper li .blackish {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s all ease-in-out;
}
.main-header .header-container .main-menu-wrapper .sub-menu-container {
  position: absolute;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.4);
  background: white;
  padding: 6rem;
  border-radius: 1rem;
  top: 5rem;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s all ease-in-out;
  transform: translateY(-100%);
}
.main-header .header-container .main-menu-wrapper .sub-menu-container.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.main-header .header-container .main-menu-wrapper .sub-menu-container h2 {
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 4.55rem */
  color: #dcbfd8;
  margin: 0;
}
.main-header .header-container .main-menu-wrapper ul.sub-menu {
  column-count: 2;
  column-gap: 14rem;
  padding-top: 1rem;
}
.main-header .header-container .main-menu-wrapper ul.sub-menu li {
  margin: 1rem 0;
}
.main-header .header-container .main-menu-wrapper ul.sub-menu li:first-child {
  margin-top: 0;
}
.main-header .header-container .main-menu-wrapper ul.sub-menu li:nth-child(6n+1) a:before {
  background: var(--purple);
}
.main-header .header-container .main-menu-wrapper ul.sub-menu li:nth-child(6n+2) a:before {
  background: var(--blue);
}
.main-header .header-container .main-menu-wrapper ul.sub-menu li:nth-child(6n+3) a:before {
  background: var(--beige);
}
.main-header .header-container .main-menu-wrapper ul.sub-menu li:nth-child(6n+4) a:before {
  background: var(--secondary-eggplant);
}
.main-header .header-container .main-menu-wrapper ul.sub-menu li:nth-child(6n+5) a:before {
  background: var(--secondary-green);
}
.main-header .header-container .main-menu-wrapper ul.sub-menu li:nth-child(6n+6) a:before {
  background: #fbf0fa;
}
.main-header .header-container .main-menu-wrapper ul.sub-menu a {
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 3rem */
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.main-header .header-container .main-menu-wrapper ul.sub-menu a:before {
  content: "";
  flex: 0 0 1.3rem;
  height: 1.3rem;
  display: block;
  background: red;
  border-radius: 50%;
  margin-left: 1rem;
}
.main-header .header-container .main-menu-wrapper ul:not(.sub-menu) {
  display: flex;
  gap: 6rem;
}
.main-header .header-container .main-menu-wrapper ul:not(.sub-menu) a {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  text-decoration: none;
  color: var(--eggplant);
}
.main-header .second-menu-wrapper {
  display: flex;
  justify-content: flex-end;
}
.main-header .second-menu-wrapper ul {
  display: flex;
  gap: 1.7rem;
}
.main-header .second-menu-wrapper ul li:first-child a {
  color: var(--green);
  background: white;
}
.main-header .second-menu-wrapper ul a {
  border: 1.5px solid var(--green);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  color: white;
  background: var(--green);
  padding: 1rem 3.8rem;
  border-radius: 5rem;
  text-decoration: none;
  display: block;
  box-sizing: border-box;
  transition: 0.3s all;
  white-space: nowrap;
}
.main-header .second-menu-wrapper ul a:hover {
  background: #46d1bd !important;
  border-color: #46d1bd !important;
  color: white !important;
}
@media screen and (max-width: 1023px) {
  .main-header {
    padding: 0;
  }
  .main-header:before {
    content: "";
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    transition: 0.5s all ease-in-out;
    opacity: 0;
    pointer-events: none;
  }
  .main-header.menu-opened:before {
    opacity: 1;
    pointer-events: all;
  }
  .main-header.menu-opened .mobile-header-strip {
    box-shadow: inset 0 -8px 8px -8px rgba(0, 0, 0, 0.2);
  }
  .main-header.menu-opened .header-container {
    transform: translateY(0);
  }
  .main-header .mobile-header-strip {
    display: flex;
    border-bottom: 1.5px solid #f5f7f9;
    transition: 0.5s all ease-in-out;
    background: white;
    height: 100%;
    position: relative;
    width: 100%;
    z-index: 99999999;
    padding: 3rem 2rem;
    box-sizing: border-box;
    align-items: center;
  }
  .main-header .header-container {
    transform: translateY(-110vh);
    transition: 0.5s all ease-in-out;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
    background: white;
    padding: 4rem 2rem;
    box-sizing: border-box;
    border-radius: 0 0 1rem 1rem;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.4);
    max-height: 100vh;
    overflow: auto;
  }
  .main-header .header-container .logo-wrapper {
    display: none;
  }
  .main-header .header-container .logo-wrapper a {
    height: 100%;
  }
  .main-header .header-container .logo-wrapper a img {
    height: 100%;
    width: auto;
  }
  .main-header .header-container .main-menu-wrapper {
    grid-row: 2/3;
    grid-column: 1/3;
    padding: 3.5rem 0;
  }
  .main-header .header-container .main-menu-wrapper .sub-menu-container {
    position: static;
    transform: none;
    opacity: 1;
    padding: 0;
    box-shadow: none;
    overflow: hidden;
  }
  .main-header .header-container .main-menu-wrapper .sub-menu-container ul.sub-menu {
    column-count: 1;
  }
  .main-header .header-container .main-menu-wrapper .sub-menu-container ul.sub-menu li {
    border: none;
  }
  .main-header .header-container .main-menu-wrapper .sub-menu-container ul.sub-menu a {
    padding: 0.8rem 0;
  }
  .main-header .header-container .main-menu-wrapper .sub-menu-container h2 {
    display: none;
  }
  .main-header .header-container .second-menu-wrapper {
    grid-row: 3/4;
    grid-column: 1/3;
    justify-content: center;
  }
  .main-header .header-container .main-menu-wrapper ul {
    display: block !important;
  }
  .main-header .header-container .main-menu-wrapper ul li {
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-bottom: solid 1px #f5f7f9;
  }
  .main-header .header-container .main-menu-wrapper ul li.menu-item-has-children {
    display: grid !important;
    align-items: center;
    grid-template-columns: 90% 10%;
  }
  .main-header .header-container .main-menu-wrapper ul li.menu-item-has-children .blackish {
    display: none;
  }
  .main-header .header-container .main-menu-wrapper ul li.menu-item-has-children:after {
    grid-column: 2/3;
    grid-row: 1/2;
    justify-self: flex-end;
  }
  .main-header .header-container .main-menu-wrapper ul li.menu-item-has-children .sub-menu-container {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease-out;
  }
  .main-header .header-container .main-menu-wrapper ul li.menu-item-has-children .sub-menu-container .sub-menu {
    overflow: hidden !important;
  }
  .main-header .header-container .main-menu-wrapper ul li.menu-item-has-children.active .sub-menu-container {
    grid-template-rows: 1fr;
    overflow: visible;
  }
  .main-header .header-container .main-menu-wrapper ul a {
    display: inline-block;
    padding: 3.5rem 0;
    font-size: 1.7rem !important;
    box-sizing: border-box;
    font-style: normal;
    font-weight: 500;
    width: 100%;
    line-height: 150%;
  }
}

footer {
  background: var(--eggplant);
  color: white;
}
footer .footer-content {
  border-top: 1px solid white;
  padding: 6.6rem 0 7.5rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
}
footer .bottom-legal-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
footer .bottom-legal-wrapper ul {
  display: flex;
  gap: 4.1rem;
}
footer .bottom-legal-wrapper ul a {
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 1.68rem */
}
footer .menu-level-0 {
  margin-bottom: 4.6rem;
}
footer .social-menu-wrapper {
  margin-bottom: 1.7rem;
}
footer .social-menu-wrapper ul {
  display: flex;
  gap: 1.5rem;
}
footer .social-menu-wrapper a {
  font-size: 2rem;
  font-family: w4-icons;
}
footer .copyright,
footer .copyright a {
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin: 0;
}
footer a {
  color: white;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 2.4rem */
  text-decoration: none;
}
footer .menus-side {
  display: flex;
  justify-content: flex-end;
  gap: 7.5rem;
}
footer .menus-side h2 {
  margin: 0 0 1.1rem 0;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 2.4rem */
}
footer .menus-side li {
  margin: 0 0 1.1rem 0;
}
@media screen and (max-width: 1023px) {
  footer {
    padding: 0 2rem;
  }
  footer .right-side {
    grid-row: 3/4;
    margin-bottom: 2rem;
  }
  footer .social-menu-wrapper {
    margin-bottom: 0;
  }
  footer .footer-content {
    gap: 2rem;
    padding-top: 0;
  }
  footer .footer-bottom-right {
    grid-column: 1/2;
    grid-row: 4/5;
  }
  footer .menus-side {
    gap: 2rem;
    padding-top: 5rem;
    display: grid;
    grid-column: 1/3;
    grid-row: 2/3;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 2rem;
  }
  footer .menus-side > div:nth-child(1) {
    order: 3;
  }
  footer .menus-side > div:nth-child(2) {
    justify-self: start;
  }
  footer .menus-side > div:nth-child(3) {
    order: 2;
  }
  footer .menus-side a {
    color: #dcbfd8;
  }
  footer .copyright {
    color: #dcbfd8;
  }
  footer .bottom-legal-wrapper {
    grid-column: 1/4;
    grid-row: 7/4;
    justify-content: flex-start;
    height: fit-content;
    margin-top: 4rem;
  }
  footer .bottom-legal-wrapper ul {
    align-items: flex-start;
  }
  footer .bottom-legal-wrapper ul a {
    color: #dcbfd8;
    text-decoration: underline;
  }
}/*# sourceMappingURL=theme-style.css.map */