.hero{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50svh;
    padding: 140px 0 100px;
}
.hero__wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    justify-content: center;
    align-items: center;
    max-width: 60%;
    margin: 0 auto;
}
@media all and (max-width: 1024px) {
    .hero{
        padding: 140px 0 60px;
    }
    .hero__wrapper{
        max-width: 80%;
    }
}
@media all and (max-width: 768px) {
    .hero__wrapper{
        max-width: 100%;
    }
}
.hero__wrapper__title {
    font-size: clamp(2.25rem, 2.5vw, 3.5rem);
    line-height: 120%;
    font-weight: 400;
    color: var(--black);
}
.hero__wrapper__subtitle {
    font-size: clamp(1.15rem, 2.5vw, 1.25rem);
    line-height: 125%;
    color: var(--grey);
}
.hero__wrapper__subtitle strong {
    color: var(--black);
}
.equipo__container {
    display: flex;
    flex-wrap: wrap;
    row-gap: 80px;
    width: 100%;
}
.equipo-row{
    display: grid;
    grid-template-columns: .8fr 1fr;
    gap: 40px;
    width: 100%;
}
.equipo-row__title {
    font-size: clamp(1.85rem, 2.5vw, 2.5rem);
    line-height: 100%;
    font-weight: 400;
    color: var(--black);
    max-width: 320px;
    width: 100%;
}
.equipo-row__wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
    width: 100%;
}
@media all and (max-width: 1024px) {
    .equipo-row{
        grid-template-columns: 1fr;
    }
    .equipo-row__title {
        max-width: 100%;
    }
}
@media all and (max-width: 768px) {
    .equipo__container {
        row-gap: 40px;
    }
    .equipo-row__wrapper {
        gap: 24px;
    }
}
.equipo-row__wrapper__item{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    row-gap: 0;
}
.equipo-row__wrapper__item__media-wrapper{
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
    
}
.equipo-row__wrapper__item__media-wrapper img{
    position: absolute;
    top: 0;
    left: 0;    
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: grayscale(100%) contrast(0.9) brightness(1.1);
    transition: filter 0.3s var(--ease-in-out-cubic);
}
.equipo-row__wrapper__item__wrapper {
    display: flex;
    flex-wrap: wrap;
    row-gap: 8px;
    padding: 32px;
    justify-content: center;
}
.equipo-row__wrapper__item__wrapper__title {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    line-height: 120%;
    font-weight: 400;
    color: var(--black);
    text-transform: uppercase;
    text-align: center;
}
.equipo-row__wrapper__item__wrapper__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 125%;
    color: var(--black);
    text-align: center;
}
@media all and (max-width: 1024px) {
    .equipo-row__wrapper__item__wrapper {
        padding: 24px;
    }
}
@media all and (max-width: 768px) {
    .equipo-row__wrapper__item__wrapper {
        padding: 16px;
    }
}
.equipo.equipo--second {
    padding: 120px 0;
}
.equipo.equipo--second .equipo__container {
    row-gap: 40px;
}
.equipo.equipo--second .equipo-row {
    display: flex;
}
.equipo.equipo--second .equipo__title {
    font-size: clamp(2.25rem, 2.5vw, 3.5rem);
    line-height: 120%;
    font-weight: 400;
    color: var(--black);
    text-align: center;
}
.equipo.equipo--second .equipo-row__wrapper {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.equipo.equipo--second .equipo-row__wrapper__item__wrapper {
   padding: 24px 8px;
}
.equipo.equipo--second .equipo-row__wrapper__item__media-wrapper {
    padding-bottom: 125%;
}
.equipo.equipo--second .equipo-row__wrapper__item__wrapper__title {
    font-size: .8rem;
    line-height: 120%;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    text-transform: none;
}
.equipo.equipo--second .equipo-row__wrapper__item__wrapper__subtitle {
    font-size: .8rem;
    line-height: 120%;
    font-weight: 400;
    color: var(--black);
    text-align: center;
}
@media all and (max-width: 768px) {
    .equipo.equipo--second {
        padding: 80px 0;
    }
    .equipo.equipo--second .equipo-row__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .equipo.equipo--second .equipo-row__wrapper__item__media-wrapper {
        padding-bottom: 100%;
    }
}