/********** Template CSS **********/
:root {
    --primary: #0c4270;
    --light: #F0FBFC;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    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;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
    background-color: #5b8c51;
}

.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;
    border-radius: 0px;
}


/* ==== topbar section start ==== */

#topbar {
    background: #000;
    padding: 6px 0;
    font-size: 13px;
    color: #fff;
}


.float-left {
    float: left !important;
}


.float-right {
    float: right !important;
}



#topbar .contact-info .fa-phone {
    padding-left: 20px;
    margin-left: 20px;
    border-left: 1px solid #e9e9e9;
}

#topbar .contact-info i {
    color: #fff;
    padding: 4px;
}


#topbar .contact-info .fa-map-marker-alt {
    padding-left: 20px;
    margin-left: 20px;
    border-left: 1px solid #e9e9e9;
}



#topbar .social-links a {
    padding: 4px 12px;
    display: inline-block;
    line-height: 1px;
    border-left: 1px solid #e9e9e9;
    color: #fff;
}



/* ==== topbar section end ==== */




/*** 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-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #5b8c51;
}

@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;
        background-color: white;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: #5b8c51;
    font-weight: 800;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
    height: 90px;
}

.navbar .logo {
    width: 100px;
}



@media (max-width:760px) {


    .navbar .logo {
        width: 100px;
    }

    .dropdown-item {
        color: black;
    }

}



@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
        width: 270px;
        background-color: #000000b8;
    }
}

/*** Header carousel ***/


.final-slider .owl-carousel img {
    /* filter: brightness(0.5); */
}


.final-slider .container-fluid .owl-carousel #slider-text {
    padding-top: 50px;
}



@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 130px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: auto;
        object-fit: cover;
    }


    .final-slider .container-fluid .owl-carousel #slider-text {
        padding-top: 20px;
    }

    .final-slider .container-fluid .owl-carousel #slider-text h1 {
        font-size: 15px;
    }

    .final-slider .container-fluid .owl-carousel #slider-text p {
        display: none;
    }

}

.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;
    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 {
    height: 210px;
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/banner/up-banner.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 320px;
}


.page-header h1 {
    padding-top: 60px;
}

@media (max-width:760px) {

    .page-header {
        height: 100px;
    }

    .page-header h1 {
        padding-top: 20px;
    }

}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: black;
    transition: .5s;
    color: white;
}

.service-item:hover {
    margin-top: -10px;
    background: #000;
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        /* width: 200px; */
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        /* width: 300px; */
    }
}


.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: #5b8c51 !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #fff !important;

}


.our-customer .container .owl-carousel .testimonial-item {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border: 5px solid #5b8c51;
}



/*** Footer ***/

.final-footer {
    background: linear-gradient(rgb(0 0 0 / 78%), rgb(0 0 0 / 85%)), url(../img/banner/footer-img.png);
}


.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    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: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


/* ==== modal section start ==== */
.modal .modal-content {
    border-radius: 15px;
    background-color: #000;
}

.modal .modal-content .modal-header h5 {
    color: white;
}

.modal .modal-content .modal-header .btn-close {
    background-color: white;
}

.modal .modal-content .modal-body form .mb-3 label {
    color: white;
}

.modal .modal-content .modal-footer button {
    background-color: #f1020c;
    color: white;
}

/* ==== modal section end ==== */




/*-----------------------------
    whatsapp icon starts here
-------------------------------*/

.whatsapp {
    padding-top: 10px;
    position: fixed;
    bottom: 25px;
    border-radius: 50px;
    right: 20px;
    z-index: 1000;
    background-color: #25d366;
    color: #fff;
    width: 145px;
    height: 50px;
    /* border-radius: 50%; */
    text-align: center;
    line-height: 30px;
    font-weight: 800;
    font-size: 20px;
    transition: background-color 0.3s ease;
    margin-left: 0;
}


@media (max-width:760px) {


    .whatsapp {
        display: none;
    }

}


.whatsapp-btn {
    position: fixed;
    width: 50px;
    height: 50px;
    line-height: 50px;
    bottom: 25px;
    right: 0px;
    background-color: #25d366;
    color: #fff;
    border-radius: 0px;
    text-align: center;
    font-size: 30px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 9999;
}

.whatsapp-btn i {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    margin-top: 10px;
}

.whatsapp-btn:hover i {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

/*-----------------------------
    whatsapp icon end here
-------------------------------*/



/*-----------------------------
      calling button starts here
  -------------------------------*/

.call-now {
    padding-top: 10px;
    position: fixed;
    bottom: 85px;
    border-radius: 50px;
    right: 20px;
    z-index: 1000;
    background-color: #19aac7;
    color: #fff;
    width: 145px;
    height: 50px;
    /* border-radius: 50%; */
    text-align: center;
    line-height: 30px;
    font-weight: 800;
    font-size: 20px;
    transition: background-color 0.3s ease;
    margin-left: 0;
}


@media (max-width:760px) {


    .call-now {
        display: none;
    }
}


.call-btn .telephone {
    z-index: 99999;
    position: fixed;
    right: 0px;
    bottom: 85px;
    background: #19aac7;
    width: 50px;
    height: 50px;
    padding: 1rem;
    border-radius: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #ffffff;
    -webkit-animation: telephone 0.6s linear infinite;
    animation: telephone 0.6s linear infinite;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
}


.call-btn .telephone i {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    font-size: 1.4rem;
}

.call-btn .telephone:hover i {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}


span.num {
    position: absolute;
    color: #ec8b00;
    left: -30%;
    bottom: -50%;
}

.text-justify {
    text-align: justify;
}

/*-----------------------------
      calling button end here
  -------------------------------*/


/* ===== you-tube section start ==== */

.youtube-part .container .btn {
    margin-left: 42%;
}

@media (max-width: 580px) {
    .youtube-part .container .btn {
        margin-left: 20%;
    }


}

/* ===== you-tube section end ==== */




/* ==== gallerry section start ==== */

.gallery-img {
    padding-top: 60px;
    padding-bottom: 20px;
}

.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 ==== */



/* ==== about section start ==== */

.about-section img {
    max-width: 100%;
    height: auto;
    margin-bottom: 100px;
}


.about-section .text {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #848484;
    font-weight: 400;
    /* margin-top: 35px; */
    text-align: justify;
}


.btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 30px;
    color: #ffffff;
    padding: 10px 30px;
    font-weight: 600;
    overflow: hidden;
    letter-spacing: 0.02em;
    background-color: #00aeef;
}

.btn-style-one:hover {
    background-color: #0794c9;
    color: #ffffff;
}

.about-section {
    position: relative;
    padding: 120px 0 70px;
}

.about-section .sec-title {
    /* margin-bottom: 45px; */
}

.about-section .content-column {
    position: relative;
    margin-bottom: 50px;
}


@media (max-width:760px) {

    .about-section .content-column {
        position: relative;
        margin-bottom: 50px;
        padding-top: 35px;
    }

    .about-section {
        position: relative;
        padding: 100px 0 0px;
    }


    .gallery-img {
        padding-top: 60px;
        padding-bottom: 20px;
    }


}


.about-section .content-column .inner-column {
    position: relative;
    padding-left: 30px;
}

.about-section .text {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 26px;
    color: #848484;
    font-weight: 400;
}

.about-section .list-style-one {
    margin-bottom: 45px;
}

.about-section .btn-box {
    position: relative;
}

.about-section .btn-box a {
    padding: 15px 50px;
}

.about-section .image-column {
    position: relative;
}

.about-section .image-column .text-layer {
    position: absolute;
    right: -110px;
    top: 50%;
    font-size: 325px;
    line-height: 1em;
    color: #ffffff;
    margin-top: -175px;
    font-weight: 500;
}

.about-section .image-column .inner-column {
    position: relative;
    padding-left: 80px;
    padding-bottom: 0px;
}

.about-section .image-column .inner-column .author-desc {
    position: absolute;
    bottom: 16px;
    z-index: 1;
    background: #000;
    padding: 10px 15px;
    left: 96px;
    width: calc(100% - 152px);
    border-radius: 50px;
}

.about-section .image-column .inner-column .author-desc span {
    font-size: 16px;
    letter-spacing: 6px;
    text-align: center;
    color: #fff;
    display: block;
    font-weight: 400;
}

.about-section .image-column .inner-column:before {
    content: '';
    position: absolute;
    width: calc(50% + 80px);
    height: calc(100% + 490px);
    top: -80px;
    left: -3px;
    background: transparent;
    z-index: 0;
    border: 44px solid #4a90c6;
}

.about-section .image-column .image-1 {
    position: relative;
}

.about-section .image-column .image-2 {
    position: absolute;
    left: 0;
    bottom: 0;
}

.about-section .image-column .image-2 img,
.about-section .image-column .image-1 img {
    box-shadow: 0 30px 50px rgba(8, 13, 62, .15);
    border-radius: 46px;
}



@media (max-width:760px) {


    .about-section .content-column .inner-column {
        position: relative;
        padding-left: 0px;
    }



    .about-section .image-column .inner-column:before {
        content: '';
        position: absolute;
        width: calc(50% + 80px);
        height: calc(100% + 350px);
        top: -80px;
        left: -3px;
        background: transparent;
        z-index: 0;
        border: 44px solid #5b8c51;
    }

}

/* ==== about section end ==== */




/* ==== service section start === */


.service .service-box {
    border-radius: 30px;
    padding: 30px;
    background-color: white;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}


.service {
    padding-bottom: 100px;
    padding-top: 50px;
    background: linear-gradient(rgb(0 0 0 / 78%), rgb(0 0 0 / 85%)), url(../img/banner/footer-img.jpg);
}

.service .service-box .service-img {
    width: 100%;
    border-radius: 10px 10px 100px 100px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);

}


.service .service-box .service-icon {
    position: absolute;
}

.service .service-box .service-text {
    padding-top: 80px;
    text-align: center;
}


.service .service-box .service-text h2 {
    font-size: 26px;
}

.service .service-box .service-icon img {
    border-radius: 20px;
    width: 110px;
    background-color: #ffffff;
    padding: 20px;
    position: relative;
    bottom: 50px;
    left: 120px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}



.service-box .aButton {
    transition: transform 1s ease;
}

.rotateY {
    cursor: pointer;
}

.service .service-box:hover .aButton {
    transform: rotateY(360deg);
}



@media (max-width:760px) {

    .service .service-box .service-icon img {
        border-radius: 20px;
        width: 110px;
        background-color: #ffffff;
        padding: 20px;
        position: relative;
        bottom: 50px;
        left: 87px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    }

}

/* ==== service section end === */





/* ===== counter section start ==== */

/* .final-count {
    margin-top: 0px;
    margin-bottom: 0px;
} */


.count {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 40px;
    font-weight: bold;
}

.counter-wrapper {
    background: #4a90c6;
    /* background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url("../img/banner/car-servicing-banner.jpg"); */
    background-size: cover;
    background-position: center center;
    /* position: relative; */
}

.counter-wrapper:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, .5); */
}

.counter-inner {
    position: relative;
    z-index: 2;
}

.count-icon {
    font-size: 48px;
}

/* ===== counter section end ==== */




/* ===== final-form section start ==== */

.final-form {
    background-image: url("../img/banner/form-banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

/* ===== final-form section start ==== */



/* ==== best-service start ===== */

:root {
    --main-color: #0E6880;
}

.best-service .serviceBox {
    color: var(--main-color);
    background-color: #fff;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    padding: 0 10px 10px;
    position: relative;
    z-index: 1;
}

.best-service p {
    color: white;
}

.best-service .serviceBox:before,
.best-service .serviceBox:after {
    content: "";
    /* background: #000; */
    border-radius: 15px 15px;
    /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); */
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    z-index: -1;
}

.best-service .serviceBox:after {
    /* background-color: #5b8c51;
    height: 50%; */
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

/* .best-service .serviceBox .service-icon {
    color: #fff;
    background: #000;
    font-size: 45px;
    width: 30%;
    margin: 0 auto 5px;
    border-radius: 0 0 50px 50px;
    position: relative;
} */


.best-service .serviceBox img {
    /* position: absolute;
    right: -3px; */
}


.best-service .serviceBox .final-best {
    left: 100px;
    /* right: 60px; */
    position: absolute;
    bottom: 105px;
}

.best-service .serviceBox .final-best p {
    color: black;
    width: 185px;
}



.best-service .serviceBox .title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.best-service .serviceBox .description {
    color: #555;
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 25px;
}

/* ==== example-box ===== */


/* ==== best-service start  === */

.service-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* Setting cursor on .service-item */
}

.aButton {
    transition: transform 1s ease;
}

.rotateY {
    cursor: pointer;
}

.serviceBox:hover .aButton {
    transform: rotateY(360deg);
}




@media (max-width:760px) {

    .best-service .serviceBox .final-best {
        left: 0px;
        /* right: 60px; */
        position: absolute;
        bottom: 50px;
    }


    .best-service .serviceBox .dust-shape {
        position: relative;
        z-index: -111;
    }


    .best-service .serviceBox:before,
    .best-service .serviceBox:after {
        content: "";
        background: #fff;
        border-radius: 15px 15px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        position: absolute;
        top: 10px;
        bottom: 10px;
        left: 10px;
        right: 10px;
        z-index: -1;
    }


    .best-service .serviceBox .final-best p {
        padding: 5px;
        color: black;
        width: 100%;
    }
}

/* ===== best-service end ===== */





/* === all-service section start ==== */

/* .all-service .container {
    /* margin-top: 100px; */
}


.all-service .container-fluid .row .col-md-6 p {
    text-align: justify;
}


.all-service .container .intro-thumb {
    overflow: visible;
    margin: 0 0 30px;
    padding: 0 30px 30px 0;
}

.all-service .container .thumb,
.all-service figure {
    float: left;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.all-service .container .intro-thumb::before {
    top: 30px;
    left: 30px;
    right: 0px;
    bottom: 0;
    content: "";
    position: absolute;
    background-color: #5b8c51 !important;
}


.all-service .container .intro-thumb img {
    position: relative;

}

*/
/* === all-service section end ==== */




/* ===== contact page form start ==== */

/* .final-contact .container-fluid .row button {
    margin-left:0px;
} */


@media (max-width:580px) {


    .final-contact .container .row button {
        margin-left: 60px;
    }

}

.final-contact .container-fluid .col-md-6 img {
    width: 100%;
    /* height: 516px; */
}

.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: 216px;
    top: 13px;
    margin-top: 65px;
}


.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: 300px;
    width: 220px;
}



@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 === */


/* ==== why choose section circle start ==== */
.circleWrap {
    margin: 0 auto;
    height: 100%;
    width: 100%;
    position: relative;

    .hello {
        position: absolute;
        background: transparent;
        color: black;
        font: 3vw/3vw times;
        top: calc(50% - 3vw);
        width: 100%;
        height: 100px;
        text-align: center;
    }

    svg {
        animation: rotate 10s linear infinite;
        width: 400px;
        height: 400px;
        position: absolute;
        /* top: calc(50% - 15vw);
      left: calc(50% - 15vw); */
        overflow: hidden;
        bottom: 450px;

        &:after {
            display: block;
            content: "hi";
        }

        .circle-text {
            font: 100px/100px times;
            letter-spacing: 22.5px;
            width: 100%;
            fill: black;
        }
    }
}

@keyframes rotate {
    to {
        transform: rotate(-360deg);
    }
}



@media (max-width:760px) {


    .circleWrap {
        display: none;
    }

}

/* ==== why choose 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: 1px;
}

.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: #5b8c51 !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: #5b8c51 !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 #5b8c51 !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;
}


@media (max-width:760px) {

    .discretion-blog .btn {
        color: #fefeff;
        background: #5b8c51 !important;
        /* width: 60%; */
        text-transform: uppercase;
        border-radius: 0px;
        margin-top: 10px;
        transform: perspective(122px) translateZ(0px);
        text-align: center;
        margin-left: 55px;
    }


}

/* ==== blog section end ==== */


/* ==== mission-design start ===== */

.mission-design {
    background-color: #4a90c6;
    width: 485px;
    height: 900px;
    position: absolute;
    z-index: -11;
}


.mission-img img {
    width: 83%;
    height: 330px;
    margin-top: 500px;
    position: absolute;
    border-radius: 35px;
}

/* ==== mission-design end ===== */



/* ==== mission section start ==== */

.mission-design h1 {
    color: white;
    padding: 20px;
}


.mission {
    margin-top: 60px;
    margin-bottom: 500px;
}

.mission .mission-box {
    width: 100%;
    height: 345px;
    background-color: #fffff;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 35px;
    border: 2px solid #000450;
}


.mission .mission-box P {
    text-align: justify;
}

.mission .mission-box:hover {
    box-shadow: rgba(1, 0, 8, 0.35) 0px 5px 15px;
    cursor: pointer;
}


.mission .mission-box .mission-icon .icon {
    width: 100px;
    height: 100px;
    background-color: #5b8c51;
    border-radius: 50%;
    color: white;
    line-height: 100px;
    position: absolute;
    bottom: 25px;
    margin-left: -50px;

}


.mission .mission-box h2 {
    background-color: #5b8c51;
    color: white;
    padding: 5px;
}


.mission .mission-box .mission-icon img {
    width: 65px;
    padding-top: 10px;
}

.mission .mission-box .mission-icon {
    width: 100%;
    height: 55px;
    /* background-color: red; */
    position: relative;
    /* bottom: 50px; */
}


.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: #5b8c51 !important;
}


.intro-thumb img {
    position: relative;

}


@media (max-width:760px) {


    .mission-design {
        display: none;
    }

    .mission-img img {
        display: none;
    }

    .mission {
        margin-top: -50px;
        margin-bottom: 0px;
    }


    .mission .mission-box {
        margin-top: 40px;
        width: 100%;
        height: 345px;
        background-color: #fffff;
        padding: 20px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        border-radius: 35px;
        border: 2px solid #000450;
    }

}


.mission .mission-box .aButton {
    transition: transform 1s ease;
}

.rotateY {
    cursor: pointer;
}

.mission .mission-box:hover .aButton {
    transform: rotateY(360deg);
}

/* ==== mission section end ==== */




/* ==== contact-adresss start ==== */

.contact-adress {
    margin-top: 30px;
    margin-bottom: 0px;
}



.contact-adress .container-fluid .row .col-md-4 .card {
    width: 100%;
    height: 100%;
    background-color: #5b8c51;
    s color: white;
}


.contact-adress .container-fluid .row .col-md-4 .card .card-body i {
    color: #fff;
    font-size: 50px;
    margin-top: 25px;
}

.contact-adress .container-fluid .row .col-md-4 .card p a {
    color: white;
}

.contact-adress .container-fluid .row .col-md-4 .card p {
    margin-top: 20px;
}


@media (max-width:760px) {


    .contact-adress {
        margin-top: 0px;
        margin-bottom: 0px;
    }
}

/* ==== contact-adress 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: 10px;
    height: 100%;
}

.blog-detail .container .detail-text img {
    width: 100%;
    height: 440px;
}



@media (max-width:760px) {



    .blog-detail .container .row .latestside-box .detail-img {
        display: none;
    }
}

/* ===== blog-detail section end ==== */




/* ==== whychoose section start ===== */

.whychoose {
    margin-top: 120px;
}


@media (max-width:760px) {

    .whychoose {
        margin-top: 35px;
        margin-bottom: 50px;
    }

}

/* ==== whychoose sectio end ===*/



/* ==== new service section start ===== */


.new-service .service-box {
    border-radius: 30px;
    padding: 30px;
    background-color: white;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}


.new-service {
    padding-bottom: 70px;
    padding-top: 50px;
    background: linear-gradient(rgb(0 0 0 / 78%), rgb(0 0 0 / 85%)), url(../img/banner/footer-img.jpg);
}

.new-service .service-box .service-img {
    width: 100%;
    border-radius: 10px 10px 100px 100px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);

}


.new-service .service-box .service-icon {
    position: absolute;
}

.new-service .service-box .service-text {
    padding-top: 80px;
    text-align: center;
}


.new-service .service-box .service-text h2 {
    font-size: 25px;
}

.new-service .service-box .service-text p {
    color: #000;
}

.new-service .service-box .service-icon img {
    border-radius: 20px;
    width: 110px;
    background-color: #ffffff;
    padding: 20px;
    position: relative;
    bottom: 50px;
    left: 109px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}



..new-service .service-box .aButton {
    transition: transform 1s ease;
}

.rotateY {
    cursor: pointer;
}

.new-service .service-box:hover .aButton {
    transform: rotateY(360deg);
}



@media (max-width:760px) {

    .new-service .service-box .service-icon img {
        border-radius: 20px;
        width: 110px;
        background-color: #ffffff;
        padding: 20px;
        position: relative;
        bottom: 50px;
        left: 60px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    }

    .new-service .service-box .service-text h2 {
        font-size: 20px;
    }

}

/* ==== new service section end ===== */


/*====  final-client start ====*/

.final-client .container .client-box {box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;}

/* final-client section end ===*/


/* ===== director section start ==== */

.certificate {margin-top: 100px;}

.director .director-box {box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; padding: 20px;}

/* ===== director section end ===


