/* ---MAIN STYLES--- */

.main_section {
    overflow: hidden;
    border-bottom: .05vw solid var(--whitesmoke);
}

.main_section .main_box {
    position: relative;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    padding: 0 0 0 2.5vw;
}

.main_section .info_box {
    height: fit-content;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2vw;
}

.main_section .info_box p:first-child {
    width: fit-content;
    font-family: "Caviar Dreams Bold";
    color: white;
    font-size: 2vw;
    padding: .5vw 2vw;
    background: var(--mint);
}

.main_section .info_box p:first-child span {
    font-family: "Caviar Dreams Bold";
    color: black;
}

.main_section .info_box h1 {
    width: 70%;
}

.main_section .info_box p {
    width: 65%;
}

.main_section .media_box {
    position: relative;
    height: 50vw;
    border-left: .05vw solid var(--whitesmoke);
}

.main_section .bg_video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 996px) {
    .main_section {
        border-bottom: .1vw solid var(--whitesmoke);
    }
    .main_section .main_box {
        grid-template-columns: 100%;
        padding: 0;
    }
    .main_section .info_box {
        order: 2;
        gap: 5vw;
        padding: 0;
    }
    .main_section .info_box p:first-child {
        width: 100%;
        font-size: 5vw;
        text-align: center;
        padding: 2vw;
    }
    .main_section .info_box h1 {
        width: 80%;
        padding: 0 5vw;
    }
    .main_section .info_box p:last-child {
        width: 95%;
        margin: 0 5vw 5vw 5vw;
    }
    .main_section .media_box {
        height: 100vw;
        border-left: 0;
        border-bottom: .1vw solid var(--whitesmoke);
    }
}


/* ---COCKTAIL STYLES--- */

.cocktail_section {
    padding: 5vw 2.5vw;
    border-bottom: .05vw solid var(--whitesmoke);
}

.cocktail_section .cocktail_box {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 10vw;
}

.cocktail_section .info_item {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.cocktail_section .gallery_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cocktail_section .gallery_box img {
    width: 30%;
    border-radius: 50%;
}

.cocktail_section .text_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2vw;
    padding: 3vw;
    background: var(--mint);
}

.cocktail_section .text_box h2 {
    width: 75%;
    color: white;
}

.cocktail_section .media_box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.cocktail_section .media_box img:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    animation: scale 5s alternate infinite;
}

.cocktail_section .media_box img:nth-child(2) {
    border-radius: 50% 50% 0 0;
}

@media (max-width: 996px) {
    .cocktail_section {
        padding: 5vw;
        border-bottom: .1vw solid var(--whitesmoke);
    }
    .cocktail_section .cocktail_box {
        grid-template-columns: 1fr;
        gap: 5vw;
    }
    .cocktail_section .info_item {
        gap: 5vw;
    }
    .cocktail_section .text_box {
        gap: 5vw;
        padding: 10vw 5vw;
    }
    .cocktail_section .text_box p {
        width: 95%;
    }
    .cocktail_section .media_box {
        gap: 5vw;
    }
}


/* ---PARTNER STYLES--- */

.partner_section {
    padding: 5vw 2.5vw;
}

.partner_section .partner_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vw;
}

.partner_section .title_box {
    width: 80%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.partner_section .title_box h2 {
    width: 60%;
}

.partner_section .title_box p {
    width: 70%;
}

.partner_section .cards_box {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3vw;
}

.partner_section .card_item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner_section .card_item img {
    border-radius: 1vw;
}

.partner_section .card_item h2 {
    width: 90%;
    color: white;
    font-size: 1.5vw;
    text-align: center;
    border-radius: 5vw;
    padding: .5vw;
    transform: translateY(-50%);
    background: var(--mint);
}

@media (max-width: 996px) {
    .partner_section {
        padding: 5vw;
    }
    .partner_section .partner_box {
        gap: 10vw;
    }
    .partner_section .title_box {
        width: 100%;
        gap: 5vw;
    }
    .partner_section .title_box h2 {
        width: 100%;
    }
    .partner_section .title_box p {
        width: 95%;
    }
    .partner_section .title_box img {
        top: 0;
        right: 0;
        width: 20%;
    }
    .partner_section .cards_box {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 10vw;
    }
    .partner_section .card_item img {
        border-radius: 5vw;
    }
    .partner_section .card_item h2 {
        font-size: 5vw;
    }
}


/* ---FOOTER STYLES--- */

footer .footer_item:nth-child(1) a {
    display: block;
}