
@font-face{
    font-family: "GT Sectra Display Regular";
    src: url("../font/GT Sectra Display Regular.eot");
    src: url("../font/GT Sectra Display Regular.eot?#iefix")format("embedded-opentype"),
        url("../font/GT Sectra Display Regular.woff")format("woff"),
        url("../font/GT Sectra Display Regular.woff2")format("woff2"),
        url("../font/GT Sectra Display Regular.ttf")format("truetype"),;
    font-weight:normal;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family: 'Berlingske Serif';
    src: url("../font/BerlingskeSerif-Lt.eot");
    src: url("../font/BerlingskeSerif-Lt.eot?#iefix")format("embedded-opentype"),
        url("../font/BerlingskeSerif-Lt.woff")format("woff"),
        url("../font/BerlingskeSerif-Lt.woff2")format("woff2"),
        url("../font/BerlingskeSerif-Lt.ttf")format("truetype"),;
    font-weight: 300;
    font-style: normal;
    font-display:swap;
}


@font-face{
    font-family: "Sofia Pro Light";
    src: url("../font/Sofia Pro Light.eot");
    src: url("../font/Sofia Pro Light.eot?#iefix")format("embedded-opentype"),
        url("../font/Sofia Pro Light.woff")format("woff"),
        url("../font/Sofia Pro Light.woff2")format("woff2"),
        url("../font/Sofia Pro Light.ttf")format("truetype"),;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family: "Sofia Pro Regular";
    src: url("../font/Sofia Pro Regular.eot");
    src: url("../font/Sofia Pro Regular.eot?#iefix")format("embedded-opentype"),
        url("../font/Sofia Pro Regular.woff")format("woff"),
        url("../font/Sofia Pro Regular.woff2")format("woff2"),
        url("../font/Sofia Pro Regular.ttf")format("truetype"),;
    font-weight:normal;
    font-style:normal;
    font-display:swap;
}


html{ 
overflow-x: hidden;
} 

body{ 
font-family: "Sofia Pro Light";
} 

h1, h2, h3, h4, h5, h6{
font-family: "Berlingske Serif";
}

a {
text-decoration: none !important;
}

p{
color: rgb(0 0 0 / 70%);
font-size: 15px;
}

ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.img-responsive{
display: block;
max-width: 100%;
height: auto;
}

.heading{
font-size: 54px;
color: #000000;
margin-bottom: 0px;
line-height: 1.1;
}

.center-heading{
text-align: center;
}

.sub-title{
    text-transform: uppercase;
    font-size: 14px;
    background: linear-gradient(180deg, #115C59 0%, #083937 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    font-family: "Sofia Pro Regular";
}


.header-gap{
margin-top: 80px;
}

.big-container{
max-width: 1230px;
padding: 0px 12px;
margin-right: auto;
margin-left: auto;
}

.gradient-color{
background: linear-gradient(180deg, #AE0000 0, #840000 90%);
-webkit-background-clip: text;
-webkit-text-fill-color: #0000;
color: #0000;
}

.footer-hider {
  display: none;
}


/*-- button ---*/

.default-btn {
    border: 1.5px solid rgba(7, 57, 55, 0.40);
    padding: 14px 15px;
    color: #083937;
    position: relative;
    transition: color .4s cubic-bezier(.47, .17, .17, .58);
    line-height: 1;
    font-size: 12px;
    text-transform: uppercase;
    font-family: "Sofia Pro Regular";
    display: inline-block;
    overflow: hidden;
    letter-spacing: .6px;
    text-align: center;
    background: none;
}

.default-btn:before {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, #115C59, #083937 90%);
    bottom: 0px;
    left: 0px;
    right: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: all 0.4s;
    z-index: -1;
}

.default-btn:after {
    content: '';
    position: absolute;
    background: #fff;
    bottom: 0px;
    left: 0px;
    right: 0;
    width: 100%;
    height: 100%;
    transition: all 0.4s;
    z-index: -2;
}

.default-btn:hover:before {
    height: 100%;
    z-index: -1;
}

.default-btn:hover {
  color: #FFF;
}

/*---*/

.color-btn{
border-color: rgba(7, 57, 55, 0.40);
color: #fff;
}

.color-btn.default-btn:hover {
    color: #083937;
}

.color-btn.default-btn:after {
    background: linear-gradient(180deg, #115C59, #083937 90%);
}

.color-btn.default-btn:before {
    background: #fff;
}


/*---*/

.line-button{
    color: #083937;
    font-size: 15px;
    transition: all .2s ease-In;
    position: relative;
}

.line-button::after{
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    background: #083937;
    bottom: 0px;
    left: 0;
}

.line-button:before {
    background: #ffffff;
    bottom: 0px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: 0 50%;
    transform-origin: 50% 50%;
    transition: transform .5s ease;
    width: 100%;
    z-index: 1;
}

.line-button:hover:before {
    transform: scaleX(1);
}

/*---*/

.arrow-butn{
    color: #073937;
    text-transform: capitalize;
    font-size: 15px;
    display: inline-block;
    transition: all 0.2s ease-In-Out;
    line-height: 1;
}

.arrow-butn img{
    margin-left: 3px;
    width: 10px;
}

.longarrow-butn.arrow-butn img{
    width: 22px;
}

.arrow-butn:hover img{
-webkit-animation: arrow-bounce .8s;
animation: arrow-bounce .8s;
}

@keyframes arrow-bounce {
    0% {
        transform: translateZ(0)
    }

    33.33% {
        transform: translate3d(2.5px,0,0)
    }

    66.66% {
        transform: translate3d(-1.5px,0,0)
    }

    to {
        transform: translateZ(0)
    }
}

/*-----*/

/*-- slick dot ---*/
.slick-dots {
bottom: 0px;
}

.slick-dots li button {
display: block;
width: 8px;
height: 8px;
padding: 0;
border: none;
border-radius: 5px;
background-color: #D9D9D9;
margin: 0px!important;
transition: all .2s ease-In;
}

.slick-dots li {
width: auto;
height: auto;
margin: 0px 3px;
}

.slick-dots li.slick-active button {
background-color: #115C59;
width: 30px;
}

.slick-dots li button::before{
display: none;
}


/*-----*/

.default-arrowleft,
.default-arrowright {
align-items: center;
border-radius: 50%;
cursor: pointer;
display: flex;
justify-content: center;
transition: all .2s ease;
width: 42px;    
height: 42px;
color: #083937;
font-size: 14px;
background: #fff;
border: 1px solid #083937;
position: absolute;
top: 50%;
transform: translatey(-50%);
}

.default-arrowleft:hover,
.default-arrowright:hover {
background: linear-gradient(180deg, #115C59, #083937 90%);
color: #fff;
}

/*---*/


/*--------------- home page header ---------------*/

.home-header{
left: 0;
position: fixed;
right: 0;
top: 0;
transition: all .4s ease-out;
width: 100%;
z-index: 9;
display: flex;
justify-content: space-between;
align-items: start;
}

.homelogo{
    margin: 20px 0 0 20px;
}

.homelogo a{
display: inline-block;
outline: none;
}

.homelogo a img {
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
width: 82px;
}

.header-links{
display: flex;
    align-items: center;
}

.book-link{
    background: #073937;
    display: inline-flex;
    align-items: center;
    padding: 13px 18px;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px; 
    transition: all 0.3s ease-In;
}

.book-link img{
    width: 16px;
    margin-right: 7px;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.book-link:hover {
   background: #fff;
    color: #073937;
}

.book-link:hover img {
    filter: none;
}

.phone-link{
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 13.5px;
    letter-spacing: 1.5px; 
    transition: all 0.2s ease-In;
    margin-right: 20px;
}

.phone-link img{
    width: 15px;
    margin-right: 7px;
    margin-top: 4px;
}

.phone-link:hover{
    transform: scale(1.05);
}


/*--------------- home page header ---------------*/

.header-area {
    left: 0;
    padding: 10px 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: all .4s ease-out;
    width: 100%;
    z-index: 9;
}

.logo a{
    display: inline-block;
}

.logo img {
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
width: 80px;
outline: none;
}

.main-headercall{
    color: #083937;
    font-size: 15px;
    transition: all 0.2s ease-In;
    display: inline-block;
}

.main-headercall:hover {
    transform: scale(1.04);
}

.stick{
padding: 8px 0px;
top: 0;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
box-shadow: 0 1px 15px rgba(0, 0, 0, 0.2);
background: #fff;
}

.stick .logo img {
width: 70px;
}


.main-headerlink{
    display: flex;
    align-items: center;
    justify-content: end;
}

.headermore {
border: 1.5px solid #083937;
padding: 9px 12px;
color: #083937;
position: relative;
transition: color .4s cubic-bezier(.47, .17, .17, .58);
font-size: 11px;
text-transform: uppercase;
font-family: "Sofia Pro Regular";
display: flex;
align-items: center;
overflow: hidden;
letter-spacing: .5px;
}

.headermore img{
    width: 14px;
    margin-right: 6px;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.headermore:hover img {
    filter: none;
}

.headermore:before {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, #115C59, #083937 90%);
    bottom: 0px;
    left: 0px;
    right: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: all 0.4s;
    z-index: -1;
}

.headermore:after {
    content: '';
    position: absolute;
    background: #fff;
    bottom: 0px;
    left: 0px;
    right: 0;
    width: 100%;
    height: 100%;
    transition: all 0.4s;
    z-index: -2;
}

.headermore:hover:before {
    height: 100%;
}

.headermore:hover {
  color: #FFF;
}

.headerbook{
    color: #fff;
    margin-right: 20px;
}

.headerbook.headermore:after {
    background: linear-gradient(180deg, #115C59, #083937 90%);
}

.headerbook.headermore:before {
    background: #fff;
}

.headerbook.headermore:hover{
color: #083937;
}

.white-header .main-headercall {
    color: #ffffff;
}

.headermenu{
    color: #073937;
    font-size: 13px;
    font-family: "Sofia Pro Regular";
    transition: all .3s ease-In-Out;
    text-transform: uppercase;
    letter-spacing: .8px;
    display: flex;
    align-items: center;
}

.menu-toogle{
position: relative;
width: 22px;
transition: all .3s ease-out;
margin-left: 4px;
}

.menu-toogle .menu-line {
background: #073937;
height: 2px;
position: relative;
transition: all .3s ease-out;
width: 100%;
border-radius: 5px;
}

.menu-toogle .icon-top {
width: 75%;
}

.menu-toogle .icon-center {
margin-top: 4px;
}

.menu-toogle .icon-bottom {
margin-top: 4px;
width: 75%;
}

.headermenu:hover .menu-toogle .menu-line {
width: 100%;
}


/*--*/

.white-header .headermenu{
    color: #fff;
}

.white-header .headermenu .menu-toogle .menu-line {
    background: #ffffff;
}



.stick.white-header .headermenu{
    color: #073937;
}

.stick.white-header .headermenu .menu-toogle .menu-line {
    background: #073937;
}

/*------*/

.banner-section{
    height: 100vh;
    position: relative;
}

.banner-section .container {
    left: 0;
    position: absolute;
    right: 0;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    overflow: hidden;
}

.banner-card{
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
}

.bannercard-item{
    display: block;
    position: relative;
    width: 30%;
    height: 430px;
    overflow: hidden;
    transition: width 0.8s ease;
}

.bannercard-item img{
    transition: transform 2.1s ease-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bannercard-item:hover img{
    transform: scale(1.06);
}

.bannercard-item div .banheading,
.bannercard-item div p{
    white-space: nowrap;
    color: #fff;
    padding: 0 20px 0 50px;
}

.bannercard-item div .banheading{
  position: relative;
  line-height: 1;
  font-family: "GT Sectra Display Regular";
  font-size: 44px;
  margin-bottom: 0px;
  text-transform: capitalize; 
}

.bannercard-item div .banheading::before{
    content: '';
    background-color: #fff;
    height: 1.5px;
    width: 35px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.bannercard-item div p{
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.bannercard-mobile{
    display: none;
}


.bannercard-item div{
    width: 0;
    transition: width 0.3s linear;
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    overflow: hidden;
}

.bannercard-item.active{
    width: 60%;
}

.bannercard-item.active div{
    width: 100%;
    transition: width 0.8s linear;
}

.banner-backimage {
  height: 100vh;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  bottom: 0;
}

.banner-backimage div{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.7s ease, transform 1.2s ease;
}

.banner-backimage div.active{
  opacity: 1;
}

/*-----------*/

.float-whatsapp {
    animation: bounce-3 3s ease infinite;
    bottom: 20px;
    right: 20px;
    position: fixed;
    z-index: 99;
    display: block;
}

.float-whatsapp img{
    transition: all 0.4s ease;
    width: 58px;
}

.float-whatsapp:hover img{
  transform: scale(1.1);
}


@keyframes bounce-3 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

/*--------*/

.subheader-text{
    padding: 100px 20px 0px;
    text-align: center;
}

.subheader-text ul li a{
    font-size: 16px;
    color: #083937;
    transition: all 0.2s ease-In;
}

.subheader-text ul li:nth-child(1) a{
    color: #000;
}

.subheader-text ul li a:hover{
    color: #000000;
}

.subheader-text ul{
    margin-top: 15px;
}

.subheader-text ul li{
    position: relative;
    margin-right: 10px;
    padding-right: 10px;
    display: inline-block;
    line-height: 1;
}

.subheader-text ul li::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 1.4px;
    background: #083937;
    top: 0;
    right: 0;
    bottom: 0;
}

.subheader-text ul li:last-child{
    margin-right: 0px;
    padding-right: 0px;
}

.subheader-text ul li:last-child:before{
display: none;
}

/*---*/

.image-subhead{
    height: 100vh;
    position: relative;
}

.image-subhead .container {
    bottom: 30px;
    left: 0;
    position: absolute;
    right: 0;
    z-index: 1;
}

.image-subhead .img-responsive {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.image-subhead p{
    color: #fff;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .5px;
}


.image-subhead ul li a{
    font-size: 15px;
    color: #ffffff;
    transition: all 0.2s ease-In;
}

.image-subhead ul li a:hover{
    color: #F5E8D8;
}

.image-subhead ul li{
    position: relative;
    margin-right: 10px;
    padding-right: 10px;
    display: inline-block;
    line-height: 1;
    color: #fff;
    font-size: 15px;
}

.image-subhead ul li::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    background: #ffffff;
    top: 0;
    right: 0;
    bottom: 0;
}

.image-subhead ul li:last-child{
    margin-right: 0px;
    padding-right: 0px;
}

.image-subhead ul li:last-child:before{
display: none;
}


/*---- footer ----*/

.footer-midarea{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.footer-social {
  list-style: none;
  padding: 0;
  margin: 7px 0 30px;
  text-align: center;
}

.footer-social li {
  display: inline-block;
}

.footer-social li a {
    color: #115C59;
    width: 36px;
    height: 36px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    font-size: 15px;
    border: 1px solid rgb(0 0 0 / 10%);
    position: relative;
    z-index: 1;
    transition: all .3s ease-in-out;
    background: #fff;
}

.footer-social li:nth-child(1) a {
  margin-left: 0px;
}

.footer-social li a:before {
  content: '';
  position: absolute;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  transition: all .3s ease-in-out;
  transform: scale(0);
  transform-origin: center;
  z-index: -1;
background: linear-gradient(180deg, #115C59, #083937 90%);
}

.footer-social li a:hover:before {
  transform: scale(1);
}

.footer-social li a:hover {
   color: #ffffff;
}


.footer-location{
margin-bottom: 18px;
}

.footer-location span{
    font-family: "Sofia Pro Regular";
    text-transform: uppercase;
    font-size: 15px;
}

.footer-location small{
font-family: "Sofia Pro Regular";
}

.footer-location p{
    margin: 3px 0px 0px;
}

.footer-tagline{
    font-size: 34px;
    width: 43%;
    margin: 0 auto 20px;
    text-align: center;
}

.footer-contact{
    text-align: center;
    display: grid;
    justify-content: center;
}

.footer-contact a{
    color: rgb(0 0 0 / 70%);
    font-size: 15px;
    transition: all 0.2s ease-In;
    margin-bottom: 5px;
    display: inline-block;
}

.footer-contact a:hover{
    color: #083937;
}

.footer-links{
text-align: center;
color: rgb(0 0 0 / 70%);
}

.footer-links a{
    color: rgb(0 0 0 / 70%);
    font-size: 14px;
    transition: all 0.2s ease-In;
    display: inline-block;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 5px;
}

.footer-links a:hover{
    color: #083937;
}

.footer-image{
    text-align: right;
}

.footer-image img{
    width: 88%;
    display: inline-block;
}

.footer-bottom{
    padding: 10px;
    text-align: center;
    border-top: 1px solid rgb(0 0 0 / 40%);
    margin-top: 25px;    
}

.footer-bottom p{
margin: 0;
color: #000;
}

.footer-bottom p span{
    color: #083937;
}


/*---- Offer Listing ----*/

.offer-hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.offer-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
}

.offer-hero-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 1;
  padding: 0 20px;
}

.offer-hero-subtitle {
  color: #F8F2EC;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 18px;
  font-family: "Sofia Pro Regular";
}

.offer-hero-heading {
  color: #fff;
  font-size: 62px;
  line-height: 1.1;
  margin: 0;
}

.offer-hero-bottom {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 1;
}

.offer-breadcrumb li {
  position: relative;
  margin-right: 10px;
  padding-right: 10px;
  display: inline-block;
  line-height: 1;
  color: #fff;
  font-size: 15px;
}

.offer-breadcrumb li::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 1px;
  background: #fff;
  top: 0;
  right: 0;
  bottom: 0;
}

.offer-breadcrumb li a {
  font-size: 15px;
  color: #fff;
  transition: all 0.2s ease-In;
}

.offer-breadcrumb li a:hover {
  color: #F5E8D8;
}

.offer-breadcrumb li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.offer-breadcrumb li:last-child::before {
  display: none;
}

/*--*/

.offerpage-banner .heading{
    text-align: center;
    color: #fff;
    margin-top: 5px;
    font-size: 48px;
}

.offer-listing {
  margin: 90px 0 60px;
}

.offer-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  margin-bottom: 30px;
}

.offer-card::before {
    content: '';
    position: absolute;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 55%);
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70%;
    z-index: 1;
}

.offer-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #fff;
    color: #083937;
    font-size: 11px;
    padding: 8px;
    border-radius: 5px;
    font-family: "Sofia Pro Regular";
    line-height: 1;
    z-index: 1;
    text-transform: uppercase;
}

.offercard-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    width: 100%;
    gap: 12px;
}

.offercard-content h4 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 6px;
    text-transform: capitalize;
}

.offercard-content p {
  color: #fff;
  font-size: 14px;
  margin: 0;
}

.offercard-content span {
    background: linear-gradient(180deg, #115C59, #083937 90%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all .2s ease-In;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-card:hover .offercard-content span{
    transform: rotate(-45deg);
}

.offercard-content span img{
filter: brightness(0) invert(1);
}

.offer-card .img-responsive{
  width: 100%;
  transition: transform 0.4s ease;
}

.offer-card:hover .img-responsive {
  transform: scale(1.05);
}

/*---- offer detail page*/

.offerdetail-banner.image-subhead {
height: 480px;
}

.offerdetail-content {
    margin: 80px 0px 90px;
}

.offerdetail-detail .offerdetail-head,
.offerdetail-time .offerdetail-head,
.offerdetail-include .offerdetail-head{
    font-size: 27px;
}

.offerdetail-time, .offerdetail-include{
    margin-top: 40px;
}

.offerdetail-detail p{
    margin: 0;
}

.offerdetail-detail span{
    color: #083937;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
    font-family: "Sofia Pro Regular";
}

.offerdetail-detail span img{
    width: 12px;
}


.offerdetail-include ul {
    list-style: disc;
    padding-left: 15px;
    margin-top: 14px;
}

.offerdetail-include ul li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    color: rgb(0 0 0 / 70%);
    font-size: 15px;
    border-bottom: 1px solid rgb(0 0 0 / 18%);
}

.offerdetail-include ul li::marker {
    color: #073937;
}

.offerdetail-include ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: 0;
}


.offerdetail-time ul {
    list-style: disc;
    padding-left: 15px;
}

.offerdetail-time ul li {
    margin-bottom: 10px;
    color: rgb(0 0 0 / 70%);
    font-size: 15px;
    font-family: "Sofia Pro Regular";
}

.offerdetail-time ul li::marker {
    color: #073937;
}

.offerdetail-time ul li:last-child {
    margin-bottom: 0;
}



.offer-enquirybox {
    background: #fff;
    border: 1px solid rgba(17, 92, 89, 0.14);
    border-radius: 12px;
    box-shadow: 0 2px 15px 0 rgba(17, 92, 89, 0.14);
    padding: 25px;
    position: sticky;
    top: 120px;
}

.offer-enquirybox p{
    color: #000;
    margin: 0;
}

.offer-enquirybox small {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 25px 0px;
    padding: 18px 0px 22px;
    border: solid #E4E9E9;
    border-width: 1px 0px 1px 0px;
}

.offer-enquirybox small img{
    width: 14px;
    margin-top: 5px;
}



/*---- Room Listing ----*/

.room-listing-section {
margin-bottom: 90px;
}

.first-roomlist{
margin-top: -130px;
}

.room-listing {
  position: relative;
  text-align: right;
  overflow: hidden;
}

.room-listing .container {
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    text-align: left;
    bottom: 0;
    z-index: 1;
}

.room-content {
  padding-left: 10px;
}

.room-content span{
    font-family: "Berlingske Serif";
    font-size: 44px;
    display: block;
    margin-bottom: 10px;
}

.room-content p{
    margin: 0px;
}

.room-image-wrap {
  overflow: hidden;
  width: 55%;
  display: inline-block;
}

.room-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-left: 10px;
}

.room-details{
display: flex;
justify-content: space-between;
align-items: end;
padding-left: 20px;
}

.room-details ul{
width: 50%;
}

.room-details ul li{
    color: #073937;
    text-transform: capitalize;
    font-size: 15px;
    margin-bottom: 9px;
    line-height: 1;
}

.room-details ul li:last-child{
    margin-bottom: 0;
}

.roomdetail-area{
    margin-top: 20px;
}



/*---- Room Feature ----*/

.room-feature-section {
  background: #073937;
  padding: 70px 0;
  margin-bottom: 90px;
  margin-top: 120px;
}

.room-feature-section .heading{
color: #fff;
text-transform: capitalize;
}

.roomfeature-box{
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.roomfeature-box ul{
    list-style: disc;
    padding-left: 15px;
    width: 47%;
}

.roomfeature-box ul li {
  position: relative;
  margin-bottom: 20px;
  color: #fff;
  font-size: 15px;
}

.roomfeature-box ul li:last-child {
  margin-bottom: 0;
}

.room-catlist{
    position: sticky;
    z-index: 2;
    top: 110px;
    margin-top: 80px;
    margin-bottom: -100px;
}

.room-catlist ul{
    display: inline-flex;
    flex-direction: column;
    width: 135px;
}

.room-catlist ul li{
    color: #073937;
    font-size: 15px;
    font-family: "Sofia Pro Regular";
    margin-bottom: 4px;
    cursor: pointer;
    position: relative;
    transition: all .3s ease-In-Out;
}

.room-catlist ul li::before{
    position: absolute;
    content: '';
    background: #073937;
    width: 6px;
    height: 6px;
    top: 50%;
    left: 0;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all .2s ease-In-Out;
    opacity: 0;
}

.room-catlist ul li:last-child{
    margin-bottom: 0px;
}

.room-catlist ul li:hover{
    padding-left: 12px;
}

.room-catlist ul li:hover:before{
    opacity: 1;
}

.room-catlist ul li.active{
    padding-left: 12px;
}

.room-catlist ul li.active:before{
    opacity: 1;
}

/*----*/

.roomdetail-image{
    position: relative;
}

.roomdetail-image img{
    width: 70%;
}

.roomdetail-content{
    margin: 90px 0px; 
}

.roomdetail-content p{
    font-family: "Berlingske Serif";
    margin: 0;
    font-size: 29px;
    color: #000;
}


.roomfeature-list{
    display: flex;
    justify-content: space-between;
        gap: 15px;
    margin-top: 30px;
}

.roomfeature-list ul {
    list-style: disc;
    padding-left: 15px;
    width: 33.3%;
}

.roomfeature-list ul li {
    position: relative;
    margin-bottom: 10px;
    color: #596737;
    font-size: 15px;
}

.roomfeature-list ul li:last-child {
    margin-bottom: 0;
}

.roomfeature-list ul li::marker {
  color: #073937;
}


.roomdetail-count{
    background: linear-gradient(0deg, rgba(248, 242, 236, 0.00) 0%, #F8F2EC 50%, rgba(248, 242, 236, 0.00) 100%);
    padding: 50px 0px;
}

.roomcount-row{
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.roomcount-row div{
text-align: center;
}

.roomcount-row div img{
width: 26px;
}

.roomcount-row div span{
    display: block;
    font-size: 38px;
    margin-bottom: 0px;
    line-height: 1.2;
    font-family: "Berlingske Serif";
    color: #083937;
    margin: 6px 0 2px;
}

.roomcount-row div span sup{
    font-size: 22px;
}

.roomcount-row div p{
    margin: 0;
    color: #083937;
    text-transform: uppercase;
    font-size: 14px;
}


.roomdetail-book{
margin: 90px 0px;
}

.roomdetail-book ul{
    margin: 25px 0px 35px;
    text-align: center;
}

.roomdetail-book ul li {
    position: relative;
    margin-right: 15px;
    padding-right: 15px;
    display: inline-block;
    line-height: 1;
    font-size: 14px;
    background: linear-gradient(180deg, #115C59 0%, #083937 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.roomdetail-book ul li::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 1.3px;
    background: linear-gradient(180deg, #115C59 0%, #083937 100%);
    top: 0;
    right: 0;
    bottom: 0;
}

.roomdetail-book ul li:last-child {
    margin-right: 0px;
    padding-right: 0px;
}

.roomdetail-book ul li:last-child:before{
display: none;
}

.roomdetail-book .default-btn{
    display: block;
    width: 75%;
    margin: 0 auto;
}

.roomdetail-book .color-btn{
    margin-bottom: 15px;
}


.roomdetail-gallery{
    margin: 90px 0px;
    overflow: hidden;
}

.roomgallery-slider{
    position: relative;
    padding: 15px 0px 70px;
}

.roomgallery-slider::before{
    content: '';
    position: absolute;
    width: 600px;
    height: 100%;
    background: #F5E8D8;
    top: 0;
    bottom: 0;
    left: 18%;
}

.roomgallery-slider .slick-slider{
    margin-right: -300px;
}

.roomgallery-slider .slick-slider .slick-slide>div {
    padding: 0 10px;
}

.roomgallery-box{
    position: relative;
    display: block;
}

.roomgallery-box::before {
    background: rgb(0 0 0 / 40%);
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    content: '';
    top: 0px;
    width: 100%;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.roomgallery-box svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 32px;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    opacity: 0;
}

.roomgallery-box:hover:before, 
.roomgallery-box:hover svg {
    opacity: 1;
}


.roomgallery-arrow{
    align-items: center;
    background: #F5E8D8;
    border-radius: 50%;
    color: #596737;
    cursor: pointer;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 140px;
    right: 20px;
    transition: all .2s ease-In;
    width: 48px;
    height: 48px;
    z-index: 1;
}

.roomgallery-arrow img{
    width: 21px;
    transition: 0.3s ease-out;
}

.roomgallery-arrow:hover{
    background: linear-gradient(180deg, #115C59, #083937 90%);
}

.roomgallery-arrow:hover img {
    filter: brightness(0) invert(1);
}


/*---- Room Slider ----*/

.room-slider-section {
    margin-bottom: 90px;
}

.room-slider-section > .heading {
    margin-bottom: 30px;
}

.room-slider {
    position: relative;
    height: 500px;
    cursor: none;
}

.room-slider::before {
    position: absolute;
    content: '';
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.room-slider-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.room-slider-bg.active {
    opacity: 1;
}

.room-slider-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 1;
}

.room-slider-inner .slick-slider,
.room-slider-inner .slick-list {
    width: 100%;
}

.roomslider-item {
    text-align: center;
    padding: 0 30px;
    opacity: 0.4;
    transition: opacity 0.5s ease;
    display: block;
}

.room-slider-inner .slick-center .roomslider-item {
    opacity: 1;
}

.roomslider-item .heading {
    color: #fff;
    margin-bottom: 25px;
    display: block;
    font-family: "Berlingske Serif";
}

.roomslide-details li {
    position: relative;
    margin-right: 12px;
    padding-right: 12px;
    display: inline-block;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .5px;
}

.roomslide-details li::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 1.5px;
    background: #fff;
    top: 0;
    right: 0;
    bottom: 0;
}

.roomslide-details li:last-child {
    margin-right: 0px;
    padding-right: 0px;
}

.roomslide-details li:last-child:before{
display: none;
}


.room-slider-footer {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1;
}

.room-slider .arrow-butn {
    color: #fff;
}

.room-slider .arrow-butn img {
    filter: brightness(0) invert(1);
}

.room-slider-inner .slick-slide .roomslider-item {
    pointer-events: none;
}

.slider-cursor {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #F5E8D8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #596737;
    font-size: 16px;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.slider-cursor.visible {
    opacity: 1;
}

/*----- contact --*/

.contactpage-include{
    margin-bottom: 90px;
    overflow: hidden;
}

.contact-include-image{
    display: flex;
    align-items: start;
    position: relative;
}

.contact-include-image img{
width: 50%;
}

.contact-include-box{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    width: 400px;
    background: #F5E8D8;
    padding: 40px;
}

.contact-include-box .heading{
        color: #073937;
}

.contact-include-box span{
    color: #596737;
    font-size: 14px;
    font-family: "Sofia Pro Regular";
    text-transform: uppercase;
    padding-left: 14px;
    position: relative;
}

.contact-include-box span::before {
    content: '';
    position: absolute;
    background: #073937;
    width: 7px;
    height: 7px;
    left: 0;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.contact-include-box p{
    margin: 10px 0 35px;
}


.contactpage-head{
    margin: 90px 0px;
}

.contactpage-head p{
    font-family: "Berlingske Serif";
    margin-bottom: 10px;
    font-size: 28px;
    color: #000;
    line-height: 1.4;
}

.contactpage-head span{
    text-transform: uppercase;
    font-size: 14px;
    background: linear-gradient(180deg, #115C59 0%, #083937 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-left: 15px;
}

.contactpage-head span::before{
    content: '';
    position: absolute;
    background: linear-gradient(180deg, #115C59 0%, #083937 100%);
    width: 7px;
    height: 7px;
    left: 0;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}


.contactpage-map iframe{
height: 550px;
}


.contactpage-address{
margin-bottom: 90px;
}

.image-frame{
    background: #F5E8D8;
    padding: 16px 16px 60px;
    position: relative;
}

.contactpage-address .image-frame img {
    object-fit: cover;
    width: 100%;
    height: 480px;
}

.contact-addressbox{
    padding-left: 40px;
}

.contact-addressbox .heading{
    margin-bottom: 2px;
}

.contact-addressbox span{
    display: block;
    font-size: 20px;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.1;
    font-family: "Berlingske Serif";
}

.contact-addressbox p{
margin-bottom: 28px;
}

.contact-addressbox div{
    display: flex;
    margin-bottom: 6px;
    gap: 10px;
    align-items: center;
}

.contact-addressbox a{
    color: rgb(0 0 0 / 70%);
    font-size: 15px;
    transition: all 0.2s ease-In;
}

.contact-addressbox a:hover{
    color: #083937;
}


.contactpage-form{
    margin: 90px 0px;
}

.contactform-head{
    text-align: center;
}

.contactform-head p{
    margin: 10px 0 20px;
}

.form-field{
margin-bottom: 16px;
}

.contact-form .form-control {
    background: none;
    border: 0;
    border-bottom: 1.5px solid rgb(7 57 55 / 55%);
    border-radius: 0;
    box-shadow: none;
    color: rgb(0 0 0 / 70%);
    font-size: 15px;
    padding: .375rem 0;
}

.contact-form textarea {
    height: 70px;
}

.contact-form  .default-btn{
    width: 100%;
    margin-top: 8px;
}

/*--------*/

.aboutpage-stay{
margin: 90px 0px;
}

.aboutpage-stay .img-responsive{
    width: 95%;
}

.aboutstay-detail{
padding-left: 20px;
}

.aboutstay-detail span{
    display: block;
    color: #073937;
    font-size: 15px;
    font-family: "Sofia Pro Regular";
    margin: 12px 0 20px;
}

.aboutstay-detail p{
margin: 0;
}


.aboutgallery-box{
    display: flex;
    justify-content: space-between;
}

.aboutgallery-box img {
    display: block;
    height: auto;
    max-width: 100%;
}

.aboutgallery-box div {
    height: 100%;
    width: 33%;
}

.aboutgallery-box .img-responsive {
    height: 100%;
    width: 46%;
}

.aboutgallery-box p {
    text-align: center;
    margin: 20px 0 0;
}

.aboutgallery-mobile{
    display: none;
}


.aboutpage-mind {
    position: relative;
    padding-top: 80px;
}

.aboutpage-mind .container {
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
}

.aboutpage-mind .col-lg-6 {
margin-right: 100px;
}

.aboutmind-image{
    width: 51%;
    height: 660px;
    object-fit: cover;
}

.aboutmind-box{
    background: #F8F2EC;
    padding: 15px;
    position: relative;
}

.aboutmind-box .heading{
    background: linear-gradient(180deg, #115C59 0%, #083937 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    padding: 50px 40px 45px;
    font-size: 50px;
}

.aboutmind-detail{
    margin: 40px 0px 90px;
}

.aboutmind-detail span{
    display: block;
    color: #073937;
    font-size: 15px;
    font-family: "Sofia Pro Regular";
    margin-bottom: 18px;
}

.aboutmind-detail p{
margin: 0;
}


.about-property{
    margin: 90px 0px;
    overflow: hidden;
}

.property-slider-wrap .slick-slider{
    margin-right: -200px;
}

.property-slider-wrap {
    margin: 35px -15px 0px;
}

.property-slide-item {
    padding: 0 15px;
}


.property-card picture {
    width: 100%;
    overflow: hidden;
    display: block;
}

.property-card picture img{
    width: 100%;
    transition: transform 0.4s ease;
}

.property-card:hover picture img {
    transform: scale(1.06);
}

.property-card div{
    padding: 20px 20px 0px;
    text-align: center;
}

.property-card div span {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1e1e1e;
}

.property-card div h4 {
    font-size: 30px;
    line-height: 1.1;
    margin: 8px 0;
    color: #000000;
}

.property-card div p {
    margin-bottom: 0;
}


/* Scrollbar */
.property-scrollbar-wrap {
    margin: 40px auto 0;
    width: 70%;
}

.property-scrollbar-track {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.property-scrollbar-thumb {
    position: absolute;
    top: 0;
    height: 2px;
    background-color: #073937;
    transition: left 0.6s ease;
    transform: translateY(-50%);
}

/*-----------*/

.rishikesh-head{
    margin: 90px 0px;
    text-align: center;
}

.rishikesh-head p {
    font-family: "Berlingske Serif";
    margin: 8px 0 0;
    font-size: 34px;
    color: #000;
    line-height: 1.4;
}

.rishikesh-head span {
    text-transform: uppercase;
    font-size: 14px;
    background: linear-gradient(180deg, #115C59 0%, #083937 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    font-family: "Sofia Pro Regular";
    letter-spacing: .5px;
}


.rishikesh-bigimage{
text-align: center;
}

.rishikesh-bigimage .heading{
    width: 73%;
    margin: 0 auto;
}

.rishikesh-bigimage p{
    margin: 18px 0 0;
}

.rishikesh-bigimage img{
    width: 90px;
    margin-top: 20px;
}

.rishikesh-bigimage .img-responsive{
    width: 100%;
    margin-top: -10px;
}


.rishikesh-dining{
overflow: hidden;
margin: 90px 0px;
}

.rishikesh-dining .heading{
margin-bottom: 30px;
width: 45%;
}

.rishikesh-dining p{
margin-bottom: 50px;
}

.rishdining-img{
padding-right: 50px;
}

.rishdining-img div{
    display: flex;
    justify-content: end;
    margin-bottom: 70px;
}

.rishdining-img div img{
width: 66%;
}


.rishikesh-book{
position: relative;
}

.rishikesh-book .col-lg-6{
margin-right: 110px;
}

.rishikesh-book .img-responsive{
width: 90%;
margin-top: 35px;
}

.rishikesh-bookdetail{
    padding-left: 60px;
}

.rishikesh-bookdetail .heading{
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.rishbook-shape{
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
}

.rishbook-shape img{
    width: 280px;
}


.rishikesh-about{
    position: relative;
}

.rishabout-detail{
    padding-left: 40px;
    margin-bottom: 70px;
}

.rishabout-detail .heading {
    font-size: 32px;
    line-height: 1.2;
    margin: 8px 0px;
}

.rishabout-image{
    position: relative;
}

.rishabout-image .img-responsive{
    width: 82%;
}

.rishabout-image .leaf-image{
    position: absolute;
    right: -10px;
    top: -80px;
    z-index: -1;
    width: 130px;
}

.flower-image{
    position: absolute;
    top: -140px;
    left: -30px;
    width: 130px;
}


.rishikesh-video{
    margin: 90px 0px;
}

.rishikesh-video video{
    width: 100%;
    height: 550px;
    object-fit: cover;
}


.rishikesh-nearby{
margin: 90px 0px;
overflow: hidden;
}

.nearby-slider{
    margin-top: 25px;
    margin-right: -100px;
    padding-bottom: 35px;
}

.nearby-slider .slick-slide>div {
    padding: 0 8px;
}

.nearby-slider .slick-dots{
  width: 1210px;
  padding: 0px 12px;
}

.nearby-box{
    position: relative;
    overflow: hidden;
}

.nearby-box:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 25%;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.80) 100%);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.nearby-box p{
    position: absolute;
    top: 86%;
    left: 0;
    right: 0;
    padding: 18px;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    letter-spacing: .5px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}


.nearby-box:hover:before {
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%);
}

.nearby-box:hover p {
    transform: translateY(-50%);
    top: 50%;
}


.rishikesh-available{
margin: 90px 0px;
}

.available-box{
    display: flex;
    flex-wrap: wrap;
    background: #EDEFD7;
    padding: 40px 0px 60px;
    position: relative;
    z-index: 1;
}

.available-box::before{
    z-index: -1;
    content: '';
    position: absolute;
    width: 18%;
    height: 100%;
    left: 0;
    bottom: 0;
    top: 0;
    background: #fff;
}

.available-box .sub-title{
    flex: 1 1 100%;
    margin-left: 24%;
    margin-bottom: 38px;
}

.available-box .img-responsive{
    width: 50%;
    flex: 1 1 50%;
}

.available-detail{
    width: 50%;
    padding: 50px 60px;
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.available-detail h4{
    color: #282828;
    margin: 0;
    font-size: 32px;
    line-height: 1.2;
}



.rishikesh-place .heading{
    font-size: 42px;
}

.rishikesh-place p{
margin: 0;
}

.rishplace-link li{
margin-bottom: 5px;
}

.rishplace-link li:last-child{
margin-bottom: 0px;
}

.rishplace-link a{
    color: rgb(40 40 40 / 70%);
    align-items: center;
    transition: all .2s ease-In;
    font-size: 15px;
    display: inline-block;
    line-height: 1;
}

.rishplace-link a img{
    transition: all .3s ease-In;
    opacity: 0;
    width: 10px;
}

.rishplace-link a:hover{
opacity: 1;
color: #073937;
}

.rishplace-link a:hover img{
opacity: 1;
margin-left: 5px;
}

.rishikesh-gallery{
    margin-top: 40px;
}

 
.rishroom-head{
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 25px;
}

.rishroom-head .heading{
width: 36%;
}


.rishroom-head .default-arrowleft, 
.rishroom-head .default-arrowright{
    position: unset;
    transform: none;
}

.rishroom-arrows{
    display: flex;
    gap: 10px;
}

.rishroom-image{
position: relative;
}

.rishroom-imagelogo{
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
}

.rishroom-content{
    background: #EDEFD7 url(../public/image/pattern.webp) no-repeat;
    padding: 40px 30px;
    height: 88%;
}

.rishroom-content .slick-slider, 
.rishroom-content .slick-slider .slick-list, 
.rishroom-content .slick-slider .slick-track, 
.rishroom-content .slick-slider .slick-slide,
.rishroom-content .slick-slide>div{
    height: 100%;
}

.rishroom-content .slick-slide>div{
padding: 0 12px;
}

.rishroom-slideitem{
    height: 100%;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
}

.rishroom-slideitem .heading {
    font-size: 42px;
    color: #282828;
}

.rishroom-slideitem .arrow-butn img{
    display: inline-block;
}

.no-leftpadd{
padding-left: 0px;
}

.no-rightpadd{
padding-right: 0px;
}


.testimonial{
overflow: hidden;
}

.testimonial-slider{
    margin-top: 35px;
    position: relative;
}

.testimonial-slider .slick-slider{
    padding-bottom: 30px;
}

.testimonial-slider .slick-slider .slick-slide>div {
    padding: 0 12px;
}

.testimonial-box{
text-align: center;
}

.testimonial-box p{
    font-family: "Berlingske Serif";
    margin-bottom: 22px;
    font-size: 26px;
    color: #000;
    line-height: 1.4;
    font-style: italic;
}

.testimonial-box p img{
    display: inline-block;
    width: 28px;
}

.testimonial-box p img:nth-child(1){
    vertical-align: top;
}

.testimonial-box p img:nth-child(2){
    vertical-align: bottom;
    transform: rotate(180deg);
}


.testimonial-box .client-image{
    margin: 0 auto;
    width: 55px;
}

.testimonial-box span{
    background: linear-gradient(180deg, #115C59 0%, #083937 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-family: "Sofia Pro Regular";
    font-size: 14px;
    display: block;
    line-height: 1;
    margin: 12px 0 1px;
}

.testimonial-box small{
    color: rgb(0 0 0 / 70%);
}


.testimonial-arrowleft, 
.testimonial-arrowright {
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all .2s ease;
    color: #083937;
    font-size: 32px;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
}

.testimonial-arrowleft:hover, 
.testimonial-arrowright:hover {
opacity: 0.7;
}

.testimonial-arrowleft{
    left: -90px;
}

.testimonial-arrowright{
    right: -90px;
}


.resort-banner{
    height: 100vh;
    position: relative;
}

.resort-banner::before{
    height: 100%;
    width: 100%;
    position: absolute;
    content: '';
    background: rgb(0 0 0 / 15%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.mainbanner-slider .slick-slider .img-responsive {
    height: 100vh;
    object-fit: cover;
    width: 100%;
}

.smallbanner-slider.container {
    bottom: 90px;
    left: 0;
    position: absolute;
    right: 0;
    z-index: 1;
}

.smallbanner-slider .slick-slider{
-webkit-mask-image: linear-gradient(90deg, #0000 2%, #000 25%, #000 75%, #0000 98%);
mask-image: linear-gradient(90deg, #0000 2%, #000 25%, #000 75%, #0000 98%);
}

.smallbanner-slider .slick-slide>div {
    padding: 0 6px;
}

.smallbanner-slider .slick-slider .img-responsive {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
    border: 1.5px solid transparent;
}

.smallbanner-slider .slick-center .img-responsive{
border-color: #fff;
}

.mainbanner-form {
    bottom: 0px;
    left: 0;
    position: absolute;
    right: 0;
    border-top: 1px solid #FFFFFF;
    z-index: 1;
}

.mainbanner-form form{ 
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-datebox{
    width: 32%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mainbanner-form form .datefeild{ 
    display: inline-flex;
    align-items: center;
}

.mainbanner-form form .datefeild input{ 
    background: none;
    border: 0;
    box-shadow: none;
    outline: none;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    width: 90px;
    padding: 15px 0;
}

.mainbanner-form form .datefeild input::placeholder{ 
    color: #fff;
}

.mainbanner-form form .datefeild svg{ 
    color: #fff;
    font-size: 13px;
}

.mainbanner-form .form-butnbox{
    width: 43%;
}

.mainbanner-form .form-butnbox button{
    box-shadow: none;
    outline: none;
    border: 0;
    color: #fff;
    background: none;
    padding: 15px 10px;
    font-size: 15px;
    width: 100%;
}

.mainbanner-form .form-butnbox button::before {
    position: absolute;
    content: "";
    backdrop-filter: blur(8px);
    background-color: rgb(89 89 89 / 50%);
    height: 100%;
    width: 32vw;
    top: 0;
    right: 0;
    z-index: -1;
}

.mainbanner-form form .datefeild .react-datepicker {
    left: 70px;
}

/*-------------*/

.goa-dinning{
overflow: hidden;
}

.goa-dinning .goa-shapeheading {
    margin-bottom: 35px;
}

.goa-shapeheading{
    text-align: center;
}

.goa-shapeheading .heading {
    width: 85%;
    margin: 0 auto;
}

.goa-shapeheading img {
    width: 100px;
    margin: 20px 0;
}

.goa-shapeheading p {
    margin: 0;
}

.second-goadinning{
    width: 70%;
    float: right;
    margin-top: 120px;
}

.goadinning-box{
    display: block;
}

.goadinning-box picture {
    overflow: hidden;
    display: block;
    margin-bottom: 15px;
}

.goadinning-box picture img{
    width: 100%;
    transition: transform 0.4s ease;
}

.goadinning-box:hover picture img {
    transform: scale(1.06);
}

.goadinning-box div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.goadinning-box div img{
    width: 20px;
}

.goadinning-box:hover div img {
    animation-name: bounceAlpha;
    animation-duration: 1.2s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
}

.goadinning-box p{
    font-size: 34px;
    color: #000000;
    line-height: 1.1;
    font-family: "Berlingske Serif";
    margin: 0;
}

@keyframes bounceAlpha {
0% {opacity: 1; transform: translateX(0px) scale(1);}
25%{opacity: 0; transform:translateX(15px) scale(0.9);}
26%{opacity: 0; transform:translateX(-15px) scale(0.9);}
55% {opacity: 1; transform: translateX(0px) scale(1);}
}


.goa-placearea{
    margin: 85px 0px 90px;
}

.goaplace-slider{
    margin-top: 30px;
    padding-bottom: 30px;
}

.goaplace-slider .slick-slide>div {
    padding: 0 12px;
}

.goaplace-box{
position: relative;
overflow: hidden;
}

.goaplace-box:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 45%;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.70) 100%);
    transition: all 0.4s ease-in-out;
}

.goaplace-box div {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0px 15px 30px;
    margin: 0;
    text-align: center;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.goaplace-box p{
    font-size: 26px;
    color: #ffffff;
    line-height: 1.1;
    font-family: "Berlingske Serif";
    margin: 20px 0 0;
}

.goaplace-box div img{
    width: 55px;
    margin: 0 auto;
}


.goa-rooms{
margin: 90px 0px;
}

.goa-rooms .goa-shapeheading {
    margin-bottom: 30px;
}

.goa-rooms .default-btn{
margin-left: 10px;
}

.goaroom-slider{
padding-bottom: 30px;
margin-bottom: 23px;
}

.goaroom-slider .slick-dots {
    text-align: left;
    margin-left: 10px;
}

.goaroom-slider .slick-slide>div {
    padding: 10px 10px 0;
}

.goaroom-box div{
    background: rgb(25 57 41 / 20%);
}

.goaroom-box div img{
    width: 100%;
    transition: all 0.3s ease;
    transform: translate(0px, 0px);
}

.goaroom-box:hover div img {
    transform: translate(12px, -12px);
}

.goaroom-box span{
    font-size: 38px;
    color: #000000;
    margin: 11px 0 5px;
    line-height: 1.1;
    font-family: "Berlingske Serif";
    display: block;
}

.goaroom-box p{
    margin: 0;
}

.goaroom-imagebox{
    margin-top: 80px;
}


.goapage-video video {
    width: 100%;
    height: 550px;
    object-fit: cover;
}


.goa-nearby{
margin: 90px 0px;
}

.goanearby-slider{
    padding-bottom: 30px;
    margin: 30px -8px 0;
}

.goanearby-slider .slick-slide>div {
    padding: 0 10px;
}

.goanearby-box span{
    font-size: 26px;
    color: #000000;
    line-height: 1.1;
    font-family: "Berlingske Serif";
    margin: 15px 0 10px;
    text-transform: capitalize;
    display: block;
}

.goanearby-box p{
    margin: 0;
}


.goa-gallery{
    margin: 90px 0px;
}

.goa-gallery .heading {
    font-size: 46px;
    margin-bottom: 20px;
}

.goagallery-box{
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 30px;
}

.goagallery-box a{
position: relative;
display: block;
margin-top: 15px;
}

.goagallery-big, .goagallery-small{
width: 33.3%;
}

.goagallery-small a:nth-child(1){
    height: 320px;
}

.goagallery-small a:nth-child(2){
    height: 350px;
}

.goagallery-big a{
    height: 370px;
}

.goagallery-box a::before {
    background: rgb(0 0 0 / 40%);
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    content: '';
    top: 0px;
    width: 100%;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.goagallery-box a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.goagallery-box a svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 32px;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    opacity: 0;
}

.goagallery-box a:hover:before, 
.goagallery-box a:hover svg {
    opacity: 1;
}

/*-----------*/

.meetpage-bigimage{
    margin-top: 90px;
}

.meetpage-bigimage img{
    width: 100%;
}

.meetpage-event{
    border-bottom: 0px !important;
    margin-bottom: 0px !important;
}

.meetpage-event .wedding-slide p {
    min-height: 90px;
}


.meetpage-about{
    border-bottom: 1px solid #D9D9D9;
    margin-top: 5px;
    text-align: right;
    position: relative;    
}

.meetpage-about .container {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.meetabout-image{
    width: 52%;
}

.meetabout-detail p{
    font-size: 19px;
    font-family: "Berlingske Serif";
    text-align: center;
    color: #000;
    margin-bottom: 50px;
}

.meetabout-detail img{
    padding: 0 10px;
}


.meetpage-value{
    margin: 90px 0px;
    overflow: hidden;
}

.meetvalue-box{
    display: flex;
    justify-content: space-between;
    padding-right: 60px;
    gap: 10px;
}


.meetvalue-box div {
    width: 72%;
}

.meetvalue-box .heading {
    font-size: 20px;
    color: #073937;
    margin-bottom: 0px;
}

.meetvalue-box p{
    font-size: 20px;
    font-family: "Berlingske Serif";
    color: #000;
    margin-bottom: 30px;
}

.meetvalue-box ul li{
    display: flex;
    align-items: start;
    margin-bottom: 12px;
    color: #000;
    font-size: 15px;
}

.meetvalue-box ul li:last-child{
margin-bottom: 0px;
}

.meetvalue-box ul li img{
    width: 13px;
    margin: 5px 7px 0 0;
}

/*---- */

.meeting-teambuild {
  position: relative;
}

.meeting-teambuild .container {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
}

.meeting-left-card {
  position: relative;
  width: 50%;
}

.meeting-left-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meeting-left-card div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 48px;
  line-height: 1.1;
  font-family: "Berlingske Serif";
  text-align: center;
  letter-spacing: 1px;
  width: 100%;
  padding: 0 15px;
}

.meeting-teambuid-slider {
  padding: 40px 0px;
}

.meeting-teambuid-slider .slick-prev img {
  transform: rotate(180deg);
}

.meeting-teambuid-slider .slick-prev {
  left: 0;
}

.meeting-teambuid-slider .slick-next {
  right: 0;
}

.meeting-teambuid-slider .slick-arrow::before {
  display: none;
}

.meeting-teambuid-slider .slick-arrow {
  opacity: 0.5;
  transition: all 0.3s ease;
  top: 42%;
  width: auto !important;
  z-index: 1;
}

.meeting-teambuid-slider .slick-arrow img{
width: 30px;
}

.meeting-teambuid-slider .slick-arrow:hover {
  opacity: 1;
}

.meeting-teambuid-slider .slick-dots {
  bottom: 0px;
}

.meeting-teambuid-slider .slick-slider {
  padding-bottom: 30px;
}

.meeting-teambuid-slider .slick-slide>div {
    padding: 0 8px;
}

.meeting-teambuid-slider span {
  display: block;
  font-size: 15px;
  color: #073937;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-align: center;
  font-family: "Sofia Pro Regular";
}

.teambuid-slider-inner .heading {
  font-size: 28px;
  margin: 10px 0 25px;
  color: #000000;
  text-align: center;
  letter-spacing: 0.3px;
  font-family: "Berlingske Serif";
  display: block;
}

.teambuid-slider-inner img {
  margin: 0 auto 20px;
  width: 65%;
}

.meeting-teambuid-slider p {
  text-align: center;
  margin: 0px;
}

.teambulid-buttn {
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding: 20px 0;
  margin-bottom: 90px;
}

.teambulid-buttn .default-btn {
  padding: 14px 75px;
}


/*-------- menu -------*/

.menu-header{
  position: fixed;
  top: 25px;
  left: 0;
  right: 0;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 11;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease-in-out .5s;
  -o-transition: all ease-in-out .5s;
  transition: all ease-in-out .5s;
  -webkit-transition-delay: .5s;
  -o-transition-delay: .5s;
  transition-delay: .5s;
}

.mobilemenu-area.open-menu .menu-header{
  opacity: 1;
  visibility: visible;
}

.mobilemenu-area.close-menu .menu-header{
  transition-delay: 0s;
  opacity: 0;
}



.menu-toplinks{
display: flex;
justify-content: space-between;
align-items: center;
}

.menu-toplinks .default-btn{
    z-index: 1;
    padding: 12px 15px;
}

.menu-toplinks .default-btn img {
    width: 15px;
    margin-right: 4px;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
    vertical-align: sub;
}

.menu-toplinks .default-btn:hover img {
    filter: none;
}

 

.menu-close-btn{
    transition: all 0.2s ease-In;
    border: 1.5px solid #073937;
    box-shadow: none;
    outline: none;
    z-index: 1;
    border-radius: 50%;
    color: #073937;
    font-size: 16px;
    width: 45px;
    height: 45px;
    background: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.menu-close-btn:before {
    content: '';
    position: absolute;
    border-radius: 100%;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: all .3s ease-in-out;
    transform: scale(0);
    transform-origin: center;
    z-index: -1;
    background: linear-gradient(180deg, #115C59, #083937 90%);
}

.menu-close-btn:hover:before {
    transform: scale(1);
}

.menu-close-btn:hover{
color: #fff;
}

.mobilemenu-area{
    transition: all 1s cubic-bezier(0.17, 0.04, 0.03, 0.94);
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
    background: #FBFAF8;
}

 .open-menu.mobilemenu-area {
    opacity: 1;
    visibility: visible;
}

.mainmenu-wrapper{
display: flex;
height: 100%;
position: relative;
justify-content: space-between;
}

.menu-leftside,
.menu-rightside{
  height: 100%;
  position: relative;
}

.menu-leftside{
padding: 20px 30px;
display: flex;
flex-direction: column;
justify-content: space-between;
width: 58%;
position: relative;
}

.menu-leftside::before{
position: absolute;
content: '';
width: 100%;
height: 100%;
top: 0;
right: 0;
 transform: translateX(calc(100% + 0vh));
transition: transform 0.81s cubic-bezier(0.600, 0.000, 0.100, 1.000);
background: #FBFAF8 url(../public/image/menu-pattern.webp) no-repeat;
background-size: cover;
}

.open-menu .menu-leftside::before {
    transform: translateX(0);
}


.menu-mainlink{
  margin: 12px 0px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 1s cubic-bezier(0, 0, 0.58, 1);
  text-align: right;
  padding-right: 12px;
}

.menu-mainlink::-webkit-scrollbar{
width: 3px;
background: #e7e7e7;
}

.menu-mainlink::-webkit-scrollbar-track{
-webkit-box-shadow: none;
}

.menu-mainlink::-webkit-scrollbar-thumb{
background-color: #000000;
outline: none;
border-radius: 50px;
}

.open-menu .menu-mainlink {
    opacity: 1;
    transform: translateX(0px);
    transition-delay: 0.6s;
}

.menu-mainlink li{
  margin-bottom: 17px;
}

.menu-mainlink li:last-child{
  margin-bottom: 0px;
}


.menu-mainlink ul:hover li a {
    opacity: 0.4;
}

.menu-mainlink li a {
    position: relative;
    transition: all 400ms cubic-bezier(0, 0, 0.58, 1);
    font-size: 32px;
    color: #000000;
    text-transform: capitalize;
    line-height: 1.1;
    font-family: "Berlingske Serif";
    font-style: italic;
    display: inline-block;
}

.menu-mainlink li a::before {
content: '';
position: absolute;
width: 7px;
height: 7px;
right: -20px;
top: 55%;
transform: translateY(-50%);
background: #073937;
border-radius: 50%;
transition: all 500ms cubic-bezier(0, 0, 0.58, 1);
opacity: 0;
}

.menu-mainlink li a:hover:before {
    opacity: 1;
    right: -15px;
}

.menu-mainlink li a:hover{
    opacity: 1 !important;
    transform: translateX(-10px);
}

.default-menulink.menu-mainlink li a {
    font-size: 52px;
}


.menu-address{
    width: 270px;
    position: absolute;
    bottom: 80px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 1s cubic-bezier(0, 0, 0.58, 1);
}

.open-menu .menu-address {
    opacity: 1;
    transform: translateX(0px);
    transition-delay: 0.6s;
}

.menu-ratting{
    width: 220px;
    margin-top: 20px;
}

.menu-address ul li{
    margin-top: 6px;
}

.menu-address ul li a{
    font-size: 15px;
    transition: all 0.2s ease-In;
    color: #073937;
}

.menu-address ul li a img{
    margin-right: 5px;
    width: 15px;
}

.menu-address ul li a:hover{
color: #000;
}

.menu-address span{
    font-family: "Sofia Pro Regular";
    text-transform: uppercase;
    font-size: 15px;
    color: #000;
}

.menu-address small{
    font-family: "Sofia Pro Regular";
    color: #073937;
    font-size: 15px;
    margin-bottom: 12px;
    display: block;
}

.menu-address p{
    margin: 3px 0px 2px;
}
 

.menu-sociallink {
  position: absolute;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0, 0, 0.58, 1);
  bottom: 20px;
  left: 40px;
  display: flex;
  align-items: center;
  transition-delay: 0.7s;
}

 .open-menu .menu-sociallink {
    opacity: 1;
    transform: translateX(0px);
}

.menu-sociallink li{
    margin-right: 18px;
}

.menu-sociallink li:last-child{
    margin: 0;
}

.menu-sociallink li a {
    color: #000;
    font-size: 15px;
    transition: all .2s ease-In;
    text-transform: capitalize;
}

.menu-sociallink li a:hover {
    color: #AA8960;
}


 .menu-rightside{
    width: 0%;
    right: 0;
    transition: width 0.85s cubic-bezier(0.600, 0.000, 0.100, 1.000);
}

 .open-menu .menu-rightside{
    transition-delay: 0.2s;
    width: 42%;
}

.menu-rightside div{
    display: flex;
    height: 100%;
    width: 100%;
}

 .menu-rightside div img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.menu-bottomlink{
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0, 0, 0.58, 1);
  display: flex;
  align-items: end;
  justify-content: space-between;
  transition-delay: 0.7s;
}

 .open-menu .menu-bottomlink {
    opacity: 1;
    transform: translateX(0px);
}

.menu-bottomlink .footer-social{
margin: 0;
}

.menu-otherlink li{
    display: inline-block;
    line-height: 1;
}

.menu-otherlink li a{
    position: relative;
    margin-right: 13px;
    padding-right: 13px;
    display: inline-block;
    line-height: 1;
    font-size: 13px;
    color: rgb(7 57 55 / 70%);
    text-transform: uppercase;
    transition: all 0.2s ease-In;
    font-family: "Sofia Pro Regular";
}

.menu-otherlink li a::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    background: #073937;
    top: 0;
    right: 0;
    bottom: 0;
}

.menu-otherlink li a:hover{
color: #073937;
}

.menu-otherlink li:last-child a{
    margin-right: 0px;
    padding-right: 0px;
}

.menu-otherlink li:last-child a:before{
display: none;
}


/*------------ Jim corbett ------------*/

.corbett-banner {
    height: 100vh;
    position: relative;
}

.corbett-banner video {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.corbett-videobtun{
    bottom: 90px;
    left: 0;
    position: absolute;
    right: 0;
    z-index: 1;
}

.corbett-videobtun button{
    backdrop-filter: blur(14px);
    background: rgb(255 255 255 / 25%);
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 7px 15px;
    font-size: 13px;
    color: #fff;
    display: flex;
    align-items: center;
    transition: all 0.2s ease-In;
}

.corbett-videobtun button:hover{
    background: rgb(255 255 255 / 40%);
}

.corbett-videobtun button span{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: #115C59;
    width: 14px;
    height: 14px;
    font-size: 8px;
    margin-right: 5px;
}

/*---- pet ---*/

.petpage-head{
    text-align: center;
    margin: 90px 0;
}

.petpage-head .heading{
margin-bottom: 18px;
}

.petpage-head p{
    font-family: "Berlingske Serif";
    font-size: 22px;
    color: #073937;
    line-height: 1.4;
}

.petpage-head p:last-child{
margin: 0px;
}

.petpage-where .img-responsive{
width: 96%;
}

.petwhere-box .heading{
margin-bottom: 15px;
font-size: 42px;
}

.petwhere-box p span{
    font-family: "Sofia Pro Regular";
}



.petpage-point {
    margin: 90px 0px;
    position: relative;
    text-align: right;
}

.petpage-point .heading{
margin-bottom: 10px;
font-size: 42px;
}

.petpage-point .container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: left;
}

.petpage-point .img-responsive {
    width: 50%;
    display: inline-block !important;
}

.petpoint-box{
    padding-right: 60px;
}

.petpoint-box ul {
    list-style: disc;
    padding-left: 15px;
    margin-bottom: 1rem;
}

.petpoint-box ul li {
    margin-bottom: 8px;
    color: rgb(0 0 0 / 70%);
    font-size: 15px;
}

.petpoint-box ul li:last-child {
    margin-bottom: 0;
}



/*----- enquiry popup ----*/

.no-padd{
  padding: 0px;
}

.query-popup .popup-close{
  position: absolute;
  right: 10px; 
  top: 10px;
  z-index: 1;
  background: none;
  outline: none;
  opacity: 1;
  border-radius: 0px 0px 0px 8px;
  color: #fff;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.4s ease;
  padding: 0;
}

.query-popup .popup-close:hover {
  color: #b2b594;
}

.query-popup .modal-body {
  padding: 0;
}

.query-popup .modal-content {
  border-radius: 8px;
  overflow: hidden;
  border: 0;
}

.popclose {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  font-size: 15px;
}

.querypop-image {
  height: 100%;
}

.querypop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.query-formbox {
  padding: 30px;
  background: url(../public/image/querypop-back.webp) no-repeat center;
  background-size: cover;
}

.query-formbox .heading {
  font-size: 38px;
  margin-bottom: 25px;
}

.query-formbox .form-field {
  margin-bottom: 15px;
}

.query-formbox .form-field .form-control {
    background-color: #fff;
    border: 1px solid rgb(0 0 0 / 40%);
    color: rgb(0 0 0 / 70%);
    height: 42px;
    font-size: 14px;
    box-shadow: none;
    outline: none;
    padding: .375rem 10px;
    border-radius: 0px;
}

.query-formbox .form-field select {
    appearance: auto;
}

.query-formbox .form-field textarea {
  height: 100px !important;
}

.query-formbox .half-field {
  width: 50%;
  display: inline-block;
}

.query-formbox .half-field:nth-child(even) {
  padding-right: 6px;
}

.query-formbox .half-field:nth-child(odd) {
  padding-left: 6px;
}

.query-formbox button{
  width: 100%;
  z-index: 1;
}