/* ---GLOBAL STYLES--- */

* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', serif;
    box-sizing: border-box;
    word-break: break-word;
    scroll-behavior: smooth;
}

:root {
    --green: #87d801;
    --cream: #f3ffdb;
}

body {
    background: white;
}

img {
    width: 100%;
}

a {
    cursor: pointer;
    width: fit-content;
    display: inline-block;
    text-decoration: none;
    transition: .25s;
}

button,
i {
    cursor: pointer;
    transition: .25s;
}

h1,
h2 {
    font-weight: 800;
    line-height: 1;
}

p {
    text-align: left;
}

p,
li,
td {
    font-size: 1vw;
    font-weight: 400;
}

.main_btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1vw;
    font-size: 1vw;
    border-radius: 5vw;
    background: var(--green);
}

.main_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3.5vw;
    height: 100%;
    border-radius: 5vw;
    background: black;
    transition: .5s;
}

.main_btn:hover::before {
    width: 100%;
}

.main_btn .icon_box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.5vw;
    height: 3.5vw;
    border-radius: 50%;
    background: black;
    transition: .5s;
}

.main_btn svg {
    width: 1.5vw;
    transform: translateX(-10%);
}

.main_btn span {
    position: relative;
    color: black;
    font-weight: 700;
    padding-right: 1.5vw;
    transition: .5s;
    z-index: 1;
}

.main_btn:hover span {
    color: white;
}

@media (max-width: 996px) {

    p,
    li {
        font-size: 3.5vw;
    }

    .main_btn {
        gap: 3vw;
        font-size: 3vw;
        border-radius: 5vw;
    }

    .main_btn::before {
        width: 8vw;
        height: 100%;
        border-radius: 5vw;
    }

    .main_btn .icon_box {
        width: 8vw;
        height: 8vw;
    }

    .main_btn svg {
        width: 4vw;
    }

    .main_btn span {
        padding-right: 4vw;
    }
}


/* ---HEADER STYLES-- */

header .bar_box {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: .5vw;
    background: var(--green);
}

header .bar_box a {
    color: black;
    display: flex;
    align-items: center;
    gap: .5vw;
    font-size: .9vw;
}

header .bar_box a:hover {
    color: white;
}

header .bar_box a i {
    transition: none;
}

header .networks i {
    font-size: 1.5vw;
}

header .header_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1vw 10%;
}

header .logo_box {
    width: 12%;
}

header .logo_box a {
    width: 100% !important;
}

header .logo_box img {
    width: 100%;
}

@media (max-width: 996px) {
    header .bar_box {
        display: none;
    }

    header .header_box {
        padding: 5vw 10%;
    }

    header .logo_box {
        width: 35%;
    }

    header .logo_box a {
        width: 40%;
    }
}


/* ---FOOTER STYLES--- */

footer .footer_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3vw;
    padding: 5%;
}

footer .logo_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .logo_box a {
    width: 60%;
}

footer .info_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vw;
}

footer .info_box h2 {
    font-size: 2vw;
}

footer .info_box h2 span {
    color: var(--green);
}

footer .info_box a {
    color: black;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5vw;
}

footer .info_box a i {
    width: 2vw;
    height: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: .8vw;
    background: var(--green);
}

footer .info_box a:hover i {
    color: white;
    background: black;
}

footer .footer_bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    padding: .5vw;
    background: var(--green);
}

footer .footer_bar a {
    color: black;
    font-size: .8vw;
}

footer .footer_bar a:hover {
    color: white;
}

@media (max-width: 996px) {
    footer .footer_box {
        gap: 10vw;
        padding: 20% 5%;
    }

    footer .logo_box a {
        width: 50%;
    }

    footer .info_box {
        gap: 3vw;
    }

    footer .info_box h2 {
        font-size: 6vw;
    }

    footer .info_box a {
        gap: 2vw;
    }

    footer .info_box a i {
        width: 8vw;
        height: 8vw;
        font-size: 4vw;
    }

    footer .footer_bar {
        flex-direction: column;
        gap: 3vw;
        padding: 5vw;
    }

    footer .footer_bar a {
        font-size: 2.5vw;
    }

    footer .footer_bar span {
        display: none;
    }
}


/* ---MAIN STYLES--- */

.main_section {
    position: relative;
    padding: 0 10% 5% 10%;
}

.main_section .leaf {
    pointer-events: none !important;
    z-index: 1;
}

.main_section .leaf:nth-child(1) {
    width: 5%;
    position: absolute;
    top: 5%;
    left: 35%;
}

.main_section .leaf:nth-child(2) {
    width: 3%;
    position: absolute;
    top: 0;
    right: 10%;
    transform: rotate(180deg);
}

.main_section .leaf:nth-child(3) {
    width: 3%;
    position: absolute;
    top: 30%;
    left: 3%;
    transform: rotate(90deg);
}

.main_section .leaf:nth-child(4) {
    width: 2%;
    position: absolute;
    top: 50%;
    left: 40%;
    transform: rotate(-180deg);
}

.main_section .main_box {
    display: flex;
    flex-wrap: wrap;
}

.main_section .info_box,
.main_section .media_box {
    width: 50%;
}

.main_section .info_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2vw;
}

.main_section h1 {
    display: flex;
    flex-direction: column;
}

.main_section h1 span:nth-child(1) {
    color: var(--green);
    font-family: 'Sacramento';
    font-size: 4.5vw;
}

.main_section h1 span:nth-child(2) {
    color: black;
    font-size: 5.5vw;
}

.main_section h1 span:nth-child(3) {
    color: var(--green);
    font-size: 3.5vw;
}

.main_section .info_box p {
    font-size: 1.5vw;
    font-weight: 600;
}

.main_section .media_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_section .slider_box {
    position: relative;
    width: 60%;
}

.main_box .lemon {
    width: 35%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, 20%);
    z-index: 1;
}

.main_section .slider_item {
    border: 1vw solid var(--green);
    border-radius: 1vw;
}

.main_section .slick-dots {
    display: flex;
    justify-content: center;
    gap: .5vw;
    list-style: none;
}

.main_section .slick-dots button {
    width: .6vw;
    height: .6vw;
    font-size: 0;
    border: 0;
    border-radius: 1vw;
    background: #87d80130;
}

.main_section .slick-active button {
    width: 1.5vw;
    background: #86d80181;
}

.main_section .margaras_box {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3vw;
}

.main_section .margara_item {
    width: calc(100% / 8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: .5vw;
    position: relative;
    margin-top: 10vw;
}

.main_section .margara_item svg {
    width: 40%;
    transform: translateX(10%);
    transform-origin: bottom calc();
    transition: .25s;
}

.main_section .margara_item:hover svg {
    transform: translateX(10%) scale(1.1);
}

.main_section .margara_item:nth-child(2) .flavor {
    fill: #b3e956;
}

.main_section .margara_item:nth-child(3) .flavor {
    fill: #e15e5e;
}

.main_section .margara_item:nth-child(4) .flavor {
    fill: #f89602;
}

.main_section .margara_item:nth-child(5) .flavor {
    fill: #c31e1c;
}

.main_section .margara_item:nth-child(6) .flavor {
    fill: #f4d019;
}

.main_section .margara_item:nth-child(7) .flavor {
    fill: #f7a247;
}

.main_section .margara_item:nth-child(8) .flavor {
    fill: #ff3b86;
}

.main_section .margara_item p {
    font-size: .9vw;
    font-weight: 600;
    text-align: center;
}

.main_section .text_box {
    width: 90%;
    margin: 3vw auto 0 auto;
    padding: 1vw;
    border: .25vw solid var(--green);
    border-radius: 1vw;
}

.main_section .text_box p {
    text-align: center;
}

.dialog-box {
    display: none;
    position: absolute;
    background-color: var(--green);
    color: #fff;
    padding: 1vw;
    border-radius: 5px;
    z-index: 1;
    font-size: 1vw;
}

.dialog-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 8vw;
    background: transparent;
    width: 0px;
    height: 0px;
    border-bottom: 1vw solid var(--green);
    border-right: 1vw solid transparent;
    border-left: 2vw solid transparent;
    transform: rotate(90deg);
    z-index: -1;
}

.margara_item.active .dialog-box {
    display: block;
}

.popup2 {
    display: none;
}


@media (max-width: 996px) {
    .main_section {
        padding: 5% 10% 10% 10%;
    }

    .main_section .leaf {
        pointer-events: none !important;
    }

    .main_section .leaf:nth-child(1) {
        width: 20%;
        top: 15%;
        left: initial;
        right: 4%;
    }

    .main_section .leaf:nth-child(2) {
        width: 12%;
        top: 35%;
        right: 15%;
    }

    .main_section .leaf:nth-child(3) {
        width: 10%;
        top: 32%;
        left: 10%;
    }

    .main_section .leaf:nth-child(4) {
        width: 8%;
        top: 43%;
        left: 85%;
        transform: rotate(-100deg);
    }

    .main_section .main_box {
        gap: 10vw;
    }

    .main_section .info_box,
    .main_section .media_box {
        width: 100%;
    }

    .main_section .info_box {
        gap: 2vw;
    }

    .main_section h1 {
        text-align: center;
    }

    .main_section h1 span:nth-child(1) {
        font-size: 10vw;
    }

    .main_section h1 span:nth-child(2) {
        font-size: 10vw;
    }

    .main_section h1 span:nth-child(3) {
        color: var(--green);
        font-size: 6.5vw;
    }

    .main_section .info_box p {
        font-size: 4vw;
        text-align: center;
    }

    .main_section .media_box {
        order: -1;
    }

    .main_section .slider_box {
        width: 80%;
    }

    .main_section .slider_item {
        border: 2vw solid var(--green);
    }

    .main_section .slick-dots {
        display: flex;
        justify-content: center;
        gap: 2vw;
        list-style: none;
    }

    .main_section .slick-dots button {
        width: 2vw;
        height: 2vw;
        border-radius: 2vw;
    }

    .main_section .slick-active button {
        width: 5vw;
    }

    .main_section .margaras_box {
        width: 100%;
        gap: 5%;
        margin-top: 3vw;
    }

    .main_section .margara_item {
        width: calc(100% / 3 - 5%);
        gap: 2vw;
        margin-bottom: 5vw;
    }

    .main_section .margara_item svg {
        width: 70%;
    }

    .main_section .margara_item p {
        font-size: 2.5vw;
    }

    .main_section .text_box {
        margin: 5vw auto 0 auto;
        padding: 3vw;
        border: .5vw solid var(--green);
    }

    .main_section .text_box p {
        font-size: 2.5vw;
        text-align: center;
    }

    .popup2 {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.7);
        justify-content: center;
        align-items: center;
        z-index: 999;
    }

    .popup-content {
        background-color: var(--green);
        padding: 20px;
        border-radius: 5px;
        max-width: 80%;
        margin: 10vw;
        position: relative;
        margin-top: 50vw;
    }

    .popup-content h2 {
        color: white;
    }

    .popup-content p {
        color: white;
    }

    .popup-content svg {
        width: 10vw;
    }
}


/* ---MAGIC STYLES--- */

.magic_section {
    padding: 5% 10%;
    background: linear-gradient(160deg, white 50%, var(--cream) 50%);
}

.magic_section .magic_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
}

.magic_section .media_box {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.magic_section .media_box::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 25vw;
    background: var(--green);
}

.magic_section .media_box img:nth-child(1) {
    position: relative;
    width: 70%;
    border-radius: 1vw;
    z-index: 1;
}

.magic_section .media_box img:nth-child(2) {
    width: 40%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border: 1vw solid white;
    border-radius: 1vw;
    z-index: 1;
}

.magic_section .info_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1vw;
}

.magic_section h2 {
    display: flex;
    flex-direction: column;
}

.magic_section h2 span:nth-child(1) {
    color: black;
    font-family: 'Sacramento';
    font-size: 3vw;
}

.magic_section h2 span:nth-child(2) {
    color: var(--green);
    font-size: 3vw;
}

.magic_section h2 span:nth-child(3) {
    color: black;
    font-size: 3vw;
}

.magic_section .paragraph_box {
    display: flex;
    flex-direction: column;
    gap: .5vw;
}

@media (max-width: 996px) {
    .magic_section {
        padding: 10%;
    }

    .magic_section .magic_box {
        grid-template-columns: 1fr;
        gap: 10vw;
    }

    .magic_section .info_box {
        gap: 3vw;
    }

    .magic_section h2 {
        text-align: center;
    }

    .magic_section h2 span:nth-child(1) {
        font-size: 10vw;
    }

    .magic_section h2 span:nth-child(2) {
        font-size: 8vw;
    }

    .magic_section h2 span:nth-child(3) {
        font-size: 8vw;
    }

    .magic_section .paragraph_box {
        gap: 2vw;
    }
}


/* ---ELEGANCE STYLES--- */

.elegance_section {
    padding: 5% 10%;
    background: var(--cream);
}

.elegance_section .elegance_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5vw;
}

.elegance_section .info_box {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.elegance_section svg {
    width: 20%;
}

.elegance_section h2 {
    display: flex;
    flex-direction: column;
}

.elegance_section h2 span:nth-child(1) {
    color: black;
    font-family: 'Sacramento';
    font-size: 2.5vw;
}

.elegance_section h2 span:nth-child(2) {
    color: var(--green);
    font-size: 2.5vw;
}

.elegance_section .paragraph_box {
    display: flex;
    flex-direction: column;
    gap: .5vw;
}

.elegance_section .media_box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.elegance_section .media_box::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -54%);
    width: 20vw;
    height: 28vw;
    border-radius: 1vw;
    background: var(--green);
}

.elegance_section .media_box img:nth-child(1) {
    position: relative;
    width: 80%;
    z-index: 1;
}

.elegance_section .media_box img:nth-child(2) {
    width: 30%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-30%, -50%);
}

.elegance_section .media_box img:nth-child(3) {
    width: 20%;
    position: absolute;
    top: 10%;
    right: 0;
}

@media (max-width: 996px) {
    .elegance_section {
        padding: 10%;
    }

    .elegance_section .elegance_box {
        grid-template-columns: 1fr;
        gap: 10vw;
    }

    .elegance_section .info_box {
        gap: 5vw;
    }

    .elegance_section svg {
        width: 25%;
        margin: auto;
    }

    .elegance_section h2 {
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .elegance_section h2 span:nth-child(1) {
        font-size: 10vw;
    }

    .elegance_section h2 span:nth-child(2) {
        font-size: 8vw;
    }

    .elegance_section .paragraph_box {
        gap: 2vw;
    }

    .elegance_section .media_box {
        margin-top: 10vw;
    }

    .elegance_section .media_box::before {
        width: 60vw;
        height: 90vw;
    }
}


/* ---JOIN STYLES--- */

.join_section .join_box {
    display: flex;
    flex-direction: column;
}

.join_section .join_item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 5% 10%;
}

.join_section .join_item:nth-child(1) {
    background: var(--cream);
}

.join_section .join_item:nth-child(2) {
    background: linear-gradient(160deg, var(--cream) 50%, white 50%);
}

.join_section .info_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1vw;
}

.join_section .join_item:nth-child(2) .info_box {
    order: 2;
}

.join_section h2 {
    display: flex;
    flex-direction: column;
}

.join_section h2 span:nth-child(1) {
    color: black;
    font-family: 'Sacramento';
    font-size: 2.5vw;
}

.join_section h2 span:nth-child(2) {
    color: var(--green);
    font-size: 2.5vw;
}

.join_section .paragraph_box {
    display: flex;
    flex-direction: column;
    gap: .5vw;
}

.join_section .media_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.join_section .media_box img {
    width: 60%;
    border-radius: 1vw;
    box-shadow: 1vw 1vw var(--green);
}

@media (max-width: 996px) {
    .join_section .join_item {
        grid-template-columns: 1fr;
        gap: 10vw;
        padding: 10%;
    }

    .join_section .info_box {
        gap: 5vw;
    }

    .join_section .join_item:nth-child(1) .info_box {
        order: 2;
    }

    .join_section h2 {
        text-align: center;
    }

    .join_section h2 span:nth-child(1) {
        font-size: 10vw;
    }

    .join_section h2 span:nth-child(2) {
        font-size: 8vw;
    }

    .join_section .paragraph_box {
        gap: 2vw;
    }

    .join_section .media_box img {
        width: 70%;
        box-shadow: 3vw 3vw var(--green);
    }
}


/* ---CHEERS STYLES--- */

.cheers_section {
    position: relative;
    display: block;
    padding: 5% 10%;
}

.cheers_section .leaf {
    pointer-events: none !important;
    z-index: 1;
}

.cheers_section .leaf:nth-child(1) {
    width: 6%;
    position: absolute;
    top: 50%;
    left: 5%;
}

.cheers_section .leaf:nth-child(2) {
    width: 3%;
    position: absolute;
    top: 0;
    right: 45%;
    transform: rotate(75deg);
}

.cheers_section .leaf:nth-child(3) {
    width: 4%;
    position: absolute;
    bottom: 30%;
    right: 20%;
    transform: rotate(25deg);
}

.cheers_section .cheers_box {
    display: flex;
    flex-direction: column;
    gap: 5vw;
}

.cheers_section .info_box {
    padding: 5vw;
    border-radius: 1vw;
    background: var(--green);
}

.cheers_section .info_box p {
    font-weight: 600;
    text-align: center;
}

.cheers_section .title_box h2 {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.cheers_section .title_box h2>span:nth-child(odd) {
    font-size: 2vw;
}

.cheers_section .title_box h2>span:nth-child(even) {
    font-size: 3vw;
}

.cheers_section .title_box h2 span span {
    color: var(--green);
}

@media (max-width: 996px) {
    .cheers_section {
        padding: 10%;
    }

    .cheers_section .leaf:nth-child(1) {
        width: 15%;
    }

    .cheers_section .leaf:nth-child(2) {
        width: 6%;
    }

    .cheers_section .leaf:nth-child(3) {
        width: 10%;
        bottom: 25%;
        right: 10%;
    }

    .cheers_section .cheers_box {
        gap: 10vw;
    }

    .cheers_section .title_box h2>span:nth-child(odd) {
        font-size: 3.5vw;
    }

    .cheers_section .title_box h2>span:nth-child(even) {
        font-size: 5.5vw;
    }

    .cheers_section .title_box h2 span span {
        color: var(--green);
    }
}


/* ---POPUP STYLES--- */

.noscroll {
    overflow: hidden;
}

.popup_section {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    opacity: 1;
    z-index: 98;
    transition: .5s;
}

.close_popup {
    opacity: 0;
    pointer-events: none;
}

.popup_section .backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000050;
    backdrop-filter: blur(.5vw);
}

.popup_section .popup_box {
    display: grid;
    grid-template-columns: 60% 40%;
    position: relative;
    width: 60vw;
    background: white;
    z-index: 99;
}

.popup_section .info_box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1vw;
    padding: 10% 20% 10% 10%;
    overflow: hidden;
}

.popup_section h2 {
    display: flex;
    flex-direction: column;
}

.popup_section h2 span:nth-child(1) {
    color: var(--green);
    font-family: 'Sacramento';
    font-size: 2.5vw;
}

.popup_section h2 span:nth-child(2) {
    color: black;
    font-size: 3vw;
}

.popup_section h2 span:nth-child(3) {
    color: var(--green);
    font-size: 2vw;
}

.popup_section .info_box p {
    font-size: .9vw;
    font-weight: 500;
}

.popup_section .buttons_box {
    display: flex;
    gap: 1vw;
}

.popup_section .buttons_box button {
    font-size: 1vw;
    font-weight: 600;
    border: none;
    padding: .75vw 2vw;
    border-radius: .5vw;
}

.popup_section .buttons_box button:hover {
    background: #999999;
}

.popup_section .adult {
    color: white;
    background: var(--green);
}

.popup_section .younger {
    color: white;
    background: #dddddd;
}

.popup_section .message_box p {
    color: red;
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

.popup_section .active_message_box p {
    opacity: 1;
}

.popup_section .media_box {
    position: relative;
    background: var(--green);
}

.popup_section .spirit {
    width: 70%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-40%, -50%);
    z-index: 1;
    pointer-events: none;
}

.popup_section .background_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.popup_section .background_box img {
    position: absolute;
    width: 55%;
}

.popup_section .background_box img:nth-child(1) {
    top: -10%;
    left: -10%;
    animation: translate01 20s alternate infinite;
}

.popup_section .background_box img:nth-child(2) {
    top: 33%;
    right: -10%;
    animation: translate02 15s alternate infinite;
}

.popup_section .background_box img:nth-child(3) {
    bottom: -15%;
    left: -15%;
    animation: translate01 25s alternate infinite;
}

@media (max-width: 996px) {
    .popup_section .popup_box {
        grid-template-columns: 1fr;
        width: 90vw;
    }

    .popup_section .info_box {
        gap: 3vw;
        padding: 10% 10% 20% 10%;
    }

    .popup_section h2 span:nth-child(1) {
        font-size: 8vw;
    }

    .popup_section h2 span:nth-child(2) {
        font-size: 8vw;
    }

    .popup_section h2 span:nth-child(3) {
        font-size: 5vw;
    }

    .popup_section .info_box p {
        font-size: 2.5vw;
    }

    .popup_section .buttons_box {
        gap: 5vw;
    }

    .popup_section .buttons_box button {
        font-size: 3vw;
        padding: 1.5vw 3vw;
        border-radius: 1vw;
    }

    .popup_section .spirit {
        width: 40%;
        position: relative;
        top: initial;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0) scale(1.2);
        transform-origin: bottom center;
        z-index: 1;
    }

    .popup_section .background_box img {
        position: absolute;
        width: 30%;
    }
}


/* ---KEYFRAMES--- */

@keyframes translate01 {
    from {
        transform: translate(0) rotate(0);
    }

    to {
        transform: translate(100%) rotate(180deg);
    }
}

@keyframes translate02 {
    from {
        transform: translate(0) rotate(0);
    }

    to {
        transform: translate(-100%) rotate(180deg);
    }
}