@import url('grid.css');
@import url('https://fonts.googleapis.com/css2?family=Exo:wght@200;300;400;500;600;700;800;900&display=swap');

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
  scroll-behavior: smooth;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

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

a {
  text-decoration: none;
}

* {
  outline: 0 !important;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}


article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary,
picture {
  display: block;
}

textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}


:root {
  --primary-white: #FDFEFE;
  --primary-green: #06AB83;
  --secondary-green: #008D65;
  --primary-black: #01110D;
}


html,
body {
  font-family: 'Exo', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
  color: var(--primary-black);
}

@font-face {
  font-family: 'FuturaNew';
  src: local('Futura New Book Reg'), 
      local('Futura-New-Book-Reg'),
      url('../fonts/FuturaNewBook-Reg.woff2') format('woff2'),
      url('../fonts/FuturaNewBook-Reg.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'FuturaNew';
  src: local('Futura New Medium Reg'), 
      local('Futura-New-Medium-Reg'),
      url('../fonts/FuturaNewMedium-Reg.woff2') format('woff2'),
      url('../fonts/FuturaNewMedium-Reg.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

strong {
  font-weight: 500;
}

.main-wrap {
	position: relative;
	z-index: 0;
}

.section-wrapper {
  position: relative;
  overflow: hidden;
}

.logo-element {
  max-width: 100px;
}

.section-wrapper.wrapper-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding-top: 37px;
}

.site-navigation-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.site-navigation {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.site-navigation-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

}

.header-inner-wrap .site-navigation-menu-list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 77px;
  padding: 15.5px 18px;
  border-radius: 24px;
  border: 1px solid var(--primary-green);
  background: rgba(255, 255, 255, 0.30);
}

.site-navigation li {
  margin-left: 15px;
  margin-right: 15px;
}

.site-navigation li a {
  font-size: 1em;
  font-weight: 300;
  color: var(--primary-black);
  letter-spacing: 2.56px;
  text-transform: uppercase;
}

body:not(.menu-is-active) .wrapper-header .current-menu-item > a,
body:not(.menu-is-active) .wrapper-footer .current-menu-item > a,
.site-navigation li a:hover {
  color: var(--primary-green) !important;
}

.menu-is-active .wrapper-header .current-menu-item > a {
  font-weight: 700;
}

.button-element {
  position: relative;
  display: inline-block;
  color: var(--primary-white);
  text-align: center;
  font-size: 1em;
  line-height: 1em;
  font-weight: 500;
  text-transform: uppercase;
  padding: 1.25em 1.8em;
  background-color: var(--primary-green);
  border: 1px solid var(--primary-green);
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.button-element,
.button-element:before {
  border-radius: 50px !important;
}

input.button-element,
button.button-element {
  font-family: 'FuturaNew';
  font-weight: 500;
  border: 0;
  cursor: pointer;
}

.button-element:hover {
  background-color: var(--secondary-green);
}

.button-outline {
  color: #000;
  background-color: transparent;;
  border-color: #000;
}

.button-outline:hover {
  background-color: transparent;
  border-color: transparent;
}

.button-outline-white {
  color: #fff;
  background-color: transparent;;
  border-color: #fff;
}

.button-outline-white:hover {
  background-color: transparent;
  border-color: transparent;
}

.button-outline,
.button-outline-white {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.button-outline:hover:before,
.button-outline-white:hover:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  margin: -1px;
}

.button-outline:hover:before {
  border: 2px solid var(--primary-black);
}

.button-outline-white:hover:before {
  border: 2px solid var(--primary-white);
}

.button-element-white {
  color: var(--primary-green);
  background-color: var(--primary-white);
}

.button-element-white:hover {
  color: var(--primary-white);
    background-color: var(--secondary-green);
}

.intro-banner-area {
  position: relative;
  overflow: hidden;
  height: 790px;
}

.banner-fit {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
     z-index: -1;
}

.intro-banner-area:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10%;
  width: 100%;
  height: 170px;
  background: -o-linear-gradient(bottom, #FFF 45.24%, rgba(255, 255, 255, 0.00) 100%);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(45.24%, #FFF), to(rgba(255, 255, 255, 0.00)));
  background: linear-gradient(0deg, #FFF 45.24%, rgba(255, 255, 255, 0.00) 100%);
}

.section-wrapper.intro-banner-area {
  padding-top: 275px;
}

.intro-banner-content-wrap {
  font-size: 117px;
  max-width: 100%;
}

.intro-banner__h1 {
  color: var(--primary-black);
  font-size: 1.5rem;
  line-height: 1.25em;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.intro-banner__title {
    font-size: .95em;
    line-height: 1em;
    font-weight: 300;
    text-transform: uppercase;
}

.intro-banner__subtitle {
    color: var(--primary-black);
    font-size: 2rem;
    line-height: 1.25em;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.intro-banner__subtitle {
  color: var(--primary-black);
  font-size: 0.21367521367521367em;
  line-height: 1.25em;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.intro-banner__text {
  max-width: 85%;
  color: var(--primary-black);
  font-size: 0.15384615384615385em;
  line-height: 125%;
  font-weight: 300;
  margin-top: 20px;
}



.menu-hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 2px solid var(--primary-green);
  border-radius: 100%;
  position: relative;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
      transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.menu-hamburger span {
  display: block;
  position: absolute;
  width: 19px;
  height: 2px;
  background: var(--primary-green);
  border-radius: 9px;
  opacity: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 13px auto;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
      transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

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

.menu-hamburger span:nth-child(2) {
  top: 6px;
}

.menu-hamburger span:nth-child(3) {
  top: 12px;
}

.menu-hamburger.open {
  border-color: #fff;
}

.menu-hamburger.open span {
  background-color: #fff;
}

.menu-hamburger.open span:nth-child(1) {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
      transform: rotate(135deg);
}

.menu-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.menu-hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
      transform: rotate(-135deg);
}

.menu-hamburger.open span:nth-child(3),
.menu-hamburger.open span:nth-child(1) {
  top: 6px;
}

.section-wrapper.wrapper-aboutUs {
  padding: 76px 0;
}

.aboutUs-content-ceo-image {
  max-width: 360px;
}

.aboutUs-slider-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: .66fr 1fr;
  grid-template-columns: .66fr 1fr;
}

.aboutUs-slider-wrap__descr-wrap {
  -ms-grid-row-span: 2;
  grid-row-end: span 2;
}

.aboutUs-slider-wrap__descr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  min-height: 600px;
  padding: 40px;
  -o-border-image: url("data:image/svg+xml,%3Csvg width='460' height='597' viewBox='0 0 460 597' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 90C0 40.2944 40.2944 0 90 0H370C419.706 0 460 40.2944 460 90V468.317C460 513.376 426.677 551.491 382.022 557.51L102.022 595.249C48.0275 602.527 0 560.538 0 506.056V90Z' fill='%2306AB83'/%3E%3C/svg%3E%0A") 0 / auto / 0 0 stretch;
  border-image: url("data:image/svg+xml,%3Csvg width='460' height='597' viewBox='0 0 460 597' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 90C0 40.2944 40.2944 0 90 0H370C419.706 0 460 40.2944 460 90V468.317C460 513.376 426.677 551.491 382.022 557.51L102.022 595.249C48.0275 602.527 0 560.538 0 506.056V90Z' fill='%2306AB83'/%3E%3C/svg%3E%0A") 0 fill / auto / 0 0 stretch;
}

.aboutUs-slider-wrap__descr-inner {
  max-width: 338px;
}

.aboutUs-slider-wrap__content {
  -ms-grid-row-span: 3;
  grid-row-start: span 3;
}

.about-detail-text * {
  line-height: 150%;
}

.aboutUs-slider-wrap__descr__title {
  color: var(--primary-white);
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 125%;
  margin-bottom: 1.2em;
}

.aboutUs-slider-wrap__descr__text {
  color: var(--primary-white);
  font-size: 20px;
  font-weight: 300;
  line-height: 125%;
  text-transform: uppercase;
}

.aboutUs-slider-wrap__inner {
  padding-left: 45px;
}

.aboutUs-text {
  margin-top: 69px;
}

.aboutUs-text-black > * {
  color: #000;
}

.aboutUs-text-black.content-box__contents:before {
  background-color: var(--primary-green);
}

.text-formating {
  font-size: 1.125em;
  line-height: 125%;
}

.text-formating>* {
  margin-bottom: 25px;
}

.text-formating ol {
  list-style: decimal;
}

.text-formating ul {
  list-style: disc;
}

.slider-arr-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.aboutUs-arrows .slider-arr-wrap {
  padding-left: 39px;
}

.slider-arr-element {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 8px;
  margin-right: 33px;
  border: 1px solid var(--primary-green);
  background: rgba(6, 171, 131, 0.20);
}

.slider-arr-element svg {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}

.slider-arrPrev-element.slider-arr-element>* {
  left: -100%;
}

.slider-arr-element svg,
.slider-arr-element svg path {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/*.slider-arr-element:hover svg>path:nth-child(2n) {
  opacity: 0;
}*/

.slider-arrPrev-element.slider-arr-element:hover svg {
  -webkit-transform: translateX(-9%);
      -ms-transform: translateX(-9%);
          transform: translateX(-9%);
}

.slider-arrNext-element.slider-arr-element:hover svg {
  -webkit-transform: translateX(9%);
      -ms-transform: translateX(9%);
          transform: translateX(9%);
}

.slider-arrPrev-element.slider-arr-element>* {
  right: -100%;
}

.slide-content {
	z-index: 10;
  overflow: hidden;
  height: 0;
  opacity: 0;
  -webkit-transition: 
  height 0.6s ease-in-out, 
  opacity 0.6s ease-in-out;
  -o-transition: 
  height 0.6s ease-in-out, 
  opacity 0.6s ease-in-out;
  transition: 
  height 0.6s ease-in-out, 
  opacity 0.6s ease-in-out;
}

.slide-content.visible {
  height: auto;
  opacity: 1;
}

.green-bg {
  background-color: var(--primary-green);
}

.skewed-bg {
  padding: 285px 0 180px;
  -webkit-clip-path: 
  polygon(
    0 calc(0% + 180px), 100% 0, 
    100% calc(100% - 180px), 0% 100%);
          clip-path: 
  polygon(
    0 calc(0% + 180px), 100% 0, 
    100% calc(100% - 180px), 0% 100%);
}

.content-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  border-radius: 29px;
  border: 1px solid rgba(255,255,255, .75);
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
  margin-bottom: 40px;
}

.content-box:hover {
  border-color: white;
}

.content-box__icon {
   position: relative;
   margin-top: -21%;
   display: inline-block;
   max-width: 136px;
   height: 165px;
   padding: 10px;
   background-color: var(--primary-green);
   margin-bottom: 15px;
}

.content-box__contents {
  position: relative;
  color: var(--primary-white);
}

.cb-wIcon .content-box__contents {
    max-width: 154px;
  padding-bottom: 40px;
}

.content-box__contents:before {
  content: '';
  position: absolute;
  left: -40px;
  top: -32px;
  z-index: 1;
  opacity: 0.1;
  width: 92px;
  height: 92px;
  border-radius: 100%;
  background-color: var(--primary-white);
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

.content-box.cb-wIcon:hover .content-box__contents:before {
  width: 100px;
  height: 100px;
}

.content-box__contents-title {
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.content-box__contents-text {
  min-height: 90px;
  font-weight: 400;
  line-height: 134%;
}

.content-boxes .content-box__contents-text {
  font-size: 18px;
  line-height: 125%;
}

.content-box__contents-more {
  color: var(--primary-white);
  font-weight: 500;
  line-height: 169.6%; 
  -webkit-text-decoration-line: underline; 
          text-decoration-line: underline;
}

.sticky-boxes {
  position: sticky;
  top: 100px;
}

.site-category-boxes .swiper-wrapper {
  padding-top: 48px;
  margin-top: -48px;
}

.content-box__contents-inner {
  min-height: 160px;
}

.aboutUs-ceo-image {
  position: relative;
}

.ch-pattern {
  max-width: initial;
  width: 150%;
  position: absolute;
  left: -25%;
  right: -25%;
  bottom: -30%;
}

.wrapper-clinic .ch-pattern-2 {
  position: absolute;
  top: -45%;
  left: -15%;
  right: -25%;
  width: 150%;
}

.aboutUs-ceo-wrap {
  padding-top: 50px;
}

.large-heading {
  color: var(--primary-white);
  font-size: 48px;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 56px;
}

.subheading-text {
  color: var(--primary-white);
  font-size: 24px;
  font-weight: 300;
  line-height: 126.5%;
  margin-bottom: 54px;
}

.sm-bottom-space {
  margin-bottom: 25px;
}

.heading-black {
  color: #000;
}

.aboutUs-cb-boxed {
  max-width: 225px;
}

.content-box-item {
  margin-bottom: 70px;
}

.content-boxes {
  padding-top: 30px;
  padding-left: 30px;
}

.section-wrapper.wrapper-reviews {
  padding: 70px 0 0;
}

.review-gallery-grid {
  margin-left: -20px;
  margin-right: -20px;
}

.review-gallery-grid__item {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 10px;
}

.review-gallery-grid {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.review-gallery-grid__item {
  margin: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr auto;
  grid-template-rows: 1fr auto;
  margin-bottom: 10px;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}

.review-gallery-grid__item > img {
  grid-row: 1 / -1;
  -ms-grid-column: 1;
  grid-column: 1;
}

.disabled-btn {
  opacity: .5;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.aboutUs-content-section {
  padding-top: 120px;
}

.pd-offset-left {
  padding-left: 30px;
}

.boxed-heading {
  max-width: 400px;
}

.wrapper-clinic {
  padding-top: 240px;
  padding-bottom: 255px;
}

.clinic-ceo-image {
  position: relative;
  z-index: -1;
}

.clinic-ceo-image > * {
  width: 515px;
  max-width: initial;
}

.clinic-content-boxes {
  padding-top: 15px;
}

.checkbox-element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;

  color: var(--primary-white);
  font-size: 16px;
  font-weight: 300;
  line-height: 126.5%;
  margin-bottom: 24px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-element strong {
  font-weight: 700;
}

.checkbox-element input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-element .checkmark {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 15px;
  border-radius: 8px;
  border: 1px solid var(--primary-white);
}

.checkbox-element:hover input ~ .checkmark {
 background-color: rgba(255,255,255, .15);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-element input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-element .checkmark:after {
  width: 10px;
  height: 20px;
  border: solid white;
  border-width: 0 4px 4px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.services-checkboxes-row {
  padding-right: 50px;
}

.services-checkboxes-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 15px;
}

.show-result-button {
  max-width: 200px;
  width: 100%;
}

.service-quiz-form {
  padding-top: 50px;
}

.form-privacy-text {
  font-family: 'FuturaNew';
  max-width: 285px;
  color: var(--primary-white, #FDFEFE);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 126.5%;
  padding-left: 24px;
}

.form-privacy-text a {
  color: white;
  text-decoration: underline;
}

.form-privacy-text a:hover {
  text-decoration: none;
}

.service-white-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 240px;
  height: 212px;
  margin-top: 17px;
  margin-top: 17px;
  margin-bottom: 17px;
  border-radius: 40px;
  background: var(--primary-white);

  color: var(--primary-green);
  text-align: center;
  font-weight: 500;
  line-height: 130%;
  text-transform: uppercase;
}

.service-white-box-img {
  max-width: 86px;
}

.service-white-box > span {
  max-width: 140px;
}

.wrapper-blog-section {
  padding: 70px 0 0;
}

.post-box-item {
  display: block;
  margin-bottom: 65px;
}

.post-box-item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-items-wrap {
  padding-top: 15px;
  padding-right: 85px;
}

.post-box-item__image {
  position: relative;
  width: 202px;
  height: 194px;
  overflow: hidden;
  border-radius: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 1px solid rgba(231, 231, 231, 0.80);
}

.post-box-item__image > * {
  width: 100%;
  height: 100%;
}

.post-box-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.post-box-item__content {
  padding-left: 24px;
}

.post-box-item__content-heading {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;

  color: var(--primary-black);
  font-size: 18px;
  font-weight: 700;
  line-height: 126.5%;
  margin-bottom: 35px;
}

.post-box-item__content-text {
  color: var(--primary-black);
-webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
  font-size: 18px;
  font-weight: 300;
  line-height: 126.5%;
}

.post-box-item-white .post-box-item__content-heading,
.post-box-item-white .post-box-item__content-text {
  color: var(--primary-white);
}

.post-box-item__more {
  margin-top: 20px;
} 

.wrapper-contactUs {
  position: relative;
  padding-bottom: 47px;
}

.section-wrapper.wrapper-contactUs .contactUs-bg {
  padding-top: 170px;
  padding-bottom: 290px;
}

.fit-section-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  z-index: -1;
}

.wrapper-contactUs:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70%;
  z-index: -1;
  background-color: var(--primary-green);
}

.contactUs-form-wrap {
  max-width: 701px;
  width: 100%;
  border-radius: 30px;
  background: #FFF;
  padding: 75px;
}

.contactUs-form-wrap .large-heading {
  margin-bottom: 38px;
}

.contactUs-form-text {
  color: var(--primary-black);
  margin-bottom: 40px;
}

.form-input-element {
  margin-bottom: 18px;
}

.form-input-element > * {
  width: 100%;
}

.form-input-element input,
.form-input-element textarea {
  font-family: 'FuturaNew';
  width: 100%;
  font-weight: 500;
  font-size: 1em;
  line-height: 1.5em;
  color: #000;
  text-align: center;
  padding: 18px 23px;
  border-radius: 30px;
  border: 1px solid var(--primary-black);
}

.form-input-element textarea {
  padding-top: 63px;
  padding-bottom: 63px;
  resize: vertical;
  height: 176px;
}

.form-input-element input::-webkit-input-placeholder,
.form-input-element textarea::-webkit-input-placeholder {
  color: #000;
}

.form-input-element input::-moz-placeholder,
.form-input-element textarea::-moz-placeholder {
  color: #000;
}

.form-input-element input:-ms-input-placeholder,
.form-input-element textarea:-ms-input-placeholder {
  color: #000;
}

.form-input-element input:-moz-placeholder,
.form-input-element textarea:-moz-placeholder {
  color: #000;
}

form .wpcf7-response-output {display: none !important;}

form[data-status="invalid"] .wpcf7-response-output {
  font-size: 17px;
  color: #d96060;
}

.form-input-element .wpcf7-not-valid-tip {
    display: block;
    text-align: center;
    padding: 6px 0 0;
    font-size: 15px;
}

.contactUs-form .form-input-element .wpcf7-form-control.wpcf7-not-valid {
  border-color: red !important;
}

.contactUs-submit {
  width: 100%;
  margin-top: 14px;
}

.form-success-msg {
  margin-top: 15px;
  color: var(--primary-black);
  font-size: 24px;
  font-weight: 300;
  line-height: 126.5%;
}

.form-success-msg  .wpcf7-response-output {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

.form-success-msg-consent {
  font-family: 'FuturaNew';
  font-size: 12px;
  font-weight: 400;
  line-height: 126.5%;
  margin-top: 15px;
}

.form-success-msg-consent a {
  color: var(--primary-black);
  text-decoration: underline;
}

.wrapper-footer {
  position: relative;
  z-index: 1;
  margin-top: -160px;
}

.footer-inner {
  padding: 50px 54px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.70);
  -webkit-backdrop-filter: blur(22px);
          backdrop-filter: blur(22px);
}

.footer-navigation-wrap {
  max-width: 570px;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-left: 15px;
  padding-right: 15px;
}

.footer-navigation-add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 12px;
  padding-left: 15px;
  padding-top: 24px;
}

.footer-navigation-add > * {
  padding-right: 5px;
}

.footer-navigation-add a {
  color: var(--primary-black);
  font-size: 12px;
  font-weight: 400;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.footer-navigation-add a:hover {
  text-decoration: none;
}

.footer-copyirght {
  color: var(--primary-green);
}

.hidden-modal {
  display: none;
}

.modal-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    opacity: 1;
    background: rgba(24, 24, 27, 0.92);
    animation: all .15s ease-in-out;
}

.modal-loader .fancybox__spinner svg circle {
  stroke: white;
}

.fancybox__container .fancybox__slide:not(.has-image) .fancybox__content {
  /*max-width: 1135px;
  width: 100%;*/
  padding-top: 50px;
  padding-bottom: 50px;
  border-radius: 30px;
  background: #FFF;
}

.fancybox__container .fancybox__content>.carousel__button.is-close {
  top: 20px;
  right: 20px;
}

.fancybox__container .fancybox__content>.carousel__button.is-close svg {
  -webkit-filter: none;
          filter: none;
}

.fancybox__container .fancybox__content>.carousel__button.is-close svg path {
  stroke: #000;
}

.post-box-detail .post-box-item__image {
  width: 100%;
  height: 462px;
}

.post-box-item.post-box-modal-detail {
  max-width: 1135px;
  width: 100%;
}

.post-box-item.post-box-modal-detail 
.post-box-item__image {
  max-width: 345px;
  width: 100%;
  height: 322px;
}

.post-box-item.post-box-modal-detail 
.post-box-item__content {
  padding-left: 56px;
}

.post-box-item-contents {
  line-height: 150%;
}

.post-box-item-contents h1 {
  color: var(--primary-green);
  font-size: 48px;
  font-weight: 300;
  line-height: 126.5%;
  text-transform: uppercase;
}

.post-box-item-contents strong {
  font-weight: 500;
}

.post-box-item-contents h2,
.post-box-item-contents h3,
.post-box-item-contents h4,
.post-box-item-contents h4,
.post-box-item-contents h5,
.post-box-item-contents h6 {
  font-weight: 400;
  line-height: 125%;
  text-transform: uppercase;
}

.post-box-item-contents h1 {
    color: var(--primary-green);
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    text-transform: capitalize;
}
.post-box-item-contents h2 {
    font-size: 1.65em !important;
    text-transform: capitalize;
    color: var(--primary-green);
    font-weight: 700;
}
.post-box-item-contents h3 {
    font-size: 1.25em !important;
    text-transform: capitalize;
    color: var(--primary-green);
	font-weight: 600;
}
.post-box-item-contents a {
    text-decoration: underline;
    color: var(--primary-green);
}
.post-box-item-contents ul,
.post-box-item-contents ol {
    padding-left: 30px;
}
.post-box-item-contents li {
    padding-left: 10px;
    text-indent: 0px;
}
.post-box-item-contents  {
    line-height: 170% !important;
    font-size: 17px;
}


.page-inner {
  padding-top: 200px;
}

.page-inner > .skewed-bg:last-child {
  margin-bottom: -10%;
}

.naturopathy-img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 70px;
}

.naturopathy-img__text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--primary-green);
  text-align: center;
  font-size: 90px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin: -50px 0 0px;
}

.naturopathy-img__text:after {
  content: '';
  position: absolute;
  top: -85%;
  right: 0;
  width: 116px;
  height: 73px;
   background: url(../images/text-leaft-obj.png) no-repeat;
     background-size: contain;
}

.naturopathy-img .button-element {
  position: relative;
  margin-top: 40px;
  margin-bottom: -100px;
}

.contact-map-frame {
  position: relative;
  overflow: hidden;
  height: 364px;
  border-radius: 40px;
}

.contact-map-frame > * {
  width: 100%;
  height: 100%;
}

.contact-info-box  {
   margin-bottom: 24px;
}

.contact-info-box__label {
  display: block;
     color: var(--primary-black);
  font-size: 16px;
  font-weight: 400;
     line-height: 125%;
  opacity: .4;
  margin-bottom: 8px;
}

.contact-info-box > *:not(.contact-info-box__label) {
  display: block;
     color: var(--primary-black);
  font-size: 24px;
  font-weight: 300;
     line-height: 125%;
}

.contact-info-box > a:hover {
  color: var(--primary-green);
}

.socials-link-item {
  display: inline-block;
  margin-right: 12px;
}

.page-title {
  margin-bottom: 45px;
} 

.result-form-modal-msg {
  max-width: 640px;
  font-size: 22px;
  font-weight: 300;
  line-height: 126%;
  text-transform: uppercase;
  padding: 20px 40px;
}

.form-modal-result-txt {
  width: 100%;
  display: block;
  border-bottom: 1px solid var(--primary-black);
  padding-bottom: 5px;
  margin: 18px 0;
}

.contact-consult-inner {
  max-width: 560px;
}

.contact-consult-inner .form-success-msg-consent {
  text-align: center;
}

.contact-consult-inner .form-success-msg {
  display: none !important;
}

.contact-consult-inner .wpcf7-response-output {
  margin-top: 0 !important;
  text-align: center;
} 

.modal-box {display: none;}


#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fdfcff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

#preloader.fade-out {
  opacity: 0;
}

#preloader-video { 
  max-width: 50%;
  max-height: 50%;
  object-fit: contain;
}

.wpcf7-spinner {display: block; margin: 5px auto;}