@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; */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap');
/* font-family: 'Libre Baskerville', serif; */

*{
   margin: 0px;
   padding: 0px;
   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: 2;
      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: 3;
}

.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 */

.main{
   /* border: 1px dotted red; */
   background: url(../images/img/palm_left.png) no-repeat;
   background-size: 17vw 26vw;
   background-position: 0% 33vw;
   width: 100%;
   /* height: 200vh; */
}

/* --------------------- */

.block_1_main{
   /* border: 1px dotted blue; */
   display: flex;
   justify-content: center;
   background: url(../images/img/palm_right.png) no-repeat;
   background-size: 28vw 30vw;
   background-position:100% -6vw;
}

.block_1{
   /* border: 1px dotted red; */
   width: 88%;
   margin-top: 2vw;
   /* height: 85vh; */
   display: flex;
   justify-content: space-between;
   margin-bottom: 4vw;
}

/* ----------------------- */

.block_1_logo{
   /* border: 1px dotted blue; */
   width: 10%;
   height: 100%;
}

.block_logo{
   /* border: 1px dotted red; */
   width: 100%;
   height: 6.5vw;
   background: url(../images/icons/palm_logo.svg)no-repeat;
   background-size: 100% 100%;
}

/* ---------------------------- */

.block_text_carusel_img{
   /* border: 2px dotted red; */
   display: flex;
   justify-content: space-between;
   width: 100%;
   margin-left: 1%;
}

/* ---------------------------- */

.block_1_text{
   /* border: 1px dotted black; */
   width: 42%;
   /* margin-left: 15px; */
}

.block_1_text_h2{
   /* border: 1px dotted red; */
   margin-top: 6.5vw;
   font-size: 1.3vw;
   font-family: 'Libre Baskerville', serif;
}

.block_1_text_h2 h2{
   font-weight: 400;
}

.block_1_text_p{
   /* border: 1px dotted red; */
   margin-top: 1.5vw;
   font-size: 1.1vw;
   color: #707070;
   font-family: 'Inter', sans-serif;
}

.block_1_text_book{
   /* border: 1px dotted red; */
   margin-top: 1.5vw;
}

.block_1_text_book_img{
   /* border: 1px dotted blue; */
   background: url(../images/img/menu_book.png);
   width: 40%;
   height: 15vw;
   background-size: 100% 100%;
}

.block_1_text_button{
   /* border: 1px dotted red; */
   width: 40%;
   margin-top: 1.5vw;
   display: flex;
   justify-content: center;
}

.block_1_text_button button{
   width: 40%;
   height: 2vw;
   font-size: 1vw;
   color: #437B4B;
   border: 1px solid #437B4B;
   border-radius: 3px;
   background-color: white;
   cursor: pointer;
   transition: all 0.7s ease 0s;
}

.block_1_text_button button:hover{
   background-color: #437B4B;
   color: white;
}

/* ---------------------------- */

.block_carusel_amg{
   /* border: 2px dotted blue; */
   display: flex;
   justify-content: space-between;
   width: 60%;
   margin-left: 1%;
}

/* ---------------------------- */

/* ---------------------------- */

.block_1_img_main{
   /* border: 1px dotted blue; */
   width: 70%;
}

.block_1_img{
   /* border: 1px dotted red; */
   margin-top: 6.5vw;
   background: url(../images/img/right_big_photo.png)no-repeat;
   background-size: 100% 100%;
   height: 35vw;
}

/* ----------------------- */

.block_2_main{
   /* border: 1px dotted blue; */
   display: flex;
   justify-content: center;
   margin-bottom: 20px;
}

/* ------------------- */

.block_2{
   /* border: 1px dotted red; */
   width: 88%;
}

/* -------------------- */

.block_2_1{
   border-top: 1.5px solid #D9D9D6;
   border-bottom: 1.5px solid #D9D9D6;
   display: flex;
   align-items: center;
}

.block_2_1_h2{
   width: 35%;
   /* border: 1px dotted red; */
   font-family: 'Libre Baskerville', serif;
   margin-top: 1vw;
   margin-bottom: 1vw;
}

.block_2_1_h2 h2{
   font-weight: 400;
   font-size: 1.9vw;
}

.block_2_1_p_1{
   /* border: 1px dotted red; */
   width: 30%;
   font-family: 'Inter', sans-serif;
   font-weight: 400;
   font-size: 1.1vw;
}

.block_2_1_p_2{
   /* border: 1px dotted red; */
   width: 35%;
   font-family: 'Inter', sans-serif;
   font-weight: 400;
   font-size: 1.1vw;
}

/* ------------------- */

.block_2_2{
   border-bottom: 1.5px solid #D9D9D6;
   display: flex;
   align-items: center;
}

.block_2_2_h2{
   width: 35%;
   /* border: 1px dotted red; */
   font-family: 'Libre Baskerville', serif;
   margin-top: 1vw;
   margin-bottom: 1vw;
}

.block_2_2_h2 h2{
   font-weight: 400;
   font-size: 1.9vw;
}

.block_2_2_p_1{
   /* border: 1px dotted red; */
   width: 65%;
   font-family: 'Inter', sans-serif;
   font-weight: 400;
   font-size: 1.1vw;
}

/* .block_2_2_p_1 ul li{
   margin-left: 30px;
   list-style: url(../images/icons/telephone_icon.svg);
} */

.block_2_2_p_1 ul {
   list-style: none;
   margin-left: 2.3vw;
}

.custom-li {position: relative;}
.custom-li:before {
   content: '';
   background: url(../images/icons/telephone_icon.svg) no-repeat;
   /* margin-left: 30px; */
   position: absolute;
   width: 1.7vw; height: 1.7vw;
   background-size: 1.7vw 1.7vw;
   left: -2.2vw; top: -0.15vw;
}

/* ----------------------- */

.block_2_3{
   display: flex;
   align-items: center;
}

.block_2_3_h2{
   width: 35%;
   /* border: 1px dotted red; */
   font-family: 'Libre Baskerville', serif;
   margin-top: 1vw;
   margin-bottom: 1vw;
}

.block_2_3_h2 h2{
   font-weight: 400;
   font-size: 1.9vw;
}

.block_2_3_p_1{
   /* border: 1px dotted red; */
   width: 65%;
   font-family: 'Inter', sans-serif;
   font-weight: 400;
   font-size: 1.1vw;
}

/* -------------------- */

.block_2_4{
   border-top: 1.5px solid #D9D9D6;
   border-bottom: 1.5px solid #D9D9D6;
   margin-bottom: 5vw;
   display: flex;
   align-items: center;
}

.block_2_4_h2{
   width: 35%;
   /* border: 1px dotted red; */
   font-family: 'Libre Baskerville', serif;
   margin-top: 1vw;
   margin-bottom: 1vw;
}

.block_2_4_h2 h2{
   font-weight: 400;
   font-size: 1.9vw;
}

.block_2_4_p_1{
   /* border: 1px dotted red; */
   width: 65%;
   font-family: 'Inter', sans-serif;
   font-weight: 400;
   font-size: 1.1vw;
}

/* ----------------------- */

.block_3_main{
   display: flex;
   justify-content: center;
}

/* ------------------ */

.block_3{
   /* border: 1px dotted red; */
   width: 88%;
}

/* ------------------------- */

.block_3_h2{
   /* border: 1px dotted blue; */
   font-family: 'Inter', sans-serif;
   font-weight: 400;
   font-size: 1.1vw;
}

.block_3_h2 ul {
   list-style: none;
   margin-left: 2.3vw;
}

.custom-lii {position: relative;}
.custom-lii:before {
   content: '';
   background: url(../images/icons/location_icon.svg) no-repeat;
   /* margin-left: 30px; */
   position: absolute;
   width: 1.7vw; height: 1.7vw;
   background-size: 1.7vw 1.7vw;
   left: -2.2vw; top: -0.15vw;
}

/* ------------------------- */

.block_3_map{
   /* border: 1px dotted blue; */
   margin-top: 1.5vw;
   width: 100%;
   height: 27vw;
}

/* ---------------------- */

.block_4_main{
   display: flex;
   justify-content: center;
}

.block_4{
   /* border: 1px dotted red; */
   width: 88%;
   margin-top: 4vw;
   margin-bottom: 4vw;
}

/* ---------------------------- */

.block_4_h2{
   /* border: 1px dotted blue; */
   display: flex;
   font-family: 'Libre Baskerville', serif;
   justify-content: center;
   align-items: center;
   justify-content: space-between;
}

.block_4_h2 h2{
   font-weight: 400;
   font-size: 2.2vw;
}

.bl_4_hr{
   width: 36%;
   height: 1px;
   background-color: #D9D9D6;
   border: 1px solid #D9D9D6;
}

/* --------------------------- */

.block_4_2{
   /* border: 1px dotted blue; */
   margin-top: 2.5vw;
   width: 100%;
   display: flex;
   justify-content: space-between;
}

/* ------------------------------ */

.block_4_2_1{
   /* border: 1px dotted red; */
   width: 32%;
}

.block_4_2_1_img{
   width: 100%;
   /* border: 1px dotted blue; */
   height: 26vw;
   background: url(../images/img/inner_1.png) no-repeat;
   background-size: 100% 100%;
}

.block_4_2_1_h2{
   margin-top: 1vw;
   font-family: 'Libre Baskerville', serif;
}

.block_4_2_1_h2 h2{
   font-weight: 400;
   font-size: 1.5vw;
}

.block_4_2_1_p{
   margin-top: 0.5vw;
   font-family: 'Inter', sans-serif;
   color: #707070;
}

.block_4_2_1_p p{
   font-weight: 400;
   font-size: 0.9vw;
}

.block_4_2_1_button{
   margin-top: 1vw;
}

.block_4_2_1_button button{
   cursor: pointer;
   border: 1px solid #437B4B;
   background-color: white;
   color: #437B4B;
   font-family: 'Inter', sans-serif;
   font-size: 1vw;
   width: 5.5vw;
   height: 2vw;
   transition: all 0.7s ease 0s;
   border-radius: 3px;
}

.block_4_2_1_button button:hover{
   background-color: #437B4B;
   color: white;
}

/* ------------------------------------- */

.block_4_2_2{
   /* border: 1px dotted red; */
   width: 32%;
}

.block_4_2_2_img{
   width: 100%;
   /* border: 1px dotted blue; */
   height: 26vw;
   background: url(../images/img/inner_2.png) no-repeat;
   background-size: 100% 100%;
}

.block_4_2_2_h2{
   margin-top: 1vw;
   font-family: 'Libre Baskerville', serif;
}

.block_4_2_2_h2 h2{
   font-weight: 400;
   font-size: 1.5vw;
}

.block_4_2_2_p{
   margin-top: 0.5vw;
   font-family: 'Inter', sans-serif;
   color: #707070;
}

.block_4_2_2_p p{
   font-weight: 400;
   font-size: 0.9vw;
}

.block_4_2_2_button{
   margin-top: 1vw;
}

.block_4_2_2_button button{
   cursor: pointer;
   border: 1px solid #437B4B;
   background-color: white;
   color: #437B4B;
   font-family: 'Inter', sans-serif;
   font-size: 1vw;
   width: 5.5vw;
   height: 2vw;
   transition: all 0.7s ease 0s;
   border-radius: 3px;
}

.block_4_2_2_button button:hover{
   background-color: #437B4B;
   color: white;
}

/* ------------------------------------------ */

.block_4_2_3{
   /* border: 1px dotted red; */
   width: 32%;
}

.block_4_2_3_img{
   width: 100%;
   /* border: 1px dotted blue; */
   height: 26vw;
   background: url(../images/img/inner_3.png) no-repeat;
   background-size: 100% 100%;
}

.block_4_2_3_h2{
   margin-top: 1vw;
   font-family: 'Libre Baskerville', serif;
}

.block_4_2_3_h2 h2{
   font-weight: 400;
   font-size: 1.5vw;
}

.block_4_2_3_p{
   margin-top: 0.5vw;
   font-family: 'Inter', sans-serif;
   color: #707070;
}

.block_4_2_3_p p{
   font-weight: 400;
   font-size: 0.9vw;
}

.block_4_2_3_button{
   margin-top: 1vw;
}

.block_4_2_3_button button{
   cursor: pointer;
   border: 1px solid #437B4B;
   background-color: white;
   color: #437B4B;
   font-family: 'Inter', sans-serif;
   font-size: 1vw;
   width: 5.5vw;
   height: 2vw;
   transition: all 0.7s ease 0s;
   border-radius: 3px;
}

.block_4_2_3_button button:hover{
   background-color: #437B4B;
   color: white;
}

/* ------------------------- */
/* 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;
}

.rest_indi_block {
   display: flex;
   justify-content: center;
   padding: 40px 0px 40px 0px;
}

.rest_block {
   width: 90%;
   display: flex;
}

.rest_block_left_side {
   width: 50%;
}

.rest_title {
   margin-bottom: 20px;
}

.rest_title h1 {
   font-family: 'Libre Baskerville', serif;
}

.rest_desc {
   width: 80%;
   margin-bottom: 40px;
}

.rest_desc p {
   font-family: 'Inter', sans-serif;
}

.rest_menu_button button {
   width: 100px;
   height: 40px;
   border: 1px solid #437B4B;
   background: none;
   cursor: pointer;
}

.rest_block_right_side {
   width: 50%;
}

.slide img {
   width: 65% !important;
   margin: 0 auto;
}

/* ------------------------- */
/* MOBILE FOOTER */
/* ------------------------- */

@media screen and (max-width: 768px) {

   .middle_footer {
      text-align: center;
      flex-direction: column;
   }

   .middle_section:not(:last-child) {
      margin-bottom: 40px;
   }

   .rest_block {
      flex-direction: column-reverse;
   }

   .rest_block_left_side {
      width: 100%;
   }

   .rest_block_right_side {
      width: 100%;
      height: 500px;
   }

   .rest_title {
      text-align: center;
   }

   .rest_title h1 {
      font-size: 20px;
   }

   .rest_desc {
      width: 100%;
      text-align: center;
      border: 1px dotted red;
   }

   .rest_desc p {
      font-size: 12px;
   }

   .rest_menu_wrapper {
      border: 1px dotted red;
   }

   .rest_menu {
      display: flex;
      justify-content: center;
      border: 1px dotted black;
   }

   .rest_menu img {
      width: 40%;
   }

   .rest_menu_button {
      display: flex;
      justify-content: center;
   }
}

/* ------------------------- */