section.somos {
    background: #fff;
    border-radius: 50px 50px 0 0;
    min-height: 300px;
    position: relative;
    padding: 60px;
    top: -35px;
}

section.somos .somos-container {
    width: 100%;
    max-width: var(--container-width);
    margin: var(--container-margin);
    height: 100%;
}

section.somos h2 {
    color: #1F2432;
    font-size: 50px;
    font-weight: 600;
    margin-top: 20px;
}

section.somos p {
    color: #0C184E;
    font-size: 21px;
    font-weight: 500;
}

section.somos .images-somos {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 15px;
    margin-top: 40px;
    position: relative;
}

section.somos .images-somos img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

section.somos .images-somos .text-img {
    position: absolute;
    bottom: 0px;
    padding: 20px;
    z-index: 10000000;
}

section.somos .images-somos .text-img h5 {
    color: #fff;
    font-size: 21px;
    font-weight: 700;
}

section.somos .images-somos .text-img span {
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.overlate{
    position: relative;
}

.overlate::after {
    content: "";
    border-radius: 20px;
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.2);
}


@media(max-width:991px){
    section.somos .images-somos{
        grid-template-columns: 1fr;
    }

    section.somos h2{
        font-size: 35px;
    }
}