@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: marquisette;
  src: url(/marquisette.d7cde8e2.ttf);
}
@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.45rem));
  }
}
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes dash2 {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes scroll-watcher {
  to {
    scale: 1 1;
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
html {
  scroll-behavior: smooth;
}

body::-webkit-scrollbar {
  display: none;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
body::-webkit-scrollbar {
  display: none;
}
body .main_menu {
  width: 100%;
  height: 100dvh;
  background-color: #006A5F;
  position: absolute;
  top: -100%;
  color: white;
  display: grid;
  place-items: center;
  z-index: 11;
}
body .main_menu .close_menu {
  width: 40px;
  position: absolute;
  right: 5%;
  top: 5%;
  transform: translate(-5%, -5%);
  cursor: pointer;
}
body .main_menu .close_menu img {
  width: 100%;
}
body .main_menu .toggle_menu {
  width: min(60em, 60%);
}
body .main_menu .toggle_menu ul {
  list-style-type: none;
  padding-left: 0;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-family: marquisette;
}
body .main_menu .toggle_menu ul li {
  cursor: pointer;
  width: fit-content;
  border-bottom: 1px white solid;
}
body .main_menu .toggle_menu ul li:hover {
  color: #f8f489;
}
body .main_menu .toggle_menu .contact_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .main_menu .toggle_menu .contact_info a {
  color: white;
}
body .main_menu .toggle_menu .contact_info a:hover {
  color: #f8f489;
}
body .main_menu .toggle_menu .contact_info .social_media {
  width: 20%;
}
body .main_menu .toggle_menu .contact_info .social_media ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
body .main_menu .toggle_menu .contact_info .social_media ul li {
  width: 30px;
}
body .main_menu .toggle_menu .contact_info .social_media ul li img {
  width: 100%;
}
body .main_menu .toggle_menu .contact_info .menu_logo {
  width: 60px;
}
body .main_menu .toggle_menu .contact_info .menu_logo img {
  width: 100%;
}
body .splash_screen {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  overflow: hidden;
}
body .splash_screen .splash_element {
  width: inherit;
  height: inherit;
  background-color: #006A5F;
  position: absolute;
  top: -100%;
  display: grid;
  place-items: center;
}
body .splash_screen .splash_element img {
  width: min(150px, 15%);
  opacity: 0;
  transform: translateY(50px);
}
body .scroll-watcher {
  height: 5px;
  position: fixed;
  top: 0;
  z-index: 1000;
  background-color: #006A5F;
  width: 100%;
  scale: 0 1;
  transform-origin: left;
  animation: scroll-watcher linear;
  animation-timeline: scroll();
}
body .contact_overlay {
  width: 60%;
  height: 60dvh;
  background-image: linear-gradient(to top, black 10%, rgba(22, 22, 22, 0.918));
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: grid;
  place-items: center;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
body .contact_overlay .close_button {
  width: max(2rem, 1%);
  position: absolute;
  top: 2%;
  right: 5%;
  transform: translate(-5%, -2%);
  padding-top: 50px;
  cursor: pointer;
}
body .contact_overlay .close_button img {
  width: 100%;
}
body .contact_overlay .loader {
  width: 48px;
  height: 48px;
  border: 5px solid #FFF;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body .contact_overlay .contact_submit {
  width: min(800px, 80%);
  height: 500px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  display: none;
}
body .contact_overlay .contact_submit .img {
  width: 20%;
  height: inherit;
  background: url(/contact_banner.d2eb2c5e.webp);
  background-size: cover;
  display: none;
}
body .contact_overlay .contact_submit .content {
  display: grid;
  place-items: center;
  width: 65%;
  margin: 0 50px;
}
body .contact_overlay .contact_submit .content .content_container .flexbox {
  display: flex;
  align-items: center;
}
body .contact_overlay .contact_submit .content .content_container .flexbox .check_mark {
  width: 40px;
  margin-right: 10px;
}
body .contact_overlay .contact_submit .content .content_container .flexbox .check_mark img {
  width: 100%;
}
body .contact_overlay .contact_submit .content .content_container h1 {
  font-family: marquisette;
  color: #006A5F;
}
body .contact_overlay .contact_submit .content .content_container h2 {
  font-size: clamp(0.9rem, 2vw, 1.5rem);
}
body .contact_overlay .contact_submit .content .content_container h3 {
  font-weight: 300;
}
body .contact_overlay .contact_submit .content .content_container button {
  padding: 15px 30px;
  background: #006A5F;
  border: 2px solid #006A5F;
  font-weight: bold;
  color: white;
  margin-top: 15px;
  cursor: pointer;
}
body .gallery {
  width: 100%;
  height: 100dvh;
  background-image: linear-gradient(to top, black 10%, rgba(22, 22, 22, 0.918));
  position: fixed;
  top: 0;
  z-index: 10;
  color: white;
  display: none;
}
body .gallery .close_button {
  width: max(2rem, 1%);
  position: absolute;
  right: 5%;
  transform: translate(-5%);
  padding-top: 50px;
  cursor: pointer;
}
body .gallery .close_button img {
  width: 100%;
}
body .gallery .arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translate(-50%);
}
body .gallery .arrow .img_index {
  width: 100px;
  display: grid;
  place-items: center;
}
body .gallery .arrow img {
  width: 30px;
  cursor: pointer;
}
body .gallery .arrow img:nth-child(3) {
  transform: rotate(180deg);
}
body .gallery .image_holder {
  width: 85%;
  height: 80dvh;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
}
body .gallery .image_holder img {
  width: 100%;
  height: inherit;
  object-fit: contain;
}
body .whatsapp {
  position: fixed;
  width: 100px;
  right: 3%;
  bottom: 5%;
  transform: translate(-3%, -5%);
  z-index: 9;
  cursor: pointer;
  transition: 0.5s;
  display: none;
}
body .whatsapp img {
  width: 60%;
}
body .whatsapp span {
  position: absolute;
  width: max-content;
  right: 45%;
  top: 50%;
  transform: translate(-45%, -50%);
  background-color: white;
  padding: 10px;
  opacity: 0;
  transition: 0.5s;
}
body .whatsapp:hover span {
  opacity: 1;
}
body .privacy_policy {
  display: grid;
  place-items: center;
  background-image: linear-gradient(to top, black 10%, rgba(22, 22, 22, 0.918));
  width: 100%;
  height: 100dvh;
  position: fixed;
  z-index: 11;
  color: white;
}
body .privacy_policy .policy {
  width: 70%;
  line-height: 1.7;
  height: 80dvh;
  overflow-y: auto;
  padding: 50px;
}
body .privacy_policy .privacy_close_button {
  position: absolute;
  top: 5%;
  right: 5%;
  transform: translate(-5%, -5%);
  width: 40px;
  cursor: pointer;
}
body .privacy_policy .privacy_close_button img {
  width: 100%;
}
body .main_container {
  width: 100%;
  background-color: #FFFEF8;
}
body .main_container .container {
  width: 96%;
  margin: auto;
}
body .main_container .container .nav_bar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  padding-top: 4rem;
}
body .main_container .container .nav_bar .logo {
  opacity: 0;
  transform: translateY(30px);
}
body .main_container .container .nav_bar .site_name {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}
body .main_container .container .nav_bar .site_name .site_name_text {
  font-size: 1.5rem;
  line-height: 70%;
  color: #006A5F;
  font-family: marquisette;
}
body .main_container .container .nav_bar .menu {
  opacity: 0;
  transform: translateY(30px);
  cursor: pointer;
}
body .main_container .container .nav_bar .menu .bar1 {
  width: 35px;
  height: 3px;
  background-color: #006A5F;
  margin: 6px 0;
}
body .main_container .container .nav_bar .menu .bar2 {
  width: 35px;
  height: 3px;
  background-color: #006A5F;
  margin: 6px 0;
}
body .main_container .container .header {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
  text-align: center;
  margin-top: 5rem;
  margin-bottom: 6rem;
  font-family: marquisette;
  color: #006A5F;
}
body .main_container .container .header .header_text1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  width: 100%;
  height: max(100px, 15vh);
  margin-bottom: 1rem;
  line-height: 1;
  position: relative;
}
body .main_container .container .header .header_text1 .header_line_one,
body .main_container .container .header .header_text1 .header_line_two {
  width: 100%;
  opacity: 0;
  left: 50%;
  transform: translate(-50%, 30%);
  position: absolute;
}
body .main_container .container .header .header_text2 {
  font-size: clamp(0.8rem, 2vw, 1.4rem);
  transform: translateY(30px);
  opacity: 0;
}
body .main_container .container .banner_container {
  width: 100%;
  height: 90dvh;
  overflow: hidden;
  opacity: 0;
}
body .main_container .container .banner_container .banner {
  width: inherit;
  height: inherit;
  background-image: url(https://images.unsplash.com/photo-1581596326467-be575967dbfa?q=80&w=2187&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
body .main_container .container .banner_container .banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
body .main_container .container .caption {
  padding-top: 10rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
  text-align: center;
  opacity: 0;
  font-weight: 500;
}
body .main_container .container .caption .caption_text {
  width: min(55rem, 90%);
  margin: 0 auto;
  font-size: clamp(0.2rem, 5vw, 1.29rem);
  line-height: 2;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(50px);
  transition: 0.8s ease-out;
}
body .main_container .container .caption .caption_button {
  margin-bottom: 5rem;
  width: 100%;
}
body .main_container .container .caption .caption_button .svg_image {
  position: relative;
  transition: 0.5s;
}
body .main_container .container .caption .caption_button .svg_image svg {
  width: min(600px, 70%);
  height: auto;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  cursor: pointer;
}
body .main_container .container .caption .caption_button .svg_image .svg_text {
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
  font-family: marquisette;
  color: #006A5F;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body .main_container .container .caption .caption_button .svg_image:hover {
  transform: scale(1.1);
}
body .main_container .corousel {
  width: 100%;
  height: 45vh;
  margin-top: 15rem;
  overflow: hidden;
}
body .main_container .corousel .corousel_trey {
  width: max-content;
  height: 45vh;
  display: flex;
  gap: 0.5rem;
  animation: scroll 95s linear infinite;
  -webkit-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
}
body .main_container .corousel .corousel_trey .corousel_img {
  width: 500px;
  height: inherit;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
  overflow: hidden;
}
body .main_container .corousel .corousel_trey .corousel_img img {
  width: 115%;
  height: inherit;
  object-fit: cover;
  pointer-events: none;
}
body .main_container .corousel .corousel_trey .corousel_img .overlay {
  width: 100%;
  height: inherit;
  position: absolute;
  top: 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.644), rgba(0, 0, 0, 0.404));
  opacity: 0;
  transition: 0.5s;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 999;
}
body .main_container .corousel .corousel_trey .corousel_img .overlay .zoom_icon {
  width: 60px;
  height: 60px;
  background-image: url(/zoom-in.99bb8610.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
body .main_container .corousel .corousel_trey .corousel_img:hover .overlay {
  opacity: 1;
}
body .main_container .corousel .corousel_image1 {
  width: 25%;
  height: inherit;
  background-image: url(https://images.unsplash.com/photo-1665172650926-a8842203591d?q=80&w=2021&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 5px;
}
body .main_container .corousel .corousel_image2 {
  width: 25%;
  background-image: url(https://images.unsplash.com/photo-1638158894759-47edf16f80a5?q=80&w=2261&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 5px;
  height: inherit;
}
body .main_container .corousel .corousel_image3 {
  width: 25%;
  background-image: url(https://plus.unsplash.com/premium_photo-1673108852141-e8c3c22a4a22?q=80&w=2340&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 5px;
  height: inherit;
}
body .main_container .corousel .corousel_image4 {
  width: 25%;
  background-image: url(https://plus.unsplash.com/premium_photo-1669725687152-498e152687ed?q=80&w=2187&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: inherit;
}
body .main_container .corousel[data-animated=true] {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80% transparent);
  mask: linear-gradient(90deg, transparent, white 20%, white 80% transparent);
}
body .main_container .corousel[data-animated=true] .corousel_inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scrolling linear;
  animation-timeline: scroll(root);
}
@keyframes scrolling {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}
body .main_container .services {
  display: block;
  width: 90%;
  margin: auto;
  overflow: hidden;
}
body .main_container .services .services_header {
  display: block;
  align-items: center;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-top: 8rem;
  margin-bottom: 8rem;
}
body .main_container .services .services_header p {
  padding: 0;
  margin: 0;
  font-family: marquisette;
  color: #006A5F;
  text-align: center;
}
body .main_container .services .services_header .services_text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 35%;
  padding-top: 1rem;
  font-size: clamp(0.8rem, 4vw, 1.2rem);
  line-height: 1.5;
  color: #707070;
}
body .main_container .services .serve_trey {
  display: flex;
  width: 200%;
  transition: 0.5s ease-in-out;
}
body .main_container .services .serve_trey .serv_2 {
  width: 100%;
  height: max(600px, 60vh);
  display: flex;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 {
  width: 40%;
  margin-right: 10px;
  font-family: "Montserrat", sans-serif;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .service_list .text1 .mobile_view {
  font-size: 0.8rem;
  padding-top: 5px;
  font-weight: 100;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .service_list .text1:hover {
  color: #006A5F;
  font-size: 1.2rem;
  font-weight: bold;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .selected {
  color: #006A5F;
  font-family: marquisette;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .selected .text1 {
  font-size: clamp(1.3rem, 3vw, 2rem) !important;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .service_list {
  cursor: pointer;
  display: flex;
  align-items: center;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .service_list .check {
  margin-right: 12px;
  background-repeat: no-repeat;
  width: 7%;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .service_list .text1 {
  font-weight: 500;
  line-height: 1.2;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .name {
  display: flex;
  align-items: center;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .name .name_text {
  position: relative;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .name .name_text img {
  margin-left: 8px;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .name .name_text .text {
  width: 80%;
  color: #006A5F;
  font-family: marquisette;
  font-size: clamp(1.3rem, 3vw, 2rem);
  position: absolute;
  top: 25%;
  left: 15%;
  transform: translate(15% -20%);
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .reserve {
  display: flex;
  align-items: center;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .reserve .check {
  margin-right: 12px;
  background-repeat: no-repeat;
  width: 7%;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .reserve .text1 {
  font-size: 1rem;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .transport {
  display: flex;
  align-items: center;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .transport .check {
  margin-right: 12px;
  background-repeat: no-repeat;
  width: 7%;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .transport .text1 {
  font-size: 1rem;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .tours {
  display: flex;
  align-items: center;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .tours .check {
  margin-right: 12px;
  background-repeat: no-repeat;
  width: 7%;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .tours .text1 {
  font-size: 1rem;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .photo_services {
  display: flex;
  align-items: center;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .photo_services .check {
  margin-right: 12px;
  background-repeat: no-repeat;
  width: 7%;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .photo_services .text1 {
  font-size: 1rem;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .spa {
  display: flex;
  align-items: center;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .spa .check {
  margin-right: 12px;
  background-repeat: no-repeat;
  width: 7%;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .spa .text1 {
  font-size: 1rem;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .dining {
  display: flex;
  align-items: center;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .dining .check {
  margin-right: 12px;
  background-repeat: no-repeat;
  width: 7%;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .dining .text1 {
  font-size: 1rem;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .attractions {
  display: flex;
  align-items: center;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .attractions .check {
  margin-right: 12px;
  background-repeat: no-repeat;
  width: 7%;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .attractions .text1 {
  font-size: 1rem;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .shopping {
  display: flex;
  align-items: center;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .shopping .check {
  margin-right: 12px;
  background-repeat: no-repeat;
  width: 7%;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .shopping .text1 {
  font-size: 1rem;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .conceirge {
  display: flex;
  align-items: center;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .conceirge .check {
  margin-right: 12px;
  background-repeat: no-repeat;
  width: 7%;
}
body .main_container .services .serve_trey .serv_2 .serv_flex1 .conceirge .text1 {
  font-size: 1rem;
}
body .main_container .services .serve_trey .serv_2 .serv_flex2 {
  width: 35%;
  background-image: url(/curated_itenaries_1.a2e18459.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-right: 10px;
  border-radius: 4px;
}
body .main_container .services .serve_trey .serv_2 .serv_flex2 .gradient {
  position: absolute;
  bottom: 0;
  height: 20vh;
  background-image: linear-gradient(to top, #006A5F, rgba(36, 36, 36, 0.479), transparent 100%);
  display: grid;
  place-items: center;
}
body .main_container .services .serve_trey .serv_2 .serv_flex2 .gradient .gradient_text {
  width: 75%;
  margin: auto;
  color: white;
  line-height: 1.5;
  font-weight: 500;
  font-size: 0.9rem;
}
body .main_container .services .serve_trey .serv_2 .serv_flex2 .gradient .gradient_text h2 {
  margin: 5px 0;
  font-size: clamp(0.8rem, 1vw, 1rem);
}
body .main_container .services .serve_trey .serv_2 .serv_flex2 .gradient .gradient_text span {
  font-weight: 300;
}
body .main_container .services .serve_trey .serv_2 .serv_flex3 {
  width: 35%;
  display: block;
  border-radius: 5px;
}
body .main_container .services .serve_trey .serv_2 .serv_flex3 .image1 {
  width: 100%;
  height: 29.5vh;
  background-image: url(/curated_itenaries_2.5adcf016.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3px;
}
body .main_container .services .serve_trey .serv_2 .serv_flex3 .image2 {
  margin-top: 5px;
  width: 100%;
  height: 30vh;
  background-image: url(/gallery_4.5c3cbf74.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3px;
}
body .main_container .services .serve_trey .mobile_serve_container {
  width: 100%;
  height: inherit;
}
body .main_container .services .serve_trey .mobile_serve_container .serve_img {
  width: 100%;
  height: 50%;
  background-color: red;
  background-size: cover;
  background-position: center;
}
body .main_container .services .serve_trey .mobile_serve_container .serve_img_container2 {
  display: flex;
  height: 50%;
  gap: 10px;
  padding-top: 10px;
  box-sizing: border-box;
}
body .main_container .services .serve_trey .mobile_serve_container .serve_img_container2 .serve_img1 {
  width: 50%;
  height: 100%;
  background-color: pink;
  background-size: cover;
  background-position: center;
}
body .main_container .services .serve_trey .mobile_serve_container .serve_img_container2 .serve_img2 {
  width: 50%;
  height: 100%;
  background-color: magenta;
  padding-top: 0;
  background-size: cover;
  background-position: center;
}
body .main_container .services .serve_trey .mobile_serve_container .serve_img .service_overlay {
  width: inherit;
  height: 100%;
  background-image: linear-gradient(to top, black, transparent);
  position: relative;
  color: white;
  font-size: 0.8rem;
}
body .main_container .services .serve_trey .mobile_serve_container .serve_img .service_overlay .back_arrow {
  width: 10%;
  padding: 10px 0 0 20px;
}
body .main_container .services .serve_trey .mobile_serve_container .serve_img .service_overlay .back_arrow img {
  width: 100%;
}
body .main_container .services .serve_trey .mobile_serve_container .serve_img .service_overlay .mobile_description {
  background-color: transparent;
  width: auto;
  height: auto;
  position: absolute;
  bottom: 0;
  padding: 20px;
  line-height: 1.7;
}
body .main_container .about_board {
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  color: #006A5F;
  padding: 100px 0px;
}
body .main_container .about_board .about {
  width: min(900px, 60%);
  margin: 10px;
  display: block;
}
body .main_container .about_board .about .about_details {
  width: 94%;
}
body .main_container .about_board .about .about_details .about_us p {
  font-family: marquisette;
  font-size: clamp(4rem, 4vw, 5rem);
  margin-bottom: 2.5rem;
  margin-top: 0;
}
body .main_container .about_board .about .about_details .about_us .about_text {
  width: 90%;
  line-height: 2;
  color: black;
  font-weight: 500;
}
body .main_container .about_board .about .other_details {
  display: flex;
  justify-content: flex-start;
}
body .main_container .about_board .about .other_details .mission {
  width: 45%;
}
body .main_container .about_board .about .other_details .mission p {
  font-family: marquisette;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}
body .main_container .about_board .about .other_details .mission .mission_text {
  width: 80%;
  line-height: 2;
  color: black;
  font-weight: 500;
}
body .main_container .about_board .about .other_details .vision {
  width: 45%;
}
body .main_container .about_board .about .other_details .vision p {
  font-family: marquisette;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}
body .main_container .about_board .about .other_details .vision .vision_text {
  width: 100%;
  line-height: 2;
  color: black;
  font-weight: 500;
}
body .main_container .about_board .about_image {
  width: 23%;
  background-image: url(/logo.b790f894.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
body .main_container .socials {
  margin-top: 7rem;
  margin-bottom: 6rem;
}
body .main_container .socials p {
  font-family: marquisette;
  color: #006A5F;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
  text-align: center;
}
body .main_container .socials_container {
  width: 100%;
  margin-bottom: 0.6rem;
}
body .main_container .socials_container .image_tray {
  display: flex;
  width: 100%;
  height: 50vh;
  position: relative;
}
body .main_container .socials_container .image_tray .insta_logo {
  width: 10%;
  position: absolute;
  top: 50%;
  left: 27.5%;
  transform: translate(-27.5%, -50%) scale(1);
  cursor: pointer;
  transition: 0.3s;
}
body .main_container .socials_container .image_tray .insta_logo img {
  width: 100%;
}
body .main_container .socials_container .image_tray .insta_logo:hover {
  transform: translate(-27.5%, -50%) scale(1.1);
}
body .main_container .socials_container .image_tray .tiktok_logo {
  width: 15%;
  position: absolute;
  top: 50%;
  right: 1%;
  transform: translate(-1%, -50%) scale(1);
  cursor: pointer;
  transition: 0.3s;
}
body .main_container .socials_container .image_tray .tiktok_logo img {
  width: 100%;
}
body .main_container .socials_container .image_tray .tiktok_logo:hover {
  transform: translate(-1%, -50%) scale(1.1);
}
body .main_container .socials_container .image_tray .flex1 {
  width: 30%;
  background-image: url(/private_tour_2.c577e05e.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 0.5rem;
}
body .main_container .socials_container .image_tray .flex2 {
  width: 20%;
  margin-right: 0.5rem;
}
body .main_container .socials_container .image_tray .flex2 .flex2_image1 {
  width: 100%;
  height: 24.5vh;
  background-image: url(/gallery_12.a5ac3441.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 0.6rem;
}
body .main_container .socials_container .image_tray .flex2 .flex2_image1 .social_overlay img {
  display: none;
}
body .main_container .socials_container .image_tray .flex2 .flex2_image2 {
  height: 24.5vh;
  background-image: url(/gallery_6.c3204592.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body .main_container .socials_container .image_tray .flex3 {
  width: 30%;
  margin-right: 0.5rem;
  background-image: url(/curated_itenaries_3.90c16d6b.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: grid;
  place-items: center;
}
body .main_container .socials_container .image_tray .flex3 a {
  width: 30%;
}
body .main_container .socials_container .image_tray .flex3 a img {
  width: 100%;
  position: relative;
  z-index: 2;
  transition: 0.3s;
  cursor: pointer;
}
body .main_container .socials_container .image_tray .flex3 a img:hover {
  transform: scale(1.1);
}
body .main_container .socials_container .image_tray .flex3 .social_overlay {
  width: 100%;
  height: 100%;
  background-color: #006A5F;
  position: absolute;
  top: 0;
  mix-blend-mode: multiply;
}
body .main_container .socials_container .image_tray .flex4 {
  width: 20%;
}
body .main_container .socials_container .image_tray .flex4 .flex4_image3 {
  width: 100%;
  height: 24.5vh;
  background-image: url(/gallery_5.cb3edcb8.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 0.6rem;
}
body .main_container .socials_container .image_tray .flex4 .flex4_image4 {
  height: 24.5vh;
  background-image: url(/gallery_13.386dfbc8.webp);
  background-position-y: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body .main_container .feedback_container {
  background-color: #006A5F;
  display: flex;
  height: 60dvh;
}
body .main_container .feedback_container .feedback_image {
  width: 50%;
  height: inherit;
  overflow: hidden;
}
body .main_container .feedback_container .feedback_image img {
  width: 90%;
  height: 100%;
  object-fit: cover;
  object-position: center -80px;
}
body .main_container .feedback_container .feedback_content {
  width: 50%;
  display: grid;
  place-items: center;
}
body .main_container .feedback_container .feedback_content .content {
  width: 80%;
}
body .main_container .feedback_container .feedback_content .content h1 {
  font-family: marquisette;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: #FFFEF8;
  margin-top: 0;
}
body .main_container .feedback_container .feedback_content .content a {
  color: #FFFEF8;
}
body .main_container .feedback_container .feedback_content .content button {
  all: unset;
}
body .main_container .contact_container {
  width: 80%;
  height: 70vh;
  margin: auto;
  margin-top: 10rem;
  margin-bottom: 10rem;
  color: #006A5F;
  position: relative;
}
body .main_container .contact_container .form_details {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
}
body .main_container .contact_container .form_details .form_text {
  width: 100%;
  font-family: marquisette;
  font-size: clamp(1.5rem, 5vw, 2.9rem);
  margin-bottom: 5rem;
}
body .main_container .contact_container .form_details .details {
  width: 100%;
  margin-bottom: 3rem;
}
body .main_container .contact_container .form_details .details .initials {
  display: flex;
}
body .main_container .contact_container .form_details .details .initials .name_details {
  width: 50%;
}
body .main_container .contact_container .form_details .details .initials .name_details input {
  font-size: 1rem;
  border: none;
  background-color: #FFFEF8;
  border-bottom: 1px solid #006A5F;
  width: 90%;
  padding-bottom: 0.7rem;
  outline: none;
}
body .main_container .contact_container .form_details .details .initials .name_details .name_space::placeholder {
  color: #006A5F;
}
body .main_container .contact_container .form_details .details .initials .email {
  width: 50%;
}
body .main_container .contact_container .form_details .details .initials .email input {
  font-size: 1rem;
  border: none;
  border-bottom: 1px solid #006A5F;
  width: 99%;
  background-color: #FFFEF8;
  padding-bottom: 0.7rem;
  outline: none;
}
body .main_container .contact_container .form_details .details .initials .email .email_text::placeholder {
  color: #006A5F;
}
body .main_container .contact_container .form_details .cont_method {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #006A5F;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  position: relative;
}
body .main_container .contact_container .form_details .cont_method .dropdown_items {
  position: absolute;
  width: 100%;
  background-color: white;
  border: #006A5F 1px solid;
  margin-top: 20px;
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s;
  z-index: 1;
  display: none;
}
body .main_container .contact_container .form_details .cont_method .dropdown_items ul {
  list-style-type: none;
  padding-left: 0;
  padding: 20px;
}
body .main_container .contact_container .form_details .cont_method .dropdown_items ul li {
  padding-top: 10px;
  cursor: pointer;
  transition: 0.3s;
}
body .main_container .contact_container .form_details .cont_method .dropdown_items ul li:nth-child(1) {
  border-bottom: #006A5F solid 0.01px;
  padding-bottom: 10px;
}
body .main_container .contact_container .form_details .cont_method .dropdown_items ul li:hover {
  font-weight: bold;
}
body .main_container .contact_container .form_details .cont_method .cont_text {
  width: 90%;
}
body .main_container .contact_container .form_details .cont_method .dropdown {
  margin-right: 10px;
  cursor: pointer;
}
body .main_container .contact_container .form_details .cont_method .dropdown img {
  width: 30px;
}
body .main_container .contact_container .form_details .phone_number {
  width: 100%;
  height: 0;
  overflow: hidden;
  display: none;
  gap: 30px;
}
body .main_container .contact_container .form_details .phone_number .country_codes {
  width: 220px;
  border-bottom: #006A5F solid 1px;
}
body .main_container .contact_container .form_details .phone_number .country_codes .code_holder {
  display: flex;
  justify-content: space-between;
}
body .main_container .contact_container .form_details .phone_number .country_codes .code_holder #code_holder {
  font-size: 0.9rem;
}
body .main_container .contact_container .form_details .phone_number .country_codes .code_holder .codes_arrow {
  width: 20px;
  cursor: pointer;
}
body .main_container .contact_container .form_details .phone_number .country_codes .code_holder .codes_arrow img {
  width: 100%;
}
body .main_container .contact_container .form_details .phone_number input {
  width: inherit;
  box-sizing: border-box;
  background-color: transparent;
  border: none;
  border-bottom: 1px #006A5F solid;
  padding-bottom: 10px;
  outline: none;
}
body .main_container .contact_container .form_details .phone_number input::placeholder {
  color: #006A5F;
  font-size: 1rem;
}
body .main_container .contact_container .form_details .message {
  width: 100%;
  margin-bottom: 2rem;
  padding-top: 20px;
}
body .main_container .contact_container .form_details .message .message_text {
  color: #006A5F;
  position: relative;
}
body .main_container .contact_container .form_details .message .message_text textarea {
  font-family: "Montserrat", sans-serif;
  width: 100%;
  height: 300px;
  border: none;
  background-color: #FFFEF8;
  outline: none;
  resize: none;
  border-bottom: 1px solid #006A5F;
}
body .main_container .contact_container .form_details .message .message_text .list_code {
  position: absolute;
  top: 0;
  background-color: white;
  border: 1px solid #006A5F;
  height: clamp(180px, 10vw, 250px);
  overflow-y: auto;
}
body .main_container .contact_container .form_details .message .message_text .list_code .codes_parent {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 10px 20px;
  margin: 7px;
  border-bottom: 1px solid rgb(224, 224, 224);
  cursor: pointer;
}
body .main_container .contact_container .form_details .message .message_text .list_code .codes_parent:hover {
  background-color: #f8f489;
}
body .main_container .contact_container .form_details .submit_button {
  position: relative;
  width: 180px;
}
body .main_container .contact_container .form_details .submit_button button {
  background: transparent;
  border: none;
  color: #006A5F;
}
body .main_container .contact_container .form_details .submit_button a {
  text-decoration: none;
  cursor: pointer;
  border: none;
  background-color: none;
  color: #006A5F;
}
body .main_container .contact_container .form_details .submit_button img {
  width: 100%;
}
body .main_container .contact_container .form_details .submit_button .submit_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  cursor: pointer;
}
body .main_container .call_details {
  padding-top: 100px;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 5rem;
}
body .main_container .call_details .contact_form {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
body .main_container .call_details .contact_form .contact_us {
  width: 85%;
  color: #006A5F;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: marquisette;
}
body .main_container .call_details .number {
  color: #707070;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  margin-bottom: 1rem;
}
body .main_container .call_details .other_info {
  display: flex;
  justify-content: space-between;
  color: #707070;
  width: 100%;
  font-size: clamp(1rem, 1.3vw, 1.3rem);
}
body .main_container .call_details .other_info .info {
  font-size: clamp(1rem, 1.3vw, 1.3rem);
}
body .main_container .call_details .other_info .info a {
  color: #707070;
}
body .main_container .call_details .other_info .info a:hover {
  color: #006A5F;
}
body .main_container .call_details .other_info .privacy_text {
  cursor: pointer;
  text-decoration: underline;
}
body .main_container .call_details .other_info .privacy_text:hover {
  color: #006A5F;
}
body .main_container .call_details .up_button {
  width: 60px;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}
body .main_container .call_details .up_button img {
  width: 100%;
}

/*# sourceMappingURL=/style.809dab89.css.map */