@import url('./general.css');

.nosotros{
    width: 100%;
    /* height: 100vh; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    place-items: center;
    place-content: center;
    gap: 20px;
    color: white;
        max-width: 100%;
}


.nosotros span{
    font-size: 1em;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.nosotros__content{
    max-width: 95%;
    margin: 0 auto;
    width: 1200px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    place-content: center;
}


.nosotros__content .text{
    max-width: 95%;

    width: 570px;
}



.nosotros__content p{
    font-size: 1em;
    color: #b4b4b4;
    line-height: 1.5;
    font-weight: 600;
}

.nosotros__content .img {
    max-width: 100%;

    width: 600px;
}

.nosotros__content .img img {
    width: 100%;
    filter: drop-shadow(0 10px 20px rgba(255, 0, 0, 0.534));
    mask-image: linear-gradient(black 50%, transparent);
    -webkit-mask-image: linear-gradient(black 50%, transparent);

}


.nosotros__content .cartas{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
}

.nosotros__content .cartas .carta{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    /* margin-top: 10px; */
    padding: 20px;
    background: var(--background-color-2);
    /* place-content: center; */
    place-items: center;
    border-radius: 15px;
    border: 2px solid #535353;
}

.carta .icon{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
}

.carta p{
    font-size: 1em;
    color: var(--text-color);
    font-weight: bold;
}


