.banner_prices {
    font-size: 1rem;
    display: flex;
    justify-content: center;
}

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

.banner_prices .breadcrumbs {
    position: absolute;
    width: 100%;
}

.banner_prices_content .left-section {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 48px;
    font-size: 0.9em;
    flex: 1 0 40%;
}

.banner_prices_content .left-section .text-element:nth-child(1) {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.banner_prices_content .left-section .text-element:nth-child(1) .text-element-content {
    font-size: 1.5em;
    font-weight: 700;
    padding: 0.8em 1.2em;
    background: #FFD082;
    border-radius: 12px;
    color: #F79900;
    transform: rotate(-8.3deg);
    width: fit-content;
    align-self: start;
}

.banner_prices_content .left-section .text-element:nth-child(2) {
    margin-top: 0.5em;
    color: white;
    font-size: 5em;
    font-weight: 900;
    text-transform: uppercase;
    align-self: center;

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

.banner_prices_content .left-section .text-element:nth-child(3) {
    font-size: 8em;
    color: black;
    font-weight: 500;
    font-style: italic;
    align-self: start;

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

.banner_prices_content .left-section .text-element:nth-child(4) {
    font-size: 4em;
    color: white;
    font-weight: 500;
    font-style: italic;
    align-self:end;
    text-transform: uppercase;
    padding-left: 2em;

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

.banner_prices_content .left-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: 1.5em;
    width: fit-content;
    display: block;
    text-decoration: none;

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

.banner_prices_content .left-section .try-btn:hover {
    text-decoration: underline;
}

.banner_prices_content .right-section {
    background: unset;
    min-width: 400px;
    width: 30vw;
    /*height: 50em;*/
    z-index: 0;
    display: block;
    position: relative;
}

.banner_prices_content .right-section img {
    position: absolute;
    z-index: 1;
}

/* background */
.banner_prices_content .right-section > img:nth-child(1) {
    width: 60%;
    left: 20%;
    top: -30%;
}

/* main */
.banner_prices_content .right-section > img:nth-child(2) {
    width: 100%;
    top: 15%;
    position: relative;
    z-index: 2;
}

/* top card */
.floating-cards img:nth-child(1) {
    z-index: 2;
    left: 23%;
    top: -37%;
}

/* bottom card */
.floating-cards img:nth-child(2) {
    z-index: 2;
    left: 50%;
    bottom: -3em;
}

/* left card */
.floating-cards img:nth-child(3) {
    z-index: 2;
    left: -15%;
    top: 43%;
    right: unset;
}

/* top-right card */
.floating-cards img:nth-child(4) {
    z-index: 2;
    right: -15%;
    top: -3em;
    left: unset;
}

.floating-cards {
    z-index: 3;
}

.floating-cards .card {
    width: 14em;
    max-width: unset;
}

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

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


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

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

@media (max-width: 768px) {
    .banner_prices {
        font-size: 0.5rem;
        min-height: unset;
    }

    .banner_prices_content {
        flex-direction: column;
        gap: 20em;
        padding: 10em 1em;
        max-width: 100vw;
    }

    .banner_prices .left-section {
        top: 0;
        width: 100%;
        gap: 4em;
        align-items: center;
    }

    .banner_prices_content .left-section .text-element {
        align-self: unset !important;
        text-align: center;
    }

    .banner_prices_content .left-section .text-element:nth-child(1) {
        border-radius: 8px;
    }

    .banner_prices_content .left-section .text-element:nth-child(4) {
        padding-left: unset;
    }

    .banner_prices_content .left-section .try-btn {
        font-size: 2em;
        margin-top: 1em;
    }

    .banner_prices_content .right-section {
        width: 80%;
        min-width: unset;
        max-width: unset;
    }

    .floating-cards .card {
        width: 15em;
    }

    .floating-cards img:nth-child(2) {
        bottom: -8em;
    }

    .floating-cards img:nth-child(4) {
        top: -1em;
        right: -10%;
    }

    .circle-highlight {
        left: 0;
        top: -40%;
        width: 100%;
        height: unset;
    }
}
