.section-us-image-line {
    height: max-content;
    width: 100%;
    padding: 30px 0px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title-us {
    height: max-content;
    width: 70%;
    padding: 0 0 20px 0;
}

.title-us h2 {
    font-size: 1.8rem;
    text-align: start;
    color: var(--color-black);
    font-weight: bold;
}

.container-image-line {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: max-content;
    width: 70%;
}

.image-line {
    height: 190px;
    width: 190px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease;
}
.image-line:hover {
    transform: scale(1.125);
}

@media screen and (max-width: 1536px) {
    .container-image-line {
        width: 80%;
    }

}
@media screen and (max-width: 1280px) {
   
}
@media screen and (max-width: 1024px) {
    .image-line {
        height: 135px;
        width: 135px;
    }
    
}
@media screen and (max-width: 768px) {
   .image-line {
        width: 95px;
        height: 95px;
   }
   
   
}
@media screen and (max-width: 640px) {
   .container-image-line {
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 50px;
   }
}