﻿
/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

p {
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

    h5.section-desc {
        font-family: var(--default-font);
        font-weight: 400;
        line-height: 1.4;
    }

    .hidden{
        display:none;
    }
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.topmsg {
    background-color: #cb0101;
    color: #fff;
    font-size: 13px;
    padding:5px 30px;
    text-align:center;
}
    .topmsg a, .topmsg a:hover, .topmsg a:focus {
        color: #fff;   
        }

    .header {
        color: var(--default-color);
        transition: all 0.5s;
        z-index: 997;
        background-color: var(--background-color);
    }

    .header .topbar {
        background-color: var(--accent-color);
        height: 26px;
        padding: 0;
        font-size: 13px;
        transition: all 0.5s;
        display: flex;
        align-items: center;
    }

.topbar .contact-info {
    display: flex;
    align-items: center;
}

    .topbar .contact-info a, .topbar .contact-info a:focus {
        padding-right: 15px;
        padding-left: 5px;
        color: var(--contrast-color);
    }

        .topbar .contact-info a:hover span, .topbar .contact-info a:focus span {
            text-decoration: underline;
        }

.topicon {
    max-width: 20px;
    max-height: 20px;
    margin-right: 5px;
}

.topsocialicon {
    max-width: 25px;
    max-height: 25px;
    margin-right: 5px;
}

.header .topbar .contact-info i a:hover {
    color: var(--contrast-color);
    text-decoration: underline;
}

.header .topbar .social-links a {
    color: color-mix(in srgb, var(--contrast-color), transparent 40%);
    line-height: 0;
    transition: 0.3s;
}

@media (max-width: 575px) {

    .header .topbar .contact-info,
    .header .topbar .contact-info span {
        font-size: 13px;
    }
}

.header .branding {
    background-color: var(--background-color);
    min-height: 40px;
    padding: 0;
}

.header .logo {
    line-height: 1;
}

    .header .logo img {
        max-height: 80px;
    }

.header-logo {
    padding: 15px 0;
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

    .scrolled .header .topbar {
        height: 0;
        visibility: hidden;
        overflow: hidden;
    }

.searchpnl {
    padding: 15px 0;
    display: flex;
}

.srchtxt {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid;
    width: 180px;
    height: 40px;
    padding: 0;
    font-size: 16px;
}

.srchbtn {
    background: #fff;
    border: 0;
}

.icon25 {
    max-width: 25px;
    max-height: 25px;
}

.spacer-s {
    padding-top: 25px
}

.spacer10 {
    padding-top: 10px
}
.spacer15 {
    padding-top: 15px
}

.spacer20 {
    padding-top: 20px
}

.redclr, .redtext, .textred {
    color: #cb0101;
}

.form-control {
    border: 0;
    border-bottom: 2px solid var(--heading-color);
    border-radius: 0;
    background:none;
}

    .form-control:focus, .form-control:hover {
        border-bottom: 2px solid var(--accent-color);
        box-shadow: none;
        background: none;
    }

.form-group {
    margin-bottom: 20px;
}

.center-block {
    margin-left: auto;
    margin-right: auto;
    display: block;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

        .navmenu ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navmenu li {
            position: relative;
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-color);
            padding: 18px 15px;
            font-size: 15px;
            font-family: var(--nav-font);
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                transition: 0.3s;
            }

        .navmenu li:last-child a {
            padding-right: 0;
        }

        .navmenu li:hover > a,
        .navmenu .active,
        .navmenu .active:focus {
            color: var(--nav-hover-color);
        }

        .navmenu .dropdown ul {
            margin: 0;
            padding: 10px 0;
            background: var(--nav-dropdown-background-color);
            display: block;
            position: absolute;
            visibility: hidden;
            left: 14px;
            top: 130%;
            opacity: 0;
            transition: 0.3s;
            border-radius: 4px;
            z-index: 99;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

            .navmenu .dropdown ul li {
                min-width: 200px;
            }

            .navmenu .dropdown ul a {
                padding: 2px 20px;
                font-size: 15px;
                text-transform: none;
                color: var(--nav-dropdown-color);
            }

                .navmenu .dropdown ul a i {
                    font-size: 12px;
                }

                .navmenu .dropdown ul a:hover,
                .navmenu .dropdown ul .active:hover,
                .navmenu .dropdown ul li:hover > a {
                    color: var(--nav-dropdown-hover-color);
                }

        .navmenu .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navmenu .dropdown .dropdown ul {
            top: 0;
            left: -90%;
            visibility: hidden;
        }

        .navmenu .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: -100%;
            visibility: visible;
        }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

        .navmenu ul {
            display: none;
            position: absolute;
            inset: 60px 20px 20px 20px;
            padding: 10px 0;
            margin: 0;
            border-radius: 6px;
            background-color: var(--nav-mobile-background-color);
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-dropdown-color);
            padding: 4px 20px;
            font-family: var(--nav-font);
            font-size: 17px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            }

                .navmenu a i:hover,
                .navmenu a:focus i:hover {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                }

            .navmenu a:hover,
            .navmenu .active,
            .navmenu .active:focus {
                color: var(--nav-dropdown-hover-color);
            }

                .navmenu .active i,
                .navmenu .active:focus i {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                    transform: rotate(180deg);
                }

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            transition: all 0.5s ease-in-out;
        }

            .navmenu .dropdown ul ul {
                background-color: rgba(33, 37, 41, 0.1);
            }

        .navmenu .dropdown > .dropdown-active {
            display: block;
            background-color: rgba(33, 37, 41, 0.03);
        }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle {
            color: #fff;
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }

        .mobile-nav-active .navmenu {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: rgba(33, 37, 41, 0.8);
            transition: 0.3s;
        }

            .mobile-nav-active .navmenu > ul {
                display: block;
            }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
}

    .footer .footer-newsletter .newsletter-form {
        margin-top: 30px;
        margin-bottom: 15px;
        padding: 6px 8px;
        position: relative;
        background-color: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
        box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
        display: flex;
        transition: 0.3s;
        border-radius: 4px;
    }

.ftrsocialicon {
    width: 35px;
    height: 35px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
    border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
    border: 0;
    padding: 4px;
    width: 100%;
    background-color: var(--surface-color);
    color: var(--default-color);
}

    .footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
        outline: none;
    }

.footer .footer-newsletter .newsletter-form input[type=submit] {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: -7px -8px -7px 0;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

    .footer .footer-newsletter .newsletter-form input[type=submit]:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 20%);
    }

.footer .footer-top {
    padding-top: 50px;
}

.footer h4 {
    font-size: 24px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

    .footer .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer .footer-links ul li {
            padding: 10px 0;
            display: flex;
            align-items: center;
        }

            .footer .footer-links ul li:first-child {
                padding-top: 0;
            }

        .footer .footer-links ul a {
            display: inline-block;
            line-height: 1.5;
            color: var(--default-color);
        }

            .footer .footer-links ul a:hover {
                color: var(--accent-color);
            }

.footer .footer-about a {
    color: var(--heading-color);
    font-weight: 600;
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer p, .footer a, .footer a:focus, .footer a:hover {
    font-size: 15px;
}

.footer .copyright {
    padding-top: 5px;
    padding-bottom: 5px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    font-size: 13px;
}

    .footer .copyright p, .footer .copyright a, .footer .copyright a:hover, .footer .copyright a:focus {
        margin-bottom: 0;
        font-size: 13px;
    }
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 78px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 60px;
    }
}

.section1 {
    overflow: clip;
}

.BtnGeneral, .BtnGeneral:focus, .BtnGeneral:hover{
    background: var(--accent-color);
    color: #fff;
    padding: 5px 20px;
    font-size: 17px;
    margin-left: 5px;
    border: 1px solid var(--accent-color);
    outline: 2px solid var(--accent-color);
    outline-offset: .1em;
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

    .section-title h2 {
        letter-spacing: 1px;
        font-weight: 500;
        padding: 8px 0px;
        margin: 0;
        color: var(--heading-color);
        text-transform: capitalize;
        font-family: var(--heading-font);
        font-size: 76px;
        line-height: 78px;
    }

.about-content {
    padding: 0 100px;
}

    .about-content .section-title {
        text-align: left;
    }

        .about-content .section-title h2 {
            padding: 15px 0px;
        }

.section-title .section-subtitle {
    font-weight: 500;
    padding: 4px 0px;
    margin: 0;
    color: var(--heading-color);
    text-transform: capitalize;
    font-family: var(--default-font);
    font-size: 32px;
    line-height: 33px;
    margin-bottom: 0px;
}

.btngel {
    color: #fff;
    background: var(--accent-color);
    border: 0;
    font-size: 24px;
    transition: .3s;
    justify-content: center;
    padding: 20px 50px;
}

    .btngel:focus, .btngel:hover {
        color: #fff;
    }
/*Flash*/
.flash .swiper-pagination-bullet {
    width: 30px;
    height: 7px;
    border-radius: 0;
    background: #f1f1f1;
}

.flash .swiper-pagination-bullet-active {
    background: var(--accent-color);
}

.desk-img {
    display: block;
}

.mob-img {
    display: none;
}
/*--------------------------------------------------------------
# brands Section
--------------------------------------------------------------*/

.brands .swiper {
    padding: 0px;
}

.brands .swiper-wrapper {
    height: auto;
}

.brands .swiper-slide img {
    transition: 0.3s;
}
/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/
.productbox {
    position: relative;
    overflow: hidden;
}

    .productbox .product-info {
        padding: 10px 15px;
        text-align: center;
    }

        .productbox .product-info .prod-title {
            font-weight: 500;
            margin-bottom: 5px;
            color: var(--default-color);
        }

        .productbox .product-info .prod-desc {
            font-weight: 400;
            margin-bottom: 5px;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
        }

        .productbox .product-info .prodprice {
            line-height: 26px;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--accent-color);
        }

.custom-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 0 20px;
}

.btncustom {
    background: var(--background-color);
    border: 0;
}

.custpipe {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
    font-size: 25px;
    padding: 0 30px;
}

.btncustom img {
    max-width: 25px;
    max-height: 25px;
}

.promo1 {
    position: relative;
}

.promo-info {
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
}

.promo3, .promo2 {
    text-align: center;
}

    .promo3 .section-title h2 {
        padding: 0 0px 20px;
    }

        .promo3 .section-title h2::before {
            content: ' ';
            position: absolute;
            width: 150px;
            height: 6px;
            background: var(--accent-color);
            bottom: 0;
            left: calc(50% - 75px);
            right: auto;
        }


.greviewblock {
    background: #f7f7f7;
    padding: 20px;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.reviewbtn, .reviewbtn:hover, .reviewbtn:focus, .reviewbtn:active {
    background: #197bff;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
}

.pull-right {
    float: right;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.contact .info-item {
    margin-bottom: 40px;
}

    .contact .info-item i {
        font-size: 28px;
        color: var(--accent-color);
        background: color-mix(in srgb, var(--accent-color), transparent 92%);
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
        margin-right: 15px;
    }

    .contact .info-item h4 {
        padding: 0;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .contact .info-item p {
        padding: 0;
        margin-bottom: 0;      
    }

    .contact .info-item:hover i {
        background: var(--accent-color);
        color: var(--contrast-color);
    }

.fpwd {
    font-size: 12px;
}

.fs-7 {
    font-size: smaller;
}

.form-floating > label {
    --bs-body-bg: #fff0;
}

@media(min-width:1600px) {
    .container-fluid {
        padding: 0 100px;
    }

    body, p, a, .navmenu a, .navmenu a:focus, .BtnGeneral, .BtnGeneral:focus, .BtnGeneral:hover  {
        font-size: 23px;
    }

    .header .topbar {
        height: 30px;
        font-size: 15px;
    }

    .topicon {
        max-width: 27px;
        max-height: 27px;
        margin-right: 10px;
    }

    .topsocialicon {
        max-width: 30px;
        max-height: 30px;
        margin-right: 5px;
    }

    .container-fluid.header-logo {
        padding: 15px 50px 10px;
    }

    .header .logo img {
        max-height: 120px;
    }

    h5.section-desc, h5.section-desc a {
        font-size: 1.75rem;
    }

    .footer h4 {
        font-size: 28px;
    }

    .ftrsocialicon {
        width: 40px;
        height: 40px;
    }

    .topbar .contact-info a, .topbar .contact-info a:focus {
        font-size: 18px;
    }

    .footer p, .footer a, .footer a:focus, .footer a:hover {
        font-size: 18px;
    }

    .srchtxt {
        height: 60px;
    }

    .spacer-s {
        padding-top: 40px;
    }

    section, .section {
        padding: 80px 0;
    }
}

@media(max-width:1599px) {
    .section-title h2 {
        font-size: 50px;
        line-height: 55px;
    }

    .section-title .section-subtitle {
        font-size: 24px;
        line-height: 24px;
    }

    .btngel {
        font-size: 20px;
        padding: 10px 30px;
    }
}

@media(min-width:1200px) {
    .container-fluid {
        padding: 0 50px;
    }
}

@media(max-width:1199px) {
    .header .branding {
        min-height: 0;
    }

    .srchtxt {
        width: 50%;
        height: 40px;
        padding: 0;
        font-size: 16px;
        margin-left: 20px;
    }

    .container-fluid {
        padding: 0 20px;
    }

    section, .section {
        padding: 40px 0;
    }

    .footer .footer-top {
        padding-top: 40px;
    }

    .productbox .product-info {
        padding: 10px;
    }

    .promo1 .spacer20 {
        padding-top: 0;
    }

    .about-content .section-title h2 {
        padding: 0px 0px 7px;
    }

    h5.section-desc, h5.section-desc a {
        font-size: 1.20rem;
    }

    .about-content {
        padding: 0;
    }
}

@media(max-width:991px) {
    .about-content {
        padding: 20px !important;
    }

    section, .section {
        padding: 25px 0;
    }

    .section-title h2 {
        font-size: 44px;
        line-height: 47px;
    }


    h5.section-desc, h5.section-desc a {
        font-size: 1rem;
    }

    .footer .footer-top {
        padding-top: 25px;
    }

    .footer .footer-newsletter {
        border-bottom: 0;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        padding-bottom: 0px;
        padding-top: 15px;
    }

    .promo1 .section-title h2 {
        font-size: 36px;
        line-height: 34px;
    }

    .promo1 .section-title .section-subtitle {
        font-size: 18px;
        line-height: 13px;
    }

    .promo1 .btngel {
        font-size: 15px;
        padding: 5px 30px;
    }

    .promo1 .spacer-s {
        padding-top: 10px;
    }

    .productbox .product-info {
        padding: 0;
    }
}

@media(max-width:767px) {
    .btngel {
        font-size: 15px;
        padding: 5px 30px;
    }

    .section-title {
        margin-bottom: 5px;
    }

        .section-title h2 {
            font-size: 36px;
            line-height: 34px;
        }

        .section-title .section-subtitle {
            font-size: 18px;
            line-height: 13px;
        }

    .promo3 .section-title h2 {
        padding: 0 0px 20px;
        margin-bottom: 20px;
    }

    .desk-img {
        display: none;
    }

    .mob-img {
        display: block;
    }

    .promo-info {
        display: none;
    }

    .spacer-s {
        padding-top: 10px;
    }

    .searchpnl {
        padding: 0 0 5px;
        display: flex;
    }

    .srchtxt {
        width: 50%;
        height: 30px;
    }

    .footer .footer-about, .footer .footer-newsletter {
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        padding-bottom: 15px;
        padding-top: 0px;
        border-top: 0;
    }
}


@media(max-width:576px) {
    .topbar {
        display: block;
    }

    .footer .footer-newsletter {
        border-bottom: 0;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        padding-bottom: 0px;
        padding-top: 15px;
    }

    .custpipe {
        padding: 0 10px;
    }
}
@media (max-width: 575px) {
    .contact .info-wrap {
        padding: 20px;
    }
}
@media(max-width:470px) {
    .topbar .contact-info a span {
        display: none;
    }

    .topbar .contact-info a, .topbar .contact-info a:focus {
        padding-right: 0px;
    }

    .section-title h2 {
        font-size: 24px;
        line-height: 27px;
        padding: 0;
    }
}

@media(max-width:425px) {
    .greviewblock {
        padding: 20px 0px;
    }
}

@media(max-width:385px) {
    .reviewbtn, .reviewbtn:hover, .reviewbtn:focus, .reviewbtn:active {
        padding: 7px 5px;
        font-size: 13px;
    }
}
