/*----------  Header  ----------*/
@media (hover: hover) {
    a:hover {
        color: #D52B14;
        text-decoration: none;
        outline: none !important;
    }

    .btn:hover {
        border: 1px solid #D52B14;
        background-color: #D52B14;
        color: #fff;
    }

    .btn-white:hover {
        border-color: #111;
        background-color: #111;
        color: #fff;
    }

    .btn-white:hover .btn-icon-arrow {
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7495%) hue-rotate(180deg) brightness(102%) contrast(102%);
    }

    .slick-arrow.slick-disabled:hover::before {
        background-color: #fff;
        color: #D52B14;
    }

    .back-to-top:hover {
        transform: scale(1.1);
        bottom: 85px;
        cursor: pointer;
        background: #D52B14;
    }

    .back-to-top:hover>.arrow {
        transform: translateY(-150%) translateX(-50%);
        opacity: 0;
    }

    .back-to-top:hover>.text {
        transform: translateY(-50%) translateX(-50%);
        opacity: 1;
    }

    .nav-wrap ul li a:hover {
        color: #111;
    }

    .nav-wrap ul li a:hover::after {
        transform: scaleX(1);
    }

    /* Sub Menu */
    .nav-wrap ul li:hover>.arrow:before {
        border-color: #D52B14;
    }

    /* Sub Menu Hover */
    .nav-wrap .sub-menu:hover>ul {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    /* Sub of Sub Menu Hover */
    .nav-wrap .sub-menu .sub-of-sub-menu:hover>ul {
        transform: translateY(0) translateX(0);
        opacity: 1;
        visibility: visible;
    }
}

@media(max-width:1199px) {
    .nav-overlay {
        background-color: rgb(0 0 0 / 50%);
        position: fixed;
        z-index: 8;
        inset: 0;
        transform: translateX(-100%);
        opacity: 0;
        transition: opacity .4s ease-in-out;
    }

    .nav-wrap nav {
        position: fixed;
        inset: 0;
        z-index: 9;
        max-width: 500px;
        background: #fff;
        transform: translateX(-100%);
        transition: .6s all ease-in-out;
    }

    .is-nav-open .nav-overlay,
    .is-nav-open .nav-wrap nav {
        transform: translateX(0);
        opacity: 1;
    }

    .nav-wrap nav>ul {
        display: block;
        padding-top: 10px;
        max-height: calc(100vh - var(--header-height));
        overflow: auto;
        padding-bottom: 30px;
    }

    .nav-wrap nav>ul>li+li,
    .nav-wrap nav>ul>li:last-child {
        border-top: 1px solid #f5f5f5;
    }

    .nav-head {
        padding: 20px 15px;
        border-bottom: 1px solid #ccc;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navigation-toggler {
        background-color: transparent;
    }

    .header .icon {
        mask-size: 30px;
        mask-repeat: no-repeat;
        width: 30px;
        height: 30px;
        display: block;
    }

    .icon-navigation-burger {
        mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg width='800px' height='800px' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7C4 6.44771 4.44772 6 5 6H24C24.5523 6 25 6.44771 25 7C25 7.55229 24.5523 8 24 8H5C4.44772 8 4 7.55229 4 7Z' fill='%23000000'/%3E%3Cpath d='M4 13.9998C4 13.4475 4.44772 12.9997 5 12.9997L16 13C16.5523 13 17 13.4477 17 14C17 14.5523 16.5523 15 16 15L5 14.9998C4.44772 14.9998 4 14.552 4 13.9998Z' fill='%23000000'/%3E%3Cpath d='M5 19.9998C4.44772 19.9998 4 20.4475 4 20.9998C4 21.552 4.44772 21.9997 5 21.9997H22C22.5523 21.9997 23 21.552 23 20.9998C23 20.4475 22.5523 19.9998 22 19.9998H5Z' fill='%23000000'/%3E%3C/svg%3E");
        background-color: #000;
        rotate: 180deg;
    }

    .icon-navigation-close {
        mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle opacity='0.5' cx='12' cy='12' r='10' stroke='%231C274C' stroke-width='1.5'/%3E%3Cpath d='M14.5 9.50002L9.5 14.5M9.49998 9.5L14.5 14.5' stroke='%231C274C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
        background-color: #000;
    }

    /* Sub Menu & Sub of Sub Menu */
    .header .arrow {
        display: block;
        height: 40px;
        width: 40px;
        position: absolute;
        right: 0;
        top: 0;
    }

    .header .arrow:before,
    .header .sub-of-sub-menu .arrow::before {
        content: '';
        display: block;
        border-top: 1px solid #000;
        border-right: 1px solid #000;
        width: 8px;
        height: 8px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .header .arrow-open::before,
    .header .sub-of-sub-menu .arrow-open::before {
        transform: translate(-50%, -50%) rotate(135deg);
    }

    .header .sub-menu ul {
        display: none;
        position: unset;
        border-top: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        padding-left: 0;
        margin-inline: 10px;
        margin-bottom: 10px;
        transition: unset;
        box-shadow: none;
    }
}

@media(max-width:568px) {
    .header-top-row {
        justify-content: center;

        a {
            font-size: 14px;
        }
    }
}


/*----------  Container  ----------*/
@media(max-width:1399px) {
    .container {
        padding-inline: 48px;
    }
}

@media(max-width:1299px) {
    .container {
        padding-inline: 24px;
    }
}

@media(max-width:1199px) {
    .container {
        padding-inline: 15px;
    }
}

/*----------  Hero Section  ----------*/
@media(hover: hover) {
    .hero-content-image:hover .hero-image-arrow-icon {
        filter: brightness(0) saturate(100%) invert(22%) sepia(35%) saturate(4150%) hue-rotate(347deg) brightness(111%) contrast(108%);
    }
}

@media(max-width:1199px) {
    .hero-content-list {
        flex-wrap: wrap;
    }

    .hero-content-list li {
        gap: 4px;
        padding: 8px 10px;
    }

    .hero-star-icon {
        width: 16px;
        height: 16px;
    }
}

@media(max-width:991px) {
    .hero-content-image {
        aspect-ratio: 2 / 1;
    }
}

@media(max-width:568px) {
    .hero-content {
        gap: 15px;
    }

    .hero-content-icon {
        padding: 5px;
        border-radius: 4px;
    }

    .hero-content-icon img {
        width: 26px;
        height: 26px;
    }

    .hero-content-text {
        font-size: 12px;
    }

    .hero-content-image {
        aspect-ratio: 4 / 3;
    }
}

/*----------  Product & Service Section  ----------*/
@media(min-width:500px) and (max-width:1024px) and (orientation:landscape) {
    .ps-main-box {
        .ps-main-box-footer-icon {
            width: 80px;
            height: 80px;
        }
    }
}

@media(max-width:568px) {
    .ps-main-box {
        .ps-main-box-footer-icon {
            width: 80px;
            height: 80px;
        }
    }

    .product-service-card {
        flex: 0 0 100%;
    }
}

/*----------  Compliant Section  ----------*/
@media(max-width:1199px) {
    .compliant-features li::before {
        top: 4px;
    }
}

@media(max-width:991px) {
    .compliant-features li::before {
        top: 5px;
    }
}

/*----------  Regulatory Section  ----------*/
@media(max-width:991px) {
    .regulatory-card {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .regulatory-icon {
        flex: 0 0 48px;
        margin-bottom: 0;
    }

    .regulatory-text {
        flex: 1;
    }
}

/*----------  FAQ Section  ----------*/
@media (hover: hover) {
    .faq-button:hover {
        color: #D52B14;
    }
}

@media (max-width: 991px) {
    .faq-row {
        flex-direction: column;
        gap: 0;
    }

    .faq-col,
    .faq-col:last-child {
        flex: 1;
        width: 100%;
    }
}

@media(max-width:568px) {
    .operatios-row {
        flex-direction: column;
    }

    .operatios-col {
        padding-top: 0;
        padding-left: 24px;
    }

    .operatios-col::before {
        left: 0;
        top: 4px;
    }

    .operatios-col::after {
        width: 1px;
        height: 100%;
        top: 20px;
        left: 7px;
        border: 0;
        border-left: 1px solid rgba(213, 43, 20, 0.6);
    }

    .operatios-col:last-child::after {
        width: 1px;
        height: 70%;
        left: 7px;
        border: 0;
        border-left: 1px dashed rgba(213, 43, 20, 0.6);
    }
}

/*----------  Footer  ----------*/
@media (hover: hover) {
    .footer-menu a:hover {
        color: #D52B14;
    }


}

@media (max-width: 991px) {
    .footer-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-col {
        flex: 0 0 100% !important;
        width: 100%;
    }

    .footer-widget {
        position: relative;
    }

    .footer-widget .footer-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0;
        padding: 15px 0;
        cursor: pointer;
    }

    .footer-widget .footer-title::after {
        content: '';
        display: block;
        width: 9px;
        height: 9px;
        border-right: 1.5px solid #111;
        border-bottom: 1.5px solid #111;
        transform: rotate(45deg) translate(-9px, 8px);
        transition: transform 0.3s ease;
    }

    .footer-widget.active .footer-title::after {
        transform: rotate(-135deg) translate(6px, -12px);
    }

    .footer-widget .footer-menu,
    .footer-widget .footer-address {
        display: none;
        padding-bottom: clamp(10px, 3.59px + 1.28vw, 20px);
    }

    .footer-widget.active .footer-menu,
    .footer-widget.active .footer-address {
        display: flex;
        padding-top: 15px;
    }

    .footer-divider {
        margin: 0;
    }
}

/*----------  Strategic Section  ----------*/
@media(max-width:991px) {
    .strategic-wrap {
        position: unset;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: clamp(10px, 5.21px + 0.96vw, 20px);
    }

    .strategic-logo-box {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }

    .strategic-logo-inner img {
        margin: auto;
    }

    .strategic-item::before {
        display: none;
    }

    .strategic-item {
        flex: 0 0 calc(50% - 10px);
        position: unset;
        transform: none !important;
        height: 100%;
    }
}


/*=============================================
=            About Us Page Start            =
=============================================*/
@media(max-width:568px) {
    .about-hero-img {
        aspect-ratio: 10 / 9;
    }
}

/*=============================================
=           Our Products Page Start           =
=============================================*/
@media(max-width:991px) {
    .products-services-sec.style-2 {
        .ps-main-box {
            aspect-ratio: 5/4;
        }
    }
}

/*=============================================
=            Dealers Distributors            =
=============================================*/
@media(max-width:1299px) {
    .storage-across-row div:nth-child(1) {
        flex: 0 0 17.23%;
    }

    .storage-across-row div:nth-child(2) {
        flex: 0 0 19.63%;
    }

    .storage-across-row div:nth-child(3) {
        flex: 0 0 36.82%;
    }

    .storage-across-row div:nth-child(4) {
        flex: 0 0 27.31%;
    }
}

@media(max-width:1199px) {
    .what-bright-col+.what-bright-col::before {
        left: -51px;
        width: 47px;
        height: 3px;
        background-size: auto;
    }
}

@media(max-width:991px) {
    .storage-across-row div:nth-child(1) {
        flex: 0 0 120px;
    }

    .storage-across-row div:nth-child(2) {
        flex: 0 0 120px;
    }

    .storage-across-row div:nth-child(3) {
        flex: 0 0 250px;
    }

    .storage-across-row div:nth-child(4) {
        flex: 0 0 250px;
    }

    .what-bright-row {
        flex-wrap: wrap;

        .what-bright-col {
            flex: 0 0 100% !important;
        }

        .what-bright-logo-wrap {
            max-width: 200px;
        }

        .what-bright-info-list {
            flex-direction: column;
            gap: 20px;
        }

        .what-bright-col+.what-bright-col::before {
            left: 50%;
            top: -3px;
            width: 30px;
            height: 3px;
            background-size: 30px;
            rotate: 90deg;
            transform: translateX(-50%) translateY(0);
        }
    }
}

@media(max-width:568px) {
    .products-services-sec.style-3 {
        .product-service-card {
            flex: 0 0 100%;
        }
    }

    .products-services-sec.style-2 {
        .product-service-card {
            flex: 0 0 100%;
        }
    }
}