*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container-banner {
    background-image: url("../images/BACKGROUNd-img.jpg");
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 50px;
    /* max-width: 1900px; */
    /* height: 875px; */
}

.text-content {
    max-width: 45%;
    margin-left: -200px;
}

.text-content h1 {
    color: #275589;
    font-family: "Poppins", Sans-serif;
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
}

.text-content h2 {
    color: #424647;
    font-family: "Poppins", Sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;

}
.text-content ul{
    margin-top: 20px;
}
.text-content ul li {
    text-align: left;
    font-family: "poppins", Sans-serif;
    font-size: 18px;
    font-weight: normal;
    list-style: none;
    margin-top: 20px;
}

.icons {
    display: flex;
    gap: 100px;
    margin-top: 20px;
}

.icons img {
    width: 100px;
    height: 100px;
}

.machine-image {
    max-width: 45%;
    position: relative;
}

.machine-image img {
    width: 100%;
    /* border-radius: 50%; */
    /* border: 10px solid orange; */
}
.para-cont{
    margin-top: 40px;
}
.inner-para-cont {
    width: 60%;
    margin-inline: auto;
}
.para-cont .inner-para-cont h1{
    color: #137DC0;
    font-family: "Poppins", Sans-serif;
    font-size: 40px;
    font-weight: bold;
}
.para-cont .inner-para-cont p{
    text-align: left;
    color: #7A7A7A;
    font-family: "poppins", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-top: 20px;
}



.technology{
    margin-top: 30px;
}
.heading-box{
    margin-bottom: 10px;
}
.heading-box h2 {
    color: #137DC0;
    font-family: "Poppins", Sans-serif;
    font-size: 45px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

.benefits-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    width: 63%;
    margin: 0 auto;
    margin-top: 30px;
}

.benefits-container ul {
    flex: 1;
    list-style-type: disc;
    margin: 0;
    text-align: left;
    color: #7A7A7A;
    font-family: "poppins", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    

}

.benefits-container ul li {
    margin-bottom: 10px;
    margin-top: 40px;
}

.optional-features{
    margin-top: 50px;
}
.optional-feature-cont{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}
.optional-feature_para-cont ul li{
    color: #7A7A7A;
    font-family: "poppins", Sans-serif;
    font-size: 18px;
    font-weight: 400;
}
.optional-feature_img-cont{
    width: 650px;
    height: 430px;
}
.optional-feature_img-cont img{
    width: 100%;
    border-radius: 25px;
}

.image-container{
    background-color: transparent;
    background-image: linear-gradient(180deg, #E6E6E6 26%, #275589 100%);
    padding: 40px;
    margin-top: 50px;
}
.vaccum-img-cont{
    display: flex;
    justify-content: center;
    gap: 40px;
}
.image-cont{
    width: 412px;
    height: 310px;
}
.image-cont img{
    width: 100%;
    height:100%;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #FFFFFF;
    border-radius: 30px 30px 30px 30px;
    transition: transform 0.3s ease;
}
.image-cont img:hover{
    transform: scale(1.1);
}


.specification{
    margin-top: 100px;
    margin-bottom: 40px;
}
.specification .specification-table{
    margin-top: 20px;
}
.specification-table table{
    border-collapse: collapse;
    width: 60%;
    margin: 0 auto;
    border-color: #D2D2D2;
}
.specification .specification-table table th{
    font-size: 27px;
    font-weight: bold;
    text-transform: uppercase;
    color: #FFFFFF;
    font-family: "poppins", Sans-serif;
    background-color: #137DC0;
    padding: 10px;
}
.specification .specification-table table tr:nth-child(even){
    background-color: #E3E3E3;
    
}
.specification .specification-table table th{
    font-size: 27px;
    font-weight: bold;
    text-transform: uppercase;
    color: #FFFFFF;
    font-family: "poppins", Sans-serif;
    background-color: #137DC0;
    padding: 10px;
}
.specification .specification-table table td{
    font-family: "poppins", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    padding: 10px 15px;
}


@media(max-width:1600px){
    .container-banner{
        justify-content: center;
        gap: 70px;
        height: auto;
    }
    .text-content{
        margin-left: 0px;
    }
}

@media(max-width:768px){
    .container-banner{
        flex-direction: column;
        height: auto;
    }
    .text-content{
        max-width: 100%;
        margin-left: 0px;
    }
    .text-content h1{
        font-size: 30px;
    }
    .text-content h2{
        font-size: 18px;
    }
    .text-content p{
        font-size: 15px;
    }
    .icons {
        gap: 50px;
    }
    .icons img{
        width: 50px;
        height: 50px;
    }
    .para-cont .inner-para-cont{
        width: 100%;
        padding: 20px;
    }
    .para-cont .inner-para-cont p{
        font-size: 15px;
    }
    .heading-box h2 {
        font-size: 30px;
        line-height: 35px;
    }
    .benefits-container{
        flex-direction: column;
        width: 100%;
        gap: 30px;
        padding: 20px;
        margin-top: -50px;        ;
    }
    .benefits-container ul li{
        font-size: 15px;
    }
    .specification-table{
        padding: 20px;
    }
    .specification-table table{
        width: 100%;
    }
    .specification .specification-table table th{
        font-size: 18px;
        padding: 0px;
    }
    .specification .specification-table table td{
        font-size: 15px;
        padding: 0px;
    }

.image-cont {
        width: 300px;
        height: 250px;
        margin: 0 auto;
    }
    .vaccum-img-cont {
        flex-direction: column;
        gap: 40px;
    }
}