@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600;700&family=Open+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bubblegum+Sans&display=swap');

:root{
    --primary-font: 'Josefin Sans', sans-serif;
    --secondary-font: 'Bubblegum Sans', cursive;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    scroll-behavior: smooth;
}
a{
    text-decoration: none;
    color: #000;
}
a:hover{
    color: #000;
}
.fields{}

.fields span.alert-msg{
    background: #ef7a7a;
    display: block;
    padding: 6px 0;
    color: #fff;
    text-align: center;
}
.fields-btn span.alert-msg{
    background: green;
}
.fields span.alert-msg .loading{
    width: 30px;
    height: 30px;
    border: 4px solid #fff;
    margin: auto;
    border-radius: 50%;
    border-top-color: transparent;
    border-bottom-color: transparent;
    animation: loading 2s linear infinite alternate;
}

@keyframes loading{
    0%{
        transform: rotate(0deg);
    }
    50%{
        transform: rotate(360deg);
    }
    100%{
        transform: rotate(0deg);
    }
}



.maintitle{padding: 10px 0 25px;}
.maintitle.pageheader{padding: 0 0 25px;}
.maintitle h2{
    font-size: 30px;
    margin: 0;
    font-weight: 600;
    font-family: var(--primary-font);
    display: inline-block;
    position: relative;
    padding-left: 10px;
}
.maintitle.pageheader h2{
    font-size: 22px;
}
.maintitle h2:before{
    content: "";
    height: 100%;
    width: 3px;
    background: #00362c;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/*================= breadcrumb-section ============*/
.breadcrumb-section{
    background: #f4f4f4;
    padding: 10px 0;
}
.breadcrumb-section .breadcrumb{
    margin: 0;
}
.breadcrumb-section .breadcrumb > span{
    font-size: 14px;
    display: flex;
    align-items: center;
    color: #bfbfbf;
}
.breadcrumb-section .breadcrumb > span.pvsuccess{
    color: green;
    font-weight: 600;
}
.breadcrumb-section .breadcrumb > span > i{
    font-size: 16px;
    display: block;
    padding: 0 10px;
}

/*================= pageheader-section ============*/
.pageheader-section{}
.pageheader-section .pageheader{}
.pageheader-section .pageheader > span{}





/*================= header ============*/
header{
    background: #00362c;
}
header.active{
    background: #fff;
    position: fixed;
    top:0;
    width: 100%;
    z-index: 99;
    box-shadow: 0 0 8px 3px rgb(0 0 0 / 5%);
}
header .logo{
    padding: 15px 0;
}
header .logo a{
    font-size: 25px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}
header.active .logo a{
    color: #000;
}
header .defaultlogo{display:block;width: 100%;}
header .activelogo{display:none;width: 100%;}
header.active .defaultlogo{display:none;}
header.active .activelogo{display:block;}

header .menu{
    display: flex;
    justify-content: end;
}
header .menu > ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}
header .menu > ul > li{
    padding: 0 5px;
}
header .menu > ul > li > a{
    padding: 35px 20px;
    display: block;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    position: relative;
    z-index: 1;
}
header.active .menu > ul > li > a{
    color: #000;
}
header .menu > ul > li > a:before{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    content: "";
    width: 30px;
    height: 30px;
    background: #289f89;
    border-radius: 50%;
    z-index: -1;
    transition: .4s;
}
header .menu > ul > li > a.active:before,
header .menu > ul > li > a:hover:before{
    transform: translate(-50%, -50%) scale(1);
}
header .verify-btn{
    display: flex;
    justify-content: end;
}
header .verify-btn > a{
    background: #228976;
    padding: 34px 20px;
    display: inline-block;
    font-size: 17px;
    color: #fff;
}
header .verify-btn > a:hover{
    background: #00725d;
}




/*================= slider ============*/
.slider{}
.slider .slider-img{
    position: relative;
    overflow: hidden;
}
.slider .slider-img:before{
    position: absolute;
    top:0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    /* background: rgb(0 0 0 / 60%); */
}
.slider .slider-img img{
    width: 100%;
}
.slider .slider-img .slider-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    text-align: center;
}
.slider .slider-img .slider-content .slider-title{}
.slider .slider-img .slider-content .slider-title h1{
    margin: 0;
    color: #fff;
    font-weight: 700;
    font-size: 55px;
}
.slider .slider-img .slider-content .slider-desc{}
.slider .slider-img .slider-content .slider-desc h3{
    margin: 0;
    font-size: 33px;
    color: #fff;
}

/*================= aboutus section ============*/
.aboutus-section{
    padding: 0 0 30px;
    position: relative;
    height: 400px;
}
.aboutus-section .left-about-sec{
    position: absolute;
    top: 0;
    left: 16%;
    background: rgb(0 0 0 / 5%);
    padding: 20px;
    border-radius: 20px;
}
.aboutus-section .left-about-sec .title{}
.aboutus-section .left-about-sec .title h2{
    font-size: 30px;
    font-family: var(--primary-font);
    font-weight: 600;
    margin: 0;
}
.aboutus-section .left-about-sec .subtitle{}
.aboutus-section .left-about-sec .subtitle h5{
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}
.aboutus-section .left-about-sec .content{
    padding: 10px 0;
}
.aboutus-section .left-about-sec .content > ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.aboutus-section .left-about-sec .content > ul > li{
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.aboutus-section .left-about-sec .content > ul > li:before{
    content: "";
}
.aboutus-section .left-about-sec .verify-btn{
    padding: 20px 0;
}

.aboutus-section .left-about-sec .verify-btn > a{
    border: 2px solid #000;
    padding: 5px 15px;
    color: #000;
    display: inline-block;
    width: 250px;
    position: relative;
    z-index: 1;
    font-weight: 600;
    overflow: hidden;
    text-align: center;
}
.aboutus-section .left-about-sec .verify-btn > a:hover{
    color: #ffffff;
}
.aboutus-section .left-about-sec .verify-btn > a:before{
    content: "";
    width: 100%;
    height: 100%;
    background: #00362c;
    position: absolute;
    top:0;
    left:0;
    z-index: -1;
    transform-origin: bottom left;
    transform: rotate(-45deg);
    transition: .4s;
}
.aboutus-section .left-about-sec .verify-btn > a:hover:before{
    transform: rotate(0deg);
}

.aboutus-section .right-about-sec{
    position: absolute;
    bottom: 30px;
    right: 16%;
    border-radius: 20px;
    overflow: hidden;
}
.aboutus-section .right-about-sec img{
    width: 100%;
    height: 100%;
}

/*================= company-section ============*/
.company-section{
    padding: 20px 0;
    box-shadow: inset 0px 0px 8px 5px rgb(0 0 0 / 5%);
}
.company-section .company-img{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
}
.company-section .company-img img{
    width: 100px;
    filter: drop-shadow(2px 4px 6px rgb(0 0 0 / 20%)) grayscale(100%);
    transition: .4s;
}

.company-section .company-img img:hover{
    filter: grayscale(0%);
    margin-top: -10px;
}
/*================= service-section ============*/
.service-section{
    padding: 30px 40px;
}
.service-section .title{}
.service-section .title h2{}
.service-section .ser-box{
    /* background: #ccc; */
    padding: 30px 0;
    display: flex;
    align-items: start;
    height: 149px;
    box-shadow: 3px 6px 10px 5px rgb(0 0 0 / 4%);
}
.service-section .ser-box .ser-icon{
    width: 30%;
    text-align: center;
}
.service-section .ser-box .ser-icon > span{
    font-size: 90px;
    color: #00362c;
}
.service-section .ser-box .content{
    width: 70%;
}
.service-section .ser-box .content .ser-box-title{
    padding: 0 0 5px;
}
.service-section .ser-box .content .ser-box-title > a{
    display: block;
    font-size: 20px;
    font-weight: 600;
}
.service-section .ser-box .content .ser-box-desc{padding-right: 20px;}
.service-section .ser-box .content .ser-box-desc p{
    margin: 0;
    font-size: 15px;
}

.service-section .ser-box.first-box{}
.service-section .ser-box.first-box .ser-icon{}
.service-section .ser-box.first-box .ser-icon > span{}
.service-section .ser-box.first-box .content{}
.service-section .ser-box.first-box .content .ser-box-title{}
.service-section .ser-box.first-box .content .ser-box-title > a{}
.service-section .ser-box.first-box .content .ser-box-desc{}
.service-section .ser-box.first-box .content .ser-box-desc p{}

.service-section .ser-box.second-box{}
.service-section .ser-box.second-box .ser-icon{}
.service-section .ser-box.second-box .ser-icon > span{}
.service-section .ser-box.second-box .content{}
.service-section .ser-box.second-box .content .ser-box-title{}
.service-section .ser-box.second-box .content .ser-box-title > a{}
.service-section .ser-box.second-box .content .ser-box-desc{}
.service-section .ser-box.second-box .content .ser-box-desc p{}

/*================= verify section ============*/
.verify-section{
    padding: 20px;
    background: #00362c;
}
.verify-section .verify-now{}
.verify-section .verify-now .maintitle{}
.verify-section .verify-now .maintitle h2{
    color: #fff;
}
.verify-section .verify-now .maintitle h2:before{
    background: #fff;
}
.verify-section .verify-now .desc{
    text-align: center;
}
.verify-section .verify-now .desc p{
    color: #fff;
}
.verify-section .verify-now .verify-btn{
    text-align: center;
    padding: 10px 0;
}
.verify-section .verify-now .verify-btn > a{
    border: 2px solid #fff;
    padding: 5px 15px;
    color: #fff;
    display: inline-block;
    width: 250px;
    position: relative;
    z-index: 1;
    font-weight: 600;
    overflow: hidden;
}
.verify-section .verify-now .verify-btn > a:hover{
    color: #00362c;
}
.verify-section .verify-now .verify-btn > a:before{
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top:0;
    left:0;
    z-index: -1;
    transform-origin: bottom left;
    transform: rotate(-45deg);
    transition: .4s;
}
.verify-section .verify-now .verify-btn > a:hover:before{
    transform: rotate(0deg);
}

/*================= counting-section ============*/
.counting-section{
    padding: 50px 0 20px;
}
.counting-section .title{
    padding: 0 0 30px;
}
.counting-section .title h2{
    margin: 0;
    font-size: 26px;
    font-family: var(--primary-font);
}
.counting-section .counting-box{
    border: 1px solid #ffbc001c;
    border-radius: 10px;
    margin: 0 0 20px;
    padding: 50px 20px 20px;
    position: relative;
    background: #00362c;
    overflow: hidden;
}
.counting-section .counting-box:before{
    content: "";
    width: 100px;
    height: 100px;
    background: #fff;
    position: absolute;
    top: -30px;
    right: -30px;
    border-radius: 50%;
}
.counting-section .counting-box > span{
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 35px;
    color: #00362c;
}
.counting-section .counting-box .count-no{
    text-align: center;
    padding: 0 0 20px;
}
.counting-section .counting-box .count-no h1{
    margin: 0;
    font-size: 40px;
    font-family: var(--primary-font);
    color: #fff;
}
.counting-section .counting-box .counting-box-title{
    padding: 0 0 10px;
}
.counting-section .counting-box .counting-box-title h4{
    margin: 0;
    font-size: 19px;
    font-weight: 600;
    color: #f7b30b;
}
.counting-section .counting-box .counting-box-desc{}
.counting-section .counting-box .counting-box-desc p{
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    margin: 0;
    color: #fff;
}

.counting-section .counting-box.first-box{}
.counting-section .counting-box.first-box > span{}
.counting-section .counting-box.first-box .count-no{}
.counting-section .counting-box.first-box .count-no h1{}
.counting-section .counting-box.first-box .counting-box-title{}
.counting-section .counting-box.first-box .counting-box-title h4{}
.counting-section .counting-box.first-box .counting-box-desc{}
.counting-section .counting-box.first-box .counting-box-desc p{}

.counting-section .counting-box.second-box{}
.counting-section .counting-box.second-box > span{}
.counting-section .counting-box.second-box .count-no{}
.counting-section .counting-box.second-box .count-no h1{}
.counting-section .counting-box.second-box .counting-box-title{}
.counting-section .counting-box.second-box .counting-box-title h4{}
.counting-section .counting-box.second-box .counting-box-desc{}
.counting-section .counting-box.second-box .counting-box-desc p{}

.counting-section .counting-box.third-box{}
.counting-section .counting-box.third-box > span{}
.counting-section .counting-box.third-box .count-no{}
.counting-section .counting-box.third-box .count-no h1{}
.counting-section .counting-box.third-box .counting-box-title{}
.counting-section .counting-box.third-box .counting-box-title h4{}
.counting-section .counting-box.third-box .counting-box-desc{}
.counting-section .counting-box.third-box .counting-box-desc p{}

.counting-section .counting-box.fourth-box{}
.counting-section .counting-box.fourth-box > span{}
.counting-section .counting-box.fourth-box .count-no{}
.counting-section .counting-box.fourth-box .count-no h1{}
.counting-section .counting-box.fourth-box .counting-box-title{}
.counting-section .counting-box.fourth-box .counting-box-title h4{}
.counting-section .counting-box.fourth-box .counting-box-desc{}
.counting-section .counting-box.fourth-box .counting-box-desc p{}

/*================= contact ============*/
.contact-section{
    padding: 10px 0 40px;
}
.verify-product-section{
    padding: 20px 0;
}
.contact-section .title{}
.contact-section .title h2{}
.contact-section .map{
}
.contact-section .map iframe{}
.contact-section .contact-form{
    padding: 0 20px;
}
.contact-section .contact-form form{}
.contact-section .contact-form form .fields{
    padding: 0 0 15px;
}
.contact-section .contact-form form .fields label{
    padding: 0 0 2px;
    font-size: 15px;
    font-weight: 600;
}
.contact-section .contact-form form .fields textarea,
.contact-section .contact-form form .fields input{
    border: none;
    background: #21837124;
    border-radius: 0;
    font-size: 14px;
    padding: 10px;
}
.contact-section .contact-form form .fields textarea:focus,
.contact-section .contact-form form .fields input:focus{
    box-shadow: none;
}
.contact-section .contact-form form .fields-btn{
    padding: 15px 0 0;
}
.contact-section .contact-form form .fields input[type='submit']{
    display: block;
    width: 100%;
    padding: 8px;
    color: #fff;
    background: #00362c;
}

/*================= verify form ============*/
.verify-product-section{
    padding: 0 0 40px;
}
.verify-product-section{
    padding: 20px 0;
}
.verify-product-section .title{}
.verify-product-section .title h2{}
.verify-product-section .map{
}
.verify-product-section .map iframe{}
.verify-product-section .verify-form{
    padding: 0 20px;
}
.verify-product-section .verify-form form{}
.verify-product-section .verify-form form .fields{
    margin: 0 0 15px;
    border: 1px solid #dfedeb;
}
.verify-product-section .verify-form form .fields .icon{
    background: #21837124;
    display: flex;
    align-items: center;
    padding: 10px 0;
}
.verify-product-section .verify-form form .fields .icon span{
    width: 40px;
    text-align: center;
    font-size: 25px;
    font-weight: 600;
}
.verify-product-section .verify-form form .fields .icon label{
    padding: 0 0 2px;
    font-size: 15px;
    font-weight: 600;
}

.verify-product-section .verify-form form .fields input{
    border: none;
    border-radius: 0;
    padding: 12px 10px;
    font-size: 15px;
}
.verify-product-section .verify-form form .fields input:focus{
    box-shadow: none;
}
.verify-product-section .verify-form form .fields-btn{
    padding: 15px 0 0;
    margin: 0;
    border: none;
}
.verify-product-section .verify-form form .fields input[type='submit']{
    display: block;
    width: 100%;
    padding: 8px;
    color: #fff;
    background: #00362c;
}

.verify-msg-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}
.verify-msg-box.active{
    display: flex;
}
.verify-msg-box .verify-successful-msg{
    width: 30%;
    padding: 20px 30px;
    box-shadow: 0 0 10px 5px rgb(0 0 0 / 5%);
}
.verify-msg-box .verify-successful-msg .success-img{
    text-align: center;
    padding: 0 0 20px;
}
.verify-msg-box .verify-successful-msg .success-img img{}
.verify-msg-box .verify-successful-msg .product-detail{
    padding: 20px 0 0;
}
.verify-msg-box .verify-successful-msg .product-detail .pro-info{
    padding: 5px 0;
    display: flex;
    align-items: center;
}
.verify-msg-box .verify-successful-msg .product-detail .pro-info .title{font-size: 16px;font-weight: 600;width: 130px;}
.verify-msg-box .verify-successful-msg .product-detail .pro-info .txt{
    font-size: 15px;
}
.verify-msg-box .verify-successful-msg .product-detail .product-name{}
.verify-msg-box .verify-successful-msg .product-detail .product-name span{}
.verify-msg-box .verify-successful-msg .product-detail .product-name .ptitle{}
.verify-msg-box .verify-successful-msg .product-detail .product-name .ptxt{}
.verify-msg-box .verify-successful-msg .product-detail .company-name{}
.verify-msg-box .verify-successful-msg .product-detail .company-name span{}
.verify-msg-box .verify-successful-msg .product-detail .company-name .ctitle{}
.verify-msg-box .verify-successful-msg .product-detail .company-name .ctxt{}
.verify-msg-box .verify-successful-msg .product-detail .weight-name{}
.verify-msg-box .verify-successful-msg .product-detail .weight-name span{}
.verify-msg-box .verify-successful-msg .product-detail .weight-name .wtitle{}
.verify-msg-box .verify-successful-msg .product-detail .weight-name .wtxt{}
.verify-msg-box .verify-successful-msg .product-detail .original-msg{
    background: #f4f4f4;
    padding: 5px 10px;
    margin: 15px 0;
    color: #be202e;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
}
.verify-msg-box .verify-successful-msg .product-detail .original-msg .omsg{
    font-size: 14px;
}
.verify-msg-box .verify-successful-msg .product-detail .verify-another-product{
    padding: 10px 0;
}
.verify-msg-box .verify-successful-msg .product-detail .verify-another-product a{
    display: block;
    background: #228976;
    color: #fff;
    padding: 5px 0;
    text-align: center;
}



.bottom-to-top{
    position: fixed;
    bottom: 20px;
    right: 25px;
    z-index: 99;
    display: none;
}
.bottom-to-top.active{
    display: block;
}
.bottom-to-top a{
    font-size: 50px;
    color: red;
}

footer{
    background: #000;
    padding: 40px 0;
}
footer .footer-box{}
footer .footer-box .footer-logo{}
footer .footer-box .footer-logo h2{
    color: #fff;
    font-family: var(--primary-font);
    margin: 0;
}
footer .footer-box .social{
    padding: 20px 0;
}
footer .footer-box .social a{
    color: #000;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    margin: 0 10px;
}
footer .footer-box .social a:hover{
    background: #00362c;
    color: #fff;
}
footer .footer-box .social a.bxl-facebook{}
footer .footer-box .social a.bxl-twitter{}
footer .footer-box .social a.bxl-instagram{}
footer .footer-box .social a.bxl-linkedin{}
footer .footer-links-list{padding: 0 0 0 130px;}
footer .footer-links-list .links-title{
    padding: 0 0 20px;
}
footer .footer-links-list .links-title h2{
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-family: var(--primary-font);
}
footer .footer-links-list .list{}
footer .footer-links-list .list > ul{
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}
footer .footer-links-list .list > ul > li{}
footer .footer-links-list .list > ul > li > a{
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;

}
footer .footer-links-list .list > ul > li > a:before{
    content: "\e6a6";
    font-family: 'Pe-icon-7-stroke';
    color: #f7b30b;
    padding-right: 10px;
    transition: .3s;
}
footer .footer-links-list .list > ul > li > a:hover:before{
    font-size: 18px;
}
.bottom-footer{
    background: #00362c;
    padding: 10px 0;
    text-align: center;
}
.bottom-footer p{
    margin:0;
    color: #fff;
}
.bottom-footer p a{
    color: #00ffd0;
}





.banner-section{
    padding: 10px 0 50px;
}
	    .banner-section img{
	        width: 100%;
	        border-radius: 10px;
	        border: 10px solid white;
	        box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
	    }
	    .txt-section{
    padding: 50px 0;
    text-align: center;

}
	    .txt-section img{
    width: 50px;
}
	    .txt-section h1{
    margin: 0;
    font-size: 40px;
    text-transform: uppercase;
    padding-top: 20px;
    font-weight: 200;
    color: red;
    font-family: var(--secondary-font);
}