@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    overflow-x: hidden;
    width: 100%;
}
section{
    width: 100%;
    overflow-x: hidden;
}
p{
    line-height: 28px;
}
:root{
    --font-primary: 'Poppins', sans-serif;
}
a{
    text-decoration: none;
    transition: all 400ms;
    display: inline-block;
}
.h1{
    font-size: 35px;
}
.h2{
    font-size: 38px;
}
.h3{
    font-size: 34px;
}
.h4{
    font-size: 32px;
}
.h5{
    font-size: 25px;
}
.h6{
    font-size: 19px;
}
@media  only screen and (max-width:890px) {
    .h1{
        font-size: 35px;
    }
    .h2{
        font-size: 28px;
    }
    .h3{
        font-size: 25px;
    }
    .h4{
        font-size: 22px;
    }
    .h5{
        font-size: 18px;
    }
    .h6{
        font-size: 16px;
    }
}
.section-pad{
    padding: 4rem 0;
}
.section-pad-2 .row{
    display: revert;
}
.section-pad-2 .col-lg-6.f-img {
    width: 50%;
    flex: none;
    float: left;
    padding-right: 35px;
    padding-bottom: 13px;
}
.section-pad-2 .col-lg-6.f-text {
    width: 100%;
    flex: none;
}
/* .text-red{
    color: #00ae00 !important;
    font-size: 23px;
} */
a.h2.text-red {
    color: #00ae00;
    font-size: 23px;
}
.pd-1{
    padding: 1rem;
}
.sm-title{
    font-size: 16px;
    /* margin-bottom: 8px; */
    font-weight: 600;
    color: black;
    display: inline-block;
}
.title-h{
    font-weight: 700;
    display: block;
    font-family: var(--font-primary);
}
.para{
    font-size: 16px;
    margin-top: 8px;
    color: black;
    display: inline-block;
}
.home-banner{
    margin-top: -40px;
}

/* header start */
.NavBar-Box{
    height: fit-content;
    width: 100%;
    background: rgb(121 2 7);
    padding: .75rem 3% 0;
}
.Header{
    height: fit-content;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .8rem;
    padding-top: 0;
}
.head-cont{
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding-left: 0;
}
.head-cont li{
    padding: .5rem;
    display: flex;
    align-items: center;
    margin-right: 15px;
}
.head-cont img{
    width: 1.5rem;
    height: auto;
    margin-right: 8px;
}
.head-cont a{
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}
.head-cont a:hover{
    color: #fff;
}

.head-scl{
    display: flex;
    align-items: center;
    margin: 0;
}
.head-scl li{
    display: flex;
    align-items: center;
    margin-right: 18px;
}
.head-scl li img{
    width: 2.5rem;
    transition: all 400ms;
}
.head-scl li img:hover{
    transform: scale(1.22);
}
.Nav-Bar{
    width: 100%;
    padding: 4px 6px;
    background: white;
    position: relative;
    z-index: 99;
    border-radius: 5px;
}
.comp-logo{
    max-height: 80px;
    width: auto;
    transition: all 400ms;
}
.comp-logo:hover{
    transform: scale(1.045);
}
.menu-list{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    list-style: none;
    margin-bottom: 0;
    height: 100%;
}
.menu-list li a{
    padding: 26px 4px;
    font-size: 17px;
    font-weight: 600;
    color: black;
}
.menu-list li a.active,
.menu-list li a:hover{
    color: #790104;
}
.has-drp-down{
    position: relative;
}
.has-drp-down:hover .sub-menu-list{
    visibility: visible;
    opacity: 1;
}
.sub-menu-list{
    list-style: none;
    margin-bottom: 0;
    list-style: none;
    position: absolute;
    top: 5.55rem;
    left: 0;
    z-index: 4;
    padding: 0;
    background: black;
    transition: all 350ms;
    width: 18rem;
    height: fit-content;
    max-height: 65vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
}
.sub-menu-list li a{
    font-size: 16px;
    font-weight: 600;
    color: white;
    padding: 10px 38px;
    display: inline-block;
    border-bottom: 1px solid gray;
    width: 100%;
}

.sub-menu-list li a:hover{
    background: white;
}
.query-btn-box{
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: end;
}
.query-btn{
    padding: 9px 32px !important;
    height: fit-content !important;
    width: fit-content !important;
    font-size: 17px;
    font-weight: 600;
    color: white !important;
    background: #790104;
    border-radius: 9px;
    text-transform: uppercase;
    border: none;
}
.query-btn:hover{
    background: black;
}
.menu-btn{
    width: fit-content;
    height: fit-content;
    font-size: 24px;
    color: black;
    margin-right: 12px;
    display: none;
}
@media  only screen and (max-width:890px) {
    .query-btn{
        display: none;
    }
    .Header{
        flex-wrap: wrap;
    }
    .head-cont{
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
    .head-scl{
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: .6rem;
    }

}

@media  only screen and (max-width:650px) {
    .menu-btn{
        display: flex;
        position: relative;
        z-index: 15;
    }
    .menu-list{
        flex-direction: column;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        overflow: hidden;
        width: 65vw;
        height: 100vh;
        background: black;
        padding-top: 2.6rem;
        transition: all 400ms;
        transform: translateX(-100vw);
    }
    .menu-phn-on{
        transform: translateX(0);
    }
  
    .menu-list li{
        width: 100%;
    }
    .menu-list li a{
        padding:9px 15px;
        color: white;
    }
    .sub-menu-list{
        position: static;
        top: unset;
        left: unset;
        z-index: 4;
        width: 100%;
        height: 0;
    }
    .has-drp-down:hover .sub-menu-list{
        height: fit-content;
    }
}
/* header end */

/* banner start */
.ban-anm{
    width: 100%;
    overflow: hidden;
}
.ban-anm img{
    width: 100%;
    height: auto;
    transition: all 6s linear;
    transform: scale(1);
}
.ban-anm.swiper-slide-active img{
    transform: scale(1.12);
}
/* banner end */

.abt-list{
    width:48%;
    padding-left: 2.6rem;
    font-size: 18px;
    color: black;
    font-weight: 600;
    margin-top: 12px;
    display: inline-block;
    position: relative;
    padding-top: 5px;
}
.abt-list::before{
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 2.2rem;
    height: 2.2rem;
    background-size: cover;
    background-repeat: no-repeat;
    background: url(../image/img/icons/Check.png);
}
.line-red{
    display: flex;
    align-items: center;
}
.line-red .first-sp{
    height: 6px;
    width: 90px;
    background: #06ac06;
    margin-right: 10px;
}
.line-red .scnd-sp{
    height: 6px;
    width: 50px;
    background: gray;
    margin-right: 10px;
}
.exp-abt{
    width: 100%;
    background: white;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 1px 1px 4px black;
}
.grp-exp{
    width: 85%;
    margin: auto;
}

.bg-feat{
    position: absolute;
    top: 0;
    left: 0;
    width: 98%;
    height: 100%;
    z-index: -1;
}
.count-box{
    width: 100%;
    padding: 2rem .8rem 1.6rem 1.6rem;
    border-radius: 26px;
    background: #e9e9e9;
    margin: 8px 0;
    transition: ease-in-out .3s;
}
.count-box img{
    width: 100%;
    margin: auto;
}
.count-box div{
    height: fit-content;
}
.count-box:hover{
    background-color: #790104;
}
.extra_img{
    margin:50px 0;
}
.extra_img img{
    width:100%;
}

.count-box:hover .h2{
    color: #fff;
}
.count-box:hover p{
    color: #fff;
}
.trust-box{
    height: 555px;
    width: 100%;
    box-shadow: 0px 0px 4px gray;
    margin-bottom: 1.8rem;
}
.trust-box img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.trust-cont{
    width: 100%;
    padding: 1rem;
    padding-top: 3.5rem;
    position: relative;
}
.trust-cont::before{
    content: "";
    position: absolute;
    top: 0;
    left: 30%;
    z-index: 2;
    height: 16px;
    width: 40%;
    background: #790104;
}
.trust-cont .p{
    font-size: 14px;
    margin-top: 1rem;
    color: rgb(35, 34, 34);
    font-weight: 500;
}
.trust-quote{
    font-size: 18px;
    color: gray;    
}
.trust-quote a{
    text-decoration: underline;
    color: gray;
    display: inline;
}
.security-sect{
    margin-top: 5rem;
    background: #e9e9e9;
    overflow: visible;
    padding-top: 1rem;
}
.security-img{
    width: 100%;
    margin-top: -5.5rem;
}

.security-list{
    padding-left: 3.1rem;
    font-size: 18px;
    color: black;
    font-weight: 600;
    margin-top: 18px;
    position: relative;
    padding-top: 5px;
}
.security-list::before{
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 2.5rem;
    height: 2.5rem;
    background-size: 100% !important;
    background-repeat: no-repeat;
    background: url(../image/img/icons/check2.png);
}

.product-section{
    padding: 4rem 0;
    position: relative;
}
.cam-left{
    width: 4.5rem;
    height: auto;
    position: absolute;
    top: 3.5rem;
    left: 0;
    z-index: 2;
}
.cam-right{
    width: 4.5rem;
    height: auto;
    position: absolute;
    top: 3.5rem;
    right: 0;
    z-index: 2;
}
.product-section::before{
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: 100% !important;
    background-repeat: no-repeat;
    background: linear-gradient(rgba(0, 0, 0, 0.392),rgba(0, 0, 0, 0.392)), url(../image/img/bg/bg-pd.jpg);
    /* opacity: .4; */
}
.pd-box{
    width: 100%;
    margin-bottom: 3.5rem;
}

.pd-box img{
    width: 100%;
    background: white;
    border-radius: 11px;
    transition: all 450ms;
}
.pd-box img:hover{
    transform: scale(1.045);
}
.pd-nam-bx{
    width: 80%;
    margin: auto;
    text-align: center;
    background: rgb(204, 31, 31);
    border-radius: 16px;
    transform: skew(-12deg);
    margin-top: -1.6rem;
    transition: all 400ms;
}
.pd-nam-bx:hover{
    background: white;
    box-shadow: 0px 0px 8px black;
}
.pd-nam-bx:hover .pd-name{
    color: #790104;
}
.pd-name{
    font-size: 19px;
    color: #fff;
    font-weight: 600;
    padding: 1rem;
    width: 100%;
}
.contact-sect .ft-contact{
    color: #000;
}

.contact-sect{
    background-size: cover;
    background-repeat: no-repeat;
}
.contact-box{
    background: white;
    padding: 2rem;
}

.contact-form{
    width: 100%;
    margin-top: 1.2rem;
}
.contact-form label{
    font-weight: 600;
}
.contact-form textarea{
    height: 150px;
}
.form-input{
    width: 100%;
    margin-bottom: 1.5rem;
    margin-top: 5px;
    padding: 10px 22px;
    border: 1px solid black;
}

.client-section{
    background-size: cover;
    background-repeat: no-repeat;
    background: #cfcfcf;
}
.client-slider .swiper-slide img{
    height:280px;
    object-fit:cover;
    pointer:cursor;
}
.Footer{
    background: black;
    padding-top: 2.8rem;
}
.ft-logo-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ft-logo-line{
    height: 10px;
    width: 42%;
    background: white;
}
.ft-logo{
    width: 14%;
    text-align: center;
}
@media  only screen and (max-width:800px) {
    .ft-logo-line{
        height: 5px;
        width: 32%;
        background: white;
    }
    .ft-logo{
        width: 30%;
    }
}
.ft-logo img{
    width: 70%;
    background: #e9e9e9;
    border-radius: 16px;
    padding: 10px;
    transition: all 450ms;
}
.ft-logo img:hover{
    transform: scale(1.045);
}
.ft-link-list{
    list-style: none;
    margin-top: 12px;
    padding-left: 0;
}
.ft-link-list li{
    margin-bottom: 12px;
    list-style: none !important;
}
.ft-links{
    padding-left: 1.8rem;
    font-size: 16px;
    font-weight: 600;
    color: white;
    position: relative;
    display: inline-block;
}
.ft-links:hover{
    color: #00ae00;
}
.ft-links::before{
    position: absolute;
    left: 0;
    top: 3px;
    content: '';
    width: 1.35rem;
    height: 1.35rem;
    background-size: 100% !important;
    background-repeat: no-repeat;
    background: url(../image/img/icons/Target.png);
}

.ft-contact{
    padding-left: 2.2rem;
    font-size: 16px;
    font-weight: 600;
    color: white;
    position: relative;
    display: inline-block;
}
a.ft-contact:hover{
    color: #790104;
}
.ft-contact::before{
    position: absolute;
    left: 0;
    top: 3px;
    content: '';
    width: 1.35rem;
    height: 1.35rem;
    background-size: 100% !important;
    background-repeat: no-repeat;
}
.ft-contact.addr::before{
    background: url(../image/img/icons/placeholder.png);
}
.ft-contact.conta::before{
    background: url(../image/img/icons/phone.png);
}
.ft-contact.mail::before{
    background: url(../image/img/icons/emailft.png);
}
.copybox{
    width: 100%;
    background: rgb(217, 214, 214);
    text-align: center;
    padding: .86rem;
}
.copybox p{
    font-size: 16px;
    font-weight: 600;
    color: black;
    text-align: center;
    margin-bottom: 0;
}
.copybox p a{
    color: #790104;
    margin-left: 10px;
    font-weight: 700;
}

.bread-crumb{
    padding: 6.2rem 8%;
    background: linear-gradient(rgba(11, 11, 11, 0.422),rgba(11, 11, 11, 0.422)),url(../image/img/bg/breadcrumb.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.bread-crumb h1{
    font-size: 48px;
    font-weight: 600;
    color: white;
}
.bread-c-links{
    width: fit-content;
    height: fit-content;
    padding: 10px 21px;
    display: flex;
    align-items: center;
    border: 2px solid white;
    background: black;
    margin-top: 1rem;
}
.bread-c-links a{
    font-size: 18px;
    color: #00ae00;
}
.bread-c-links span{
    font-size: 18px;
    color: white;
    margin-left: 18px;
}
.market-btn{
    width: 100%;
    padding: 15px 25px;
    background: black;
    color: white;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    border: 1px solid white;
    box-shadow: 0px 0px 4px #790104;
    transition: all 400ms;
    margin-bottom: 1.5rem;
}
.market-btn:hover{
    color: #fff;
    border: 1px solid #790104;
    box-shadow: 0px 0px 4px black;
}



@media  only screen and (max-width:500px) {
    .abt-list{
        width:100%;
    }
    .trust-box{
        height: auto;
    }
    .head-cont{
        display: none;
    }
    .comp-logo {
        max-height: 60px;
    }
    .home-banner {
        margin-top: 0px;
    }
    .h1 {
        font-size: 25px;
    }
}

.what-app {
    position: fixed;
    z-index: 99;
  }
  
  .btn-whatsapp-pulse-border {
    bottom: 30px;
    right: 20px;
    animation-play-state: paused;
  }
  
  .btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 35px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
  }
  
  .btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 25px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
  }
  
  .what-app i {
    font-size: 54px;
    color: #fff;
  }
  
  @keyframes pulse-border {
    0% {
      padding: 25px;
      opacity: 0.75;
    }
  
    75% {
      padding: 50px;
      opacity: 0;
    }
  
    100% {
      opacity: 0;
    }
  }
  
 /*--------------------------------SHARE API---------------------*/
    .share-btn {
            font-size: 26px;
            font-weight: 600;
            color: black;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .social-share {
            width: fit-content;
            height: fit-content;
        }

        .social-share ul {
            display: flex;
            align-items: center;
            gap: 12px;
            list-style: none;
            padding-left: 0;
        }

        .social-share ul li button,
        .social-share ul li a {
            color: #fff;
            font-size: 19px;
            line-height: 24px;
            height: 24px;
            width: 34px;
            text-align: center;
            padding: 4px 8px !important;
            border-radius: 3px;
            text-transform: capitalize;
            display: block;
            height: fit-content;
            box-shadow: none;
            border: none;
            outline: none;
            cursor: pointer;
        }

        .social-share ul li button:hover,
        .social-share ul li a:hover {
            opacity: 0.8;
        }

        .social-share ul li button.facebook,
        .social-share ul li a.facebook {
            background: #3B5999;
        }

        .social-share ul li button.twitter,
        .social-share ul li a.twitter {
            background: #1DA1F2;
        }

        .social-share ul li button.whatsapp,
        .social-share ul li a.whatsapp {
            background: #20cb45;
        }

        .social-share ul li a.google-plus {
            background: #fe6d4c;
        }

        .social-share ul li button.linkedin,
        .social-share ul li a.linkedin {
            background: #0a66c2;
        }

        .social-share ul li button.telegram {
            background: #0a9ac2;
        }

        .social-share ul li button.email {
            background: #c2410a;
        }
        
        .ft_cont{
            color:#000;
        }