@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

/* font-family: 'Josefin Sans', sans-serif; */

*,
::after,
::before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

:root {
  --headingFont: "Josefin Sans", sans-serif;
  --bodyFont: "Josefin Sans", sans-serif;
  --seaGreenColor: #00c7bb;
  --darkGrayColor: #181818;
  --bodyFontColor: #484848;
}

/* ===================== common css start ====================== */

*,
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

.clear {
  clear: both;
}

.clear:after {
  content: "";
  clear: both;
  position: relative;
  width: 100%;
  display: table;
}

body {
  background: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  font-family: var(--bodyFont);
}

section {
  padding: 100px 0;
}

.container {
  max-width: 1170px;
  padding: 0px 15px;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
  font-style: normal;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

p {
  margin: 0;
  text-align: justify;
}
.site-main {
  padding-top: 155px;
}
/* ===================== common css start ====================== */

/* ================== mobile menu section start================= */
.mobileMenuSection {
  display: none;
}
.mobileMenuButton {
  display: none;
  text-decoration: none;
  width: 25px;
  position: absolute;
  top: 50px;
  right: 15px;
}
.mobileMenuButton span {
  width: 25px;
  height: 2px;
  border-radius: 4px;
  background: #000;
  display: block;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}
.mobileMenuButton span:not(:last-child) {
  margin-bottom: 5px;
}
.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(2) {
  opacity: 0;
}
.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -6px);
}
.mm-navbar {
  z-index: 123;
  background: #565656;
}
.mm-navbar__title > span {
  color: #fff;
}
.mm-listitem:after {
  left: 0;
}
/* code for fixing the conflict of mmenu and bs modal */
.mm-page {
  position: initial;
}
.mm-btn--next:after,
.mm-btn--prev:before {
  border-color: #000000;
}
.mm-listitem.active {
  background: #878787;
}
/* ==================== mobile menu section end =================== */

/*========================== header start ==========================*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.site-header.sticky {
  box-shadow: 0 2px 10px -2px rgba(0 0 0 / 0.4);
}
.header_top {
  padding: 10px 0;
  background: #000;
}
.header_top_hldr {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header_top_hldr a span {
  color: #fff;
  font-family: Josefin Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  transition: all 0.5s ease-in-out;
}
.header_top_hldr a i {
  color: #999999;
  font-size: 20px;
  margin-right: 15px;
  vertical-align: middle;
  transition: all 0.5s ease-in-out;
}
.header_top_hldr a:hover span,
.header_top_hldr a:hover i {
  color: var(--seaGreenColor);
}
.mail_contact a:not(:last-child) {
  margin-right: 40px;
}
.social_media {
  margin-left: 40px;
}
.mail_contact {
  padding-right: 40px;
  border-right: 1px solid #4a4a4a;
}
.social_media a i {
  color: #fff;
}
.social_media a:last-child i {
  margin: 0;
}
.header_middle {
  padding: 15px 0;
  background: #fff;
}
.logo {
  max-width: 200px;
}
.logo img {
  width: 100%;
}
.header_middle_hldr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.main-menu li a {
  color: #000;
  font-family: var(--headingFont);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}
.main-menu li:not(:first-child) {
  margin-left: 40px;
}
.main-menu li:first-child a {
  position: relative;
}
.main-menu li:first-child a {
  position: relative;
}
.main-menu li:first-child a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  border-radius: 50%;
  background: #00c7bb26;
  transition: all 0.5s ease-in-out;
}
.main-menu li:first-child a:hover::before {
  height: 36px;
  width: 36px;
}
.main-menu li a:hover {
  color: var(--seaGreenColor);
}
/*=========================== header end ===========================*/

/*========================== banner start ==========================*/
.banner figure {
  width: 100%;
  margin: 0;
  height: 500px;
  position: relative;
}
.banner figure figcaption {
  position: absolute;
  left: 15px;
  bottom: 15px;
  color: #fff;
}
.banner figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
/*=========================== banner end ===========================*/
.landour_hldr .landour_img figure {
  margin: 0;
  overflow: hidden;
  height: 300px;
}
.landour_img figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.landour_img figure:hover img {
  transform: scale(1.08);
}
.main_hd {
  position: relative;
  margin-bottom: 60px;
}
.main_hd::after {
  position: absolute;
  content: "";
  width: 130px;
  height: 16px;
  left: 50%;
  bottom: -25px;
  transform: translate(-50%, 0);
  background: url(../images/hd_design.svg) no-repeat center center / cover;
}
.main_hd h3 {
  color: var(--darkGrayColor);
  font-family: var(--headingFont);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.landour_cont a {
  font-family: var(--headingFont);
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  text-align: center;
  margin: 50px auto 0 auto;
  border: 1px solid #00c7bb;
  display: inline-block;
  padding: 12px 40px;
}
.cmn_btn {
  background: #00c7bb;
  color: #fff;
  font-family: var(--headingFont);
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  text-align: center;
  border: 1px solid #00c7bb;
  display: inline-block;
  padding: 12px 40px;
  transition: all 0.5s ease-in-out;
}
.cmn_btn:hover {
  background: #008179;
  border: 1px solid #008179;
}
.landour_cont p:not(:last-of-type) {
  margin-bottom: 30px;
}
.landour_cont {
  padding: 25px 25px 0 25px;
  background: rgba(256 256 256 / 0.8);
  backdrop-filter: blur(3px);
  margin-top: -40%;
}
.landour_hldr {
  position: relative;
  z-index: 1;
}
.landour_hldr::before {
  content: "";
  position: absolute;
  left: -8%;
  bottom: -35%;
  height: 590px;
  width: 590px;
  border-radius: 50%;
  border: 80px solid #f5f5f5;
  z-index: -1;
}
.about {
  background: var(--seaGreenColor);
  padding: 30px 0;
  z-index: 1;
  position: relative;
}
.about .main_hd {
  margin-bottom: 10px;
}
.about .main_hd h3 {
  color: #fff;
}
.about .main_hd::after {
  display: none;
}
.about_cont p {
  color: #fff;
}
.about_cont {
  padding: 25px;
}
.venu_cont {
  padding: 70px 35px;
  background: #000000;
  margin-top: -80%;
  z-index: 2;
  position: relative;
}
.venu_cont figure {
  margin-bottom: 25px;
}
.venu_cont figure img {
  width: 50px;
}
.small_hd {
  text-align: center;
}
.small_hd {
  margin-bottom: 30px;
}
.small_hd h3 {
  color: #fff;
  font-family: var(--headingFont);
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.small_hd p {
  color: #00c7bb;
  font-family: var(--bodyFont);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.venu_cont p {
  color: #fff;
}
.venu_hldr .row > div:last-child figure {
  margin-bottom: 0;
  margin-top: 15px;
  overflow: hidden;
}
.venu_hldr .row > div:last-child figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.venu_hldr .row > div:last-child figure:hover img {
  transform: scale(1.08);
}
.highlight_cont {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.highlight_cont figure {
  margin: 0;
  height: 60px;
  width: 60px;
  text-align: center;
  border-radius: 10px;
  background: #daf9f7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.highlight_cont figure img {
  max-width: 40px;
}
.highlight_cont > div {
  width: calc(100% - 90px);
}
.highlight_cont > div p {
  text-align: left;
}
.highlight_cont > div h6 {
  color: #181818;
  font-family: var(--headingFont);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  margin-bottom: 15px;
}
.about_host_hldr {
  padding: 70px;
  border: 15px solid #fff;
  background: url(../images/nl5.webp) no-repeat center center / cover;
  z-index: 5;
  position: relative;
  background-attachment: fixed;
  -webkit-bacground-attachment: fixed;
}
.host_cont li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 0;
}
.host_cont li figure {
  margin: 0;
  height: 135px;
  width: 135px;
  /* border-radius: 50%; */
  border: 10px solid #e6f9f5;
  overflow: hidden;
}
.host_cont li span {
  width: calc(100% - 170px);
}
.host_cont li span p a {
  color: #00c7bb;
}
.host_cont li figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
  transform: rotateY(180deg);
}
.host_cont {
  padding: 20px 40px;
  background: #fff;
}
.host_cont span h6 {
  color: #00c7bb;
  font-family: var(--headingFont);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 5px;
}
.host_cont span p:not(:last-of-type) {
  margin-bottom: 15px;
}
.host_cont li:not(:last-child) {
  border-bottom: 1px solid #eeeeee;
}
.about_host_hldr .main_hd h3 {
  color: #fff;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.cost {
  background: url(../images/nl6.jpg) no-repeat center center / cover;
  /* margin-top: -5%; */
  overflow: hidden;
  background-attachment: fixed;
}
.about_host_hldr .main_hd::after {
  display: none;
}
.cost_cont .main_hd::after {
  background: url(../images/hd_design_white.svg) no-repeat center center / cover;
}
.cost_cont .main_hd h3 {
  color: #fff;
}
.cost_cont {
  position: relative;
  padding: 100px 0 100px 80px;
  z-index: 1;
}
.cost_cont::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100vw;
  background: #00000099;
  z-index: -1;
}
.cost_bx h4 {
  display: block;
  padding: 14px;
  text-align: center;
  background: #00c7bb;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px !important;
}
.cost_bx h6 {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 5px;
}
.cost_bx p {
  color: #fff;
}
.testi_video {
  margin: 0;
  position: relative;
  height: 385px;
  padding: 50px;
  border: 3px solid #d9d9d9;
}
.testi_video img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.testi_video figcaption {
  position: absolute;
  left: 67px;
  bottom: 67px;
  display: flex;
  align-items: center;
}
.testi_video figcaption span {
  color: #fff;
  font-family: var(--headingFont);
  font-size: 23px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-left: 20px;
  vertical-align: middle;
}
.testi_cont {
  padding: 55px 35px;
  background: #f5f5f5;
  min-height: 385px;
}
.testi_video {
  height: 385px;
}
.testi_cont > div {
  margin-bottom: 15px;
}
.testi_cont figure {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0;
}
.testi_cont figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi_cont figcaption {
  color: #00c7bb;
  font-family: var(--headingFont);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-left: 15px;
  width: calc(100% - 200px);
}
.testimonial_slider .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.testimonial_slider .owl-dots button {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #000;
  transition: all 0.5s ease-in-out;
  margin: 0 5px;
}
.testimonial_slider .owl-dots button:hover,
.testimonial_slider .owl-dots button.active {
  background: var(--seaGreenColor);
}
.media {
  position: relative;
  background: var(--seaGreenColor);
}
.media_hldr .main_hd h3 {
  color: #fff;
}
.media_hldr .main_hd::after {
  background: url(../images/hd_design_white.svg) no-repeat center center / cover;
}
.media_slider figure {
  margin: 0;
  height: 410px;
}
.media_slider figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.incl_cont {
  padding: 40px 15px 40px 45px;
  background: #00c7bb;
  height: 100%;
}
.incl_cont li h6 {
  color: #fff;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 6.5px;
}
.incl_cont li {
  position: relative;
}
.incl_cont li::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #fff;
  top: 5px;
  left: -25px;
}
.incl_cont li p {
  color: #fff;
}
.incl_cont li:not(:last-child) {
  margin-bottom: 25px;
}
.exclusion_hldr .incl_cont {
  padding: 0;
  background: #fff;
}
.exclusion_hldr .incl_cont li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.exclusion_hldr .incl_cont li figure {
  width: 40px;
}
.exclusion_hldr .incl_cont li span {
  width: calc(100% - 60px);
}
.exclusion_hldr .incl_cont li h6 {
  color: var(--seaGreenColor);
}
.exclusion_hldr .incl_cont li p {
  color: var(--bodyFontColor);
}
.exclusion_hldr .incl_cont li p:not(:last-of-type) {
  margin-bottom: 15px;
}
.exclusion_hldr .landour_img,
.exclusion_hldr .landour_img figure {
  height: 100%;
  overflow: hidden;
}
.prev_retreat_gallery figure {
  margin-bottom: 6px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.prev_retreat_gallery figure:hover img {
  transform: scale(1.07);
}
.prev_retreat_gallery figure:last-child {
  margin: 0;
}
.prev_retreat_gallery figure::after {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #00000056;
  transition: all 0.5s ease-in-out;
}
.prev_retreat_gallery figure:hover::after {
  height: 100%;
  width: 100%;
}
.prev_retreat_gallery figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.prev_retreat_gallery figure a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 25px;
  opacity: 0;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.prev_retreat_gallery figure:hover a {
  opacity: 1;
}
.prev_retreat_gallery {
  column-count: 4;
  gap: 7px;
}
.extend_stay_hldr .main_hd::after {
  display: none;
}
.extend_stay_hldr .main_hd h3 {
  margin-bottom: 15px;
}
.extend_stay_hldr .main_hd p {
  margin: 0 auto;
  width: 80%;
}
.extend_stay {
  position: relative;
}
.extend_stay::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 65%;
  top: 0;
  left: 0;
  background: #f5f5f5;
}
.videobox {
  z-index: 1;
  position: relative;
}
.videobox a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.videobox figure {
  height: 560px;
  margin: 0;
}
.videobox figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.about_landour_hldr .main_hd::after {
  display: none;
}

.about_landour_hldr .row > div:last-child figure:last-child {
  position: absolute;
  right: 0;
  bottom: -40px;
  width: 290px;
}
.about_landour_hldr figure,
.about_landour_2_hldr figure {
  /* margin: 0; */
  position: relative;
  width: 100%;
  height: 350px;
}
.about_landour_hldr figure img,
.about_landour_2_hldr figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.about_landour_hldr p:not(:last-of-type),
.about_landour_2_hldr p:not(:last-of-type) {
  margin-bottom: 10px;
}
.about_landour_hldr figure figcaption,
.about_landour_2_hldr figure figcaption {
  position: absolute;
  top: 40px;
  right: -75px;
  color: #fff;
  font-family: var(--headingFont);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  border: 2px solid #fff;
  background: #00c7bb;
  padding: 14px 52px;
  text-align: center;
}
.about_landour_2_hldr figure.left figcaption {
  right: auto;
  left: -75px;
}
.about_landour_2_hldr .row:nth-child(even) {
  flex-direction: row-reverse;
}
.about_landour_2_hldr .row:not(:last-child),
.about_landour_hldr .row:not(:last-child) {
  margin-bottom: 50px;
}
.about_landour_2 {
  padding-top: 50px;
}
.site-footer {
  padding: 20px 0;
  background: #000;
}
.copy_txt p {
  color: #fff;
}
.copy_txt p a {
  color: #00c7bb;
}
.footer_hldr .social_media {
  margin: 0;
  gap: 12px;
  display: flex;
}
.landour_cont .main_hd::after {
  display: none;
}
.landour_cont .main_hd img {
  width: 65%;
  margin: 20px auto 0 auto;
}
.landour_cont .main_hd h3 {
  font-size: 30px;
}
.landour_cont .main_hd {
  margin-bottom: 40px;
}
.landour {
  padding-top: 15px;
}
.inclusion_hldr .landour_img figure {
  margin: 0;
  overflow: hidden;
  height: 100%;
}
.modal1 .modal-content {
  border-radius: 0;
  border: none;
}
.modal1 .modal-body {
  padding: 10px;
  position: relative;
}
.modal1 .modal-body button {
  position: absolute;
  top: 5px;
  right: 5px;
}
.modal1 .modal-body p {
  text-align: justify;
}
.subscribe {
  background: #f5f5f5;
}
.subscription_form input,
.subscription_form select,
.subscription_form textarea {
  border: 1px solid #ddd;
  border-radius: 0;
}
.subscription_form input:is(:hover, :focus),
.subscription_form select:is(:hover, :focus),
.subscription_form textarea:is(:hover, :focus) {
  border: 1px solid var(--seaGreenColor);
  box-shadow: none;
}
.subscription_form button[type="submit"] {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 5px 0;
  border: none;
  outline: none;
  background: var(--seaGreenColor);
  color: #fff;
  transition: all 0.5s ease-in-out;
  right: auto;
}
.subscription_form button[type="submit"]:is(:hover, :focus) {
  background: #008179;
}
.subscription_form form {
  padding: 10px;
  background: #fff;
}
.subscribe {
  padding: 50px 0;
}
.subscription_form {
  margin-top: 15px;
}
.seegreen {
  color: var(--seaGreenColor);
}
.subscription_form .row > div:not(:last-child) {
  margin-bottom: 15px;
}
.subscribe_hldr .subscription_form .row > div:not(:last-child) {
  margin-bottom: 0;
}
.mail_contact a:first-child img {
  width: 80px;
}
.highlight_hldr .cmn_btn {
  padding: 5px 10px;
}
/* new css for northern light */
.about_img {
  height: 250px;
}
.about_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cost_bx a {
  color: var(--seaGreenColor);
}
.subscribe_modal .modal-body {
  position: relative;
}
.subscribe_modal .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
}
/* ========================== responsive ========================== */
@media (min-width: 1440px) {
}
@media (max-width: 1199px) {
  .highlight_hldr {
    overflow: hidden;
  }
  .landour_cont {
    margin-top: -135%;
  }
  .venu_cont {
    margin-top: -56%;
  }
  .venu_hldr .row > div:last-child figure {
    height: 260px;
  }
  .about_host_hldr .main_hd h3 {
    font-size: 55px;
  }
  .cost_cont {
    padding: 170px 0 100px 20px;
  }
  .inclusion_hldr .landour_img figure {
    height: 466px;
  }
  .prev_retreat_gallery figure:last-child {
    height: 198px;
  }
  .about_landour_hldr figure figcaption {
    top: 20px;
  }
  .about_landour_2_hldr figure.left figcaption {
    left: -18px;
    top: 20px;
  }
  .about_landour_2_hldr figure figcaption {
    top: 20px;
    right: -20px;
  }
  .landour_hldr::before {
    left: 0;
  }
}
@media (max-width: 1023px) {
  /* mmenu start */
  .mobileMenuButton {
    display: inline-block;
    top: 102px;
  }
  .mm-menu {
    z-index: 999;
  }
  /* mmenu end */
  .main-menu {
    display: none;
  }
  .logo {
    max-width: 105px;
  }
  .banner figure {
    height: 250px;
  }
  .site-main {
    padding-top: 123px;
  }
  .landour_cont {
    margin-top: 0;
  }
  section {
    padding: 50px 0;
  }
  .venu_cont {
    margin-top: -100%;
  }
  .landour_hldr::before {
    display: none;
  }
  .venu_hldr .row > div:last-child figure {
    height: 294px;
  }
  .header_top_hldr {
    justify-content: space-between;
  }
  .cost_cont {
    padding: 80px 20px 50px 20px;
  }
  .cost_cont::before {
    width: 100%;
  }
  .inclusion_hldr .landour_img figure {
    height: 609px;
  }
  .prev_retreat_gallery figure:last-child {
    height: 148px;
  }
  .about_landour_hldr .row > div:last-child figure:first-child {
    width: 100%;
  }
  .about_landour_hldr .row > div:last-child figure:last-child {
    width: 160px;
  }
  .copy_txt p {
    font-size: 14px;
  }
  .about_landour_hldr figure figcaption {
    right: -10px;
  }
  .videobox figure {
    height: auto;
  }
  .host_cont li {
    flex-wrap: wrap;
  }
  .host_cont li figure,
  .host_cont li span {
    width: 100%;
  }
  .host_cont li figure {
    height: auto;
    margin-bottom: 15px;
  }
  .landour_hldr .row {
    flex-direction: column-reverse;
  }
  .landour_img .row {
    flex-direction: initial;
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  body {
    scroll-padding-top: 230px;
    font-size: 20px;
  }
  section {
    padding: 30px 0;
  }
  .header_top_hldr {
    flex-wrap: wrap;
    justify-content: center;
  }
  .mail_contact {
    padding: 0;
    border: 0;
    text-align: center;
  }
  .mail_contact a:not(:last-child),
  .social_media {
    margin: 0;
  }
  .mobileMenuButton {
    display: inline-block;
    top: 94px;
  }
  .site-main {
    padding-top: 135px;
  }
  .landour_hldr .row {
    flex-direction: column-reverse;
  }
  .landour_img .row {
    flex-direction: initial;
    margin-top: 25px;
  }
  .landour_cont {
    padding: 0;
    margin-top: 0;
    padding: 15px;
  }
  .venu_cont {
    margin-top: 15px;
    padding: 25px;
  }
  .about_host_hldr {
    border: 0;
    padding: 15px;
  }
  .host_cont {
    padding: 10px;
  }
  .cost_cont {
    padding: 40px 20px;
  }
  .inclusion_hldr .landour_img figure {
    height: auto;
  }
  .prev_retreat_gallery {
    column-count: 1;
  }
  .prev_retreat_gallery figure {
    margin-bottom: 15px;
  }
  .prev_retreat_gallery figure:last-child {
    height: auto;
  }
  .about_landour_hldr .main_hd {
    margin-bottom: 30px;
  }
  .about_landour_hldr .row > div:not(:last-child),
  .about_landour_2_hldr .row > div:not(:last-child) {
    margin-bottom: 15px;
  }
  .about_landour_2_hldr .row:not(:last-child),
  .about_landour_hldr .row:not(:last-child) {
    margin-bottom: 15px;
  }
  .footer_hldr {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center !important;
  }
  .footer_hldr .social_media {
    width: 100%;
    justify-content: center;
  }
  .about_landour,
  .about_landour_2 {
    overflow: hidden;
  }
  .about_host_hldr .main_hd {
    margin-bottom: 25px;
  }
  .landour_cont a {
    width: 100%;
  }
  .landour_cont a:last-child {
    margin: 40px 0 0 0 !important;
  }
  .testi_cont {
    padding: 35px 25px;
  }
  .landour_cont .main_hd h3 {
    font-size: 18px;
  }
  .landour_cont .main_hd img {
    width: 100%;
  }
  .mail_contact a {
    /* width: 100%; */
  }
  .subscription_form .row > div:not(:last-child) {
    margin-bottom: 10px !important;
  }
  .sm_hd h3 {
    text-align: center;
  }
  .testimonial_slider .item .row > div:not(:last-child) {
    margin-bottom: 15px;
  }
  .mail_contact a:first-child img {
    margin-right: 20px;
  }
  .inclusion_hldr .row {
    flex-direction: column-reverse;
  }
  .about_landour_hldr .row {
    flex-direction: column-reverse;
    gap: 15px;
  }
  .about_landour_2 {
    padding-top: 0;
  }
  .about_landour_hldr figure,
  .about_landour_2_hldr figure {
    height: 260px;
  }
  .main_hd h3,
  .about_host_hldr .main_hd h3 {
    font-size: 35px;
  }
  .testi_cont figcaption {
    width: calc(100% - 130px);
  }
}
@media (max-width: 479px) {
}
