/********** Template CSS **********/
:root {
    --primary: #ec1e28;
    --secondary: #2164b2;
    --light: #F8F2F0;
    --dark: #060315;
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 40px;
    bottom: 45px;
    z-index: 99;
}

.dropdown-item {
    display: block;
    font-size: 15px;
    width: 100%;
    padding: 0.3rem 1rem;
    clear: both;
    font-weight: 400;
    color: #fff;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0
}

/*** 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;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
    box-shadow: 1px 1px 1px rgb(74, 74, 74);
}

.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;
}

/* background*/

body{
    background: url(../img/texture.jpg);
    background-size: cover;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}




.navbar .row .navbar-toggler {
    background-color: white;
    margin-top: 10px;
}

.navbar .container-fluid .row .navbar-brand {
    margin-top: 2px;
}



.navbar #navbarCollapse .navbar-nav {
    margin-left: 100px;
    /* height: 50px; */
}

@media (max-width:780px) {

    .navbar .container-fluid .row .navbar-brand img {
       width: 200px;
    }

}


@media (max-width:580px) {

    .navbar #navbarCollapse .navbar-nav {
        margin-left: 15px;
    }

    .navbar .container-fluid .row .navbar-brand {
        margin-top: 0px;
        padding-left: 0px !important;
    }

}


.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 30px;
    padding: 15px 0;
    color: #FFFFFF;
    font-size: 14px;
    text-transform: uppercase;
    outline: none;
    font-family: "Roboto", Sans-serif;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 100%;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 900;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

.dropdown-item{
    border-bottom: 1px dotted;
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        top: -6px;
        left: 50%;
        background: #FFFFFF;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
        background: rgba(33, 100, 178, 0.9);
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/


.owl-carousel .owl-carousel-item #upper-text {
    margin-bottom: 0px;
}

.owl-carousel .owl-item img {
    height: 500px;
}


@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 155px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

/*img*/
.position-absolute{
    border-radius: 40px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    padding: 10px;
    background: #fff;
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text {
        /*padding-right: calc(((100% - 960px) / 2) + .75rem);*/
    }
}

@media (min-width: 1200px) {
    .about-text {
        /*padding-right: calc(((100% - 1140px) / 2) + .75rem);*/
    }
}

@media (min-width: 1400px) {
    .about-text {
        /*padding-right: calc(((100% - 1320px) / 2) + .75rem);*/
    }
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service, Price & Team ***/
.service-item,
.price-item,
.team-item {
   box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    background: #fff;
    border-radius: 20px;
}

.service-item img,
.team-item img {
    transition: .5s;
}

.service-item:hover img,
.team-item:hover img {
    transform: scale(1.1);
}

.service-item a.btn-slide,
.price-item a.btn-slide,
.team-item div.btn-slide {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 0;
}

.service-item a.btn-slide i,
.service-item a.btn-slide span,
.price-item a.btn-slide i,
.price-item a.btn-slide span,
.team-item div.btn-slide i,
.team-item div.btn-slide span {
    position: relative;
    height: 40px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 0 35px 35px 0;
    transition: .5s;
    z-index: 2;
}

.team-item div.btn-slide span a i {
    padding: 0 10px;
}

.team-item div.btn-slide span a:hover i {
    background: var(--secondary);
}

.service-item a.btn-slide span,
.price-item a.btn-slide span,
.team-item div.btn-slide span {
    padding-left: 0;
    left: -100%;
    z-index: 1;
}

.service-item:hover a.btn-slide i,
.price-item:hover a.btn-slide i,
.team-item:hover div.btn-slide i {
    border-radius: 0;
}

.service-item:hover a.btn-slide span,
.price-item:hover a.btn-slide span,
.team-item:hover div.btn-slide span {
    left: 0;
}

.service-item a.btn-slide:hover i,
.service-item a.btn-slide:hover span,
.price-item a.btn-slide:hover i,
.price-item a.btn-slide:hover span {
    background: var(--secondary);
}

.fa-quote-right-alt:before, .fa-quote-right:before {
    content: "\f10e";
    color: #000;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
    position: relative;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    animation: pulse 1s ease-out .5s;
    background: #fff;
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact-page {
        max-width: 100% !important;
    }

    .contact-page .contact-form {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-page .contact-form {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-page .contact-form {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(33,100,178, .5), rgba(236,30,40, .5)), url(../img/map.png) center center no-repeat;
    background-size: cover;
    /* background-image: url("../img/footer_bg.png"); */
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    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 {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 15px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}



/* ===== main navbar section start ==== */

.navbar .row #top-navbar {
    display: flex;
    float: inline-end;
    gap: 25px;
    padding-top: 10px;
    /*width: 65%;*/
}

.navbar .row .final-top {
    background: rgb(33, 100, 178);
    background-image: linear-gradient(90deg, #FFF 5%, #2164b2 70%);
    color: white;
    height: 45px;
}

/* ==== main navbar section end ==== */




/* ==== mission section start ==== */

.mission {
    margin-top: 100px;
}

.mission .container .row .col-sm-4 .mission-box {
    width: 100%;
    height: 400px;
    background-color: #fff;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}


.mission .container .row .col-sm-4 .mission-box:hover {
    box-shadow: rgba(1, 0, 8, 0.35) 0px 5px 15px;
    cursor: pointer;
}


.mission .container .row .col-sm-4 .mission-box .mission-icon .icon {
    width: 100px;
    height: 100px;
    background-color: #2164b2;
    border-radius: 50%;
    color: white;
    line-height: 100px;
    position: absolute;
    bottom: -22px;
    margin-left: -50px;

}

.mission .container .row .col-sm-4 .mission-box .mission-icon img {
    width: 50px;
}

.mission .container .row .col-sm-4 .mission-box .mission-icon {
    width: 100%;
    height: 55px;
    background-color: #ec1e28;
    position: relative;
    bottom: 50px;
    clip-path: polygon(0 0, 100% 1%, 92% 53%, 100% 100%, 0 100%, 7% 54%);
}



.intro-thumb {
    overflow: visible;
    margin: 0 0 30px;
    padding: 0 30px 30px 0;
}

.thumb,
figure {
    float: left;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.intro-thumb::before {
    top: 30px;
    left: 30px;
    right: 0px;
    bottom: 0;
    content: "";
    position: absolute;
    background-color: #2164b2 !important;
}


.intro-thumb img {
    position: relative;

}

/* ==== mission section end ==== */



/* ==== why choose us section start ==== */

.whychoose {
    margin-top: 100px;
}


.whychoose ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.whychoose img {
    max-width: 100%;
    height: auto;
}

span,
a,
a:hover {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.section-head {
    margin-bottom: 60px;
}

.section-head h4 {
    position: relative;
    padding: 0;
    color: #2164b2;
    line-height: 1;
    letter-spacing: 0.3px;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    text-transform: none;
    margin-bottom: 30px;
}

.section-head h4:before {
    content: '';
    width: 60px;
    height: 3px;
    background: #2164b2;
    position: absolute;
    left: 0px;
    bottom: -10px;
    right: 0;
    margin: 0 auto;
}

.section-head h4 span {
    font-weight: 700;
    padding-bottom: 5px;
    color: #2f2f2f
}

p.service_text {
    color: #cccccc !important;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
}

.section-head p,
p.awesome_line {
    color: #818181;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
}

.extra-text {
    font-size: 34px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 25px;
    position: relative;
    text-transform: none;
}

.extra-text::before {
    content: '';
    width: 60px;
    height: 3px;
    background: #2164b2;
    position: absolute;
    left: 0px;
    bottom: -10px;
    right: 0;
    margin: 0 auto;
}

.extra-text span {
    font-weight: 700;
    color: #2164b2;
}

.item {
    background: #fff;
    text-align: center;
    padding: 30px 25px;
    -webkit-box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    border: 5px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}

.item:hover {
    background: #2164b2;
    box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}

.item:hover .item,
.item:hover span.icon {
    background: #fff;
    border-radius: 10px;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}

.item:hover h6,
.item:hover p {
    color: #fff;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}

.item .icon {
    font-size: 40px;
    margin-bottom: 25px;
    color: #2164b2;
    width: 90px;
    height: 90px;
    line-height: 96px;
    border-radius: 50px;
}

.item .feature_box_col_one {
    background: rgba(247, 198, 5, 0.20);
    color: #2164b2
}

.item .feature_box_col_two {
    background: rgba(255, 77, 28, 0.15);
    color: #2164b2
}

.item .feature_box_col_three {
    background: rgba(0, 147, 38, 0.15);
    color: #2164b2
}

.item .feature_box_col_four {
    background: rgba(0, 108, 255, 0.15);
    color: #2164b2
}

.item .feature_box_col_five {
    background: rgba(146, 39, 255, 0.15);
    color: #2164b2
}

.item .feature_box_col_six {
    background: rgba(23, 39, 246, 0.15);
    color: #2164b2
}

.item p {
    font-size: 15px;
    line-height: 26px;
}

.item h6 {
    margin-bottom: 20px;
    color: #2f2f2f;
}

.mission p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
    color: black;
}

.mission i {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #f91942;
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
}

.mission .small-text {
    margin-left: 10px;
    font-size: 13px;
    color: #666;
}

.skills {
    padding-top: 0px;
}

.skills .prog-item {
    margin-bottom: 25px;
}

.skills .prog-item:last-child {
    margin-bottom: 0;
}

.skills .prog-item p {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 10px;
}

.skills .prog-item .skills-progress {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 20px;
    position: relative;
}

.skills .prog-item .skills-progress span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #f91942;
    width: 10%;
    border-radius: 10px;
    -webkit-transition: all 1s;
    transition: all 1s;
}

.skills .prog-item .skills-progress span:after {
    content: attr(data-value);
    position: absolute;
    top: -5px;
    right: 0;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.9);
    padding: 3px 7px;
    border-radius: 30px;
}


/* ===== why choose sectiomn end -==== */


/* === about page resposnive start ==== */
.about .container .row .col-lg-6 p {
    text-align: justify;
}


@media (max-width:580px) {

    .mission {
        margin-top: 50px;
    }

    .whychoose {
        margin-top: 75px;
    }

}


/* === about page resposnive end ==== */




/* === all-service section start ==== */

.all-service {
    margin-top: 50px;
}


.all-service .container-fluid .row .col-md-6 p {
    text-align: justify;
}


.intro-thumb {
    overflow: visible;
    margin: 0 0 30px;
    padding: 0 30px 30px 0;
}

.thumb,
figure {
    float: left;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.intro-thumb::before {
    top: 30px;
    left: 30px;
    right: 0px;
    bottom: 0;
    content: "";
    position: absolute;
    background-color: #2164b2 !important;
}


.intro-thumb img {
    position: relative;

}

/* === all-service section end ==== */



/* ===== what-we section start ===== */

.what-we {
    margin-top: 50px;
}

.what-we .container-fluid .row .col-sm-4 .what-we-box {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    padding: 15px;
}

.what-we .container-fluid .row .col-sm-4 h5 {
    padding-top: 30px;
}


.what-we .container-fluid .row .col-sm-4 p {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: justify;
}

/* ===== what-we section end ===== */


/* ==== whats aap icon start ==== */
.whatsapp {
   padding-top: 9px;
    position: fixed;
    bottom: 110px;
    border-radius: 50px;
    right: 53px;
    z-index: 1000;
    background-color: #25d366;
    color: #000;
    width: 145px;
    height: 48px;
    /* border-radius: 50%; */
    text-align: center;
    line-height: 30px;
    font-weight: 800;
    font-size: 14px;
    transition: background-color 0.3s ease;
    margin-left: 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.whatsapp-icon {
    padding-top: 9px;
    position: fixed;
    bottom: 110px;
    border-radius: 50px;
    right: 40px;
    z-index: 1000;
    background-color: #25d366;
    color: #fff;
    width: 48px;
    height: 48px;
    /* border-radius: 50%; */
    text-align: center;
    /*line-height: 50px;*/
    font-size: 30px;
    transition: background-color 0.3s ease;
}

.whatsapp-icon:hover {
    background-color: #1edb38;
    color: white;
}

/* ==== whats aap icon start ==== */



/* === call icon start ==== */
.call-icon {
    padding-top: 10px;
    position: fixed;
    bottom: 175px;
    border-radius: 50px;
    right: 40px;
    z-index: 1000;
    background-color: #007bff;
    color: #fff;
    width: 48px;
    height: 48px;
    /* border-radius: 50%; */
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    transition: background-color 0.3s ease;
}

.call-icon:hover {
    background-color: #0056b3;
    color: white;
}

/* === call icon end  ==== */



/* ==== tab section start ==== */

/* Style the tab */
.tab {
    float: left;
    border: 1px solid #ccc;
    /*background-color: #f1f1f1;*/
    width: 100%;
    height: 350px;
}

/* Style the buttons inside the tab */
.tab button {
    display: block;
    background-color: inherit;
    color: black;
    padding: 12px 16px;
    padding-left: 40px;
    width: 95%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    font-size: 15px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #2164b2;
    color: white;
}

/* Create an active/current "tab button" class */
.tab button.active {
    background-color: #2164b2;
    color: white;
}

/* Style the tab content */
.tabcontent {
    float: left;
    padding: 0px 12px;
    /* border: 1px solid #ccc; */
    width: 100%;
    border-left: none;
    height: 100%;
}

.service-tab {
    margin-bottom: 80px;
    margin-top: 100px;
}

.service-tab .container .row .col-md-4 p {
    text-align: justify;
}

/* ==== tab section end ==== */


/* ===== adress-text section start ==== */

.adress-text {
    margin-top: 20px;
    margin-bottom: 20px;
}


.adress-text .adress-text-box {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    padding: 15px;

}


.adress-text .adress-text-box img {
    width: 40px;
    margin-bottom: 20px;
}


.adress-text .adress-text-box p {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
}

/* ===== adress-text section end ==== */



/* ==== gallerry section start ==== */
/* ==== gallery section start ==== */


.gallery-img .container {
    max-width: 80rem;
    width: 100%;
    padding: 2rem 2rem;
    margin: 0 auto;
}

.gallery-img .main {
    .container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 1rem;
        justify-content: center;
        align-items: center;
    }

    .gallery-img .card {
        color: $color-black;
        border-radius: 2px;
        background: $color-white;
        box-shadow: $box-shadow;

        &-image {
            position: relative;
            display: block;
            width: 100%;
            padding-top: 70%;
            background: $color-white;

            img {
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    }
}

@media only screen and (max-width: 600px) {
    .gallery-img .main {
        .container {
            display: grid;
            grid-template-columns: 1fr;
            grid-gap: 1rem;
        }
    }
}

.gallery-img .main .container .card .card-image img {
    width: 100%;
}


/* ==== gallery section end ==== */
/* ==== gallerry section end ==== */



/* ==== blog section start ==== */

.heading {
    text-align: center;
    color: #454343;
    font-size: 30px;
    font-weight: 700;
    position: relative;
    margin-bottom: 70px;
    text-transform: uppercase;
    z-index: 999;
}

.white-heading {
    color: #ffffff;
}

.heading:after {
    content: ' ';
    position: absolute;
    top: 100%;
    left: 50%;
    height: 40px;
    width: 180px;
    border-radius: 4px;
    transform: translateX(-50%);
    background: url(https://i.ibb.co/G32GT0L/heading-line.png);
    background-repeat: no-repeat;
    background-position: center;
}

.white-heading:after {
    background: url(img/heading-line-white.png);
    background-repeat: no-repeat;
    background-position: center;
}

.heading span {
    font-size: 18px;
    display: block;
    font-weight: 500;
}

.white-heading span {
    color: #ffffff;
}

/* clearfix */
.owl-carousel .owl-wrapper:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

/* display none until init */


#demo1 .customNavigation,
#demo2 .customNavigation {
    top: 50%;
    position: absolute;
    width: 100%;
    left: 0px;
    margin-top: -40px;
}

#demo1 .customNavigation .btn,
#demo2 .customNavigation .btn {
    padding: 0px;
}

#demo1 .customNavigation .btn.prev,
#demo2 .customNavigation .btn.prev {
    position: relative;
    left: -76px;
}

#demo1 .customNavigation .btn.next,
#demo2 .customNavigation .btn.next {
    position: relative;
    right: -70px;
    float: right;
}

div#demo1 {
    position: relative;
}

.user-blog {
    /* background: #faf2e8; */
    padding: 25px 0 25px;
}

.user-blog:before {
    position: absolute;
    top: -100px;
    left: 0;
    content: " ";
    background: url(img/user-blog.png);
    background-size: 100% 100px;
    width: 100%;
    height: 100px;
    float: left;
    z-index: 99;
}

div#owl-demo1 .item {
    padding: 0 15px;
}

.blog-grid {
    background: #fff;
    /* box-shadow: 0px 0px 20px #c3c3c3; */
    margin: 10px 0;
    border: 1px solid #d6d6d6;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.discretion-blog {
    padding: 15px;
}

.discretion-blog p {
    font-size: 15px;
    color: #454343;
}

.discretion-blog h4 {
    color: #454343;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.discretion-blog .btn {
    color: #fefeff;
    background: #2164b2 !important;
    width: 60%;
    text-transform: uppercase;
    border-radius: 0px;
    margin-top: 10px;
    transform: perspective(122px) translateZ(0px);
    text-align: center;
    margin-left: 65px;
}


.discretion-blog .btn:hover {
    color: #ffffff;
}

.discretion-blog .btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000 !important;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    /* border: 2px solid #79b82d; */
}

.discretion-blog .btn:hover:before {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}

.date-blog {
    background: #2164b2 !important;
    width: 70px;
    position: absolute;
    bottom: 0;
    left: 15px;
    color: #fff;
    text-align: center;
    padding: 10px 0px;
}

.date-blog:after {
    width: 0;
    height: 0;
    content: "";
    border-left: 0 solid transparent;
    border-right: 70px solid transparent;
    border-bottom: 12px solid #2164b2 !important;
    top: -11px;
    position: absolute;
    left: 0;
}

.img-date {
    position: relative;
}

.user-blog .owl-theme .owl-controls .owl-page span {
    width: 17px;
    height: 17px;
    background: #454343;
    opacity: 1;
}

.user-blog .owl-theme .owl-controls .owl-page.active span,
.user-blog .owl-theme .owl-controls.clickable .owl-page:hover span {
    background: #FFBF00;
}


/* ==== blog section end ==== */



/* ===== blog-detail section start ==== */

.blog-detail {
    margin-top: 30px;
}


.blog-detail .container .row .latestside-box {
    padding: 10px;
    border-bottom: 1px solid grey;
}


.blog-detail .container .row .latestside-box h5 {
    font-size: 16px;
}


.blog-detail .container .row .latestside-box:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}


.blog-detail .container .row .col-md-5 {
    /* background-color: #e9ecef; */
    padding: 30px;
    height: 100%;
}

/* ===== blog-detail section end ==== */
.tab button {
    /* border-radius: 20px; */
    margin-bottom: 7px;
    background-color: #fff;
    /*box-shadow: 1px 1px 1px gray;*/
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-bottom-right-radius: 15px;
    border-top-left-radius: 15px;
    /* transition: all 2s; */
}

.tab {
    /* border-radius: 30px; */
    /*background-color: white;*/
    border: none;
    /* padding-top: 10px;
    margin-top: -18px; */
}

.tab button:hover {
    /* transform: scale(1.1); */
    background-color: #2164b2;
    color: white;
}



/* ===== form-quote section start === */
.img-choose{
height: 100px; width: 100px;    
}

.form-quote {
    position: relative;
    /* Ensure the overlay is positioned correctly */
    /* background-image: url("../img/carousel-2.jpg"); */
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url("../img/carousel-2.jpg") center center no-repeat;
    background-size: cover;
}

.form-quote::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(236,30,40, 0.7);
    /* Adjust the opacity as needed */
    z-index: 1;
    /* Ensure the overlay is above the background image */
}

.form-quote .container-xxl {
    position: relative;
    /* Ensure the content stays above the overlay */
    z-index: 2;
    /* Ensure the content is above the overlay */
}


.form-quote .col-lg-7 form button {
    margin-left: 170px;
    width: 200px;
}



@media (max-width:580px) {
    .form-quote .col-lg-7 form button {
        margin-left: 60px;
        width: 100px;
    }
}

/* ===== form-quote section end === */




/* ===== contact page form start ==== */

.final-contact .container .row button {
    margin-left: 170px;
}


@media (max-width:580px) {


    .final-contact .container .row button {
        margin-left: 60px;
    }

}



.m-form.-version-1 .cta-box:hover {
    background-color: var(--primary-color2);
    color: var(--secondary-color3);
}



.final-contact .container .-version-1 .cta-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    --cta-box-columns-ratio: 50%;
    background-color: var(--secondary-color3);
    border-radius: var(--c-block-radius);
    width: min(100%, 70rem);
    -webkit-transition: all var(--base-transition) ease-in-out;
    transition: all var(--base-transition) ease-in-out;
}



.final-contact .container .cta-box__media {
    width: 100%;
    /* margin-top: -2.5rem; */
    /* -webkit-box-pack: end; */
    -ms-flex-pack: end;
    justify-content: flex-end;
    background-color: brown;
    height: 200px;
    top: 13px;
    margin-top: 52px;
}


.final-contact .container .cta-box__media .title {
    top: 40px;
    /* margin-top: 24px; */
    position: relative;
    font-size: 20px;
    width: 260px;
    margin-left: 15px;
    color: white;
    font-weight: 800;
}


.final-contact .container .cta-box__media .c-picture img {
    position: relative;
    bottom: 55%;
    /* margin-bottom: 56px; */
    margin-left: 275px;
    width: 267px;
}



@media (max-width:580px) {

    .final-contact .container .cta-box__media .c-picture img {
        display: none
    }

    .final-contact .container .cta-box__media {
        height: 120px;
    }


}

/* ==== contact page form end === */




/* === product section start ==== */

.product {
    margin-top: 80px;
}


/* ==== product sectio end ==== */