section.home-about {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 150px 0;
    background-color: var(--color-dark-blue);
}

section.home-about:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: url(../img/lion-desktop.svg);
    background-position: right top;
    background-repeat: no-repeat;
    z-index: 1;
    background-size: contain;
}

section.home-about .videos-grid {
    width: 100%;
}

section.home-about .image-about {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
}

section.home-about .image-about img {
    width: 100%;
    object-fit: cover;
}

section.home-about .title-about,
section.home-about .description-about {
    max-width: 1000px;
    width: 100%;
    padding-right: 90px;
    color: #fff;
    z-index: 2;
}

section.home-about .title-about .title-text {
    font-family: "Bodoni MT";
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    line-height: 98%;
    letter-spacing: -3.5px;
    text-transform: uppercase;
    background: var(--GOLD, linear-gradient(90deg, #DAB128 9.62%, #FDE8A4 56.25%, #DAB128 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 48px;
}

section.home-about .description-about {
    color: var(--White, #FFF);
    font-family: var(--font-body-light);
    font-size: 26.667px;
    font-style: normal;
    font-weight: 400;
    line-height: 47px;
    /* 176.25% */
    display: flex;
    flex-direction: column;
    gap: 38px;
}

section.home-about .feature-text {
    font-family: var(--font-body);
    font-size: 40.502px;
    font-style: normal;
    font-weight: 600;
    line-height: 55.082px;
    /* 136% */
    letter-spacing: -1.215px;
    background: var(--GOLD, linear-gradient(90deg, #DAB128 9.62%, #FDE8A4 56.25%, #DAB128 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/*Spanish Version */
section.home-about.is-spanish .description-about,
section.home-about.is-spanish .feature-text{
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
}
section.home-about.is-spanish .feature-text{
    font-weight: 700;
}
/*Spanish Version */
@media screen and (max-width: 1440px) {
    section.home-about .image-about img{
        height: 100%;
    }
}

@media screen and (max-width: 768px) {
    section.home-about .image-about {
        position: relative;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 2;
        width: 100%;
    }

    section.home-about .title-about,
    section.home-about .description-about {
        max-width: 1000px;
        width: 100%;
        padding: 0 30px;
        color: #fff;
        z-index: 2;
    }

    section.home-about .title-about .title-text {
        text-align: center;
        font-family: "Bodoni MT";
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        line-height: 98%;
        letter-spacing: -2px;
        text-transform: uppercase;
    }

    section.home-about .description-about {
        color: var(--White, #FFF);
        font-family: var(--font-body);
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
    }

    section.home-about .feature-text {
        font-size: 22px;
        font-style: normal;
        font-weight: 600;
        line-height: 55.082px;
        letter-spacing: -0.66px;
    }

    .btn-yellow {
        width: 100%;
        font-size: 20px;
    }

    section.home-about:after {
        content: '';
        position: absolute;
        top: auto;
        bottom: 0;
        right: 0;
        height: 30%;
        width: 50%;
        background-image: url(../img/lion-mobile.svg);
    }

    section.home-about {
        padding: 30px 0;
    }
}