@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Poppins:wght@700&display=swap');

/* Common Styles */
:root {
    --color-red: #c61b1f;
    --color-yellow: #CCA600;
}

body {
    font-family: 'Poppins', sans-serif;
}

.font-cinzel {
    font-family: 'Cinzel', serif;
}

.font-size-10px {
    font-size: 10px !important;
}

.font-size-11px {
    font-size: 11px !important;
}

.font-size-12px {
    font-size: 12px !important;
}

.font-size-13px {
    font-size: 13px !important;
}

.font-size-14px {
    font-size: 14px !important;
}

.font-size-15px {
    font-size: 15px !important;
}

.text-justify {
    text-align: justify;
}

.color-red {
    color: var(--color-red);
}

.border-2px {
    border-width: 2px !important;
}

.border-3px {
    border-width: 3px !important;
}

.border-4px {
    border-width: 4px !important;
}



/* Preloader Styles */
.preloader {
    background-color: white;
    height: 100%;
    width: 100%;
    z-index: 9999999;
}

.loader-pulse {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #c61b1f;
    animation: load-pulse 0.85s infinite linear;
}

@keyframes load-pulse {
    0% {
        transform: scale(0.15);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}



/* Button Styles */
.btn.btn-first {
    background-color: transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: .5s;
    font-weight: 400;
    border: 2px solid var(--color-red);
    font-family: inherit;
    text-transform: uppercase;
    color: var(--color-red) !important;
    z-index: 1;
    font-size: 14px;
    border-radius: 5rem;
}

.btn.btn-first::before,
.btn.btn-first::after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    background-color: var(--color-red);
    transition: 1s ease;
}

.btn.btn-first::before {
    top: -1em;
    left: -1em;
}

.btn.btn-first::after {
    left: calc(100% + 1em);
    top: calc(100% + 1em);
}

.btn.btn-first:hover::before,
.btn.btn-first:hover::after {
    height: 410px;
    width: 410px;
}

.btn.btn-first:hover {
    color: rgb(247, 247, 247) !important;
}

.btn.btn-first:active {
    filter: brightness(.8);
}

.bg-transparent-black {
    background-color: rgba(0, 0, 0, 0.4);
}

.btn.padding {
    padding: 10px 20px;
}

.btn.big {
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 1.2rem;
}



/* Brands Styles */
.banner .tns-outer {
    position: relative;
}

.banner .tns-outer .tns-nav {
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2%;
}

.banner .tns-outer .tns-nav button {
    font-size: 0;
    padding: 0;
    height: 14px;
    width: 14px;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 100%;
}

.banner .tns-outer .tns-nav button.tns-nav-active {
    background-color: white;
}

.banner .tns-outer button[data-action="start"],
.banner .tns-outer button[data-action="stop"] {
    display: none;
}

.banner .sentry-safe {
    position: absolute;
    top: 30%;
    left: 10%;
    width: 40%;
}

.banner .titan-safe {
    position: absolute;
    top: 25%;
    left: 10%;
    width: 30%;
}

.banner .titan-elite {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 25%;
}

.banner .x-sense {
    position: absolute;
    top: 35%;
    left: 10%;
    width: 30%;
}

.banner .banner-button-sentry {
    position: absolute;
    top: 53%;
    left: 10%;
}

@media screen and (min-width: 991px) {
    .img-logo-cover {
        /* Covers image logo */
        position: absolute;
        top: 33%;
        left: 10%;
        width: 30%;
        height: 18%;
        /* background-color: black; */
    }

    .banner .sentry-safe {
        top: 30%;
        left: 10%;
        width: 40%;
    }

    .banner .titan-safe {
        top: 32%;
        left: 10%;
        width: 10%;
    }

    .banner .titan-elite {
        top: 31%;
        left: 10%;
        width: 8%;
    }

    .banner .x-sense {
        top: 30%;
        left: 10%;
        width: 10%;
    }

}

@media only screen and (max-width: 565px) {
    .banner .button-img {
        width: 70%;
    }
}



/* About Us Styles */
.about .text-box {
    max-width: 1000px;
}



/* Featured Products Styles */
.featured-products .item-status-label {
    display: inline-block;
    background-color: green;
    font-weight: 700;
    padding: 4px 10px;
    min-width: 60px;
    font-size: 6px;
}

.featured-products .item-status-label.pos-absolute {
    position: absolute;
    top: 0;
    left: 0;
}

.featured-products .item-status-label.status-label-yellow {
    background-color: var(--color-yellow);
}

.featured-products .carousel-control-prev {
    left: -50px;
    width: 50px;
    opacity: 1;
}

.featured-products .carousel-control-next {
    right: -50px;
    width: 50px;
    opacity: 1;
}

.featured-products .carousel-control-prev .icon-box,
.featured-products .carousel-control-next .icon-box {
    background-color: lightgray;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-products .icon-box .fa-solid {
    font-size: 30px !important;
}

.featured-products .product-item .product-name {
    margin: 0;
    font-size: 10px;
    font-weight: 700;
    line-height: 0.7rem;
}

.featured-products .product-item .product-price {
    line-height: 0.7rem;
}

.featured-products .product-item .product-price .product-price-no-discount {
    margin: 0;
    font-size: 8px;
    text-decoration: line-through;
    white-space: nowrap;
}

.featured-products .product-item .product-price .product-price {
    margin: 0;
    font-size: 12px;
    font-weight: 700 !important;
    color: var(--color-red) !important;
    white-space: nowrap;
}

.featured-products .special-offer p {
    margin: 0;
}

.featured-products .special-offer .text-box .title {
    font-size: 14px !important;
    color: var(--color-red) !important;
    letter-spacing: 0.2rem;
    margin-bottom: 0.5rem;
}

.featured-products .special-offer .text-box .product-name {
    font-weight: 700 !important;
    color: white !important;
    font-size: 30px !important;
}

.featured-products .special-offer .text-box .sale {
    font-weight: 700 !important;
    color: white !important;
    font-size: 14px !important;
}

.featured-products .special-offer .text-box .product-price .product-price {
    font-weight: 700 !important;
    font-size: 18px !important;
    color: var(--color-red) !important;
}

.featured-products .special-offer .text-box .product-price .product-price-no-discount {
    color: white !important;
    text-decoration: line-through !important;
    font-size: 13px !important;
}

.featured-products .special-offer .text-box .product-price {
    margin-bottom: 0.5rem;
}

@media screen and (min-width: 767px) {
    /* Empty */
}

@media screen and (min-width: 565px) {
    .featured-products .item-status-label {
        font-size: 12px;
        min-width: 100px;
    }

    .featured-products .product-item .product-name {
        font-size: 14px;
        line-height: 1rem;
    }

    .featured-products .product-item .product-price .product-price-no-discount {
        font-size: 12px;
        line-height: 1rem;
    }

    .featured-products .product-item .product-price .product-price {
        font-size: 16px;
        line-height: 1rem;
    }

    .featured-products .special-offer .text-box .product-price .product-price {
        font-size: 28px;
    }

    .featured-products .special-offer .text-box .title {
        font-size: 13px;
        margin-bottom: 1rem;
    }

    .featured-products .special-offer .text-box .product-name {
        font-size: 35px;
    }

    .featured-products .special-offer .text-box .sale {
        font-size: 13px;
        margin-bottom: 1rem;
    }

    .featured-products .special-offer .text-box .product-price .product-price {
        font-size: 28px;
    }

    .featured-products .special-offer .text-box .product-price .product-price-no-discount {
        font-size: 16px;
    }

    .featured-products .special-offer .text-box .product-price {
        margin-bottom: 1.5rem;
    }

    .btn.big {
        font-size: 20px;
        padding: 10px 50px;
    }
}

@media only screen and (max-width: 600px) {
    .banner .banner-button-sentry {
        top: 59%;
    }
}



/* Categories Styles*/
.categories .item {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--color-red);
    background-color: white;
    font-weight: 500;
}

.categories .item:hover {
    font-weight: bolder;
}

.categories a {
    text-decoration: none;
}



/* More Information Styles */
.more-information .item {
    background-color: var(--color-red);
    color: white;
}



/* Contact Us */
footer .footer-contact-us {
    display: none !important;
}

.contact-us {
    padding-bottom: 48px;
}

.contact-us .row {
    row-gap: 20px;
}

.contact-us .btn-send {
    padding: 15px 50px;
    border-radius: 1.2rem;
    border-width: 1px;
}

@media screen and (min-width: 991px) {
    footer.brands-padding-top {
        /* Set padding top to footer */
        padding-top: 300px;
    }

    .contact-us {
        margin-bottom: -300px;
    }
}