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

.main_section {
    position: relative;
    height: 50vw;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: black;
}

.main_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--black), transparent 30%);
    z-index: 1;
}

.main_section .absolute_media {
    object-position: top center;
}

@media (max-width: 996px) {
    .main_section {
        height: 130vw;
    }
}


/* ---ABOUT STYLES--- */

.about_section {
    padding: 5vw 0;
    background: var(--pink);
}

.about_section .about_box {
    display: flex;
    flex-direction: column;
    gap: 2.5vw;
}

.about_section .title_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vw;
    padding: 0 5vw;
}

.about_section .title_box h1 {
    font-family: "Road Rage";
    color: var(--yellow);
    font-weight: initial;
    text-align: center;
}

.about_section .title_box p {
    width: 75%;
    text-align: center;
}

.about_section .about_item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.about_section .media_box {
    display: flex;
}

.about_section .info_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1vw;
    padding: 2.5vw 5vw 2.5vw 2.5vw;
}

.about_section .subtitle {
    width: fit-content;
    position: relative;
    color: var(--blue);
    font-size: 1.2vw;
    font-weight: bold;
}

.about_section .subtitle::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(110%, -50%);
    width: 5vw;
    height: .25vw;
    background: var(--blue);
}

.about_section .info_box h2 {
    font-family: "Antonio", sans-serif;
    font-size: 2.5vw;
}

@media (max-width: 996px) {
    .about_section {
        padding: 15vw 0;
    }
    .about_section .about_box {
        gap: 10vw;
    }
    .about_section .title_box {
        gap: 3vw;
    }
    .about_section .title_box h1,
    .about_section .title_box p {
        width: 100%;
        text-align: left;
    }
    .about_section .about_item {
        grid-template-columns: 1fr;
    }
    .about_section .info_box {
        gap: 3vw;
        padding: 10vw 5vw 0 5vw;
    }
    .about_section .subtitle {
        font-size: 4vw;
    }
    .about_section .subtitle::before {
        transform: translate(120%, -50%);
        width: 10vw;
        height: .6vw;
    }
    .about_section .info_box h2 {
        font-size: 6vw;
    }
}


/* ---DIVIDER STYLES--- */

.divider_section {
    position: relative;
    height: 6vw;
}

@media (max-width: 996px) {
    .divider_section {
        height: 15vw;
    }
}


/* ---EVENTS STYLES--- */

.events_section .events_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.events_section .events_item {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.events_section .events_item:nth-child(1) {
    padding: 5vw 2.5vw 5vw 5vw;
}

.events_section .events_item:nth-child(2) {
    align-items: center;
    padding: 5vw 5vw 5vw 2.5vw;
    background: var(--yellow);
}

.events_section .subtitle {
    width: fit-content;
    position: relative;
    color: var(--yellow);
    font-size: 1.2vw;
    font-weight: bold;
}

.events_section .subtitle::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(110%, -50%);
    width: 5vw;
    height: .25vw;
    background: var(--yellow);
}

.events_section .events_item:nth-child(2) a {
    width: 30%;
}

.events_section .events_item:nth-child(2) p {
    width: 70%;
    color: var(--black);
    text-align: center;
}

.events_section h2 {
    font-family: "Antonio", sans-serif;
    font-size: 2.5vw;
}

.events_section .events_item:nth-child(2) h2 {
    width: 70%;
    color: var(--black);
    text-align: center;
}

@media (max-width: 996px) {
    .events_section .events_box {
        grid-template-columns: 1fr;
    }
    .events_section .events_item {
        gap: 3vw;
    }
    .events_section .events_item:nth-child(1) {
        padding: 15vw 5vw;
    }
    .events_section .events_item:nth-child(2) {
        padding: 15vw 5vw;
    }
    .events_section .subtitle {
        font-size: 4vw;
    }
    .events_section .subtitle::before {
        transform: translate(120%, -50%);
        width: 10vw;
        height: .6vw;
    }
    .events_section .events_item:nth-child(2) a {
        width: 50%;
    }
    .events_section .events_item:nth-child(2) p {
        width: 100%;
    }
    .events_section h2 {
        font-size: 6vw;
    }
    .events_section .events_item:nth-child(2) h2 {
        width: 100%;
    }
}