
section.home-banner picture img {
    -webkit-animation: banner 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
            animation: banner 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
}


@-webkit-keyframes banner {
    0% {
        -webkit-transform: scale(1.2);
                transform: scale(1.2);
        /* -webkit-filter: blur(5px);
                filter: blur(5px); */
    }

    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        /* -webkit-filter: blur(0px);
                filter: blur(0px); */
    }
}


@keyframes banner {
    0% {
        -webkit-transform: scale(1.2);
                transform: scale(1.2);
        /* -webkit-filter: blur(5px);
                filter: blur(5px); */
    }

    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        /* -webkit-filter: blur(0px);
                filter: blur(0px); */
    }
}


/* section.certificate img{
    filter: saturate(0);
    width: 100%;
    transition: all 0.5s ease;
}

section.certificate img:hover{
    filter: saturate(100%);
    width: 100%;
    
} */


section.product_categories .card_1 {
    padding: 25px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 100%;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    height: 360px;
}

body.dark-mode section.product_categories .card_1 {
    background-color: var(--card);
}

body.dark-mode section.product_categories .card_1 h5,
body.dark-mode section.product_categories .card_1 p {
    color: var(--white) !important;
}


section.product_categories .card_1:hover {
    -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
            transform: translateY(-10px);
}

section.product_categories .card_1:hover .btn_1 {
    opacity: 1;
    visibility: visible;
}

section.product_categories .card_1 p {
    font-size: 14px;
}


section.product_categories .bg1 {
    background-color: #FAEDFF;
}

section.product_categories .bg2 {
    background-color: #DDF1FF;
}

section.product_categories .bg3 {
    background-color: #FFFBD6;
}

section.product_categories .bg4 {
    background-color: #F2FBE5;
}

section.product_categories .bg5 {
    background: rgba(255, 204, 207, 0.32);
}

section.product_categories .bg6 {
    background-color: #E9E5F3;
}



section.product_categories .img-1 {
    position: absolute;
    bottom: -14px;
    top: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

section.product_categories .img-2 {
    position: absolute;
    bottom: -20px;
    top: auto;
    right: 10px;
    /* transform: translateX(-50%); */
}

section.product_categories .img-3 {
    position: absolute;
    bottom: -21px;
    top: auto;
    /* left: 50%; */
    right: 42px;
    /* transform: translateX(-50%); */
    /* mix-blend-mode: multiply; */
}

section.product_categories .img-4 {
    position: absolute;
    bottom: 28px;
    top: auto;
    /* mix-blend-mode: multiply; */
    left: 15px;
    width: 92%;
    /* transform: translateX(-50%); */
}

section.product_categories .img-5 {
    position: absolute;
    bottom: -59px;
    top: auto;
    /* left: 50%; */
    right: 7px;
    /* transform: translateX(-50%); */
}

section.product_categories .img-6 {
    position: absolute;
    bottom: -23px;
    top: auto;
    /* left: 50%; */
    right: 10px;
    /* transform: translateX(-50%); */
}


section.product_categories .btn_1 {
    border-radius: 10px;
    padding: 10px 16px;
    width: 127px;
    height: 40px;
    background: #0198d7;
    display: block;
    margin: 0;
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
    position: relative;
    z-index: 2;
}

section.product_categories .btn_1:hover {
    background-color: #ea1f2a;
}



section.product .img-box {
    background-color: var(--product);
    border-radius: 20px;
    padding: 20px;
    height: 240px;
    text-align: center;
}

section.product .img-box img {
    width: 90%;
    margin: 0 auto;
    -o-object-fit: contain;
       object-fit: contain;
    height: 100%;
    /* mix-blend-mode: multiply; */
}

section.product .description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    min-height: 48px;
}
section.product .btn_2 {
    border-radius: 10px;
    padding: 10px 16px;
    width: 180px;
    height: 50px;
    color: #fff;
    background: #fc2626;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 15px;
}

body.dark-mode .product h4 {
    color: #fff;
}

body.dark-mode .product p {
    color: #fff;
}

section.product .btn_2:hover {
    background-color: #0198D7;
}

section.product .btn_3 {
    border-radius: 10px;
    font-size: 15px;
    padding: 10px 16px;
    width: 180px;
    height: 50px;
    color: #0198D7;
    background: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #0198D7;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

body.dark-mode section.product .btn_3 {
    color: #a9a9a9;
    background: transparent;
    border: 1px solid #a9a9a9;
}

body.dark-mode section.product .btn_3:hover {
    color: #ffffff;
    background: transparent;
    border: 1px solid #ffffff;
}

section.product .btn_3:hover {
    border: 1px solid #ea1f2a;
    color: #ea1f2a;
}

section.product .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.owl-theme .owl-nav {
    display: none;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #ea1f2a !important;
}

.owl-theme .owl-dots {
    margin-top: 21px;
}


section.service .card-img-overlay {
    padding: 50px;
}

.dark-mode .service .card {
    background-color: var(--card);
}

.dark-mode section.service .card a,
.dark-mode section.service .card h5 {
    color: #fff !important;
}

section.client img {
    border-radius: 100%;
    -webkit-box-shadow: 0 4px 30px 0 rgba(22, 74, 152, 0.06);
            box-shadow: 0 4px 30px 0 rgba(22, 74, 152, 0.06);
    width: 130px;
    height: 130px;
    -o-object-fit: cover;
       object-fit: cover;
}

.dark-mode section.feedback {
    background: #1E1E1E;
}

.dark-mode section.feedback .card {
    background: #171717;
}

section.client .grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr;
    grid-template-columns: repeat(7, 1fr);
    gap: 24px;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 30px !important;
}

.btn_6 {
    border-radius: 10px;
    padding: 10px 16px;
    width: 159px;
    height: 50px;
    background: #fc2626;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #fff;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.btn_6:hover {
    background-color: #0198D7;
}


section.why {
    background-color: #E2F6FF;
    padding: 70px 0;
}

.dark-mode section.why {
    background-color: #242424;
}

section.why .card {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    overflow: hidden;
}

.dark-mode section.why .card {
    background-color: #171717;
}



section.why .card:hover {
    background-color: #0198D7;
}

section.why .card:hover p,
section.why .card:hover h5 {
    color: #fff !important;
}


section.why .cricle {
    position: absolute;
    right: -205px;
    top: 0;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

section.why .card:hover .cricle {
    right: -10px;
    opacity: 1;
}