@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    margin: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Inter", sans-serif;
    transition: all 0.3s ease-in-out;
}

.whtsp-btn{
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 10000;
    animation: popup 4s linear infinite;
}
@keyframes popup {
    0%,100%{
        transform: scale(0.9);
    }50%{
        transform: scale(1.1);
    }
}

/* NAVIGSTION--------------START----------------HERE--------------- */

.top-row{
    background: #F30000;
}

.top-row marquee{
    font-size: 18px;
}

nav .nav-bar{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

nav .nav-active-item{
    margin: 0 20px;
    position: relative;
}

nav .nav-active-link{
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
    cursor: pointer;
}

nav .nav-active-link::before{
    content: "";
    background: #F30000;
    width: 0%;
    height: 2px;
    position: absolute;
    bottom: 0;
    right: 0; 
    transition: all 0.5s ease-in-out;
}

nav .nav-active-item.active .nav-active-link::before{
    content: "";
    background: #F30000;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    right: 0; 
}

nav .nav-active-item.active .nav-active-link{
    color: #F30000;
}

nav .nav-active-link:hover{
    color: #F30000;
}

nav .nav-active-link:hover::before{
    width: 100%;
    right: auto;
    left: 0;
}

nav .nav-active-link:hover{
    color: #F30000;
}

nav .nav-show-btn,.nav-hide-btn{
    display: none;
}

nav .drop-down{
    width: 200px;
    background: #FFF;
    box-shadow: 0 0 10px rgba(110, 110, 110, 0.377);
    list-style: none;
    padding: 15px;
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
}

nav #drop-1:hover .drop-down{
    opacity: 1;
    visibility: visible;
}

nav .drop-down a{
    color: #000;
    text-decoration: none;
    font-weight: 400;
}

nav .drop-down a:hover{
    color: #F30000;
}

nav .drop-down li.active a{
    color: #F30000;
}

.bttn{
    width: 150px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F30000;
    color: #FFF;
    border: 1px solid #F30000;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
}

.bttn:hover{
    background: transparent;
    color: #F30000;
}

@media only screen and (max-width: 1200px){
    nav .nav-active-item {
        margin: 0 10px;
    }
}
@media only screen and (max-width: 992px){
    nav .nav-bar {
        display: block;
        width: 300px;
        height: 100%;
        position: fixed;
        top: 0;
        left: -100%;
        z-index: 2;
        background: #FFF;
        box-shadow: 0 0 10px rgba(141, 141, 141, 0.616);
        transition: all 0.5s ease-in-out;
    }
    nav .nav-active-item {
        margin: 25px 20px;
    }
    nav .nav-hide{
        width: 50px;
        aspect-ratio: 1/1;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #F30000;
        color: #FFF;
        border-radius: 100px;
        font-size: 20px;
        text-decoration: none;
        margin: 20px 15px 50px auto;
    }
    nav .nav-show-btn,.nav-hide-btn{
        display: block;
    }
}
@media only screen and (max-width: 767px){
    nav .bttn{
        display: none;
    }
}

/* NAVIGSTION--------------ENDS----------------HERE--------------- */

/* BANNER--------------START----------------HERE--------------- */

.banner .banner-content{
    background-image: url(../images/banner-1.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
}

.banner .banner-content::before{
    content: "";
    background: #0000009f;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.banner .banner-info{
    width: 50%;
    margin-left: 110px;
}

.banner h1{
    font-size: 50px !important;
}

.banner h2{
    font-size: 50px !important;
}

.banner .bttn:hover{
    background: #FFF;
    border-color: #FFF;
}

@media only screen and (max-width: 1200px){
    .banner .banner-info{
        margin-left: 45px;
        width: 65%;
    }
}
@media only screen and (max-width: 992px){
    .banner .banner-info{
        margin-left: 30px;
        width: 80%;
    }
    .banner h1{
        font-size: 40px !important;
    }
    
    .banner h2{
        font-size: 40px !important;
    }
}
@media only screen and (max-width: 767px){
    .banner .banner-info{
        margin: 0 12px;
        width: 100%;
        text-align: center;
    }
    .banner h1{
        font-size: 25px !important;
    }
    
    .banner h2{
        font-size: 25px !important;
    }
    .banner p{
        font-size: 14px;
    }
    .banner .bttn{
        margin: 0 auto;
    }
}

/* BANNER--------------ENDS----------------HERE--------------- */

/* SERVICE--------------START----------------HERE--------------- */

.service .serv-content{
    background: #FFF;
    box-shadow: 0 0 10px rgba(175, 175, 175, 0.911);
    padding: 20px;
    border-radius: 15px;
    height: 300px;
}

.service .serv-content:hover{
    background: #F30000;
    transform: translateY(-10px);
}

.service .serv-content:hover h3, .serv-content:hover p, .serv-content:hover i{
    color: #FFF  !important;
}

.service h3{
    font-size: 25px;
}

.service i{
    color:#F30000;
    font-size: 45px;
}

.service p{
    color: #7a7a7a;
}

@media only screen  and (max-width: 1200px){
    .service p {
        font-size: 14px;
    }
}
@media only screen  and (max-width: 992px){
    .service h3 {
        font-size: 18px;
    }
    .service .serv-content {
        padding: 15px 10px;
    }
}
@media only screen  and (max-width: 767px){
    .service h3 {
        font-size: 18px;
    }
    .service .serv-content {
        padding: 20px;
        height: auto;
        margin: 15px 0;
        text-align: center;
    }
}

/* SERVICE--------------ENDS----------------HERE--------------- */

/* ABOUT--------------START----------------HERE--------------- */

.about h2{
    font-size: 36px;
}

@media only screen and (max-width: 992px){
    .about h2 {
        font-size: 25px;
    }
    .about p {
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .about .about-content{
        margin: 20px 0;
        text-align: center;
    }
    .about .bttn{
        margin: 0 auto;
    }
    .about img{
        height: auto;
    }
}

/* ABOUT--------------ENDS----------------HERE--------------- */

/* PRODUCT--------------START----------------HERE--------------- */

.product{
    background: #F30000;
    padding: 60px 0;
    margin: 60px 0;
}

.product .pro-content{
    background: #FFF;
    border-radius: 20px;
    padding: 20px 10px;
    margin: 15px 0;
    box-shadow:  0 0 10px #4d4d4d96;
}

.product .pro-content:hover{
    transform: translateY(-10px);
}

.product .img-1{
    width: 150px;
    height: 250px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

@media only screen and (max-width: 992px){
    .product .pro-title{
        width: 100% !important;    
    }
    .product p{
        font-size: 14px;
    }
}

/* PRODUCT--------------ENDS----------------HERE--------------- */

/* CHOISE--------------START----------------HERE--------------- */

.choise .choise-content{
    border: 2px solid #EDEDED;
    padding: 20px;
    border-radius: 20px;
    margin: 15px 0;    
    height: 230px;
}

.choise .choise-content:hover{
    background: #F30000;
    box-shadow: 0 0 10px rgba(179, 179, 179, 0.432);
    transform: translateY(-10px);
}

.choise .choise-content:hover i, .choise-content:hover h4, .choise-content:hover p{
    color: #FFF !important;
}

.choise .choise-content.active{
    background: #F30000;
    box-shadow: 0 0 10px rgba(179, 179, 179, 0.432);
}

.choise .choise-content.active i, .choise-content.active h4, .choise-content.active p{
    color: #FFF !important;
}

.choise i{
    color: #F30000;
    font-size: 40px;
}

@media only screen and (max-width: 1200px){
    .choise p{
        font-size: 14px;
    }
}
@media only screen and (max-width: 992px){
    .choise .choise-content{
        height: 220px;
    }
}
@media only screen and (max-width: 767px){
    .choise .choise-content{
        height: auto;
    }
    .choise .choise-title{
        width: 100% !important;
    }
}

/* CHOISE--------------ENDS----------------HERE--------------- */

/* COUNTERS--------------START----------------HERE--------------- */

.counter{
    background: #F30000;
    padding: 50px 0;
    margin-top: 60px;
}

.counter h2{
    font-size: 50px;
}

@media only screen and (max-width: 992px){
    .counter .counter-content{
        margin: 20px 0;
    }
}
@media only screen and (max-width: 767px){
    .counter h2{
        font-size: 40px;
    }
    .counter span{
        font-size: 13px;
    }
}

/* COUNTERS--------------ENDS----------------HERE--------------- */

/* FAQ--------------START----------------HERE--------------- */

.faq .accordion-button{
    color: #000;
    box-shadow: none;
}

.faq .accordion-button:not(.collapsed){
    background: #F30000;
    color: #FFF;
    box-shadow: none;
}

.faq p{
    margin: 10px 15px;
    color: #7a7a7a;
}

.faq .accordion-button:not(.collapsed)::after{
    content: "";
    background-image: url(../images/faq-arrow.svg);
}

@media only screen and (max-width: 992px){
    .faq h2{
        font-size: 20px;
    }
    .faq p {
        font-size: 14px;
    }
    .faq h6{
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .faq h2{
        text-align: center;
    }
    .faq .faq-content{
        margin: 20px 0;
    }
    .faq img{
        height: auto;
    }
}

/* FAQ--------------ENDS----------------HERE--------------- */

/* GET--------------START----------------HERE--------------- */

.get .container{
    background: linear-gradient(310deg, #000000 0%, #F30000 100%);
    padding: 40px 50px;
    border-radius: 20px;
}

.get h3{
    font-size: 24px;
}

.get .g-btn{
    width: 170px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    color: #F30000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
}

.get .g-btn:hover{
    background: #F30000;
    color: #FFF;
}

@media only screen and (max-width: 1200px){    
    .get h3 {
        font-size: 22px;
    }
}
@media only screen and (max-width: 992px){    
    .get p {
        font-size: 14px;
    }
    .get .container {
        padding: 40px;
    }
}
@media only screen and (max-width: 767px){    
    .get .container {
        padding: 30px 12px;
        text-align: center;
    }
    .get .get-content{
        justify-content: center !important;
        margin: 10px 0;
    }
}

/* GET--------------ENDS----------------HERE--------------- */

/* FOOTER-------------START----------------HERE--------------- */

.icn{
    color: #FFF;
    width: 40px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #1E1A1A;
    margin-right:10px;
    text-decoration: none;
}

.icn:hover{
    background: #F30000;
    color: #FFF;
    border-color: #F30000;
}

.footer li a{
    color:#FFF;
    text-decoration: none;
}

.footer li a:hover{
    color: #F30000;
}

@media only screen and (max-width: 1200px){
    .footer li a{
        font-size: 14px;
    }
}
@media only screen and (max-width: 992px){
    .footer .footer-content{
        margin: 20px 0;
    }
}

/* FOOTER--------------ENDS----------------HERE--------------- */

/* ABOUT--------------PAGE-----------------START----------------HERE--------------- */

/* BANNER_2--------------START----------------HERE--------------- */

.banner-2{
    background: linear-gradient(310deg, #000000 0%, #F30000 100%);
    padding: 60px 0;
}

.banner-2 h2{
    font-size: 50px;
}

/* BANNER_2--------------ENDS----------------HERE--------------- */

/* CONTACT--------------START----------------HERE--------------- */

.contact #name{
    width: 100%;
    height: 40px;
    padding: 0 10px;    
    margin-bottom: 15px;
    border: 1px solid #bdbdbd;
    border-radius: 5px;
} 

.contact #name:focus{
    outline: none;
}

.contact label{
    margin-bottom: 6px;
    color:#7a7a7a;
}

.contact .icn{
    color: #000000;
}

.contact .icn:hover{
    color: #FFF;
}

@media only screen and (max-width: 992px){
    .contact h3{
        font-size: 20px !important;
    }
}
@media only screen and (max-width: 767px){
    .contact p{
        font-size: 14px;
    }
    .contact .contact-content{
        margin: 20px 0;
        text-align: center;
    }
    .contact .icns{
        justify-content: center;
    }
    .contact .bttn{
        margin: 0 auto;
    }
}

/* CONTACT--------------ENDS----------------HERE--------------- */

/* MARKET--------------START---------------HERE--------------- */

.market h3{
    color: #F30000;
    font-size: 25px;
}

.market img{
    height: 190px;
    object-fit: cover;
}

.market .mark-content{
    background: #FFF;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
    height: 430px;
    border: 1px solid #dfdfdf;
}

.market .mark-content:hover{
    transform: translateY(-10px);
    box-shadow: 0 0 10px rgba(107, 107, 107, 0.329);
}

@media only screen and (max-width: 992px){
    .market p{
        font-size: 14px;
    }
    .market h3{
        font-size: 20px;
    }
    .market .mark-content{
        height: 390px;
    }
}

@media only screen and (max-width: 767px){
    .market .mark-content{
        height: auto;
    }
}

/* MARKET--------------ENDS----------------HERE--------------- */

/* BLOG-------------START--------------HERE------------------ */

.blog .blog-txt {
    background: #EDEDED;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.blog h4{
    font-size: 21px;
}

.blog img {
    height: 250px;
    border-radius: 10px 10px 0 0;
    margin: 0  !important;
}

.blog .tag {
    font-size: 12px;
    background: #F30000;
    color: #fff;
    padding: 3px 8px;
    border-radius: 12px;
    margin-right: 8px;
}

.blog .date {
    font-size: 12px;
    color: #555;
}

.blog .read-more {
    color: #F30000 ;
    cursor: pointer;
}

/*.popup {*/
/*    position: fixed;*/
/*    top: 0; left: 0; right: 0; bottom: 0;*/
/*    background: #FFF;*/
/*    display: none;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    z-index: 1000;*/
/*}*/

/*.popup h4{*/
/*    color: #000000;*/
/*    font-weight: 600;*/
/*    margin-bottom: 15px;*/
/*}*/

/*.popup p{*/
/*    color: #5C5F61;*/
/*}*/

/*.popup h2{*/
/*    background: #F30000;*/
/*    padding: 60px 0;*/
/*}*/

/*.popup h3{*/
/*    width: 75%;*/
/*}*/

/*.popup .popup-content {*/
/*    width: 100%;*/
/*    position: relative;*/
/*    max-height: 100vh;*/
/*    overflow-y: auto;*/
/*    text-align: left;*/
/*}*/

/*.popup .popup-info{*/
/*    width: 80%;*/
/*    margin: 0 auto;*/
/*    padding: 60px 0;*/
/*}*/

/*.popup .popup-content img {*/
/*    width: 600px;*/
/*    max-height: 350px;*/
/*    border-radius: 8px;*/
/*    margin-bottom: 30px;*/
/*}*/

/*.popup .popup-content .tag {*/
/*    font-size: 12px;*/
/*    background: #F30000;*/
/*    color: #fff;*/
/*    padding: 3px 8px;*/
/*    border-radius: 12px;*/
/*    margin-right: 8px;*/
/*}*/

/*.popup .popup-content .date {*/
/*    font-size: 12px;*/
/*    color: #555;*/
/*}*/

/*.popup  .close-btn {*/
/*    position: absolute;*/
/*    top: 10px; right: 10px;*/
/*    cursor: pointer;*/
/*}*/

@media only screen and (max-width: 1200px){
    .blog h4{
        font-size: 17px;
    }
    .blog p{
        font-size: 14px;
    }
}
@media only screen and (max-width: 992px){
    .blog p{
        font-size: 16px;
    }
    .blog .blog-content{
        margin: 15px 0;
    }
    .details .dtl-content{
        width:100% !important;
    }
    .details p ,ol li{
        font-size: 14px;
    }
    /*.popup .popup-content img{*/
    /*    width: 100%;*/
    /*}*/
    /*.popup h3{*/
    /*    width: 100%;*/
    /*}*/
}
@media only screen and (max-width: 767px){
    .blog p{
        font-size: 14px;
    }
    /*.popup .popup-info{*/
    /*    width: 95%;*/
    /*}*/
    /*.popup h3{*/
    /*    font-size: 18px;*/
    /*}*/
    /*.popup h4{*/
    /*    font-size: 18px;*/
    /*}*/
    /*.popup p{*/
    /*    font-size: 14px;*/
    /*}*/
}

/* BLOG-------------EDNS--------------HERE------------------ */

/* PRODUCT-------------START--------------HERE------------------ */

.pro .img-1{
    width: 350px;
    margin: 0 auto;
    display: block;
}

.pro h2{
    color: #F30000;
    font-size: 35px;
}

.pro p{
    color: #7a7a7a;
}

@media only screen and (max-width: 992px){
    .pro h2{
        font-size: 30px;
    }
    .pro p{
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .pro .pro-content{
        margin: 20px 0;
        text-align: center;
    }
    .pro .img-1{
        width: 300px;
    }
    .pro .bttn{
        margin: 0 auto;
    }
}

/* PRODUCT-------------EDNS--------------HERE------------------ */

/* LOAD-------------START--------------HERE------------------ */
.load{
    background: #00000085;
    backdrop-filter: blur(4px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    z-index: 3;
    display: flex;
    align-items: center;
}

.load .row{
    background: #FFF;
    width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.load h2{
    font-size: 25px;
}

.load form{
    border: 1px solid #F30000;
    width: 100%;
    height: 45px;
}

.load #email{
    border: none;
    width: 70%;
    height: 45px;
    padding: 0 10px;
    background: transparent;
    font-size: 14px;
}

.load #email:focus{
    outline: none;
}

.load .load-hide{
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

@media only screen and (max-width: 767px){
    .load .row{
        width: 100%;
        padding: 20px 0px;
    }
    .load img.w-100 {
        width: 150px !important;
        margin: 0 auto;
        display: block;
    }
    .load-content.mt-3 {
        text-align: center;
    }
    .load h2 {
        font-size: 20px;
    }
}

/* LOAD-------------EDNS--------------HERE------------------ */

/* ABOUT--------------PAGE-----------------ENDS----------------HERE--------------- */