/*.................... start global style ....................*/
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');
@font-face {
    font-family: "Helvetica";
    font-display: swap;
    src: url("../fonts/Helvetica.ttf") format("truetype")
}


/* 
    font-family: 'DM Serif Display', serif; 
*/

:root {
    --c_primary: #ff9b38;
    --c_secondary: #555555;
    --c_white: #ffffff;
    --c_black: #333333;
    --bg_primary: #ff9b38;
    --bg_secondary: #FCFCFC;
    --bg_white: #ffffff;
    --bg_black: #191924;
    --light_gray: rgba(0, 0, 0, .03);
    --light_primary: rgba(254, 155, 57, 0.25);
}

body {
    font-family: 'Helvetica', Helvetica, Arial, Lucida, sans-serif;
    color: var(--c_black);
}

p {
    font-size: 18px;
    line-height: 28px;
    color: var(--c_secondary);
}

.hide_scrollBar::-webkit-scrollbar {
    display: none;
}

.hide_scrollBar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.c_primary {
    color: var(--c_primary);
}

.c_secondary {
    color: var(--c_secondary);
}

.c_white {
    color: var(--c_white);
}

.c_black {
    color: var(--c_black);
}

.bg_primary {
    background-color: var(--bg_primary);
}

.bg_secondary {
    background-color: var(--bg_secondary);
}

.bg_white {
    background-color: var(--bg_white);
}

.bg_black {
    background-color: var(--bg_black);
}

.sec_title {
    font-size: 48px;
    line-height: 66px;
    font-weight: 500;
    font-family: 'DM Serif Display', serif;
}

.btn_primary {
    font-weight: 700;
    background-color: var(--bg_primary);
    color: var(--c_white);
}

.btn_primary:hover {
    color: var(--c_white);
}

.btn_primary:focus {
    -webkit-box-shadow: 0 0 0 .25rem var(--light_primary);
            box-shadow: 0 0 0 .25rem var(--light_primary);
}


/*.................... end global style ....................*/


/* ..................... start header section ..................... */

.header_sec {
    background: var(--bg_white);
    font-size: 18px;
    line-height: 21px;
}

.header_sec .navbar {
    padding: 14px 0px;
}

.header_left {}

.header_sec .navbar-brand {
    margin-right: 86px;
}

.header_logo {
    width: 131px;
    height: 41.8px;
}

.header_sec .nav-item {
    margin-right: 47px;
}

.header_sec .nav-link {
    color: var(--c_black) !important;
}

.header_sec .nav-link:hover {
    color: var(--c_primary) !important;
}

.header_left {}

.header_right {}

.header_right .navbar_nav {
    padding-left: 0px;
    list-style: none;
    margin-bottom: 0px;
}

.header_right .nav_item {
    margin-right: 20px;
}

.header_right .nav_link {
    text-decoration: none;
    color: var(--c_black);
}
.header_right .nav_link:hover{
    color:var(--c_primary);
}

.header_right .nav_link img {}

.header_right .btn_primary {
    padding: 5px 25px;
}

@media(max-width:1399.98px) {
    .header_sec .navbar-brand {
        margin-right: 30px;
    }
    .header_sec .nav-item {
        margin-right: 20px;
    }
}

@media(max-width:1199.98px) {
    .header_left {
        margin-bottom: 12px;
        border-bottom: 1px solid var(--light_gray);
        padding-bottom: 12px;
    }
    .header_sec .nav-item {
        margin-right: 0px;
        margin-left: 20px;
    }
}

@media(max-width:991.98px) {
    .header_left {
        position: relative;
    }
    .header_left .navbar-collapse {
        position: absolute;
        right: 0px;
        top: 100%;
        background: var(--bg_white);
        -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
                box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
        border-radius: 0px;
        z-index: 100;
    }
    .header_left .navbar-nav {
        border-top: 3px solid var(--bg_primary);
        min-width: 365px;
        padding: 16px;
    }
    .header_sec .nav-item {
        margin-left: 0px;
    }
    .header_sec .nav-link {
        padding: 10px;
        border-bottom: 1px solid var(--light_gray);
    }
    .header_sec .nav-link:hover {
        background-color: var(--light_gray);
    }
    .navbar-light .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28254, 155, 57, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    .navbar-toggler:focus {
        -webkit-box-shadow: 0 0 0 .25rem var(--light_primary);
                box-shadow: 0 0 0 .25rem var(--light_primary);
    }
}

@media(max-width:575.98px) {
    .header_right .nav_link span {
        display: none;
    }
    .header_left .navbar-nav {
        border-top: 3px solid var(--bg_primary);
        min-width: 280px;
        padding: 16px;
    }
}


/* ..................... end header section ..................... */


/* ..................... start hero section ..................... */

.hero_sec {
    padding-top: 85px;
    padding-bottom: 120px;
    background-color: #725e51;
    background-size: contain;
    background-position: right 0px top;
    background-image: url("../img/Header-BG.jpg");
    background-repeat: no-repeat;
    position: relative;
}

.hero_content {
    margin-right: -36px;
}

.hero_sec_title {
    font-size: 52px;
    line-height: 1em;
    padding-bottom: 10px;
    max-width: 630px;
}

.hero_desc {
    /* font-size: 18px;
    line-height: 28px; */
}

.hero_desc p {
    margin-bottom: 30px;
}

.hero_btns {
    padding-bottom: 40px;
    padding-top: 5px;
}

.hero_btns .btn {
    font-size: 20px;
    font-weight: 500;
    padding: .3em 1em;
    line-height: 1.7em;
    -webkit-box-shadow: 0px 3px 11px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 3px 11px 0px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    padding: 13px 30px;
    border-radius: 10px;
    margin-right: 16px;
    border-color: RGBA(255, 255, 255, 0);
}

.hero_btns .btn_1 {
    color: #555555;
    background-color: #f1f1f1;
    line-height: 1.8em;
}

.hero_btns .btn_1:hover {
    color: var(--c_white);
    border-color: var(--bg_white) !important;
    background-color: RGBA(255, 255, 255, 0);
}

.hero_btns .btn_2 {
    font-weight: 700 !important;
    background-color: var(--c_primary);
    letter-spacing: 1px;
    font-size: 22px;
    color: var(--c_white);
}

.hero_btns .btn_2:hover {
    color: var(--c_primary);
    border-color: var(--c_primary);
    background-color: RGBA(255, 255, 255, 0);
}

.hero_inside_divider {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmZmZmZmYiPjxwYXRoIGQ9Ik0xMjgwIDE0MFYwUzk5My40NiAxNDAgNjQwIDEzOSAwIDAgMCAwdjE0MHoiLz48L2c+PC9zdmc+);
    background-size: 100% 100px;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
    margin-bottom: -1px;
}


/* ..................... end hero section ..................... */


/* ..................... start price info section ..................... */

.price_info_sec {
    padding: 60px 0px;
    /*     padding: 18px 0px 60px 0px; */
}

.price_infoBtn {
    padding: 12px 25px;
    font-weight: 700;
    font-size: 24px;
    line-height: 117%;
    color: var(--c_secondary);
    border-radius: 10px;
}

.price_info_sec .sec_title {
    margin-bottom: 25px;
}

.price_desc {
    max-width: 1232px;
    margin: 0px auto 30px auto;
}


/* ..................... end price info section ..................... */


/* ..................... start Services section ..................... */

.service_sec {
    padding: 60px 0px;
}

.service_sec_title {
    margin-bottom: 30px;
}

.service_card {
    background: var(--bg_white);
    -webkit-box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

.service_img {
    width: 100%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.service_card:hover .service_img {
    opacity: 0.8;
}

.service_title {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: var(--c_secondary);
    padding: 20px;
    margin-bottom: 0px;
    text-align: center;
}


/* ..................... end Services section ..................... */


/* ..................... start Our team section ..................... */

.our_team_sec {
    padding: 64px 0px 65px 0px;
}

.our_team_desc {
    max-width: 1280px;
    margin: auto;
    margin-bottom: 30px;
}

.our_team_sec_title {
    margin-bottom: 6px;
}

.our_team_subTitle {
    font-weight: 700;
    font-size: 15px;
    line-height: 187%;
    color: var(--c_black);
    margin-bottom: -5px;
}

.our_team_subTitle::after {
    content: "";
    display: block;
    height: 3px;
    width: 76px;
    border-radius: 5px;
    background: var(--bg_primary);
    margin: auto;
}

.our_team_subTitle_2 {
    font-size: 20px;
    line-height: 1.4em;
    text-transform: uppercase;
}

.our_team_desc {
    margin-bottom: 34px;
}

.team_member_card {}

.team_member_card img {
    border-radius: 10px;
    -webkit-transition: -webkit-transform 300ms ease 0ms;
    transition: -webkit-transform 300ms ease 0ms;
    -o-transition: transform 300ms ease 0ms;
    transition: transform 300ms ease 0ms;
    transition: transform 300ms ease 0ms, -webkit-transform 300ms ease 0ms;
}

.team_member_card:hover img {
    -webkit-transform: scaleX(1.05) scaleY(1.05);
        -ms-transform: scaleX(1.05) scaleY(1.05);
            transform: scaleX(1.05) scaleY(1.05);
}


/* ..................... end Our team section ..................... */


/* ..................... start custom reviews section ..................... */

.review_sec {
    padding: 39px 0px 60px 0px;
    background: var(--bg_black);
}

.review_sec_title {
    margin-bottom: 45px;
}

.review_card {}

.review_star {
    margin-bottom: 25px;
    max-width: 146px;
}

.review_desc {
    color: var(--c_white);
    font-size: 16px;
    line-height: 1.375em;
    margin-bottom: 15px;
}

.review_desc .qoate {
    font-size: 48px;
    line-height: 0.3958em;
    color: var(--c_primary);
}

.reviewr_name {
    color: var(--c_white);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.7143em;
}

.review_sec .owl-nav {
    padding-top: 48px;
    text-align: center;
}

.review_sec .owl-nav button {
    margin: 0px 20px;
}

.review_sec .owl-nav button.disabled {
    opacity: 0.5;
}


/* ..................... end custom reviews section ..................... */


/* ..................... start location section ..................... */

.location_sec {}

.location_content {
    max-width: 532px;
    margin-left: auto;
    padding: 20px 0px;
    margin-bottom: 10px;
}

.location_info {
    font-size: 24px;
    line-height: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.location_infoImg {
    display: inline-block;
    min-width: 25px;
    margin-right: 10px;
}

.map_img {
    display: block;
}


/* ..................... end location section ..................... */


/* ..................... start book now section ..................... */

.book_now_sec {
    padding: 109px 0px;
    /* background-color: #fff; */
    background-image: url("../img/Book-Now-Banner.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}

.book_now_sec .sec_title {
    font-weight: 400;
    font-size: 40px;
    line-height: 1.15em;
    color: var(--c_white);
    max-width: 716px;
}

.book_now_btn {
    font-size: 30px;
    line-height: 56px;
    padding: 8px 48px;
    margin-right: 25px;
}


/* ..................... end book now section ..................... */


/* ..................... start gallery section ..................... */

.gallery_sec {
    padding: 84px 0px 80px 0px;
}

.gallery_sec_title {
    margin-bottom: 45px;
}

.gallery_slider {
    height: 590px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    padding-left: 50px;
}

.gallery_item {
    margin-right: 16px;
}

.gallery_img {
    display: block;
    position: relative;
}

.gallery_item,
.gallery_img {
    max-height: 100%;
    height: 100%;
}

.gallery_overlay {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 100%, .6);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    border: 1px solid #e5e5e5;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.gallery_img:hover .gallery_overlay {
    z-index: 3;
    opacity: 1;
}

.gallery_overlay::before {
    color: var(--c_primary);
    content: "+";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 32px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}


/* ..................... end gallery section ..................... */


/* ..................... start Footer  section ..................... */

.footer_sec {
    background: var(--bg_secondary);
}

.footer_top {
    padding: 42px 0px 15px 0px;
    border-bottom: 1px solid var(--c_secondary);
}

.footer_logo {
    display: block;
    width: 130px;
    height: 42px;
    margin-bottom: 10px;
}

.footer_logo img {
    width: 100%;
}

.footer_desc {
    font-size: 16px;
    line-height: 24px;
    max-width: 350px;
}

.footer_nav {
    list-style: none;
    padding-left: 6px;
    margin: auto;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-top: 10px;
}

.footer_navItem {
    margin-bottom: 17px;
}

.footer_navLink {
    list-style: none;
    color: var(--c_secondary);
    text-decoration: none;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.footer_navLink:hover {
    color: var(--c_primary);
}

.footer_formBox {
    max-width: 330px;
    margin-left: auto;
}

.footer_formBox .input-group {
    background: #E3E3E3;
    border-radius: 23px;
    overflow: hidden;
}

.footer_formBox .input-group:focus-within {
    background: #ebebeb;
}

.footer_formBox .form-control {
    font-size: 14px;
    padding: 12px 18px;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent;
}

.footer_formBox .btn_primary {padding: 10px 20px;}

.footer_bottom {
    padding: 21px 0px;
}

.footer_socialLink {
    text-decoration: none;
    margin-left: 6px;
}


/* ..................... end Footer  section ..................... */


/* _______________________ start media quires _______________________ */

@media(min-width:1400px) {
    .container {
        max-width: 1360px;
    }
    .book_now_sec .container {
        max-width: 1260px;
    }
}

@media(max-width:1399.98px) {
    .hero_btns .btn {
        font-size: 18px;
        height: 56px;
    }
    .hero_sec {
        background-size: cover;
    }
    .hero_btns .btn {
        padding: 10px 20px;
    }
    .location_content {
        padding-left: 50px;
    }
    .gallery_slider {
        height: 460px;
    }
}

@media(max-width:1199.98px) {
    .hero_sec {
        background-position: right 50% top;
    }
}

@media(max-width:991.98px) {
    .location_sec {
        padding-bottom: 50px;
    }
    .location_content {
        max-width: 100%;
        padding-left: 20px;
    }
    .gallery_slider {
        height: 400px;
        padding-left: 30px;
    }
    .footer_nav {
        margin-left: 0px;
    }
    .footer_desc {
        max-width: 100%;
    }
}

@media(max-width:767.98px) {
    .hero_content {
        margin-right: 0px;
    }
    .footer_nav {
        padding-left: 0px;
    }
    .footer_formBox {
        margin-left: 0px;
        margin-bottom: 20px;
    }
}

@media(max-width:575.98px) {
    .hero_sec {
        background-position: right 46% top;
    }
    .hero_btns .btn_1,
    .hero_btns .btn_2 {
        margin-bottom: 20px;
    }
    .gallery_slider {
        height: 276px;
        padding-left: 12px;
    }
    .footer_copyrightText {
        margin-bottom: 20px !important;
    }
}


/* _______________________ end media quires _______________________ */