/* @import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* { font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    padding-top: 80px;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.home_container {
    width: 100vw;
    height: 80vh;
    overflow: hidden;
    position: relative;

}

.home_img {
    width: 100%;
    height: 80vh;
}

.home_img img {
    width: 100%;
    height: 100%;
}


.home_name {
    position: absolute;
    top: 35%;
    z-index: 2;
    color: #fff;
    padding: 0 10rem;
}

.home_name h1 {
    color: #ccff01;
    font-size: 3rem;
    font-weight: bold;
    animation: drop-in 500ms ease 500ms backwards;
}

.home_name p {
    color: #fff;
    text-align: left;
    animation: drop-in 800ms ease 500ms backwards;
}

@keyframes drop-in {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translate(0px);
    }
}

.label {
    width: 400px;
    height: 35px;
    border: 2px solid black;
    margin: 4rem 0 0 10rem;
    font-size: 2rem;
    display: flex;
    justify-content: flex-start;
    color: #ccff01;
    background: #000;
    align-items: center;
    /* border-radius: 20px ; */
    padding: 5px;
    border-radius: 0 16px 16px 0;
    /* background: #ccff01; */
    box-shadow: 1px 1px 0px #526600,
        -1px -1px 0px #ffff02;
}

.ctr-accordion {
    max-width: 100vw;
    /* max-width: 1400px; */
    height: 220px;
    /* height: 720px; */
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: space-around;
    gap: 20px;
    overflow: hidden;
    margin: 50px 0;
    padding: 0 10rem;

}

.tab {
    position: relative;
    width: 20%;
    /* height: 100%; */
    /* height: inherit; */
    height: 200px;
    padding: 20px;
    background: rgb(150, 150, 150);
    cursor: pointer;
    transition: width .5s ease;
    border-radius: 25px;
    box-shadow: 5px 5px 10px #00417e,
        -15px -15px 30px #ffffff;
}

.tab p {
    display: none;
    height: 20%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 0 0 25px 25px;
    background: linear-gradient(transparent, #252525, #000);
    text-align: center;
    transition: 0.5s ease;
}

.tab p a {
    font-size: 2rem;
    font-weight: bold;
    color: #ccff01;
}

.tab img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    border-radius: 25px;
}

.tab:hover img {
    opacity: 0.6;
}

.tab:hover p {
    display: block;
}

.tab:hover {
    width: 80%;
}

.info_p1 {
    width: 100vw;
    padding: 2rem 10rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info_p1 img {
    width: 40%;
    height: 40%;
    border-radius: 10px;
}

.info_p1 .textPart {
    width: 50%;
    justify-content: space-around;
    display: flex;
    flex-direction: column;
}

.need_container {
    margin: 2rem 0;
    width: 100vw;
    height: 40vh;
    padding: 2rem 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    /* border: 1px solid black; */
    background: linear-gradient(to right, transparent, #295a88, transparent);
}

.need_title {
    display: flex;
    justify-content: center;
    width: 100%;
    border-radius: 5px;
    background: #000;
}

.need_title h2 {
    color: #ccff01;
    font-size: 1.5rem;
}

.need_sub {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.need_sub p {
    font-size: 1rem;
}

.need_cta {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.need_cta a {
    border: 1px solid #ccff01;
    padding: 0.5rem;
    border-radius: 1rem;
    color: #ccff01;
    background: rgba(0, 0, 0, 0.5);
    transition: 0.5s;
}

.need_cta a:hover {
    background: #ccff01;
    color: #000;

}

.why_choose_us {
    width: 100vw;
    padding: 2rem 10rem;
    display: flex;
    flex-direction: column;
}

.wtitle {
    width: 300px;
    height: 35px;
    border: 2px solid black;
    font-size: 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #ccff01;
    background: #000;
    padding: 5px;
    border-radius: 0 120px 120px 0;
    box-shadow: 1px 1px 0px #526600,
        -1px -1px 0px #ffff02;
}

.reson_part {
    padding: 2rem 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.reasonBox {
    width: 22%;
    border-radius: 20px 20px 0 0;
    padding: 12px;
    /*height: 150px;*/
    /* border: 1px solid #ccff01; */
    background: linear-gradient(145deg, #cacaca, #f0f0f0);
    box-shadow: 5px 5px 10px #00417e,
        -15px -15px 30px #ffffff;
}

.reasonBox h3 {
    margin: 0 0 5px 0;
}

.our_product {
    width: 100vw;
    padding: 2rem 10rem;
}

.our_product_trading {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.our_product_manufacture {
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.our_product_trading .product_div,
.our_product_manufacture .product_div {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(to right, #295a88, #202020);
    padding: 0 0 1rem 0;
    border-radius: 16px;
    margin: .5rem;
    box-shadow: 5px 5px 10px #00000d;
    transition: 0.2s;
}

.our_product_trading .product_div .overlay_part,
.our_product_manufacture .product_div .overlay_part {
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0s 0.2s;
}

.our_product_trading .product_div:hover .overlay_part,
.our_product_manufacture .product_div:hover .overlay_part {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s, visibility 0s;
}

.our_product_trading .product_div:hover img {
    transform: scale(3.2);
}

.our_product_trading .product_div img {
    padding: 2rem;
    max-width: 100%;
    height: 250px;
    transition: 0.2s;
}

.our_product_manufacture .product_div img {
    padding: 2rem;
    max-width: 100%;
    height: 200px;
    transition: 0.2s;
}

.our_product_manufacture .product_div:hover img {
    transform: scale(3.2);
}

.our_product_trading .product_div .overlay_part h3 {
    font-size: 1.5rem;
    margin: 1rem;
    color: #ccff01;
}

.our_product_trading .product_div .overlay_part a,
.our_product_manufacture .product_div .overlay_part a {
    color: #ccff01;
    border: 1px solid #000;
    padding: 0.5rem;
    background: #000;
    border-radius: 10px;
    margin: 0.5rem;
}

.our_product_trading .product_div .overlay_part p,
.our_product_manufacture .product_div .overlay_part p {
    color: #fff;
    padding: 0 1rem;
    text-align: center;
}

.our_product_manufacture .product_div .overlay_part h3 {
    font-size: 1.2rem;
    color: #ccff01;
}

.cutomer_review {
    width: 100vw;
    padding: 2rem 10rem;
    display: flex;
    justify-content: space-between;
}

.review_div {
    width: 30%;
    height: 160px;
    display: flex;
    flex-direction: column;
    border-radius: 5px 50px 0 50px;
    padding: 1rem;
    box-shadow: 5px 5px 10px #4a4a4a,
        -5px -5px 10px #646464;
}

.review_div .reviewer_info {
    width: 100%;
    display: flex;
}

.review_div .reviewer_info img {
    width: 20px;
    height: 20px;
    border-radius: 50%;

}

.application_industry {
    display: flex;
    flex-direction: column;
    width: 100vw;
    padding: 2rem 10rem;
}

.application_div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px;
    padding: 1rem;
    width: 100%;
    height: 250px;
    box-shadow: 5px 5px 10px #00417e,
        -15px -15px 30px #ffffff;
}

.app_div_img {
    width: 350px;
    height: 200px;
    /* border: 1px solid #000; */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 5px 5px 10px #a08573,
        -5px -5px 100px #ffffff;
}

.app_div_img img {
    width: 350px;
    height: 200px;
    border-radius: 10px;
}

.app_div_info {
    width: 60%;
}

.app_div_info h3 {
    font-size: 2rem;
    margin: 1rem 0;
}

.app_div_info h3 a{
    color: #000;
}
@media (max-width: 991px) {
    /*body {*/
    /*    padding-top: 60px;*/
    /*}*/

    .home_container {
        width: 100vw;
        height: 30vh;
        margin-top:0;
    }

    .home_img {
        margin-top:0;
        width: 100%;
        height: 30vh;
    }

    .home_name {
        top: 30%;
        padding: 0 1rem;
    }

    .home_name h1 {
        font-size: 1.5rem;
    }

    .home_name p {
        font-size: 0.6rem;
    }

    .label {
        width: 300px;
        height: 30px;
        margin: 2rem 0 0 1rem;
        font-size: 1.5rem;
    }

    .ctr-accordion {
        height: 210px;
        gap: 10px;
        margin: 30px 0;
        padding: 0 1rem;
    }

    .tab {
        height: 200px;
        padding: 20px;
        border-radius: 15px;
    }

    .tab p {
         height: 50%;
        border-radius: 0 0 15px 15px;
    }

    .tab p a {
        font-size: 1.2rem;
        font-weight: bold;
        color: #ccff01;
    }

    .tab img {
        border-radius: 15px;
    }

    .info_p1 {
        padding: 2rem 1rem;
        flex-direction: column;
    }

    .info_p1 img {
        width: 100%;
        height: 200px;
    }

    .info_p1 .textPart {
        width: 100%;
        justify-content: space-around;
        display: flex;
        flex-direction: column;
    }
    
.need_container {
    margin: 2rem 0;
    width: 100vw;
    height: 60vh;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    /* border: 1px solid black; */
    background: linear-gradient(to right, transparent, #92aac0, transparent);
}
.need_title h2 {
    text-align: center;
    font-size: 1.5rem;
}

.need_sub {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.need_sub p {
    font-size: 1rem;
}

.need_cta {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.need_cta a {
    font-size: 0.8rem;
    border-radius: 5px;
}

.why_choose_us {
    width: 100vw;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
}

.wtitle {
    width: 300px;
    height: 25px;
    font-size: 1.5rem;
}

.reson_part {
    padding: 2rem 0;
    flex-direction: column;
}

.reasonBox {
    width: 100%;
    border-radius: 20px 20px 0 0;
    margin: 1rem 0;
    padding: 12px;
    height: 150px;
}

.reasonBox h3 {
    margin: 0 0 5px 0;
}

    .our_product {
        width: 100vw;
        padding: 2rem 1rem;
    }


    .our_product_trading {
        padding: 2rem 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .our_product_manufacture {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .our_product_trading .product_div,
    .our_product_manufacture .product_div {
        position: relative;
        flex: 1 1 calc(50% - 1rem);
        /* Each item will take up 50% of the row minus the margin */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        background: linear-gradient(to right, #295a88, #202020);
        padding: 0 0 1rem 0;
        border-radius: 16px;
        margin: .5rem;
        box-shadow: 5px 5px 10px #00000d;
        transition: 0.2s;
    }

   .our_product_trading .product_div .overlay_part,
    .our_product_manufacture .product_div .overlay_part {
        top: -8px;
    }

    .our_product_trading .product_div,
    .our_product_manufacture .product_div {
        height: 150px;
        width: 200px;
    }
    
    .our_product_trading .product_div .overlay_part h3 {
        text-align:center;
        font-size: 1rem;
        margin: 0.5rem;
        color: #ccff01;
    }
    
    .our_product_trading .product_div .overlay_part a,
    .our_product_manufacture .product_div .overlay_part a {
        color: #ccff01;
        border: 1px solid #000;
        padding: 0.1rem;
        background: #000;
        border-radius: 10px;
        margin: 0.1rem;
        font-size: 0.8rem;
    }
    
    .our_product_trading .product_div .overlay_part p,
    .our_product_manufacture .product_div .overlay_part p {
        font-size: 0.5rem;
        color: #fff;
        padding: 0 1rem;
        text-align: center;
    }
    
    .our_product_manufacture .product_div .overlay_part h3 {
     text-align:center;
        font-size: 1rem;
        margin: 0.5rem;
        color: #ccff01;
    }

.cutomer_review {
    padding: 2rem 1rem;
    flex-direction: column;
}
.review_div {
    width: 100%;
    height: 145px;
    padding: 0.6rem;
    box-shadow: 5px 5px 10px #4a4a4a;
}


  .application_industry {
        padding: 2rem 1rem;
    }

    .application_div {
        padding: 0.5rem;
        width: 100%;
        height: 200px;
    }

    .app_div_img {
        width: 35%;
        height: 120px;
        /* border: 1px solid #000; */
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 5px 5px 10px #a08573,
            -5px -5px 100px #ffffff;
        margin: 5px;
    }

    .app_div_img img {
        width: 100%;
        height: 120px;
        border-radius: 10px;
    }

    .app_div_info {
        width: 65%;
    }

    .app_div_info h3 {
        font-size: 1rem;
        margin: 0rem 0;
    }
    .app_div_info p {
        font-size: 0.8rem;
        margin: 0rem 0;
    }
}