/* LOGO */
.navbar-brand img {
    width: unset !important;
    max-height: 7rem;
}
.sicon-menu {
    color: #fff;
}
@media (max-width: 576px) {
    .navbar-brand img {
        max-height: 5rem;
    }
    .navbar-brand img{
        filter: drop-shadow(1px 1px 1px #fff);
    }
}

/* PU_main_slider */
.PU_main_slider .container.aos-init h1,
.PU_main_slider .container.aos-init p {
    display: none;
}
@media (max-width: 576px) {
    .PU_main_slider .bg-no-repeat {
        padding-top: 6rem;
    }
}

/* product_features */ 
.product_features div:has( > .imgs ) {
    margin-top: 3%;
}
.product_features p:last-child {
    color: #CB3D49 !important;
}
@media (min-width: 768px) {
    .product_features .md\:w-\[400px\] {
        width: 110px;
        height: 330px;
    }
}
@media (max-width: 768px) {
    .product_features .md\:w-\[400px\] {
        width: 110px;
        height: 330px;
    }
}
@media (max-width: 576px) {
    .product_features .md\:w-\[400px\] {
        width: 31px;
        height: 115px;
    }
}

/* spacings */
.PU_custom-section,
.PU_advanced_prouducts {
  margin-block: 3rem;
}

/* PU_testomenials */
.PU_testomenials {
    background-color: #FEF3EC;
    padding-block: 3rem;
}

/* Loading LOGO */
.index:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff url(https://cdn.files.salla.network/homepage/643241451/8b07ad17-be17-4da5-8156-963944d1259c.webp);
    position: fixed;
    top: 0;
    z-index: 99999999999999999 !important;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center !important;
    animation-name: logobg;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    bottom: 0;
    left: 0;
    right: 0;
}
@keyframes logobg {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(.1);
    }
}