@font-face {
    font-family: Inter-Regular;
    src: url('../fonts/Inter-Regular.ttf');
}

@font-face {
    font-family: Inter-Medium;
    src: url('../fonts/Inter-Medium.ttf');
}

@font-face {
    font-family: Inter-SemiBold;
    src: url('../fonts/Inter-SemiBold.ttf');
}

@font-face {
    font-family: Inter-Bold;
    src: url('../fonts/Inter-Bold.ttf');
}


:root{
    --theme-color-1: #13361c;
    --theme-color-2: #212717;
    --theme-color-3: #826343;
    --theme-color-4: #cc9a48;
    --theme-color-5: #dfdfdf;
    --theme-color-6: #161616;
    --body-bg: #ffffff;
    --font-color: #666666;
    --heading-color: #161616;
    --font-white: #ffffff;
}

body{
    background-color: var(--body-bg);
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Inter-Regular', sans-serif;
    font-weight: normal;
    color: var(--font-color);
}


h1, h2, h3{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Inter-Bold', sans-serif;
    font-weight: normal;
}

h4, h5{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Inter-SemiBold', sans-serif;
    font-weight: normal;
}

p{
    margin-bottom: 0;
}

a, a:hover, a:active, a:focus{
    color: inherit;
    text-decoration: none;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.theme-btn{
    border-radius: 30px;
    height: 48px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding:10px 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter-Medium', sans-serif;
    font-weight: normal;
}

.btn-main{
    color: var(--font-white);
    background-color: var(--theme-color-4);
    transition: all .5s ease-out;
}

.btn-main:hover{
    background-position: left bottom;
    color: var(--font-white);
    background-color: #9a650d;
}

.btn-secondary{
    color: var(--font-white);
    background-color: var(--theme-color-1);
    transition: all .5s ease-out;
}

.btn-border{
    color: var(--heading-color);
    border: 1px solid var(--theme-color-6);
    background-color: var(--font-white);
}

.btn-border:hover{
    color: var(--font-white);
    border: 1px solid var(--theme-color-4);
    background-color: var(--theme-color-4);
}

.btn-secondary:hover{
    background-position: left bottom;
    color: var(--font-white);
}

.navbar{
    position: absolute;
    width: 100%;
    z-index: 1030;
    left: 0;
    background: var(--font-white);
    box-shadow: transparent;
    transition: none;
    height: 75px;
} 

.navbar.fixed-top{
    position: fixed;
    background-color: var(--body-bg);
    transition: all 0.35s ease;
    border-bottom: 1px solid #dee2e6;
}


.navbar-dark .navbar-nav .nav-link{
    color: var(--font-color);
    font-family: 'Inter-Medium', sans-serif;
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-brand{
    width: 190px;
}

.dropdown .nav-link:after{
    font-family: 'Fontawesome', sans-serif; 
	font-weight: 400;
	content: "\f107";
    margin-left: 5px;
    font-size: 13px;
}

.navbar-nav .nav-item{
    margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover{
    color: var(--theme-color-1);
}

@media (min-width: 768px) {
    .animate {
      animation-duration: 0.3s;
      -webkit-animation-duration: 0.3s;
      animation-fill-mode: both;
      -webkit-animation-fill-mode: both;
    }
}
  
@keyframes slideIn {
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0rem);
      opacity: 1;
    }
  
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
}
  
@-webkit-keyframes slideIn {
    0% {
      -webkit-transform: transform;
      -webkit-opacity: 0;
    }
  
    100% {
      -webkit-transform: translateY(0);
      -webkit-opacity: 1;
    }
  
    0% {
      -webkit-transform: translateY(1rem);
      -webkit-opacity: 0;
    }
}
  
.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

.dropdown-menu{
    min-width: 12rem;
    transition: ease-in-out 0.3s;
}

.dropdown-menu li{
    margin: 5px 0px 5px 0px;
} 

.dropdown-menu li a{
    color: var(--font-color);
    font-size: 14px;
    font-family: 'Inter-Medium', sans-serif;
    font-weight: normal;
    transition: ease-in-out 0.3s;
    color: var(--heading-color);
}

.navbar .nav-item:hover .dropdown-menu{
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border: none;
}

.dropdown-menu li a:hover{
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
    margin-left: 5px;
    background-color: transparent;
}

.nav-item.signin{
    margin-left: 30px;
}

.menubar-search{
    margin-left: 10px;
}

#backTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--theme-color-1);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    line-height: 18px;
}
  
#backTop:hover {
    background-color: var(--theme-color-1);
}

.section{
    padding: 60px 0px;
    position: relative;
}

.section-small-heading::after {
    content: '';
    width: 45px;
    height: 2px;
    background-color: var(--theme-color-2);
    display: inline-block;
    margin-left: 20px;
    position: relative;
    top: -5px;
}

.section-small-heading{
    font-size: 20px;
    line-height: 24px;
    text-transform: capitalize;
    color: var(--font-color);
    margin-bottom: 10px;
}

.section-heading{
    text-transform: capitalize;
    margin-bottom: 25px;
}

/* the slides */
.slick-slide {
    margin: 0 27px;
}

/* the parent */
.slick-list {
    margin: 0 -27px;
}

.page-full{
    width: 100%;
    height: 100vh;
    position: relative;
    display: inline-block;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-full.error::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 70%);
    z-index: 10;
}

.page-full-inner{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    z-index: 11;
    position: relative;
}

.error-inner h2{
    font-size: 150px;
    color: var(--font-white);
}

.error-inner h4{
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--font-white);
}

.error-inner p{
    margin-bottom: 20px;
    color: var(--font-white);
}

.page-full.error{
    background-image: url('../images/error-bg.jpg');
}

.faq .accordion-item{
    border: none;
    box-shadow: 0px 0px 20px rgb(179 179 179 / 25%);
    margin-bottom: 20px;
    border-radius: 60px;
}

.faq .accordion-button:not(.collapsed){
    background-color: transparent;
    box-shadow: none;
}

.faq .accordion-button::before{
    font-family: 'Fontawesome', sans-serif; 
	font-weight: 400;
	content: "\f059";
    margin-right: 10px;
    font-size: 14px;
    color: var(--theme-color-4);
}

.faq .accordion-button{
    font-size: 14px;
}

.page-full-coming{
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: inline-block;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/error-bg.jpg');
    background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat;
    padding: 20px 0px;
}

.page-coming-inner{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.page-coming-inner h2{
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--font-white);
}

.page-coming-inner p{
    margin-bottom: 20px;
    color: var(--font-white);
}

.soon-subscribe{
    width: 100%;
}

.soon-form-wrapper{
    position: relative;
    width: 100%;
}

.soon-input{
    width: 100%;
    height: 55px;
    border-radius: 35px;
    padding: 10px 15px;
    display: inline-block;
    border: none;
}

.soon-submit{
    background-color: var(--theme-color-2);
    border-radius: 35px;
    text-align: center;
    color: var(--font-white);
    padding: 10px 10px;
    position: absolute;
    top: 5px;
    right: 5px;
    border: none;
    width: 135px;
}

.soon-counter-list{
    display: flex;
}

.soon-counter-list > div{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 30px 8px 0px 8px;
    background-color: rgb(255 255 255 / 20%);
    flex-direction: column;
    color: var(--theme-color-4);
    font-family: 'Inter-Bold', sans-serif;
    font-weight: normal;
    font-size: 32px;
}

.soon-counter-list > div span{
    font-family: 'Inter-Medium', sans-serif;
    font-weight: normal;
    color: var(--font-white);
    font-size: 14px;
}

.page-coming-inner .footer-heading{
    color: var(--font-white);
}

.policy-main-heading {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 20px;
    font-family: 'Inter-Bold', sans-serif;
    font-weight: normal;
}

.policy-description {
    margin-bottom: 15px;
}

.search-widget{
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    display: inline-block;
}

.bolg-search-input{
    width: 100%;
    height: 51px;
    padding: 10px 15px;
    position: relative;
    display: inline-block;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.blog-search-btn{
    width: 51px;
    height: 51px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--theme-color-4);
    border-radius: 6px;
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
}

.recently-added-widget{
    box-shadow: 0px 0px 20px rgb(179 179 179 / 25%);
    padding: 20px;
    display: inline-block;
    width: 100%;
}

.recent-post-list li{
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.recent-post-list li:last-child{
    border: none;
}

.recent-post-inner{    
    display: flex;
    align-items: flex-start;
}

.recent-post-image{
    min-width: 80px;
    width: 80px;
    height: 60px;
    margin-right: 15px;
}

.recent-post-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.recent-post-info h3{
    font-size: 14px;
    margin-bottom: 0px;
}

.recent-post-info p{
    font-size: 12px;
    color: var(--theme-color-4);
}

.tags-widget{
    margin-top: 40px;
}

.tags-widget ul li{
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.tags-widget ul li a{
    padding: 10px;
    border: 1px solid #ccc;
    color: var(--theme-color-4);
    border-radius: 6px;
    display: inline-block;
}

.comments-list .comments-list-item{
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
}

.comments-list-inner{
    display: flex;
    align-items: flex-start;
}

.comment-author-image{
    min-width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 15px;
}

.comment-author-image img{
    border-radius: 50%;
}

.comment-author-heading{
    display: flex;
    justify-content: space-between;
}

.comment-author-heading h3{
    margin-bottom: 10px;
    font-size: 18px;
}

.comment-author-heading a{
    background-color: var(--theme-color-1);
    color: var(--font-white);
    padding: 2px 10px;
    border-radius: 35px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
}

.comment-author-info h4{
    font-size: 13px;
    margin-bottom: 15px;
}

.comments-list.replay{
    margin-left: 3rem;
}

.comments-list .comments-list-item:last-child{
    border: none;
    padding-bottom: 0;
}

.comments-list{
    padding-top: 3rem;
}

.leave-message{
    display: inline-block;
    margin-top: 4rem;
}

.message-container{
    position: relative;
}

.message-input{
    width: 100%;
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.error-msg{
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}
.error-msg-display{
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -15px;
    font-size: 10px;
    left: 0px;
    margin: 0;
    line-height: 0;
    color: red;
}
.success-msg{
    display: none;
    transition: ease-out 0.3s;
}
.success-msg-display{
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 10px;
    background: #2e7dab;
    font-size: 14px;
    z-index: 10;
    top: 65px;
    left: 0;
	color: var(--font-white);
}

.subscribe-inner{
	position: relative;
}

.subscribe-inner form{
	position: relative;
}

.check-success-icon{
    padding: 10px;
    margin-right: 10px;
	color: var(--font-white);
}

.error-msg-contact{
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}
.error-msg-contact-display{
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -8px;
    font-size: 10px;
    left:0;
    margin: 0;
    line-height: 0;
    color: red;
}
.success-msg-contact{
    display: none;
    transition: ease-out 0.3s;
}
.success-msg-contact-display{
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 10px;
    background: #001941;
    font-size: 14px;
    z-index: 10;
    bottom: -150px;
    left: 0;
    padding-left: 3px;
	color: var(--font-white);
	width: 265px;
}

.success-msg p, .success-msg-display p{
    margin-bottom: 0;
}
.error-msg p, .error-msg-display p{
    margin-bottom: 0;
}

input:hover, input:focus, input:active{
    box-shadow: none;
    outline: none;
}

#loading {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	display: block;
	background-color: var(--font-white);
	z-index: 9999;
	text-align: center;
}

#loading-image {
	position: absolute;
	top: 40%;
	z-index: 999;
	transform: translate(-50%);
	background-color: var(--font-white);
	display: inline-block;
}

.main-content-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 75px;
}

.banner-content-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: var(--theme-color-2);
    height: 450px;
    border-radius: 0px;
    padding: 3rem;
}

.banner-heading{
    font-size: 48px;
    color: var(--font-white);
    margin-bottom: 20px;
}

.banner-heading span{
    color: var(--theme-color-4);
}

.banner-description{
    font-size: 14px;
    color: var(--font-white);
    margin-bottom: 0px;
}

.bannerhotel-img{
    position: absolute;
    width: auto;
    bottom: -10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 10;

}

.bannerhotel-img img{
    width: 35%;
}

.banner-search-block{
    width: 85%;
    position: absolute;
    z-index: 11;
    background-color: var(--font-white);
    border-radius: 50px;
    min-height: 90px;
    left: 50%;
    transform: translate(-50%, 50%);
    bottom: 0;
    box-shadow: 2px 5px 15px 0px rgb(0 0 0 / 10%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-search-btn{
    min-height: 90px;
    background-color: var(--theme-color-6);
    color: var(--font-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 20px;
}

.banner-search-btn i{
    margin-right: 10px;
}

.banner-search-fields{
    width: 100%;
    position: relative;
    height: 100%;
    padding: 0px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-checkin{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid #dddddd;
}

.search-date-input{
    width: 100px;
    border: none;
    border-bottom: 1px solid #dddddd;
}

.search-input-label{
    color: var(--theme-color-6);
    margin-left: 10px;
}

.search-checkout{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid #dddddd;
}

.search-lists-input{
    position: relative;
    display: inline-block;
    border: none;
}

.search-lists{
    display: flex;
    align-items: center;
}

.search-lists span i{
    color: var(--theme-color-3);
}

.section-heading-button-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.section-heading-button-wrapper h2{
    margin-bottom: 0px;
    font-size: 38px;
    color: var(--heading-color);
}

.section.rooms{
    margin-top: 5rem;
}

.rooms-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 10%);
    border-radius: 12px;
}

.room-image{
    width: 100%;
    height: 350px;
    position: relative;
    display: inline-block;
}

.room-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.room-offer{
    padding: 10px 15px;
    width: auto;
    display: inline-block;
    background-color: var(--theme-color-6);
    color: var(--font-white);
    border-radius: 30px;
    position: absolute;
    right: 15px;
    top: 15px;
}

.room-info{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px;
}

.room-name{
    width: 100%;
    position: relative;
    display: inline-block;
}

.room-name h3{
    font-size: 20px;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.rooms-other-details{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.roomInfo{
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.roomInfo i{
    color: var(--theme-color-3);
}

.roomInfo p{
    font-family: 'Inter-Medium', sans-serif;
    margin-left: 10px;
    color: var(--theme-color-6);
}

.room-price{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 15px;
    font-size: 24px;
}

.room-price span{
    font-family: 'Inter-Regular', sans-serif;
    font-size: 14px;
    color: var(--font-color);
    margin-left: 0px;
}

.facilities-card{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    background-color: #f5f9fa;
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 10%);
    border-radius: 12px;
}

.facilities-card h3{
    font-size: 20px;
}

.facilities-card img{
    margin-bottom: 15px;
    width: 45px;
}

.facility-info-image{
    width: 100%;
    height: 400px;
    position: relative;
    display: inline-block;
}

.facility-info-image img{
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    object-fit: cover;
    border-radius: 12px;
}

.facility-info-content{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.facility-info-content h3{
    font-size: 32px;
    margin-bottom: 25px;
}

.facility-info-content p{
    margin-bottom: 2.5rem;
}

.rooms .slick-slide{
    margin: 0 10px;
}

.rooms-tabs .nav-pills .nav-link{
    width: 100%;
    height: 55px;
    text-align: left;
    padding: 10px 0px;
    font-size: 20px;
    font-family: 'Inter-Medium', sans-serif;
    color: inherit;
}

.rooms-tabs .nav-pills .nav-link.active{
    background-color: var(--font-white);
    color: var(--heading-color);
}

.rooms-tabs .nav-pills .nav-link.active::before{
    font-family: 'Fontawesome', sans-serif;
    content: '\f178';
    position: relative;
    display: inline-block;
    margin-left: 1rem;
    margin-right: 10px;
}

.prev-next-btns{
    display: flex;
    align-items: center;
}

.prev-next-btns .carosel-nav{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    min-width: 40px;
    justify-content: center;
    margin: 0px 5px 0px 5px;
    border: none;
}

.prev-next-btns .carosel-nav.carosel-nav-left-room{
    background-color: var(--theme-color-5);
    color: var(--font-color);
}

.prev-next-btns .carosel-nav.carosel-nav-right-room{
    background-color: var(--theme-color-3);
    color: var(--font-white);
}

.testimonial .item{
    text-align: center;
}

#slick-slide-control00{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    background-image: url('../images/our-team-1.jpg');
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#slick-slide-control01{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    background-image: url('../images/our-team-2.jpg');
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#slick-slide-control02{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    background-image: url('../images/our-team-3.jpg');
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .slick-dots li button:before{
    display: none;
}

.testimonial .slick-dots li{
    width: 80px;
    height: 80px;
    opacity: 0.4;
}

.testimonial .slick-dots li.slick-active{
    opacity: 1;
    width: 100px;
    height: 100px;
}

.testimonial .slick-dots{
    bottom: -9rem;
}

.review-author{
    margin-top: 2rem;
}

.review-author h3{
    font-size: 20px;
    line-height: 24px;
    color: var(--theme-color-1);
    margin-bottom: 10px;
}

.testimonial-wrapper .carosel-arrow .carosel-nav-left-testi{
    width: 30px;
    height: 30px;
    background-color: var(--theme-color-2);
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    position: absolute;
    top: 50%;
    left: 9rem;
}

.testimonial-wrapper .carosel-arrow .carosel-nav-right-testi{
    width: 30px;
    height: 30px;
    background-color: var(--theme-color-2);
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    position: absolute;
    top: 50%;
    right: 9rem;
}

.testimonial-wrapper .carosel-arrow .carosel-nav-left-testi:hover {
    background-color: transparent;
    border: 1px solid var(--theme-color-2);
    color: var(--theme-color-2);
    transition: ease-in-out 0.3s;
}

.testimonial-wrapper .carosel-arrow .carosel-nav-right-testi:hover {
    background-color: transparent;
    border: 1px solid var(--theme-color-2);
    color: var(--theme-color-2);
    transition: ease-in-out 0.3s;
}

.review-author ul{
    margin-top: 5px;
}

.review-author ul li{
    display: inline-block;
    margin: 0px 2px;
    color: #cc9a48;
}

.section.reviews{
    margin-bottom: 5rem;
}

.partners-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: #f5f9fa;
    height: 100%;
    border-radius: 12px;
    padding: 3rem;
}

.partners-list{
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.partners-item{
    padding: 15px;
}

.partners-item img{
    height: 50px;
    object-fit: contain;
}

.main-footer{
    width: 100%;
    position: relative;
    background-color: var(--theme-color-2);
}

.footer-top-section{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 3.5rem;
}

.footer-widget{
    width: 100%;
    position: relative;
    display: inline-block;
}

.footer-widget-title h3 {
    text-align: left;
    color: var(--theme-color-4);
    font-size: 20px;
    padding-bottom: 25px;
}

.footer-widget-content{
    width: 100%;
    position: relative;
    display: inline-block;
}

.footer-widget-content p {
    text-align: left;
    margin-bottom: 15px;
    color: var(--font-white);
}

.footer-widget-content-link {
    color: var(--theme-color-3);
    font-size: 14px;
    margin-top: 6px;
    position: relative;
    transition: all .2s linear;
    text-align: left;
    display: block;
}

.footer-widget-content-link span {
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
}

.footer-contacts {
    margin-bottom: 26px;
    padding-top: 4px;
}

.footer-contacts li {
    text-align: left;
    margin-bottom: 10px;
    color: #fff;
    display: flex;
}

.footer-contacts li span {
    margin-right: 20px;
    width: 80px;
    min-width: 80px;
    float: left;
}

.footer-contacts li a, .footer-contacts li span {
    color: #fff;
    transition: all .2s linear;
}

.footer-list li {
    display: block;
    margin-bottom: 10px;
    text-align: left;
    position: relative;
    padding-left: 20px;
    font-weight: 500;
}

.footer-list li:before {
    font-family: "Fontawesome", sans-serif;
    content: "\f0da";
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 11px;
    font-weight: 900;
    transition: all .2s linear;
    color: var(--theme-color-4);
}

.footer-list li a {
    color: #fff;
}

.footer-list li:hover:before {
    left: 4px;
}

.subcribe-form, #subscribe {
    position: relative;
}

.subcribe-form input.enteremail {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    background: rgba(255, 255, 255, 0.05);
    padding: 0 20px;
    height: 60px;
    line-height: 60px;
    box-sizing: border-box;
    border-radius: 4px 0 0 4px;
    position: relative;
    z-index: 1;
    color: #fff;
    width: 70%;
    outline: none;
    float: left;
}

.subcribe-form .subscribe-button {
    float: right;
    width: 30%;
    z-index: 2;
    height: 60px;
    line-height: 60px;
    position: relative;
    outline: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 0 4px 4px 0;
    background: var(--theme-color-4);
    transition: all .2s linear;
}

.footer-social{
    position: relative;
    height: 80px;
    line-height: 80px;
    background: #171b11;
}

.footer-social li {
    display: inline-block;
    margin: 0 10px;
}

.footer-social li a {
    color: var(--theme-color-4);
    font-size: 1.3em;
    transition: all .2s ease-in-out;
}


.footer-social-list li {
    display: inline-block;
    margin: 0 10px;
}

.footer-social-list li a {
    color: var(--theme-color-4);
    font-size: 1.3em;
    transition: all .2s ease-in-out;
}

.footer-bottom {
    position: relative;
    min-height: 80px;
    line-height: 80px;
    background: #171b11;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-logo {
    float: left;
    height: 40px;
    position: relative;
}

.footer-logo img {
    height: 100%;
    width: auto;
}

.copyright {
    display: inline-block;
    color: #fff;
}

.to-top {
    float: right;
    cursor: pointer;
    color: var(--theme-color-4);
}

.to-top i {
    margin-left: 20px;
    color: #fff;
    position: relative;
    top: 0;
    transition: all .3s ease-in-out;
}

.footer-bottom-wrapper{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.booking-divider{
    background-image: url('../images/banner-box.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 4rem 0rem;
}

.booking-divider::before{
    content: '';
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 10%);
    top: 0;
    left: 0;
    z-index: 9;
}

.booking-divider-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    z-index: 10;
}

.booking-divider-wrapper h4{
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    color: var(--font-white);
}

.booking-divider-wrapper h2{
    font-size: 50px;
    text-align: center;
    color: var(--font-white);
    margin-top: 15px;
}

.booking-divider-wrapper h3{
    font-size: 32px;
    text-align: center;
    color: var(--font-white);
    margin-top: 20px;
}

.booking-divider-wrapper a{
    margin: auto;
    margin-top: 20px;
}

.page-banner{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 300px;
    background-image: url('../images/banner-box.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-banner::before{
    width: 100%;
    height: 100%;
    position: absolute;
    content: '';
    background-color: rgb(0 0 0 / 60%);
    left: 0;
    top: 0;
}

.page-banner-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.page-banner-heading{
    font-size: 32px;
    color: var(--font-white);
}

.page-banner-breadcrumb{
    margin-top: 10px;
}

.page-banner-breadcrumb li{
    display: inline-block;
    color: var(--font-white);
}

.page-banner-breadcrumb li a{
    color: var(--font-white);
}

.page-banner-breadcrumb li::after{
    font-family: 'Fontawesome', sans-serif;
    content: '\f105';
    position: relative;
    display: inline-block;
    margin: 0px 15px;
    color: var(--font-white);
}

.page-banner-breadcrumb li:last-child:after{
    display: none;
}

.team-social{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0px;
}

.team-social li{
    display: inline-block;
}

.team-person-image img{
    width: 100%;
    height: 265px;
    object-fit: cover;
}

.team-socila-link{
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 5px;
    border: 1px solid var(--theme-color-4);
    border-radius: 50%;
    color: var(--theme-color-4);
}

.team-person-details h3{
    text-align: center;
    font-size: 18px;
}

.team-person-details p{
    text-align: center;
}

.contact-us-card{
    box-shadow: 0px 0px 20px rgb(179 179 179 / 25%);
    padding: 30px 50px;
    border-radius: 6px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
    height: 100%;
}

.contact-heading{
    padding: 20px 0px;
    font-size: 24px;
    text-transform: uppercase;
}

.page-contact-us{
    position: relative;
    margin-top: -7rem;
}

.contact-form-heading{
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--font-white);
}

.contact-form-left{
    border-radius: 6px;
    padding: 40px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/room-1.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 100%;
}

.contact-form-left p{
    color: var(--font-white);
}

.contact-form-container{
    position: relative;
    margin-bottom: 20px;
}

.contact-input{
    height: 51px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
}

.contact-textarea{
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
}