@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --theme-color: #b51818;
    --active-color: #f7b82d;
    --blue-background: #0a0b0e;
    --body-font: 'Open Sans', sans-serif;
    --heading-font: 'Playfair Display', serif;
    --paragraph-font-size: 16px;
    --p-heading-font-size: 23px;
    --s-heading-font-size: 35px;
}

/* common css start */
body {
    font-family: var(--body-font);
}

img {
    height: auto;
    max-width: 100%;
}

ul,
li {
    text-decoration: none;
    list-style: none;
}

ul,
p {
    margin: 0;
    padding: 0;
}

p {
    font-size: var(--paragraph-font-size);
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    display: inline-block;
    color: #fff;
}

a:hover {
    color: var(--theme-color);
}

.primary-btn {
    z-index: 1;
    color: #ffffff;
    transition: .5s;
    background-color: var(--theme-color);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 500;
}

.primary-btn:hover {
    background-color: #fff;
    color: #a40301;
}

i {
    vertical-align: middle;
}

.padding_sec {
    padding: 60px 0;
}

.primary_heading {
    font-size: 14px;
    color: var(--theme-color);
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: var(--heading-font);
    letter-spacing: 1px;
    position: relative;
    margin-left: 35px;
}

.primary_heading::before {
    position: absolute;
    content: '';
    left: -35px;
    bottom: 8px;
    width: 30px;
    height: 2px;
    background-color: var(--theme-color);
}

.main_heading {
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    font-size: 40px;
    position: relative;
}

.line-grid-wrap {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

span.line-grid-1 {
    position: absolute;
    left: 10%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgb(255 255 255 / 12%);
}

span.line-grid-2 {
    position: absolute;
    left: 30%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgb(255 255 255 / 12%);
}

span.line-grid-3 {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgb(255 255 255 / 12%);
}

span.line-grid-4 {
    position: absolute;
    left: 70%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgb(255 255 255 / 12%);
}

span.line-grid-5 {
    position: absolute;
    left: 90%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgb(255 255 255 / 12%);
}

/* common css end */

/* css for top header start here */
.top_header {
    padding: 7px 0px;
    background-color: rgba(0, 0, 0, 0.5);
}

.top_header a,
.top_header i {
    font-size: 15px;
    color: #ffffff;
    text-transform: capitalize;
    font-weight: 500;
    padding-right: 7px;
}

.top_header li {
    padding-right: 20px;
}

/* css for top header end here */

/* css for main header start here */

.logo {
    max-width: 180px;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
}

nav ul li a {
    color: #fff !important;
    font-size: 17px;
    font-weight: 500;
    padding: 0 !important;
    margin: 20px;
    text-transform: capitalize;
    position: relative;
}

nav ul li a::before {
    position: absolute;
    content: "";
    left: 0px;
    bottom: -9px;
    width: 0%;
    height: 2px;
    opacity: 0;
    background-color: var(--theme-color);
    -webkit-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
}

nav ul li a:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    width: 100%;
    opacity: 1;

}

nav ul li a:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--theme-color) !important;

}

.navbar-light .navbar-toggler {
    background-color: #fff;
}

header {
    color: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    transition: top 0.3s;
    z-index: 2;
}

.show_fix_header {
    background-color: var(--theme-color);
}

.show_fix_header .top_header {
    display: none;
}

.show_fix_header .logo {
    max-width: 130px;
}

.show_fix_header .main_header .navbar-light .navbar-nav .nav-link.active {
    color: var(--blue-background) !important;
}

.show_fix_header .primary-btn {
    background-color: var(--blue-background);
}

.show_fix_header nav ul li a:hover {
    color: var(--blue-background) !important;
}

/* css for bottom header start here */
/* hero section start */


.hero_sec {
    background: url('../images/banner/1.jpg');
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: top;
    position: relative;
    z-index: 1;
}

.hero_sec::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: #0000004d;
    z-index: 1;
}

/* hero section end */
/* about section start */
.about_sec {
    background-color: var(--blue-background);
    padding-top: 0;
    position: relative;
}

.about_sec .image_box {
    display: inline-block;
    margin-bottom: 30px;
}

.about_sec .about_content {
    margin-top: 80px;
}

.about_content p {
    color: #fff;
    margin-bottom: 10px;
}

/* about section end */
/* service secton start */
.service_sec .main_heading {
    color: #0f1924;
}

.service-block-seven {
    margin-bottom: 20px;
}

.service-block-seven:last-child {
    margin-bottom: 0;
}

.service-block-seven .content-box h3 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-block-seven .content-box p {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-block-seven img {
    border-radius: 25px;
}

.service-block-seven .content-box .list-item li {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    color: #444;
    margin-bottom: 7px;
    padding-left: 35px;
}

.service-block-seven .content-box .list-item li:last-child {
    margin-bottom: 0px;
}

.service-block-seven .content-box .list-item li:before {
    background-image: url(../images/services/icon-133.png);
    left: 0px;
    position: absolute;
    content: '';
    width: 16px;
    height: 12px;
    top: 10px;
    background-repeat: no-repeat;

}

/* service secton end */
/* gallery section start */
.gallery_sec {
    position: relative;

}

.gallery_bg {
    background-color: var(--blue-background);
    height: 576px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

}

.single-service-box {
    margin-bottom: 30px;
    position: relative;
}

.service-box-icon {
    overflow: hidden;
    position: relative;
    border-radius: 7px;
}


.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: 42%;
    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: 42%;
    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: #e4e4e4;
    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: #e4e4e4;
    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;
}

.for-btn-hover:hover {
    background-color: var(--blue-background);
    color: #fff;
}

/* gallery section end */
/* footer section start */
.footer-bg {
    background-color: #0f1924;
}

.footer-heading {
    position: relative;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    padding-bottom: 15px;
    margin-bottom: 26px;
    text-transform: capitalize;
}

.footer-heading:before {
    position: absolute;
    content: "";
    left: 0px;
    bottom: 0px;
    height: 2px;
    width: 44px;
    background-color: var(--theme-color);
}


.footer-bg ul li a {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 5px;
}

.footer-bg ul li a i {
    padding-right: 10px;
}

.footer-bg .footer-icons {
    color: #ffffff;
    font-size: 20px;
    padding-top: 7px;
    padding-right: 20px;
}

.b-footer {
    background-color: #131517;
}

.footer-wrap {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.b-footer p {
    font-size: 13px;
    color: #a8a8a8;
    text-transform: capitalize;
    letter-spacing: 1.5px;

}

.b-footer ul li a {
    padding: 0 15px;
    text-transform: capitalize;
    letter-spacing: 1.5px;
    font-size: 13px;
    border-right: 1px solid;
}


/* footer section end */

/* Responsive css */
@media screen and (max-width:1400.5px) {
    .gallery_bg {
        height: 480px;
    }
}

@media screen and (max-width:991.5px) {
    .content-column {
        margin-top: 20px;
    }

    .catering_sec {
        background-position: right;
    }

    .about_sec .image_box {
        display: none;
    }



}

@media screen and (max-width:767px) {

    .main_heading {
        font-size: 30px;
    }

    .about_sec_content p {
        line-height: 24px;
        font-size: 14px;
    }


}



@media screen and (max-width:576.5px) {
    .show_fix_header .main_header .navbar-light .navbar-nav .nav-link.active {
        color: var(--theme-color) !important;
    }

    .navbar .navbar-nav {
        background-color: #131517;
        border-radius: 20px;
        padding: 20px;
    }

    nav ul li a {
        margin: 10px 0 0 0;

    }

    .get-quote {
        width: 100%;
    }

    .hero_sec {
        height: 60vh;
    }

    .service-block-seven .content-box h3 {
        font-size: 25px;
    }

    .about_sec .about_content {
        margin-top: 0;
    }

    .top-head-wrapper a {
        padding-right: 0px;
        font-size: 12px;
    }

    .padding_sec {
        padding: 30px 0;
    }



    .service-craousel .owl-nav {
        top: 16px;
    }


}

/* css for about page start here */

.wpo-page-title {
    background: url(../images/breadcrumb/breadcrumbbg.jpg) no-repeat center bottom/cover;
    /* min-height: 444px; */
    padding-top: 276px;
    padding-bottom: 35px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
    align-items: center;
    /* padding-bottom: 0; */
}

.wpo-page-title:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #262626;
    content: "";
    z-index: -1;
    opacity: 0.6;
}

.wpo-page-title .wpo-breadcumb-wrap {
    text-align: center;
    margin-top: 10px;
}

.wpo-page-title .wpo-breadcumb-wrap h3,
.wpo-page-title .wpo-breadcumb-wrap h1 {
    font-size: 60px;
    color: #fff;
    line-height: 60px;
    /* margin-top: -10px; */
    margin-bottom: 20px;
    font-weight: 400;
}

.wpo-page-title .wpo-breadcumb-wrap ol {
    padding-left: 0;
    margin-bottom: 0;
}

.wpo-page-title .wpo-breadcumb-wrap ol li {
    display: inline-block;
    padding: 0px 5px;
    padding-right: 20px;
    color: #fff;
    position: relative;
    font-size: 20px;
    font-family: "Raleway", sans-serif;
}

.wpo-page-title .wpo-breadcumb-wrap ol li a {
    color: #fff;
    font-size: 20px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.wpo-page-title .wpo-breadcumb-wrap ol li:first-child::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 10px;
    height: 5px;
    background: #fff;
    border-radius: 30px;
}

.black_main_heading {
    color: var(--blue-background);
    font-size: 30px;
}

.about_pg p {
    margin-bottom: 15px;
}

@media screen and (max-width:576.5px) {
    .wpo-page-title .wpo-breadcumb-wrap h3 {
        font-size: 50px;
        margin-bottom: 0px;
    }
}

/* service page start */

.service_page p {
    margin-bottom: 15px;
}

.service-wrap {
    background: #b51818;
    color: #fff;
    text-align: center;
    border-radius: 7px;
    padding: 5px 0;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Review page start */
.reviews_page {
    background-color: #f3f3f4;
}

.review-wrap .text-wrap {
    position: relative;
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
}

.review-wrap .text-wrap::before {
    position: absolute;
    content: '';
    width: 42px;
    height: 10px;
    bottom: -10px;
    left: 66px;
    background-image: url(../images/testimonials/shape-2.png);
}

.review-wrap .quote-icon {
    color: var(--theme-color);
    font-size: 35px;
}

.review-wrap .r-auth {
    margin-top: 10px;
    margin-left: 44px;
    font-size: 18px;
    line-height: 30px;
    color: #161837;
    font-weight: 700;
    margin-bottom: 15px;
}

.review-wrap .r-desc {
    font-weight: 600;
}


/* contact us page */
.contact_page {
    background-color: #f3f3f4;
}

.contact_page input {
    height: 47px;
    padding-left: 20px;
}

.contact_page textarea {
    padding-left: 20px;
}

.contact_page button {
    border: none;
}

.c-form {
    padding: 20px 25px;
    background-color: #fff;
    border-radius: 4px;
}

@media screen and (max-width:576.5px) {
    .c-form {
        padding: 10px 10px;
    }

    .contact_page input {
        height: 40px;
        padding-left: 10px;
    }

    .contact_page textarea {
        padding-left: 10px;
    }


}