@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* font-family: 'Inter', sans-serif; */

*{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

/* ------------------------- */
/* HEADER */
/* ------------------------- */

.main_header_wrapper {
   display: flex;
   justify-content: center;
   padding-top: 0.6%;
}

.main_header {
   width: 96%;
   display: flex;
}

.header_left {
   width: 20%;
}

.header_middle {
   width: 60%;
   display: flex;
   justify-content: center;
   align-items: center;
}

.header_middle ul li {
   display: inline-block;
   list-style: none;
   color: rgba(217, 217, 217, 1);
   font-family: 'Alike', serif;
}

.header_middle ul li:not(:last-child) {
   margin-right: 10px;
}

.header_middle ul li a {
   font-size: 14px;
   color: rgba(74, 74, 74, 1);
   text-decoration: none;
   transition: all 0.3s ease 0s;
}

.header_middle ul li a:hover {
   color: #437B4B;
}

.header_right {
   width: 20%;
   display: flex;
   justify-content: end;
   align-items: center;
   position: relative;
}

.header_right p {
   font-size: 14px;
   font-family: 'Inter', sans-serif;
   color: rgba(74, 74, 74, 1);
   cursor: pointer;
}

.header_right img {
   width: 13px;
   height: fit-content;
}

.lang_selector {
   position: absolute;
   top: 50px;
   right: 47px;
   display: none;
   /* bottom: 0; */
}

.lang_selector li {
   font-size: 14px;
   font-family: 'Inter', sans-serif;
}

.lang_selector li a {
   color: rgba(74, 74, 74, 1);
}

.lang_selector li:not(:last-child) {
   margin-bottom: 10px;
}

.header_right ul li {
   list-style: none;
}

.header_right ul li a {
   text-decoration: none;
}

/* ------------------------- */
/* MOBILE HEADER */
/* ------------------------- */

.mobile_header_wrapper {
   display: none;
}

.mobile_header {
   display: flex;
   justify-content: space-between;
   padding: 0px 10px 0px 10px;
}

.mob_logo img {
   width: 100px;
}

/* @media screen and (min-width: 768px) {
   .mobile_header_wrapper {
      display: none;
   }
} */

@media screen and (max-width: 768px) {
   nav nav {
      display: inline;
   }

   .main_header_wrapper {
      display: none;
   }

   .mobile_header_wrapper {
      display: block;
      padding-top: 0.6%;
   }
}

.menu__box {
   display: flex;
   flex-direction: row;
   list-style-type: none;
}

@media screen and (max-width: 768px) {
   .menu__box {
      flex-direction: column;
      position: fixed;
      visibility: hidden;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      margin: -600px 0 0 0;
      padding: 0.6em 0;
      text-align: center;
      background-color: #a9b6c9;
      box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
      z-index: 1;
      transition-duration: 0.5s;
   }
}

.green {
   color: #437B4B;
}

.menu__item {
   display: flex;
   flex-direction: column;
   padding: 0 1em 0 1.9em;
   color: #ffffff;
   font-family: sans-serif;
   font-size: 14px;
   font-weight: 400;
   text-decoration: none;
   text-transform: uppercase;
}

@media screen and (max-width: 768px) {
   .menu__item {
      display: block;
      padding: 12px 24px;
      color: #ffffff;
      font-size: 18px;
      transition-duration: 0.5s;
   }

   .menu__item:hover {
      background-color: rgba(74, 74, 74, 1);
   }

   .menu__item img {
      width: 150px;
   }
}

#menu__toggle {
   opacity: 0;
}

#menu__toggle:checked~.menu__btn>span {
   transform: rotate(45deg);
}

#menu__toggle:checked~.menu__btn>span::before {
   top: 0;
   transform: rotate(0);
   background: #437B4B;
}

#menu__toggle:checked~.menu__btn>span::after {
   top: 0;
   transform: rotate(90deg);
   background: #437B4B;
}

#menu__toggle:checked~.menu__box {
   visibility: visible;
   left: 0;
   margin: 0;
}

.menu__btn {
   transition-duration: 0.25s;
   box-sizing: border-box;
   display: flex;
   align-items: center;
   position: relative;
   bottom: 2px;
   width: 26px;
   height: 26px;
   cursor: pointer;
   z-index: 2;
}

.menu__btn span {
   display: inline-block;
   position: absolute;
   width: 100%;
   height: 3px;
   background-color: rgba(0, 0, 0, 1);
}

.menu__btn span::before {
   display: inline-block;
   position: absolute;
   width: 100%;
   height: 3px;
   background-color: rgba(0, 0, 0, 1);
   content: '';
   top: -8px;
   transition-duration: 0.25s;
}

.menu__btn span::after {
   display: inline-block;
   position: absolute;
   width: 100%;
   height: 3px;
   background-color: rgba(0, 0, 0, 1);
   content: '';
   top: 8px;
   transition-duration: 0.25s;
}

@media screen and (min-width: 768px) {
   .menu__btn {
      display: none;
   }
}

/* PREVIEW SECTION */

.block_1{
   /* border: 1px dotted red; */
   width: 100%;
   height: 29vw;
}

.block_1_image{
   width: 100%;
   height: 100%;
   /* border: 1px dotted blue; */
   background: url(../img/cover_v2.jpg) no-repeat;
   /* background-size: 100% 100%; */
   background-size: cover;
}

/* ------------ */

.block_2{
   /* border: 1px dotted red; */
   display: flex;
   flex-direction: column;
   align-items: center;
}

.block_2_h1{
   /* border: 1px dotted blue; */
   margin-top: 3vw;
   color: #161616;
   font-size: 1.5vw;
}

.block_2_h1 h1{
   font-weight: 100;
}

.block_2_p{
   /* border: 1px dotted blue; */
   margin-top: 2vw;
   text-align: center;
   width: 75%;
   color: #707070;
   font-size: 1.2vw;
   line-height: 2vw;
   font-family: 'Inter', sans-serif;
}

/* -------------------------------- */

.block_3_main{
   display: flex;
   justify-content: center;
   margin-top: 3vw;
}

.block_3{
   /* border: 1px dotted red; */
   display: flex;
   width: 75%;
   justify-content: space-between;
}

.block_3_left{
   /* border: 1px dotted blue; */
   width: 48%;
   height: 23vw;
   background: url(../img/spa_img.png) no-repeat;
   background-size: cover;
}

.block_3_right{
   /* border: 1px dotted blue; */
   width: 50%;
}

/* -------------------------------- */

.block_4_main{
   display: flex;
   justify-content: center;
   margin-top: 3vw;
   padding-bottom: 4vw;
}

.block_4{
   /* border: 1px dotted red; */
   display: flex;
   width: 75%;
   justify-content: space-between;
}

.block_4_right{
   /* border: 1px dotted blue; */
   width: 48%;
   height: 23vw;
   background: url(../img/fitness_img.png) no-repeat;
   background-size: 100% 100%;
}

.block_4_left{
   /* border: 1px dotted blue; */
   width: 50%;
}

.block_4_left_h2{
   /* border: 1px dotted red; */
   margin-top: 1vw;
}

.block_4_left_h2 h2{
   font-weight: 100;
   font-size: 2.5vw;
}

.block_4_left_p{
   /* border: 1px dotted red; */
   margin-top: 1vw;
   font-family: 'Inter', sans-serif;
   font-size: 1vw;
   line-height: 1.6vw;
   color: #707070;
}

.block_4_left_button{
   /* border: 1px dotted red; */
   font-family: 'Inter', sans-serif;
   margin-top: 3vw;
}

.block_4_left_button button{
   font-family: 'Inter', sans-serif;
   width: 8vw;
   height: 2.6vw;
   color: #437B4B;
   font-weight: normal;
   font-size: 1.2vw;
   background-color: #ffffff;
   border-radius: 10px;
   border: 1px solid #437B4B;
   cursor: pointer;
   transition: all 0.7s ease 0s;
}

.block_4_left_button button:hover{
   background-color: #437B4B;
   color: white;
}

/* ------------------------- */

.block_5_main{
   display: flex;
   justify-content: center;
}

.block_5{
   /* border: 1px dotted red; */
   margin-top: 3vw;
   width: 88%;
   height: 48.5vw;
   display: flex;
   justify-content: center;
   margin-bottom: 3vw;
}

.block_5 video{
   width: 100%;
   height: 100%;
}

/* ------------------------- */
/* FOOTER */
/* ------------------------- */

.main_footer_wrapper {
   display: flex;
   justify-content: center;
}

.main_footer {
   width: 90%;
}

.upper_footer {
   display: flex;
   justify-content: center;
   padding: 40px 0px 40px 0px;
}

.middle_footer {
   display: flex;
   justify-content: space-between;
   margin-bottom: 40px;
}

.footer_main_link {
   margin-bottom: 14px;
}

.footer_main_link a {
   color: black;
   font-weight: 600;
   font-family: 'Inter', sans-serif;
   text-decoration: none;
}

.middle_section ul li {
   list-style: none;
}

.middle_section ul li:not(:last-child) {
   margin-bottom: 14px;
}

.middle_section ul li a {
   color: #4A4A4A;
   font-size: 12px;
   font-family: 'Inter', sans-serif;
   text-decoration: none;
}

.lower_media_footer {
   text-align: center;
   margin-bottom: 40px;
}

.lower_media_footer p {
   font-family: 'Alike', serif;
   margin-bottom: 20px;
}

.media_section {
   display: flex;
   justify-content: center;
   align-items: center;
}

.media_section ul li {
   display: inline-block;
   list-style: none;
}

.media_section ul li:not(:last-child) {
   margin-right: 20px;
}

.lower_footer_wrapper {
   display: flex;
   justify-content: center;
}

.lower_footer {
   width: 90%;
   text-align: center;
   border-top: 1px solid #D9D9D9;
   padding: 20px 0px 20px 0px;
}

.lower_footer p {
   font-size: 16px;
   color: #B4B4B4;
   font-family: 'Inter', sans-serif;
}

/* ------------------------- */
/* MOBILE FOOTER */
/* ------------------------- */

@media screen and (max-width: 768px) {

   .middle_footer {
      text-align: center;
      flex-direction: column;
   }

   .middle_section:not(:last-child) {
      margin-bottom: 40px;
   }
}

/* ------------------------- */