@font-face {
    font-family: UTM-Aptima;
    src: url(../webfonts/UTM-Aptima.ttf);
}

@font-face {
    font-family: UTM-Copperplate;
    src: url(../webfonts/UTM-Copperplate.ttf);
}



body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
select,
span,
a,
p,
sub,
blockquote,
th,
td {
    outline: none;
    font-size: 16px;
    margin: 0;
    color: #000;
}

body {
    font-family: 'UTM-Aptima';
    width: 100vw;
    overflow-x: hidden;
}

a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
    transition: all .2s;
    cursor: pointer;
}

a:hover {
    color: #000;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    border-style: none;
    vertical-align: middle;
    width: 100%;
    height: auto;
}

button:focus,
input:focus,
optgroup:focus,
select:focus,
textarea:focus {
    outline: none !important;
    box-shadow: none !important;
}


:root {
    --main-color: #daa980;
    --black: #000;
    --white: #fff;
    --red: #BC2C28;
    --bg-color: #ebebec
}

/* @media (min-width: 768px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 750px;
    }
}

@media (min-width: 1200px) {
    .container-fluid {
        max-width: 1570px;
        margin: 0 auto;
        padding: 0 15px;
    }
} */
.slick-prev, .slick-next{
    height: fit-content;
    width: fit-content;
    z-index: 10;
}
.slick-prev:before, .slick-next:before{
    color: #ababad;
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    font-size: 30px;
}
.slick-prev:before{
    content: '\f053';
}
.slick-next:before{
    content: '\f054';
}
.slick-prev{
    left: 10px;
}
.slick-next{
    right: 10px;
}
@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1320px;
    }
}

@media (min-width: 1600px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1520px;
    }
}




/* HEADER */
.header-wrap {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
}

.header-main {
    padding: 20px 0;
}

.header-logo {
    opacity: 1;
    height: 48px;
}

.header-logo img {
    height: 100%;
    width: auto;
}

.header-nav {
    height: 100%;
}

.header-nav li a {
    color: var(--white);
    text-transform: uppercase;
    opacity: 1;
}

.nav-icon,
.close-nav {
    display: none;
}

.header-wrap.scroll .logo-col{
    display: none;
}
.header-wrap.scroll{
    background-color:rgba(107, 61, 41, 0.5);
}
.header-wrap.scroll .header-main{
    padding: 5px 0;
}

@media (max-width:1199px) {
    .header-nav li a {
        font-size: 14px;
    }
}

@media (max-width:768px) {
    .header-main {
        padding: 10px 0;
    }

    .header-logo {
        height: 40px;
    }

    .header-inner {
        position: relative;
    }

    .header-logo {
        text-align: center;
    }

    .header-nav-col {
        width: 100vw;
        max-width: 300px;
        display: block;
        height: 100vh;
        background: var(--white);
        position: fixed;
        top: 0;
        right: -100%;
        transition: all ease-in-out .4s;
    }
    .header-nav-col.active{
        right: 0;
    }

    .nav-icon {
        color: var(--white);
        font-size: 20px;
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        width: fit-content;
        transform: translateY(-50%);

    }
    .header-nav-inner{
        height: 100%;
    }
    .navbar{
        display: flex;
        flex-direction: column;
        height: 100%;
        align-items: center;
        justify-content: center;
    }
    .navbar li a{
        color: #58595b;
    }
    .navbar li{
        padding: 5px 0;
    }
    .close-nav{
        display: block;
        color: #000;
        font-size: 20px;
        position: absolute;
        top: 5px;
        right: 15px;
        z-index: 10;
    }
}





/* BANNER */
.homepage-banner-main {
    position: relative;
}

.homepage-video {
    margin-bottom: -6px;
}

.banner-main-title {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 5;
    opacity: 1;
    visibility: visible;
}

.banner-main-title.hide {
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 3s;
}

.banner-main-title p {
    font-family: "UTM-Aptima";
    color: var(--white);
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
}

.banner-main-title h1,
.banner-main-title h1 span {
    font-family: "UTM-Aptima";
    color: var(--white);
    font-size: 48px;
    text-transform: uppercase;
    text-align: center;
    display: block;
}

.playvideo {
    z-index: 10;
    background-color: inherit;
    border: none;
    color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    opacity: 1;
    visibility: visible;
}

.playvideo.hide {
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 1s;
}

@media (max-width:1199px) {
    .banner-main-title p {
        font-size: 20px;
    }

    .banner-main-title h1,
    .banner-main-title h1 span {
        font-size: 32px;
    }

    .playvideo {
        font-size: 40px;
    }
}

@media (max-width:991px) {
    .banner-main-title p {
        font-size: 16px;
    }

    .banner-main-title h1,
    .banner-main-title h1 span {
        font-size: 26px;
    }

    .playvideo {
        font-size: 40px;
    }
}

@media (max-width:768px) {
    .banner-main-title{
        display: none;
    }
}

@media (max-width:576px) {}



/* exclusive-banner-wrap */

.exclusive-banner-wrap {
    background-image: url('../imgs/tp1.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 70px 0;
}

.exclusive-banner-wrap::after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--black);
    opacity: .5;
}

.exclusive-banner-inner {
    position: relative;
    z-index: 5;
}

.exclusive-banner-heading {
    text-align: center;
    margin-bottom: 35px;
}

.exclusive-banner-heading h1 {
    font-family: "UTM-Copperplate";
    font-size: 32px;
    color: var(--main-color);
    line-height: 32px;

}

.exclusive-banner-heading h2 {
    font-family: "UTM-Copperplate";
    font-size: 24px;
    color: var(--main-color);
    line-height: 24px;
    margin-top: 16px;
}

.ebanner-content {
    max-width: 330px;
    margin: 10px auto 0;
}

.ebanner-item:nth-child(-n+3) {
    margin-bottom: 20px;
}

.ebanner-content h3 {
    text-align: center;
    color: var(--white);
    font-size: 18px;
    text-transform: uppercase;
}

.ebanner-img {
    min-height: 50px;
}

.ebanner-img-inner {
    text-align: center;
}

.ebanner-img-inner img {
    width: auto;
}

@media(max-width: 1199px) {
    .exclusive-banner-wrap {
        padding: 40px 0;
    }

    .ebanner-content h3 {
        font-size: 16px;
    }
}

@media (max-width:991px) {
    .exclusive-banner-heading h1 {
        font-size: 26px;
    }

    .exclusive-banner-heading h2 {
        font-size: 20px;
    }

    .ebanner-item:nth-child(-n+4) {
        margin-bottom: 20px;
    }
}

@media (max-width:576px) {
    .exclusive-banner-heading h1 {
        font-size: 20px;
    }

    .exclusive-banner-heading h2 {
        font-size: 16px;
        margin-top: 0px;
    }

    .ebanner-content h3 {
        font-size: 14px;

    }
}

/* homepage map */
.homepage-map-wrap {
    background-color: #ebebeb;
    padding: 40px 0;
}

.mbi-img img {
    width: auto;
}

.map-box {
    margin-bottom: 30px;
}

.map-box ul {
    padding-left: 15px;
}

.map-box h3 {
    color: #58595b;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.mb-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.mbi-img {
    min-width: 45px;
    text-align: center;
}

.mbi-content {
    margin-left: 15px;
    text-transform: capitalize;
    color: #58595b;
}

.mbi-content span {
    font-weight: 600;
}
.map-img-inner{
    height: 100%
}
.map-img-inner img{
    height: 100%;
    object-fit: cover;
}


/* homepage-suites */
.homepage-suites-wrap {
    padding: 35px 0;
}

.suites-content-inner {
    padding-top: 12px;
}

.suites-title {
    font-size: 24px;
    text-transform: uppercase;
    font-family: "UTM-Copperplate";
    color: #58595b;
}

.suites-title span {
    display: block;
    font-family: "UTM-Aptima";
    font-size: 18px;
    text-transform: capitalize;
}

.suites-title:after {
    content: "";
    display: block;
    position: relative;
    margin: 30px 0 8px;
    width: 25px;
    border-top: 2px solid #58595b;

}

.suites-des {
    margin-bottom: 25px;
}

.suites-gall-list {
    display: flex;
    gap: 8px;
    justify-content: start;
    align-items: center;
}

.sg-item {
    width: 140px;
}

.suites-list .slick-slide {
    margin: 0 2px;
}
.suites-list .slick-prev{
    left: -30px;
}
.suites-list .slick-next{
    right: -30px;
}
@media (max-width:1199px) {
    .suites-content-inner {
        padding-top: 0px;
    }

    .suites-img-inner {
        height: 100%;
    }

    .suites-img-inner img {
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width:991px) {}

@media (max-width:767px) {
    .suites-content-inner {
        margin-top: 15px;
    }

    .suites-title {
        font-size: 22px;
    }

    .suites-title:after {
        margin: 15px 0 8px;
    }
}
@media (max-width:480px){
    .suites-list .slick-prev{
        left: -10px;
    }
    .suites-list .slick-next{
        right: -10px;
    }
}

/* homepage-exceptional */

.homepage-exceptional-wrap {
    padding-top: 25px;
    background-color: var(--bg-color);
}

.homepage-heading {
    font-family: "UTM-Copperplate";
    font-size: 32px;
    color: #57595b;
    line-height: 32px;
    text-align: center;
    margin-bottom: 25px;
}

.exceptional-des {
    font-size: 16px;
    color: #57595b;
    margin-bottom: 10px;
}

.ex-label-item {
    margin-bottom: 25px;
}

.eli-img img {
    width: auto;
}

.eli-img {
    text-align: center;
}

.ex-label-item h4,
.ex-label-item h4 span {
    color: #57595b;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
}

.ex-label-item h4 span {
    display: block;
}

.ex-label-item h4 b {
    display: block;
}

.ex-label-item h4 {
    margin-top: 6px;
}

.exception-gallery .container-fluid {
    /* padding: 0; */
}

.exception-gallery .row>div:nth-child(2n) {
    padding-right: 0 !important;
    padding-left: 5px;
}

.exception-gallery .row>div:nth-child(2n+1) {
    padding-left: 0 !important;
    padding-right: 5px;
}

.exception-item {
    position: relative;
    margin-bottom: 5px;
}

.ei-img {
    aspect-ratio: 236/115;
    overflow: hidden;
}

.ei-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all ease-in-out .6s;
}

.exception-item:hover img {
    transform: scale(1.06);
}

.ti-title {
    color: var(--white);
    text-transform: uppercase;
    font-weight: 18px;
    text-align: center;

}

.ei-content {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 37.5%, rgba(0, 0, 0, 0.85) 100%);
}

@media (max-width:1199px) {}

@media (max-width:991px) {
    .homepage-heading {
        font-size: 26px;
    }
}

@media (max-width:767px) {
    .exception-gallery .row>div:nth-child(2n) {
        padding: 0 !important;
    }

    .exception-gallery .row>div:nth-child(2n+1) {
        padding: 0 !important;
    }
}

@media (max-width:576px) {
    .homepage-heading {
        font-size: 20px;
    }

    .ex-label-item h4,
    .ex-label-item h4 span {
        font-size: 16px;
    }
}



/* Topnot */
.homepage-amenities-wrap {
    margin-top: 40px;
}

.homepage-amenities-wrap .homepage-heading {
    margin-bottom: 40px;
}

.amenities-item {
    margin-bottom: 20px;
}

.amenities-img {
    aspect-ratio: 405/230;
    overflow: hidden;
}

.amenities-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all ease-in-out .5s;
}

.amenities-item:hover .amenities-img img {
    transform: scale(1.05);
}

.amenities-content {
    margin-top: 20px;
}

.amenities-content h2 {
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    color: #58595b;
    margin-bottom: 30px;
}

.amenities-content p {
    color: #58595b;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

@media (max-width:1199px) {}

@media (max-width:991px) {}

@media (max-width:767px) {
    .amenities-content h2 {
        margin-bottom: 15px;
    }
}





/* homepage-worthy-experiences */

.homepage-worthy-experiences {
    margin: 20px 0 32px;
}

.homepage-worthy-experiences .homepage-heading {
    margin-bottom: 32px;
}

.worthyEx-list .slick-slide {
    padding: 0 5px;
}

.worthyEx-list .slick-list {
    margin: 0 -5px;
}
.worthyEx-list .slick-prev{
    left: 20px;
}
.worthyEx-list .slick-next{
right: 20px;
} 

/* .worthy-item{
    margin: 0 5px;
} */
.worthy-item {
    background: rgb(139, 142, 139);
    background: linear-gradient(90deg, rgba(139, 142, 139, 1) 0%, rgba(100, 101, 101, 1) 100%);
    padding-bottom: 20px;
}

.wi-content {
    padding: 20px 60px 0;
    height: 200px;
    overflow: auto;
}

.wi-img {
    aspect-ratio: 470/295;
}

.wi-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.wi-content h3 {
    color: var(--white);
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 20px;
}

.wi-des p {
    color: var(--white);
}

@media (max-width:1199px) {}

@media (max-width:991px) {
    .wi-content {
        padding: 20px 20px 0;
    }
}

@media (max-width:767px) {
    .worthyEx-list .slick-slide {
        padding: 0;
    }

    .worthyEx-list .slick-list {
        margin: 0;
    }
}





/* News */
.homepage-news-inner {
    padding-top: 26px;
    border-top: 2px solid #dadada;
    border-bottom: 2px solid #dadada;
}

.homepage-news-inner .homepage-heading {
    margin-bottom: 30px;
}

.blog-img {
    aspect-ratio: 405/270;
    margin-bottom: 30px;
}

.blog-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog-content a {}

.blog-content h3 {
    color: #58595b;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content .blog-des {
    color: #58595b;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    margin-top: 25px;
}

.blog-item {
    margin-bottom: 25px;
}


@media (max-width:1199px) {}

@media (max-width:991px) {}

@media (max-width:767px) {
    .blog-content .blog-des {
        margin-top: 10px;
    }

    .homepage-news-inner .homepage-heading {
        margin-bottom: 20px;
    }
}







/* register-wrap */

.register-wrap {
    padding: 25px 0;
}

.register-inner {
    border-bottom: 2px solid #dadada;
    padding: 30px 0 28px;
}

.register-wrap .homepage-heading {
    margin-bottom: 3px;
}

.homepage-des {
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    color: #58595b;
}
.reg-item {
    margin-bottom: 10px;
}

.form-label {
    margin-left: 25px;

    margin-bottom: 5px;
    text-transform: uppercase;

}

.form-control {
    background-color: #f7eee5;
    border: none;
    border-radius: 0;
}

.form-control:focus {
    background-color: #f7eee5;
}

.reg-item.reg-submit {
    text-align: right;
}

.reg-btn {
    background-color: #d9a97f;
    color: var(--white);
    text-transform: uppercase;
    text-align: center;
    padding: 10px 20px;
    border: none;
    line-height: 16px;
    margin-top: 12px;
}

@media (max-width:1199px) {}

@media (max-width:991px) {}

@media (max-width:767px) {
    .res-form-col {
        order: 2;
    }

    .res-img-col {
        order: 1;
    }

    .homepage-des {
        font-size: 14px;
    }

    .register-form-inner {
        margin-top: 20px;
    }

    .reg-item.reg-submit {
        text-align: center;
    }
}




/* footer */


.footer-item-inner {
    padding-bottom: 20px;
}

.footer-item-inner h3 {
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    color: #58595b;
    margin-bottom: 10px;
}

.footer-item-inner .footer-address {
    text-align: center;
}




.fixed-contact{
    position: fixed;
    bottom: 10%;
    left: 30px;
}
.fixed-contact li{
    margin-bottom: 5px;
}
.fixed-contact li a{
    display: flex;
    background-color:rgba(107, 61, 41, 0.8);
    width: 40px;
    height: 40px;
    padding: 6px;
    border-radius: 50%;
    border: 2px solid var(--white);
    
}
.fixed-contact li a img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}


















@media (max-width:1199px) {}

@media (max-width:991px) {}

@media (max-width:767px) {}