/********** Template CSS **********/

.back-to-top {
    position: fixed !important;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** M, P, Fonts ***/
.mt-6 {
    margin-top: 6rem;
}

.mb-6 {
    margin-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.pt-6 {
    padding-top: 6rem;
}

.pb-6 {
    padding-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.padding-top-negative {
    margin-top: -6em;
    z-index: 2;
    position: relative;
}

.font-dancing-script {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


/*** Button ***/
.btn.btn-dark,
.btn.btn-primary,
.btn.btn-secondary {
    position: relative;
    font-family: "Playfair Display", serif;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    transition: .5s;
    background: rgba(14, 42, 74, .5);
    background: #0e2a4e;
}

.navbar .navbar-nav .nav-link {
    padding: 40px 22px;
    color: var(--bs-white);
    font-size: 22px;
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}



@media (min-width: 1200px) {
    .navbar.bg-dark .navbar-nav .nav-link {
        padding: 20px 10px;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 42, 74, .3);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

#header-carousel .carousel-item {
    position: relative;
    min-height: 700px;
    z-index: 2;
}



/*** Fact ***/
.fact-counter {
    background: linear-gradient(rgba(14, 42, 74, .5), rgba(14, 42, 74, .5)), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}


/*** Room ***/
.room-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.room-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.room-item .room-detail img {
    transition: .5s;
}

.room-item:hover .room-detail img {
    transform: scale(1.2);
}

.room-item .room-detail .position-absolute {
    background: rgba(14, 42, 74, .5);
}


/*** Service ***/
.service-item {
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.service-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--bs-primary);
    border-radius: 4px;
    z-index: 1;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s ease-out;
    z-index: 2;
}

.service-item:hover::after {
    width: 0;
    left: auto;
    right: 0;
}

.service-item * {
    position: relative;
    transition: .5s;
    z-index: 3;
}

.service-item:hover * {
    color: #FFFFFF !important;
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .feature-text-right {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .feature-text-right {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .feature-text-right {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Blog ***/
.blog-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.blog-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.blog-item .blog-img {
    position: relative;
    margin-bottom: 3.5rem;
}

.blog-item .blog-meta {
    position: absolute;
    left: 0;
    bottom: -35px;
    width: 100%;
    height: 70px;
    z-index: 1;
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-light);
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--bs-primary);
}

.footer .copyright a:hover {
    color: var(--bs-light);
}

.footer .socialmedia {
    display: flex;
}

.events-cards-logo-holder{
    text-align: center;
}

@media (min-width: 1400px) {
    .carousel-caption .display-1 {
        font-size: 6rem;
    }
}

@media (min-width: 1200px) {
    .carousel-caption .display-1 {
        font-size: 4rem;
    }
}

@media (max-width: 1539.98px) {
    .navbar .navbar-nav .nav-link {
        font-size: 18px;
        padding: 40px 15px;
    }

    .navbar .btn {
        font-size: 1rem;
    }
    #header-carousel .carousel-item{
        min-height: 550px;
    }
}

@media (max-width: 1365.98px) {
    .navbar .navbar-nav .nav-link {
        font-size: 16px;
        padding: 40px 10px;
    }
    .display-4{
        font-size: 3rem;
    }
}

@media(max-width:1199.98px) {
    .hamburger {
        padding: 10px 15px;
        display: inline-block;
        cursor: pointer;
        transition-property: opacity, filter;
        transition-duration: .15s;
        transition-timing-function: linear;
        font: inherit;
        color: inherit;
        text-transform: none;
        background-color: transparent;
        border: 0;
        margin: 0;
        overflow: visible;
        position: absolute;
        right: 20px;
        z-index: 999;
        top: 40px;
        z-index: 999;
        transform: translateY(-50%);
        margin-top: 5px;
    }

    .hamburger-box {
        width: 32px;
        height: 21px;
        display: inline-block;
        position: relative
    }

    .hamburger-inner {
        display: block;
        top: 50%;
        margin-top: -1.5px
    }

    .hamburger-inner,
    .hamburger-inner::after,
    .hamburger-inner::before {
        width: 32px;
        height: 3px;
        background-color: var(--bs-white);
        border-radius: 4px;
        position: absolute;
        transition-property: transform;
        transition-duration: .15s;
        transition-timing-function: ease
    }

    .hamburger-inner::after,
    .hamburger-inner::before {
        content: "";
        display: block
    }

    .hamburger-inner::before {
        top: -9px
    }

    .hamburger-inner::after {
        bottom: -9px
    }

    .hamburger--collapse .hamburger-inner {
        top: auto;
        bottom: 0;
        transition-duration: .13s;
        transition-delay: .13s;
        transition-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    .hamburger--collapse .hamburger-inner::after {
        top: -18px;
        transition: top .2s cubic-bezier(.33333, .66667, .66667, 1) .2s, opacity .1s linear
    }

    .hamburger--collapse .hamburger-inner::before {
        transition: top .12s cubic-bezier(.33333, .66667, .66667, 1) .2s, transform .13s cubic-bezier(.55, .055, .675, .19)
    }

    .hamburger--collapse.is-active .hamburger-inner {
        transform: translate3d(0, -9px, 0) rotate(-45deg);
        transition-delay: .22s;
        transition-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    .hamburger--collapse.is-active .hamburger-inner::after {
        top: 0;
        opacity: 0;
        transition: top .2s cubic-bezier(.33333, 0, .66667, .33333), opacity .1s linear .22s
    }

    .hamburger--collapse.is-active .hamburger-inner::before {
        top: 0;
        transform: rotate(-90deg);
        transition: top .1s cubic-bezier(.33333, 0, .66667, .33333) .16s, transform .13s cubic-bezier(.215, .61, .355, 1) .25s
    }

    .slide-out-nav {
        position: fixed;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 20px;
        padding: 30px 0;
        background-color: rgba(14, 42, 74, 1);
        overflow-y: auto;
        z-index: 11;
        opacity: 0;
        transform: translateY(100%) perspective(1px);
        max-width: 100%;
        transition: height .8s ease-in-out
    }

    .slide-out-nav.nav-open {
        height: calc(100% - 92px);
        opacity: 1;
        transform: translateY(0) perspective(1px)
    }

    .fixed-top.nav-fixed .slide-out-nav {
        background-color: #fff
    }

    .navbar .navbar-nav {
        display: block;
        width: 100%;
        text-align: center
    }

    .navbar .navbar-nav .nav-link {
        font-size: 1em;
        padding: 15px 20px
    }

    .slide-out-nav li a::after {
        display: none
    }

    .slide-out-nav.fadeInDown {
        -webkit-animation-name: unset;
        animation-name: unset
    }

    .kebab-toggler {
        position: absolute;
        top: 11px;
        right: 15px;
        width: 50px;
        height: 52px;
        display: block;
        padding: 12px 10px;
        z-index: 99;
        top: 48%;
        z-index: 999;
        transform: translateY(-50%);
        margin-top: -3px;
    }

    .kebab-toggler.active .circleKebab circle {
        transition: .3s
    }

    .social-menu {
        color: #0f4470;
        background-color: #fff;
        padding-top: 30px;
        display: none;
        text-align: center
    }

    .social-menu.menu-on {
        display: block;
        position: fixed;
        width: 100%;
        left: 0;
        top: 82px
    }

    .fixed-top.nav-fixed .social-menu.menu-on {
        top: 76px
    }

    .fixed-top.nav-fixed .social-menu {
        background-color: #fff
    }

    .social-menu li {
        position: relative;
        padding: 10px 40px
    }

    .social-menu .contact-info a {
        color: #0f4470;
        display: inline-block;
        font-size: 18px
    }

    .social-menu .contact-info span {
        display: block
    }

    .socmedia {
        margin: 5px;
        text-align: center;
    }

    .navbar-nav .dropdown-menu {
        border: 0;
        text-align: center
    }

    .navbar-nav .dropdown-menu .dropdown-item {
        color: #0f4470;
        padding: .5rem 1rem
    }

    .navbar .btn {
        width: 90%;
        margin: 3px auto;
    }


    .navbar {
        position: relative !important;
        background: rgba(14, 42, 74, 1);
        z-index: 999999;
    }

    .navbar-brand img {
        max-width: 100px;
    }

    .carousel-caption .display-1{
        font-size: 2.8rem;
    }

    .display-4{
        font-size: 2.8rem;
    }

    .py-6{
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    #header-carousel .carousel-item{
        min-height: 410px;
    }
}

@media (max-width: 992.98px) {
    #header-carousel .carousel-item {
        position: relative;
        /*min-height: 560px;*/
        z-index: 99999;
        height: auto;
        min-height: inherit;
    }

    #header-carousel .carousel-item img {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .padding-top-negative {
        margin-top: 0;
    }
}

@media (max-width: 991.98px) {
    .carousel-caption {
        position: relative;
        background: rgba(14, 42, 74, 1);
        margin-top: -10px;
    }

    .carousel-caption .btn {
        margin-bottom: 3px;
    }

    .explore .btn{
        max-width: 240px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767.98px) {
.properties-logo img{
    max-width: 100px;
}
}

@media (max-width: 575.98px) {
    .carousel-caption .display-1{
        font-size: 2.2rem;
    }
    .btn {
        display: block;
        margin-bottom: 3px;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .footer .socialmedia {
        display: inline-block;
    }
}