.section.about {
    background-color: #eddfcc;
    padding-top: 10px;
    padding-bottom: 56px;
}

.about .section__title {
    color: #46100d;
    font-family: "sigurd", sans-serif;
    font-style: normal;
    font-size: clamp(4rem, 15vw, 200px);
    font-weight: 300;
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .about .section__title {
        margin-top: 1rem;
    }
}

.about .section__title--container {
    display: flex;
    margin-top: 170px;
}

@media (max-width: 575.98px) {
    .about .section__title--container {
        margin-top: 0;
        display: block;
    }
}

.about__image { 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../images/about/background.png") no-repeat center center;
    background-size: cover;
    width: 500px;
}

/* "ABOUT US" title overlay */
.about__image::before {
content: "ABOUT US";
    position: absolute;
    top: -25%;
    z-index: 2;
    pointer-events: none;
    font-size: 250px;
    color: #46100d;
    text-align: end;
    width: 100vw;
    font-family: "sigurd", sans-serif;
    font-weight: 300;
    font-style: normal;
    right: 10px;
}

/* Founders image overlay */
.about__image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/about/about-founders.png") no-repeat left bottom;
    background-size: contain;
    z-index: 3;
    pointer-events: none;
}

.about__text-container {
    padding-top: 167px;
}

@media (max-width: 575.98px) {
    .about__text-container {
        padding-top: 0;
    }
}

.about .section__introduction {
    font-size: 24px;
    color: #46100d;
    line-height: 25px;
}    

.about .section__introduction span {
    font-size: 100px;
    line-height: 90px;
    padding-top: 25px;
    display: inline-block;
    color: #46100d;
}

.about .about__text {
    color: #46100d;
    font-size: 21px;
    padding: 0 69px;
    line-height: 22px;
}


.about .about__text.font-signature {
    font-size: 80px;
    line-height: 80px;
    padding-left: 81px;
    padding-right: 20px;
}

@media (max-width: 575.98px) {
    .about .about__text {
        font-size: 18px;
        padding: 0 24px;
    }
    .about .about__text.font-signature {
        font-size: 40px;
        line-height: 80px;
        padding-left: 30px;
        padding-right: 0;
    }
}

.juntos-circle {
    position: relative;
}
.juntos-circle::before {
    content: '';
    background-image: url('../images/about/ellipse.png');
    position: absolute;
    display: inline-block;
    width: 207px;
    height: 94px;
    background-size: contain;
    left: -27px;
    background-repeat: no-repeat;
    top: 25px;
}

@media (max-width: 575.98px) {
    .juntos-circle::before {
        width: 87px;
        height: 44px;
        left: -16px;
        top: 16px;
    }
}

.about__cta-button {
    display: block;
    width: 206px;
    height: 43px;
    background-color: #46100d;
    border: 1px solid #46100d;
    color: #eddfcc;
    font-family: "fieldwork-hum", sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-decoration: none;
    text-align: center;
    line-height: 39px;
    margin: 40px auto 0;
    border-radius: 22px;
    transition: all 0.3s ease;
}

.about__cta-button:hover {
    background-color: transparent;
    color: #46100d;
    text-decoration: none;
}