.nosotros {
  position: relative;
  background-color: white;
  z-index: 100;
  width: 100%;
}
.nosotros > .wrapper {
    width: 100%;
} 
.nosotros__cabecera {
    background-image: url('../img/sobre_nosotros.webp');
    background-position: center 65%;
    padding: 50px 70px 40px 140px;
    height: 450px;
    box-sizing: border-box;
    position: relative;
}
.nosotros__cabecera p {
    color: var(--e2);
}
.nosotros__cabecera h3 {
    color: #fff;
    position: relative;
    max-width: 740px;
}
.nosotros__cabecera h3::after {
	content: "";
	position: absolute;
	bottom: -30px;
	right: 8%;
	width: 50%;
	height: 13px;
	background-color: var(--e2);
}
.nosotros__cabecera div {
    position: absolute;
    right: 70px;
    bottom: 40px;
}
.nosotros__cabecera img {
    display: inline-block;
}
.nosotros__content {
    background-color: var(--s5);
    padding: 50px 70px 80px 140px;
}
.nosotros__text {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}
.nosotros__text p {
    color: #fff;
    width: 585px;
    font-weight: 300;
}
.nosotros__text a {
    color: var(--e2);
    text-decoration: underline;
}


@media only screen and (max-width: 1248px) {
    .nosotros__cabecera,
    .nosotros__content {
        padding: 50px 50px 80px 50px;
    }
}
@media only screen and (max-width: 1024px) {
    .nosotros__text {
        display: block;
    }
    .nosotros__text p {
        width: 100%;
        font-weight: normal;
    }
    .nosotros__more {
        text-align: center;
    }
    
}
@media only screen and (max-width: 900px) {
    .nosotros__cabecera {
        padding: 50px 4%;
    }
    .nosotros__cabecera p {
        text-align: center;
    }
    .nosotros__cabecera h3 {
        max-width: 620px;
    }
    .nosotros__cabecera div {
        display: none;
    }
}
@media only screen and (max-width: 768px) {
    .nosotros__cabecera h3 {
        max-width: 550px;
    }
    .nosotros__cabecera h3::after {
        width: 70%;
        height: 12px;
    }
    
}
@media only screen and (max-width: 525px) {
    .nosotros__cabecera {
        height: 350px;
    }
    .nosotros__cabecera h3 {
        max-width: 360px;
    }
    .nosotros__cabecera h3::after {
        height: 9px;
        bottom: -20px;
    }
    .nosotros__content {
        padding: 40px 5% 80px 5%;
    }
    .nosotros__content p {
        font-size: 20px;
    }
    
}