.about-container {
    width: 100%;
}

.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5vh 0;
}

.about3{
    width: 100%;
}

.about-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-content3 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
}

.about-title {
    display: inline;
    color: white;
    width: 80%;
    margin: 3em;
}

.about-content3 .about-title {
    text-align: center;
}

.about-content3 .about-title-text::after {
    display: none;
}

.about-title-text {
    position: relative;
    display: inline;
    font-size: 2.7em;
    margin-bottom: 1em;
}

.about-title-text::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    height: 0.35em;
    background: url('../img/subrayado4.png') no-repeat center / 100% 100%;
    pointer-events: none;
}

.about-img {
    height: 100%;
    width: 40%;
    object-fit: cover; 
    filter: grayscale(100%);
}

.about:nth-of-type(even) .about-img{
    -webkit-mask-image:linear-gradient(to left, transparent 0%, #000 30%, #000 100%);
            mask-image:linear-gradient(to left, transparent 0%, #000 30%, #000 100%);
}

.about:nth-of-type(odd) .about-img{
    -webkit-mask-image:linear-gradient(to right, transparent 0%, #000 30%, #000 100%);
            mask-image:linear-gradient(to right, transparent 0%, #000 30%, #000 100%);
}

.about-text {
    color: white;
    font-size: clamp(1rem , 0.6vw + .9rem, 1.3rem);
    width: 80%;
    text-wrap: pretty;
}

.about-text-especial {
    text-wrap: pretty;
    margin-top: 1em;
}

.list {
    color: white;
    display: flex;
    flex-direction: column;
    width: 60%;
    gap: 1rem;
}

.list-item {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 2rem;
    padding: 1.2rem 2rem;
    border-radius: 10px;
    background: linear-gradient(90deg, #111 0%, #222 40%, #222 60%, #111 100%);
    border:1px solid rgba(255,255,255,.06)
}

.list-item-icon {
    font-size: clamp(1.2rem , 1vw + 1.5rem, 2.5rem);
    text-align: center;
    width: 10%;
}

.list-item-text {
    font-size: clamp(.8rem , 0.6vw + 1rem, 1.3rem);
    width: 90%;
}




@media (max-width: 480px) {
    
}

@media (max-width: 768px) {
    .about {
        flex-direction: column;
    }

    .about:nth-child(1){
        flex-direction: column-reverse;
    }
    
    .about-img {
        width: 100%;
        height: 50%;
        object-fit: cover; 
        filter: grayscale(100%);
    }

    .about:nth-of-type(odd) .about-img{
    -webkit-mask-image:linear-gradient(to top, transparent 0%, #000 15%, #000 85%, transparent 100%);
            mask-image:linear-gradient(to top, transparent 0%, #000 30%, #000 70%, transparent 100%);
    }

    .about:nth-of-type(even) .about-img{
    -webkit-mask-image:linear-gradient(to top, transparent 0%, #000 15%, #000 85%, transparent 100%);
            mask-image:linear-gradient(to top, transparent 0%, #000 30%, #000 70%, transparent 100%);
    }

    .about-content {
        width: 100%;
    }

    .about-title {
        text-align: center;
        width: 100%;
        font-size: .9rem;
    }

    .about-text {
        text-align: center;
        text-wrap: balance;
        width: 90%;
    }

    .list {
        width: 80%;
    }

    .list-item {
        flex-direction: column;
        gap: .5rem;
    }

    .list-item-text {
        text-align: center;
    }

    .list-item-icon {
        width: 100%;
    }
}


@media (min-width: 1440px) {

}