/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Outfit:wght@100;200;300;400;500;600;700;800&family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Outfit:wght@100;200;300;400;500;600;700;800&family=Poppins:wght@100;200;300;400;500;600;700;800&family=Ramabhadra&display=swap');

/* font-family: 'Inter', sans-serif;
font-family: 'Outfit', sans-serif;
font-family: 'Poppins', sans-serif; */


/********** Template CSS **********/
:root {
    --primary: #3C8CEC;
    --dark-primary: #2071d3;
    --light: #F6F7F8;
    --dark: #343A40;
}

body{
    font-family: 'Outfit', sans-serif;
    color: #4A4A4A;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Outfit', sans-serif;
}

p{
    font-family: 'Poppins', sans-serif;
}

figure{
    margin: 0 0;
}

img{
    max-width: 100%;
}

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

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

.fw-black {
    font-weight: 900 !important;
}

a{
    color: var(--dark-primary);
}

.bg-light{
    background-color: #f8f8f8!important;
}

.text-primary{
    color: var(--primary);
}


/*** 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: 'Poppins', sans-serif;
    line-height: normal;
    padding: 16px 46px;
    transition: .5s;
    border: 0;
}
.btn i{
    font-size: 13px;
}
.btn.btn-primary{
    background-color: #3C8CEC;
}
.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus{
    background-color: var(--dark-primary);
}

.btn:focus{
    box-shadow: none;
}

.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;
}

.btn-link:hover{
    color: var(--dark-primary);
}


.owl-carousel .owl-nav{
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    transition: .5s;
    z-index: 1;
    padding: 0 25px;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next{
    background-color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    position: relative;
    color: var(--dark);
    font-size: 20px;
    transition: .5s;
    border-radius: 100%;
}
.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover{
    color: #fff;
    background-color: var(--primary);
}


/*  */
.form-control:focus{
    border-bottom-color: var(--primary);
    box-shadow: none;
}
.form-control::placeholder{
    color: #8D8D8D;
}

.form-wrapper .form-control::placeholder{
    color: var(--primary);
}
.form-wrapper .form-control{
    color: var(--primary);
    font-size: 18px;
    font-weight: 300;
    background-color: transparent;
    padding: 10px 0 20px;
    border: 0;
    border-bottom: 1px solid #DEDEDE;
    border-radius: 0;
    margin-bottom: 25px;
}

.form-control{
    border-color: #BBBBBB;
}




/*** Navbar ***/
.top-information{
    background-color: var(--primary);
    padding-top: 8px;
    padding-bottom: 8px;
    color: #fff;
}
.top-information p{
    font-size: 13px;
    line-height: 21px;
    margin-bottom: 0;
}
.top-information a{
    color: #fff;
}
.top-information img{
    width: 17px;
    margin-top: 2px;
}

/* navbar */
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar{
    font-family: 'Inter', sans-serif;
    padding: 0 50px;
}
.navbar a.btn{}
.navbar .navbar-brand{
    position: relative;
    /* height: 75px; */
    margin: 0 0 -18px;
    padding: 0;
    white-space: inherit;
}
.navbar .navbar-brand figure{
    padding: 0 11px;
    background-color: #EE2424;
    margin-bottom: 0;
}
.navbar .navbar-brand img{
    width: 85px;
}
.navbar .navbar-brand span{
    font-size: 19px;
    font-weight: 500;
    line-height: 24.2px;
    max-width: 200px;
    margin: 0 0 18px 10px;
    color: var(--primary);
}

.navbar .navbar-nav .nav-link {
    margin-right: 45px;
    padding: 25px 0;
    color: var(--dark);
    /* text-transform: uppercase; */
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-toggler{
   border: 0; 
}
.navbar .navbar-toggler:focus{
    box-shadow: none;
}


@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
    .navbar .navbar-nav {
        padding-top: 20px;
        padding-bottom: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }
    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .side-btn{
    display: flex;
}
.navbar .side-btn a{
    padding: 0 18px;
    border-right: 1px solid var(--dark);
}
.navbar .side-btn a img{
    width: 20px;
}
.navbar .side-btn a:last-child{
    border-right: 0;
}


/* ---- tab-design ---- */
.tab-design{
    flex-direction: row;
    justify-content: space-between;
    overflow-x: auto;
    overscroll-behavior-x: auto;
}
.tab-design .list-item{
    text-align: center;
    color: #222;
    font-size: 17px;
    font-weight: 500;
    background-color: #F0F0F0;
    padding: 16px 22px 16px;
    line-height: normal;
    margin-right: 6px;
    border-radius: 6px 6px 6px 6px;
}
.tab-design .list-item:last-child{
    margin-right: 0;
}
.tab-design .list-item.active{
    color: #fff;
    background-color: var(--primary);
}

/* ---- verlticle-tab ---- */
.verlticle-tab{
    display: flex;
    align-items: start;
    column-gap: 40px;
}
.verlticle-tab .list-group{
    padding: 8px 8px;
}
.verlticle-tab .list-group .list-item{
    color: #222;
    font-size: 20px;
    position: relative;
    padding: 10px 8px 10px 20px;
    border-bottom: 1px solid transparent;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}
.verlticle-tab .list-group .list-item:last-child{
    border: 0;
}
.verlticle-tab .list-group .list-item:hover{
    color: var(--primary);
    padding-left: 30px;
}
.verlticle-tab .list-group .list-item.active{
    color: var(--primary);
    font-weight: 500;
}
.verlticle-tab .list-group .list-item.active:hover{
    color: var(--primary);
}
.verlticle-tab .tab-content{
    padding: 0;
}


/* table */
.table{
    line-height: 22px;
    border-color: var(--primary);
}
.table tr th, .table tr td{
    color: #4A4A4A;
    padding: 10px 18px;
}
.table tr th{
    color: #fff;
    font-size: 19px;
    font-weight: 500;
    background-color: var(--primary);
}
.table tr td .btn{
    padding: 3px 8px;
}
.table tr td .btn img{
    width: 28px;
}


/* note-box */
.note-box{
    display: inline-block;
    padding: 5px 5px;
    border-bottom: 1px dotted #BBBBBB;
}
.note-box > *{
    font-size: 21px;
    font-weight: 400;
}


/* ---- heading-style ---- */
.heading-style{
    margin-bottom: 50px;
}
.heading-style h6{
    color: var(--primary);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}
.heading-style h1,
.heading-style h2{
    color: var(--primary);
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 0;
}
.heading-style .line-style{
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    position: relative;
    margin-bottom: 0;
}
.heading-style .line-style::after{
    content: "";
    position: absolute;
    top: 10px;
    right: -100px;
    min-width: 90px;
    border-top: 1px solid var(--primary);
}
.heading-style h3{
    color: var(--primary);
    font-size: 34px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 11px;
}
.heading-style h3 span{
    color: #363636;
}
.heading-style hr{
    max-width: 100px;
    height: 3px;
    background-color: var(--primary);
    opacity: 1;
    margin: 0 0;
}

.sub-title{
    color: var(--primary);
    font-size: 25px;
    font-weight: 500;
}


/* number-list */
.number-list{
    counter-reset: num;
    margin: 30px 0 40px;
}
.number-list li{
    font-size: 20px;
    position: relative;
    margin-bottom: 15px;
}
.number-list li::before{
    content: "";
    counter-increment: num;
    content: "0"counter(num) ". ";
}

/* icon-list */
.icon-list li{
    position: relative;
    padding-left: 25px;
    font-size: 18px;
    margin-bottom: 10px;
}
.icon-list li img{
    width: 18px;
    position: absolute;
    left: 0;
    top: 4.5px;
}


/*** Header ***/
.banner-slider{
    position: relative;
    z-index: 1;
}
.banner-slider .owl-carousel-item{
    position: relative;
    z-index: 1;
}
.banner-slider .owl-carousel-item::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.banner-slider .owl-carousel-item h2{
    color: #fff;
    font-size: 65px;
    font-weight: 600;
    line-height: 76px;
    margin-bottom: 28px;
}
.banner-slider .owl-carousel-item p{
    color: #fff;
    font-size: 18px;
}
.banner-slider .owl-carousel-item .btn{
    margin-top: 20px;
}
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}


/* ---- products-section ---- */
.products-section .product-box{
    text-align: center;
    margin-bottom: 30px;
}
.products-section .product-box figure{
    /* width: 205px;
    height: 205px; */
    border-radius: 100%;
    margin: 0 auto 21px;
    overflow: hidden;
}
.products-section .product-box figure img{
    width: 100%;
}
.products-section .product-box h4{
    font-size: 22px;
    color: var(--primary);
    font-weight: 400;
}

.products-section .products-carousel{
    position: relative;
}

.products-section .products-carousel .owl-nav{
    position: absolute;
    width: auto;
    top: auto;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}
.products-section .products-carousel .owl-nav .owl-prev,
.products-section .products-carousel .owl-nav .owl-next{
    background-color: #f8f8f8;
    margin: 0 26px 0 0;
}
.products-section .products-carousel .owl-nav .owl-next{
    margin-right: 0;
}
.products-section .products-carousel .owl-nav .owl-prev:hover,
.products-section .products-carousel .owl-nav .owl-next:hover{
    color: #fff;
    background-color: var(--primary);
}



/* ---- featured-counter ---- */
.featured-counter .counter-box{
    text-align: center;
}
.featured-counter .counter-box h5{
    color: var(--primary);
    font-size: 70px;
    font-weight: 500;
    margin-bottom: 0px;
}
.featured-counter .counter-box p{
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 0;
}


/* page-header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/banner.jpg) center center no-repeat;
    background-size: cover;
}
.page-header h2{
    font-size: 52px;
    font-weight: 600;
}
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** latest-products ***/
.latest-products{
    padding: 70px 0 70px;
}
.latest-products .product-item{
    text-align: center;
    /* box-shadow: 0 0 45px rgba(0, 0, 0, .08); */
    /* padding: 0 10px; */
    margin-bottom: 40px;
}
.latest-products .product-item img{
    margin: 0 0 10px;
}
.latest-products .product-item h4{
    color: var(--primary);
    font-size: 25px;
    font-weight: 400;
    margin: 0;
}
.latest-products .product-item .product-icon{
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}
.latest-products .product-item:hover .product-icon{
    color: #FFFFFF;
    background: var(--primary);
}


/* ---- about-section ---- */
.about-section{
    padding: 80px 0 110px;
}
.about-section p{
    line-height: 30px;
}
.about-section figure{
    margin-bottom: 0;
}
.about-section figure .txt{
    display: block;
    max-width: 270px;
    color: #fff;
    text-align: center;
    padding: 50px 40px;
    position: absolute;
    left: -63px;
    bottom: -28px;
    background-color: var(--primary);
}
.about-section figure .txt p{
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 0;
}
.about-section .about-text{
    color: var(--primary);
    font-size: 20px;
}


/* ---- company-features ---- */
.company-features{
    padding: 80px 0 80px;
}
.company-features .feature-col{
    position: relative;
    padding: 60px 40px 50px;
    color: #fff;
    text-align: center;
    background-color: var(--primary);
    box-shadow: 0 2px 10px -5px transparent;
    transition: all 0.3s ease-in-out;
}
.company-features .feature-col figure{
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 100%;
    margin: 0 auto 30px;
    background-color: #fff;
}
.company-features .feature-col figure svg{
    width: 54px;
}
.company-features .feature-col figure svg path{
    fill: var(--primary);
}
.company-features .feature-col h3{
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 26px;
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
}
.company-features .feature-col span{
    width: 122px;
    display: block;
    margin: 0 auto;
    border-bottom: 3px solid #fff;
    margin-bottom: 27px;
    transition: all 0.3s ease-in-out;
}
.company-features .feature-col p{
    font-size: 18px;
    line-height: 28px;
}
.company-features .feature-col p:last-child{
    margin-bottom: 0;
}

.company-features .feature-col:hover{
    padding: 52px 40px 58px;
    box-shadow: 0 2px 25px -8px #7ba3d4;
}
.company-features .feature-col:hover h3{
    padding-bottom: 20px;
}
.company-features .feature-col:hover span{
    margin-bottom: 33px;
}

.company-features .feature-col.light-col{
    background-color: #fff;
    padding: 100px 60px 80px;
    z-index: 1;
}
.company-features .feature-col.light-col figure{
    background-color: #E2EFFF;
}
.company-features .feature-col.light-col h3,
.company-features .feature-col.light-col p{
    color: var(--primary);
}
.company-features .feature-col.light-col span{
    border-color: var(--primary);
}

.company-features .feature-col.light-col:hover{
    padding: 90px 60px 90px;
}



/*** 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);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-img {
    position: relative;
}
.portfolio-img img{
    width: 100%;
}
.portfolio-img::before,
.portfolio-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    background: var(--primary);
    transition: .5s;
}

.portfolio-img::before {
    left: 50%;
}

.portfolio-img::after {
    right: 50%;
}

.portfolio-item:hover .portfolio-img::before {
    width: 51%;
    left: 0;
}

.portfolio-item:hover .portfolio-img::after {
    width: 51%;
    right: 0;
}

.portfolio-item .portfolio-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    transition: .5s;
}
.portfolio-item .portfolio-btn .btn{
    background-color: #fff;
}
.portfolio-item .portfolio-btn .btn i{
    font-size: 20px;
    color: var(--dark);
}
.portfolio-item .portfolio-btn .btn:hover{
    background-color: var(--dark);
}
.portfolio-item .portfolio-btn .btn:hover i{
    color: #fff;
}
.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    transition-delay: .1s;
}


/*** enquiry-section ***/
.enquiry-section{
    padding: 100px 0 120px;
}

/* @media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
} */


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    border-radius: 8px 60px 0 0;
}

.team-item .team-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #FFFFFF;
    transition: .5s;
}


/*** Testimonial ***/
.testimonials-section{
    padding: 80px 0 80px;
}
/* .testimonial-carousel .testimonial-item{} */
/* .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-nav{
    width: 100%;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    opacity: 0;
    padding: 0;
}
.testimonial-carousel:hover .owl-nav{
    width: 96%;
    opacity: 1;
}
/* .testimonial-carousel .testimonial-item{} */
.testimonial-carousel .testimonial-item .quote-icon{
    font-size: 30px;
    color: var(--dark);
    position: absolute;
    top: 6%;
    left: 20%;
    z-index: 1;
}
.testimonial-carousel .testimonial-item .testimonial-text{
    position: relative;
    padding: 105px 90px 60px;
    background-color: #f8f8f8;
    margin: 0 20px 40px;
    transition: .5s;
}
.testimonial-carousel .testimonial-item .testimonial-text p{
    color: var(--primary);
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
}
.testimonial-carousel .testimonial-item .testimonial-text::after{
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 20px solid #f8f8f8;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
}
.testimonial-carousel .testimonial-item .testimonial-img {
    width: 70px;
    height: 70px;
    background: url(../img/icons/user-icon.svg) no-repeat center, var(--primary);
    background-size: 30px;
    border-radius: 100%;
}

.testimonial-carousel .testimonial-item.center .testimonial-text {
    transform: scale(1);
}

/* .testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
} */


/*** Footer ***/
footer{
    background-color: var(--primary);
    padding-top: 20px;
}
footer .contact-block{
    position: relative;
    z-index: 1;
    background-color: #F6F6F6;
    margin: -80px 0 35px;
    padding: 28px 50px;
    border-radius: 30px;
}
footer .contact-block h4{
    font-size: 34px;
    font-weight: 500;
}
footer .contact-block img{
    margin-right: 2px;
}
footer .contact-block h5{
    font-size: 24px;
    font-weight: 400;
    margin-right: 15px;
}
footer .contact-block a{
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    font-size: 28px;
}

footer .widget-box{
    color: #fff;
    font-size: 15px;
    position: relative;
    margin-bottom: 30px;
}
footer .widget-box h5{
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 18px;
}
footer .widget-box ul{
    margin-bottom: 0;
}
footer .widget-box ul li{
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-left: 32px;
    margin-bottom: 22px;
    transition: all 0.3s ease-in-out;
}
footer .widget-box ul li svg{
    width: 19px;
    position: absolute;
    top: 0;
    left: 0;
}
footer .widget-box ul li a{
    color: #fff;
}
footer .widget-box ul.link-list li{
    padding-left: 0;
    margin-bottom: 10px;
}
footer .widget-box ul.link-list li:hover{
    padding-left: 4px;
}

footer .whatsapp-btn{
    position: absolute;
    right: 0;
    bottom: 0;
}
footer .whatsapp-btn i{
    font-size: 25px;
    margin-right: 9px;
}
footer .whatsapp-btn a{
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 15px;
    background-color: #4CAF50;
    border-radius: 30px;
    padding: 6px 13px;
}
footer .whatsapp-btn a:hover{
    color: #4CAF50;
    background-color: #fff;
}

footer .btn-social {
    margin-right: 25px;
    color: #fff;
    border-radius: 38px;
    transition: .3s;
}
footer .btn-social:last-child{
    margin-right: 0;
}
/* footer .btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
} */
footer .btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #9B9B9B;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}
footer .btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}
footer .btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

footer .copyright {
    color: #fff;
    padding: 14px 0 16px;
    border-top: 1px solid rgba(256, 256, 256, .2);
}
footer .copyright p{
    font-family: 'Outfit', sans-serif;
}
footer .copyright a {
    color: var(--light);
}
footer .copyright a:hover {
    color: var(--dark);
}
footer .copyright .member-img{
    width: 100px;
}



/*** About wrapper ***/
.page-wrapper{
    padding: 80px 0 130px;
}
.about-wrapper .about-content{
    margin-bottom: 90px;
}
.about-wrapper .about-content .heading-style{
    margin-bottom: 30px;
}
.about-wrapper .about-content p{
    color: #828282;
}
.about-wrapper figure{
    position: absolute;
    left: -6px;
    bottom: -73px;
    width: 235px;
    outline: 18px solid rgba(255, 255, 255, 0.5);
    border-radius: 100%;
}
.about-wrapper figure img{
    width: 100%;
}

/* quality-section */
.quality-section{
    position: relative;
    padding: 70px 0 110px;
    background: url(../img/bg/quality-bg.jpg);
    z-index: 1;
    color: #fff;
}
.quality-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(60, 140, 236, 0.8);
    z-index: -1;
}


/* --- services-wrapper --- */
.services-wrapper{}
.services-wrapper .service-item{
    position: relative;
    background-color: #F9F9F9;
    border-radius: 31px;
    display: flex;
    margin-bottom: 80px;
}
.services-wrapper .service-item:last-child{
    margin-bottom: 0;
}
.services-wrapper .service-item figure{
    position: relative;
    padding: 48px 0 0 60px;
    margin-top: -46px;
    z-index: 1;
}
.services-wrapper .service-item figure::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary);
    width: 92%;
    height: 100%;
    border-radius: 31px;
    z-index: -1;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.services-wrapper .service-item figure img{
    width: 100%;
    height: 100%;
    max-height: fit-content;
    -o-object-fit: cover;
    object-fit: cover;
}
.services-wrapper .service-item .content-box{
    padding: 85px 70px 54px;
}
.services-wrapper .service-item .content-box h4{
    color: var(--primary);
    font-size: 33px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 25px;
}
.services-wrapper .service-item.row-reverse{
    flex-direction: row-reverse;
}
.services-wrapper .service-item.row-reverse figure{
    padding: 48px 60px 0 0;
}
.services-wrapper .service-item.row-reverse figure::before{
    left: auto;
    right: 0;
}

.services-wrapper .service-item:hover figure::before{
    background-color: #7ab3fa;
}


/* --- products-wrapper --- */
.products-wrapper .product-content{
    padding: 15px 10px;
    border-radius: 0 0 6px 6px;
}
.products-wrapper .verlticle-tab{
    max-height: 70vh;
    overflow-y: auto;
}
.products-wrapper .verlticle-tab .list-group{
    width: 35%;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
}
.products-wrapper .verlticle-tab .tab-content{
    width: 100%;
    padding: 0;
    overflow-x: auto;
    overscroll-behavior-x: auto;
}


/* contact wrapper */
.contact-wrapper .contact-text .heading-style h2{
    color: #222;
    font-size: 45px;
    font-weight: 500;
}
.contact-wrapper .contact-text p{
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 0;
}
.contact-wrapper .contact-text form{
    margin-top: 25px;
}
.contact-wrapper .form-group{
    margin-bottom: 20px;
}
.contact-wrapper .form-group label{
    color: #222;
    position: relative;
    margin-bottom: 3px;
}
.contact-wrapper .form-group.required label::after{
    content: "*";
    color: #EE2424;
}
.contact-wrapper .form-group .form-control{
    color: var(--dark);
    border-color: #BBBBBB;
    padding: 12px 16px;
}
.contact-wrapper .form-group .form-control:focus{
    border-color: var(--primary);
}
.contact-wrapper .right-column .map-box{
    position: relative;
    height: 292px;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 20px;
}
.contact-wrapper .right-column .map-box h4{
    font-weight: 500;
}
.contact-wrapper .right-column .contact-info{
    position: relative;
    top: 0;
    height: 100%;
    text-align: center;
    background-color: #F6F6F6;
    padding: 20px 28px 20px;
    border-radius: 30px;
    transition: all 0.1s ease-in-out;
}
.contact-wrapper .right-column .contact-info img{
    width: 30px;
    margin-bottom: 12px;
}
.contact-wrapper .right-column .contact-info h6{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}
.contact-wrapper .right-column .contact-info p{
    font-size: 15px;
    line-height: normal;
    margin-bottom: 0;
}
.contact-wrapper .right-column .contact-info p,
.contact-wrapper .right-column .contact-info p a{
    color: #333;
}
.contact-wrapper .right-column .contact-info:hover{
    top: 3px;
}


.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
.back-to-top i{
    font-size: 20px;
    line-height: 48px;
}



/* ---------------- responsive --------------- */
@media only screen and (max-width: 1299px){
    .navbar .navbar-brand{
        margin: 0 0 -8px;
    }
    .navbar .navbar-brand img{
        width: 70px;
    }
    .navbar .navbar-brand span {
        font-size: 16px;
        line-height: 23px;
        max-width: 160px;
        margin: 0 0 14px 8px;
    }
    .navbar .navbar-brand figure{
        padding: 0 8px;
    }
    .navbar .navbar-nav .nav-link{
        font-size: 15px;
        margin-right: 33px;
    }
    .navbar .navbar-nav .nav-link:last-child{
        margin-right: 0;
    }
    
    .navbar .side-btn{
        display: none;
    }

    .banner-slider .owl-carousel-item h2{
        font-size: 50px;
        line-height: 63px;
        margin-bottom: 18px;
    }
    .banner-slider .owl-carousel-item p {
        font-size: 16px;
    }
    .banner-slider .owl-carousel-item .btn {
        font-size: 15px;
        padding: 12px 36px;
        margin-top: 10px;
    }
    .owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next{
        font-size: 18px;
        width: 45px;
        height: 45px;
        line-height: 45px;
    }
}

@media only screen and (max-width: 1199px){
    .banner-slider .owl-carousel-item h2{
        font-size: 38px;
        line-height: 48px;
        margin-bottom: 15px;
    }
    .banner-slider .owl-carousel-item p {
        font-size: 15px;
    }
    .banner-slider .owl-carousel-item .btn {
        font-size: 14px;
        padding: 10px 30px;
    }
}

@media only screen and (max-width: 991px){
    .banner-slider .owl-carousel-item h2{
        font-size: 35px;
        line-height: 46px;
        margin-bottom: 10px;
    }
    .banner-slider .owl-carousel-item p {
        font-size: 14px;
    }
    .banner-slider .owl-carousel-item .btn {
        font-size: 13px;
        padding: 8px 26px;
    }
    
    .owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next{
        font-size: 16px;
        width: 38px;
        height: 38px;
        line-height: 38px;
    }

    .heading-style{
        margin-bottom: 30px;
    }
    .heading-style h1, .heading-style h2{
        font-size: 38px;
    }
}

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

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

@media only screen and (max-width: 540px){
    .navbar{
        padding: 0 20px;
    }
    .navbar .navbar-brand{
        margin: 0 0 -8px;
    }
    .navbar .navbar-brand img{
        width: 62px;
    }
    .navbar .navbar-brand span {
        font-size: 15px;
        max-width: 150px;
        line-height: 22px;
        margin: 0 0 9px 6px;
    }
    .navbar .navbar-brand figure{
        padding: 0 6px;
    }
    
    .header-carousel .owl-carousel-item {
        text-align: center;
        min-height: 400px;
    }
    .header-carousel .owl-carousel-item .owl-carousel-inner{
        padding: 0 20px;
    }
}