.about-us {
    padding: 80px 0;
    position: relative;
    background-color: var(--color-bg-2);

    &::before {
        content: "";
        top: 0;
        width: 100%;
        height: 100%;
        position: absolute;
        background-image:
            linear-gradient(to right, #4f4f4f2e 1px, transparent 1px),
            linear-gradient(to bottom, #4f4f4f2e 1px, transparent 1px);
        background-size: 60px 24px;
        mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 70%, transparent 100%);
    }

}

.about__header {
    padding: 1rem 0;
    z-index: 1;
}

.about-us__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 4rem;
}

.about-us__left {
    display: flex;
    align-items: center;
}

.left__creatores-container {
    overflow: hidden;
    width: 300px;
    height: 300px;
    position: relative;
    margin-inline: auto;
    margin-top: 2rem;
}

.left__creatores {
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    transition: all .3s ease-in-out;
}


.left__creator {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 3s ease-in;
}

.active-creator {
    opacity: 1;
}

.left__creator-img {
    position: relative;
    min-width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 10px;
    border: 0.5px solid white;
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: inset 0px 8px 80px rgba(73, 75, 208, 0.4);

}

.left__creator-img img {
    width: 200px;
    border-radius: 50%;
    opacity: .5;
}

.left__name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.left__creator h6 {
    font-size: 1.5rem;
    font-family: 'Roboto';
}

.left__creator small {
    font-size: 1rem;
    font-family: 'Roboto';
}

.about-us__right {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    gap: 10px;
    margin-top: 6rem;
}

.about-us__header {
    width: 300px;
    height: 120px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.right__title {
    position: absolute;
    color: transparent;
    font-family: 'Now-font';
    font-size: 6rem;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--color-four);
}

.right__subtitle {
    font-family: 'Allura';
    font-size: 3rem;
    position: absolute;
    transform: rotate(-25deg);
}

.right__story-container {
    overflow: hidden;
    width: 320px;
    position: relative;
    margin-inline: auto;
}

.right__stoty_btn {
    display: none;
    width: 80%;
    position: absolute;
    top: 29%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .2;
    justify-content: space-between;
}

.story__btn-prev,
.story__btn-next {
    background: transparent;
    outline: none;
    border: none;
    cursor: pointer;
}

.story__btn-prev img,
.story__btn-next img {
    width: 30px;
    filter: invert(1)
}

.right__story {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    transition: all 0.3s ease-in-out;
}

.story__item {
    min-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.story__testimonio p {
    text-align: left;
    font-size: 1.3rem;
    font-weight: 200;
    text-wrap: balance;
    line-height: 1.5;
    font-family: 'Now';
    opacity: .8;
    text-wrap: balance;
}

.story__creator {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;

    font-size: 1.2rem;
    font-family: 'Roboto';
    text-align: center;

    & h4 {
        color: var(--color-six);
        font-family: Now;
    }
}

.story__creator img {
    width: 50px;
    height: 50px;
}

.right__btn {
    width: 100%;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.right__btn_item {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #969595;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.btn-active {
    background: var(--color-one);
    box-shadow: 0px 0px 15px 8px rgba(37, 36, 36, 0.732);
}


/* RESPONSIVE */
@media (width > 768px) {

    .about-us__content {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
    }

    .about-us__header{
        margin-bottom: 0;
    }

    .about-us__right {
        width: 50%;
        margin-top: 2rem;
    }

    .right__story-container {
        width: 500px;
        margin-inline: 0;
    }

    .left__creatores-container {
        margin-top: 0;
        margin-left: 6rem;
    }

    .story__item {
        min-width: 500px;
    }

    .right__stoty_btn {
        display: flex;
        width: 80%;
        position: absolute;
        top: 56%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .right__btn {
        width: 500px;
    }
    
}