.banner_about {
    font-size: 1rem;
}

.banner_about_content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10vw;
    padding: 100px 24px 24px 24px;
    min-height: 80cqh;
}

.banner_about .right-section {
    background: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.banner_about .left-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    position: relative;
}

.banner_about .left-section img {
    z-index: 1;
}

.banner_about .left-section img:nth-child(2) {
    min-width: 142%;
    width: 142%;
    position: absolute;
    top: 22%;
    z-index: 2;
}

.banner_about .right-section > .text-element:nth-child(1) {
    animation: fadeInUp 1s ease-out 0.2s both;
    overflow: visible;
}

.banner_about .right-section > .text-element:nth-child(1) .text-element-content {
    font-weight: 900;
    font-size: 3em;
    text-transform: uppercase;
    background: #FFD186;
    border-radius: 6px;
    transform: rotate(-3deg);
    padding: 0.2em 0.5em;
    line-height: 100%;
}

.banner_about .right-section > .text-element:nth-child(2) {
    font-size: 7em;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    align-self: center;

    animation: fadeInUp 1s ease-out 0.4s both;
}

.banner_about .right-section > .text-element:nth-child(3) {
    font-size: 3.5em;
    font-weight: 100;
    font-style: italic;
    text-transform: uppercase;
    justify-self: start;
    text-align: center;
    align-self: center;

    animation: fadeInUp 1s ease-out 0.6s both;
}

.banner_about .right-section .footer-elements .text-element {
    color: black;
    width: 475px;
    margin-top: 4em;

    animation: fadeInUp 1s ease-out 0.8s both;
}

.banner_about .right-section .try-btn {
    margin-top: 4em;
    text-align: center;
    align-content: center;
    font-size: 0.9em;
    font-weight: 500;
    border-radius: 6px;
    background: white;
    color: #F79900;
    cursor: pointer;
    text-transform: uppercase;
    padding: 1em 1.5em;
    width: fit-content;
    display: block;
    text-decoration: none;

    animation: fadeInUp 1s ease-out 1s both;
}

.banner_about .right-section .try-btn:hover {
    text-decoration: underline;
}

.circle-highlight {
    background: radial-gradient(circle closest-side, white 0%, transparent 100%);
    filter: blur(8em);
    height: 100%;
    width: unset;
    aspect-ratio: 1;
    z-index: 0;
}

@media (min-width: 1280px) and (max-width: 1600px) {
    .banner_about_content {
        font-size: 0.8em;
    }
}


@media (min-width: 1024px) and (max-width: 1280px) {
    .banner_about_content {
        font-size: 0.7em;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .banner_about_content {
        font-size: 0.6em;
    }
}


@media (max-width: 768px) {
    .banner_about {
        font-size: 0.4rem;
    }

    .banner_about .left-section {
        top: 0;
        width: 60vw;
    }

    .banner_about_content {
        flex-direction: column;
        gap: 50px;
        padding: 50px 24px;
    }

    .banner_about .right-section .footer-elements {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90vw;
    }

    .banner_about .right-section .footer-elements .text-element {
        text-align: center;
        white-space: wrap;
        width: 100%;
        font-size: 1.5em;
        margin-top: 2em;
    }

    .banner_about .right-section .try-btn  {
        font-size: 2em;
        margin-top: 2em;
    }

    .banner_about .left-section {
        order: 2;
    }

    .banner_about .right-section > .text-element {
        overflow: auto;
        padding: 0 12px;
    }

    .banner_about .right-section > .text-element:nth-child(3) {
        font-weight: 500;
        font-size: 3.2em;
    }
}
