@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,400;0,500;0,600;1,700;1,800&family=Marcellus&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

:root {
    --theme-color: #0353a4;
    --body-font: 'Jost', sans-serif;
    --heading-font: 'Marcellus', serif;
}

/* common css start */
body {
    font-family: var(--body-font);
}

img {
    height: auto;
    max-width: 100%;
}

ul,
p {
    margin: 0;
    padding: 0;
}

p {
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    display: inline-block;
    color: #369aff;
}

a:hover {
    color: #fff;
}

.rotate-arrow {
    transform: rotate(45deg);
    padding-left: 3px;
}

.primary-btn {
    padding: 12px 28px;
    background-color: #0353a4;
    color: #fff;
    border-radius: 4px;
}

i {
    vertical-align: middle;
}

.padding_sec {
    padding: 60px 0;
}

/* common css end */

/* css for top header start here */
.top-head-wrapper {
    padding: 4px 0;
    background-color: #242323;
}

.top-head-wrapper a,
.top-head-wrapper i {
    font-size: 15px;
    color: #ffffff;
    text-transform: capitalize;
    font-weight: 500;
    padding-right: 3px;
}

.top-head-wrapper a {
    padding-right: 20px;
}

/* css for top header end here */

/* css for bottom header start here */
.logo {
    width: 140px;
}

nav ul li a {
    color: #0353a4 !important;
    font-size: 15px;
    font-weight: 500;
    padding: 10px !important;
    text-transform: uppercase;
}


.dropdown .dropdown-menu {
    min-width: 13rem;
    transform: translateY(-10px);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.dropdown:hover .dropdown-menu {
    visibility: visible;
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown:hover .dropdown-menu.show {
    display: block;
}

/* css for bottom header start here */

/* css for hero section start here */
.hero-bg {
    background-image: url('../images/banner/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 850px;
    position: relative;
    overflow: hidden;
}

.hero-bg .slider-content h4 {
    font-size: 20px;
    color: #f4af1b;
    font-weight: 500;
    margin: 0 0 24px 0;
}

.hero-bg .slider-content h3 {
    font-family: var(--heading-font);
    font-size: 48px;
    line-height: 60px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 600;
}

.hero-bg .slider-content .slider-button {
    padding-top: 30px;
}

.hero-bg .slider-content span {
    color: #f4af1b;
}

/* css for hero section end here */

/* css for about section start here */
.about_area {
    background: url(../images/about/about_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.about-right-title {
    margin-bottom: 42px;
}

.about-right-title h4 {
    font-size: 18px;
    color: var(--theme-color);
    font-weight: 500;
    font-family: var(--heading-font);
    margin-bottom: 7px;
    padding-left: 45px;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.about-right-title h4::before {
    position: absolute;
    content: "";
    top: 10px;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--theme-color);
    z-index: -1;
}

.about-right-title h3 {
    font-size: 48px;
    color: #171717;
    font-weight: 700;
    font-family: var(--heading-font);
    margin-bottom: 20px;
}

.about-right-title p {
    font-size: 16px;
    line-height: 26px;
    color: #4d5053;
    font-weight: 300;
    width: 88%;
}

/* css for about section end here */

/* css for Service section start here */
.service-area {
    background-color: #f5f5f5;

    /* background: url(../images/about/about_bg.jpg);
        background-repeat: no-repeat;
        background-size: cover; */
}

.service-title h4 {
    font-size: 46px;
    line-height: 46px;
    color: #0a1027;
    font-weight: 700;
    font-family: var(--heading-font);
}

.single-service-box {
    border-radius: 5px;
    background-color: #ffffff;
    padding: 38px 28px 28px;
    position: relative;
    z-index: 1;
    min-height: 425px;
}

.single-service-box:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: var(--theme-color);
    z-index: -1;
    border-radius: 5px;
    transition: 0.5s;
}

.single-service-box:hover:before {
    width: 100%;
    left: 0;
}

.service-box-icon i {
    font-size: 50px;
    transition: 0.5s;
    color: #0353a4;
}

.single-service-box:hover i {
    color: #e7e7e7;
}

.service-box-content h4 {
    font-size: 22px;
    line-height: 30px;
    color: #0a1027;
    font-weight: 700;
    margin: 24px 0 12px;
    transition: 0.5s;
}

.single-service-box:hover .service-box-content h4 {
    color: #fff;
}

.service-box-content p {
    transition: 0.5s;
    margin-bottom: 20px;
}

.single-service-box:hover .service-box-content p {
    color: #fff;
}

.service-box-content a {
    display: inline-block;
    font-size: 17px;
    color: #0d132a;
    font-weight: 400;

    transition: 0.5s;
}

.single-service-box:hover .service-box-content a {
    color: #fff;
}

.service-box-content i {
    display: inline-block;
    font-size: 14px;
    position: relative;
    top: 2px;
    left: 3px;
    color: #0d132a;
    transition: 0.5s;
}

.single-service-box:hover i {
    color: #fff;
}

.service-craousel .owl-nav {
    position: relative;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    top: 15px;
    z-index: 1;
}

.service-craousel .owl-nav:before {
    position: absolute;
    content: "";
    left: 40%;
    top: 30px;
    width: 50px;
    height: 2px;
    background-color: rgba(23, 23, 23, 0.10196078431372549);
    z-index: -1;
    margin: auto;
}

.service-craousel .owl-nav:after {
    position: absolute;
    content: "";
    right: 40%;
    top: 30px;
    width: 50px;
    height: 2px;
    background-color: rgba(23, 23, 23, 0.10196078431372549);
    z-index: -1;
    margin: auto;
}

.service-craousel .owl-nav button.owl-prev {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    margin-right: 15px;
    transition: .5s;
}

.service-craousel .owl-nav button.owl-next {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    transition: .5s;
}

.service-craousel .owl-nav button.owl-prev:hover {
    background: var(--theme-color);
    color: #fff;
}

.service-craousel .owl-nav button.owl-next:hover {
    background: var(--theme-color);
    color: #fff;
}

/* css for Service section end here */

/* service type section start here */
.service_type {
    background: url(../images/banner/service-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.st-right-title h3 {
    font-size: 45px;
    line-height: 45px;
    color: #1c72c8;
    font-weight: 700;
    margin-bottom: 0;
}

.st-right-title p {
    font-size: 16px;
    line-height: 28px;
    color: #e5e6ea;
    font-weight: 300;
    width: 90%;
    margin: 0;
    padding: 25px 0;
}

/* service type section end here */

/* css for attraction section start here */
.project_gallery {
    background-color: #f1f1f1;
}

.project_gallery h3 {
    font-size: 20px;
    color: #0353a4;
    font-weight: 500;
    margin-bottom: 19px;
}

.project_gallery h4 {
    font-size: 45px;
    line-height: 45px;
    color: #0a1027;
    font-weight: 700;
    font-family: var(--heading-font);
}

/* css for attractions gallery */
.attractions-gallery {
    margin-top: 100px;
}

.attractions-gallery .carousel-item .g-box {
    flex: 0 0 444px;
    max-width: 444px;
}

/* css for attraction section end here */


/* css for footer section start */
.footer-bg {
    background-image: url('../images/banner/footerbanner.jpg');
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.t-footer ul li a {
    color: #ffffff;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.b-footer {

    background-color: #242323;
    color: #ffffff;
    text-transform: capitalize;
    letter-spacing: 1.5px;

}

.b-footer ul li a {
    color: #ffffff;
    padding: 0 15px;
    text-transform: capitalize;
    letter-spacing: 1.5px;
}

.footer-heading {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: capitalize;
    margin-top: 10px;
}

.footer-text {
    margin: 20px 0;
    letter-spacing: 1.5px;
    line-height: 1.7;
}

.footer-icons i {
    color: #ffffff;
    font-size: 18px;
    padding: 15px;
}

.t-footer ul li a {
    margin-top: 5px;
}

.f-services {
    flex-wrap: wrap;
}

.f-services li a {
    border-right: 1px solid white;
}

.footer-add {
    padding-left: 20px;
}



.footer-email {
    word-break: break-all;
}

.b-footer p {
    font-size: 13px;
}

.b-footer ul li a {
    font-size: 13px;
}

/* css for footer section end */

/* css for breadcrumb start here */
.breadcrumb-sec {
    background-image: url('../images/banner/bread-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding-top: 100px;
    position: relative;
    z-index: 1;
    background-position: bottom;
}

.breadcrumb-sec::before {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    top: 0;
    background-color: #00000085;
    opacity: 0.9;
    height: 100%;
    z-index: -1;
}

.breadcrumb-wrapper {
    width: 100%;
    padding: 20px 0;
}

.breadcrumb-heading {
    font-size: 65px;
    font-family: var(--heading-font);
    color: #ffffff;
}

/* css for breadcrumb end here */

/* css for about page start here */
.about-pg h4 {
    font-size: 35px;
    color: #171717;
    font-weight: 700;
    font-family: var(--heading-font);
    margin-bottom: 20px;
}

.about-pg p {
    font-size: 18px;

    margin-bottom: 10px;
}

/* css for about page end here */

/* gallery page start here */
.grid-box-one {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 2rem;
}

.grid-box {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));

    gap: 2rem;

    padding-top: 30px;

    text-align: center;
}



.grid-item img {
    border-radius: 25px;
}

.grid-box h4 {
    font-size: 17px;
    padding-top: 10px;
    padding-left: 5px;
    text-transform: capitalize;
}

/* gallery page end here */

/* get quote page start here */
.form-wrap {
    /* border: 2px solid #cacaca; */
    padding: 50px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.1);
}

/* get quote page end here */

/* service area page start here */
.sa-wrap {
    background-color: #0353a4;
    border-radius: 5px;
    padding: 5px 0;
    text-align: center;
    margin-top: 10px;
}

.sa-wrap a {
    color: #fff;
    font-size: 18px;
    width: 100%;
    display: inline-block;
}

/* service area page end here */

/* Responsive css for home page start here */
@media screen and (max-width:1400px) {
    .about-left .about-heading {
        font-size: 40px;
        letter-spacing: 1.5px;
    }

    .about-left .about-text p {
        font-size: 16px;
        letter-spacing: 1px;
        line-height: 1.4;
    }

    .about-left .about-heading::after {
        bottom: -16px;
        left: 9px;
    }


}

@media screen and (max-width:1200.5px) {
    .about-right-title {
        margin-bottom: 15px;
    }

    .about-right-title h3 {
        font-size: 35px;
        margin-bottom: 10px;
    }

    .hero-bg .slider-content h3 {
        font-size: 35px;
        line-height: 45px
    }

    nav ul li a {
        font-size: 14px;
        padding: 4px !important;

    }

    .logo {
        width: 130px;
    }

    .primary-btn {
        padding: 12px 15px;
    }



    .about-left .about-heading {
        font-size: 35px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .about-left .about-text {
        margin-top: 15px;

    }

    .about-btn-box {
        padding-top: 15px !important;
    }

    .check-btn {
        padding: 10px 20px;
    }

    .about-left .about-heading::after {
        width: 60px;
    }


}

@media screen and (max-width:992.5px) {
    .st-right-title h3 {
        margin-top: 20px;
    }

    .hero-bg .slider-content h4 {
        margin: 0 0 15px 0;

    }

    .hero-bg .slider-content .slider-button {
        padding-top: 10px;
    }

    .hero-bg .slider-content h3 {
        font-size: 25px;
        line-height: 30px;
    }


    .about-right {
        margin-top: 15px;
    }

    .about-left .about-text {
        padding: 25px 0 0 0;
    }

    .rooms-heading p {
        font-size: 22px !important;
    }

    .check-out {
        padding-right: 20px !important;
    }

    .check-in {
        padding-right: 15px !important;
    }

    .w-icon .attractions-heading {
        font-size: 46px;
    }

    .w-icon .attractions-text {
        font-size: 16px;
    }
}

@media screen and (max-width:840px) {
    .check-in-box div p {

        letter-spacing: 0.5px;

        font-size: 14px;

        font-weight: 400;

        min-width: inherit;

    }

    .check-in-box div .c-head {
        font-weight: 500;
        font-size: 16px;
    }

    .check-btn {

        letter-spacing: 1.5px;
        font-size: 14px;
        padding: 10px 20px;

    }

    .icon svg {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        margin-top: 3px;
    }

}

@media screen and (max-width:767.5px) {
    .grid-box {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));

    }

    .grid-box-one {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .project_gallery h3 {
        margin-bottom: 0px;
    }

    .project_gallery h4 {
        font-size: 25px;
    }

    .padding_sec {
        padding: 30px 0;
    }

    .hero-bg {
        height: 650px;
    }

    .rooms-heading p {
        font-size: 18px !important;
    }

    .check-btn {
        text-wrap: nowrap;
    }

    .check-btn-box {
        margin-top: 25px;
    }

    .check-in-box {
        padding: 25px 10px;
    }

    .check-in-box-row div:nth-child(2) {
        border-right: none;
    }

    .w-icon .attractions-heading {
        font-size: 30px;
    }

    .facilities-heading {
        font-size: 25px;
    }

    .f-item-row p {
        font-size: 18px;
    }

}

@media screen and (max-width:576.5px) {
    .form-wrap {
        padding: 15px;
    }

    .about-pg p {
        font-size: 16px;
    }

    .about-pg h4 {
        font-size: 23px;
    }

    .service-title h4 {
        font-size: 30px;
    }

    .st-right-title p {
        width: 100%;
        line-height: 22px;
    }

    .hero-bg {
        height: 350px;
    }

    .top-head-wrapper span,
    .top-head-wrapper i {
        font-size: 13px;
        font-weight: 400;
    }

    .top-head-btn {
        font-size: 13px;
        padding: 10px 20px;
    }

    .hero-text .first-quote {
        font-size: 18px;
        margin-bottom: 25px;

    }

    .hero-text .second-quote {
        font-size: 30px;
    }

    .w-icon .attractions-heading {
        font-size: 22px;
    }

    .check-in,
    .check-out {
        flex-direction: column;
        text-align: center;

    }

    .f-item-row p {
        font-size: 14px;
    }

    #attractions {
        margin-top: 10px;
    }

    #rooms,
    #about {
        margin-top: 40px;
    }


}

@media screen and (max-width:460px) {

    /* .project_gallery h4 {
        font-size: 18px;
    } */
    .breadcrumb-sec {
        padding-top: 50px;
    }

    .grid-box {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .st-right-title h3 {
        font-size: 30px;
    }

    .about-right-title h3 {
        font-size: 25px;
    }

    .about-right-title p {
        width: 100%;
        line-height: 20px;
    }


    .top-head-btn {
        margin-top: 20px;
    }

    .about-left .about-heading {
        font-size: 22px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .rooms-heading p {
        font-size: 16px !important;
    }

    .about-left .about-heading::after {
        width: 50px;
        left: 7px;
    }

    .rooms-sub-head {
        flex-direction: column;
    }

    .rooms-sub-head div:nth-child(2) {
        margin-top: 10px;
    }

    .h-rooms {
        text-align: center;
    }

    .rooms-heading {
        text-align: center;
    }

    .footer-heading {
        margin-top: 20px;
    }


    .logo {
        width: 151px;
        /* text-align: center; */
        /* width: 100%; */
        /* margin: 0 auto; */
    }

    .about-info-heading {
        font-size: 25px !important;
    }

    .breadcrumb-heading {
        font-size: 50px !important;
    }

}

/* Responsive css for home page start here */


.bottom-head-wrapper {
    padding: 0px 0px;
}

.about_area .about_left img {
    border-radius: 20px;
}

.about_area_pg .about_left img {
    border-radius: 20px;
}