body{
    font-size: 18px;
}
.font-18px{
    font-size: 18px;
}
.font-24px{
    font-size: 24px;
}
.font-32px{
    font-size: 32px;
}
.fcolor-blue{
    color: blue;
}
.fcolor-green{
    color: rgb(1, 73, 0);
}
.bg-orange{
    background-color: orange;
}
.bg-lightgray{
    background-color: #e6eaed;
}
.banner{
    margin-top: 70px;
    width: 100%;
    height: 1000px;
    background-image: url(../images/banner3.jpg);
    background-position: center ;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.productBanner{
    margin-top: 70px;
    width: 100%;
    height: 300px;
    background-image: url(../images/test_2560X1707.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.bannerText{
    position: absolute;
    left: 0;
    bottom: 50%;
    font-size: 24px;
    font-weight: bold;
    color: aliceblue;
    min-width: 100%;
    text-align: center;
    /* background: rgba(0, 0, 0, 0.5); */
    padding: 30px;
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    background-color: white;
    box-shadow: 1px 1px 9px 1px #9d9d9d52;
}
.global{
    background-image: url(../images/global.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
    display: inline-block;
    margin: 0 10px;
    vertical-align: top;
}
#navbarSupportedContent ul li:hover .SecMenu{
    display: block;
}
.dropdown-menu[data-bs-popper]{
    right: 0px;
    left: auto;
}
.dropdown-item.active,.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: rgb(1, 73, 0);
}
.closeBtn {
    cursor: pointer;
}
.SecMenu{
    display: none;
    position: absolute;
    top: 40px;
    width: 100%;
    left: 0;
    background-color: white;
    padding: 40px 20px 30px;
    box-shadow: 6px 9px 9px 0px #9f9f9f2b;
    z-index: -1;
}
.SecMenu a:hover{
    color: rgb(1, 22, 1);
}
.img{
    max-width: 100%;
}
.card_content_img{
    max-width: 300px;
}
.home-introduction{
    padding: 100px 0;
    overflow: hidden;
}
.home-certification{
    padding: 70px 0;
    overflow: hidden;
}

.home-certification .card{
    min-height: 320px;
    position: relative;
    overflow: hidden;
}
.home-certification .card_content_img-black{
    display: none;
}
.home-certification .card_content{
    z-index: 2;
}
.home-certification .card .card_circle{
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: orange;
    overflow: hidden;
    animation: animateBackground2 0.4s ease-in-out forwards;
    
}
.home-certification .card .card_circle:hover{
    animation: animateBackground 0.4s ease-in-out forwards ;
    color: white;
}
.home-certification .card .card_circle:hover{
    color: white;
}
@keyframes animateBackground{
    0%{

        top: -50px;
        right: -50px;
        width: 100px;
        height: 100px;
    }
    100%{
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
    }

}
@keyframes animateBackground2{
    0%{
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
    }
    100%{
        top: -50px;
        right: -50px;
        width: 100px;
        height: 100px;
    }

}
.home-advanage{
    padding: 50px 0;
    overflow: hidden;
}
.home-product{
    padding: 70px 0;
    overflow: hidden;
}
.home-product .card-img-overlay{
    top: auto;
}
.product-environment{
    padding: 70px 0;
    overflow: hidden;  
    min-height: 780px;
}

.card-title{
    line-height: 1.5;
    min-height: 60px;
}
.card-img-top{
    padding: 1px;
    max-height: 225px;
}
.card-img{
    min-height: 225px;
    text-align: center;

}
#InformationContent .card{
    box-shadow: 3px 3px 10px 3px #00000017;
}

#InformationContent .card:hover{
    animation:scale 0.5s ease-in-out alternate;
    transform:scale(1.05) ;
}
#InformationContent .card .card-body,
.product-environment .card .card-body{
    border-top: 1px solid rgba(198, 195, 195, 0.398);
    min-height: 100px;
}
#InformationContent .card .card-body .card-title {
    min-height: 60px;
}
@keyframes scale{
    0%{
        transform:scale(1.0) ;
    }
    100%{
        transform:scale(1.05) ;
    }

}
.footer{
    padding: 50px 0;
}
/* animation */
.streamer_effect{
    position: absolute;
    width: 500px;
    height: 30px;
    overflow: hidden;
}
.streamer{
    position: absolute;
    display: block;
}
.streamer:nth-child(1){
    filter: hue-rotate(0deg);
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,transparent,#3a86ff);
    animation: animate1 8s linear infinite;
}
@keyframes animate1{
    0%{
        left: -100%;
    }
    50%,100%{
        left: 100%;
    }

}
.streamer:nth-child(2){
    filter: hue-rotate(60deg);
    top: -100%;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg,transparent,#3a86ff);
    animation: animate2 8s linear infinite;
    animation-delay: 2s;
}
@keyframes animate2{
    0%{
        top: -100%;
    }
    50%,100%{
        top: 100%;
    }

}
.streamer:nth-child(3){
    filter: hue-rotate(120deg);
    bottom: 0;
    right: 0;
    width:  100%;
    background: linear-gradient(270deg,transparent,#3a86ff);
    animation: animate3 8s linear infinite;
    animation-delay: 4s;
}
@keyframes animate3{
    0%{
        right: -100%;
        height: 3px;
    }
    50%,100%{
        height: 2px;
        right: 100%;
    }
}
.streamer:nth-child(4){
    filter: hue-rotate(300deg);
    bottom: -100%;
    left: 0;
    width:  3px;
    height:100%;
    background: linear-gradient(360deg,transparent,#3a86ff);
    animation: animate4 8s linear infinite;
    animation-delay: 6s;
}
@keyframes animate4{
    0%{
        bottom: -100%;
    }
    50%,100%{
        bottom: 100%;
    }
}
@media screen and (max-width:1400px) {
    .product-environment{
        min-height: 800px;
    }
    .card-img-top{
        max-height: 194px;
    }
}
@media screen and (max-width:991px) {
    .global{
        background-image: url(../images/global-w.svg);
        background-repeat: no-repeat;
        background-position: center;
        width: 24px;
        height: 24px;
        display: inline-block;
        margin: 0;
    }

    #navbarSupportedContent ul li:hover .SecMenu{
        display: none;
    }
    #navbarSupportedContent{
        width: 40%;
        position: absolute;
        right: 0px;
        top: 0px;
        background: #000000cf;
        padding: 10px;
        color: white;
        /* animation-delay:300ms; */
        animation: slideleft 1.5s linear ;
        z-index: 20;
    }
    #navbarSupportedContent ul{
        height: 1000px;
    }
    #navbarSupportedContent ul li a{
        background: #00000000;
        color: white;
    }
    #navbarSupportedContent.remove{
        animation: slideright 1.8s linear ;
    }
    .dropdown-menu.show{
        background-color: black;
        display: inline;
    }
    .card-img-top{
        max-height: 264px;
    }
    .card-img{
        min-height: 264px;
        text-align: center;
    }
}
@keyframes slideright{
    0%{
        right: 0%;
    }
    100%{
        right: -80%;
    }
}
@keyframes slideleft{
    0%{
        right: -60%;
    }
    100%{
        right: 0%;
    }
}
@media screen and (max-width:767px) {
    .font-18px{
        font-size: 14px;
    }
    .font-24px{
        font-size: 20px;
    }
    .font-32px{
        font-size: 28px;
    }
    .card-img-top{
        max-height: fit-content;
    }
}
@media screen and (max-width:576px) {
    #navbarSupportedContent{
        width: 60%;
        max-width: 260px;
        animation: slideleft 1.4s linear ;
    }
    #navbarSupportedContent.remove{
        animation: slideright 1.4s linear ;
    }
}
.form-floating>textarea.form-control{
    height: 200px;
    width: 100%;
}