.section_banner {
    width: 100%;
    height: 100dvh;
    min-height: 500px;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
}

.banner_title, .banner_text, .banner_btn {
    z-index: 100;
}

.banner_title {
    width: 90%;
    text-align: center;
    font-size: 3rem;
    color: var(--color_white);
    font-weight: 700;
    margin: 20px 0;
}

.banner_text {
    width: 90%;
    text-align: center;
    color: var(--color_white);
    font-weight: 400;
}

.banner_btn {
    width: auto;
    height: auto;
    color: var(--color_white);
    text-decoration: none;
    border-bottom: 2px solid var(--color_white);
    opacity: .6;
    padding: 8px;
    transition: ease-in-out .4s;
    text-align: center;
}

.banner_background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    filter: brightness(40%);
}

.section_products {
    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

.product_item {
    width: 50%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.video_product {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section_history {
    width: 100%;
    height: 100vh;
    min-height: 500px;
    position: relative;
    
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
}

.history_title, .history_text, .history_btn {
    z-index: 100;
}

.history_title {
    width: 90%;
    text-align: center;
    font-size: 2.6rem;
    color: var(--color_white);
    font-weight: 700;
    margin: 20px 0;
}

.history_text {
    width: 90%;
    text-align: center;
    color: var(--color_white);
    font-weight: 400;
}

.history_btn {
    width: auto;
    height: auto;
    color: var(--color_white);
    text-decoration: none;
    border-bottom: 2px solid var(--color_white);
    opacity: .6;
    padding: 8px;
    transition: ease-in-out .4s;
}

.history_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(50%);
}

.section_creations {
    width: 100%;
    height: auto;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.video_creation {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* .creations_title {
    font-size: 2rem;
    color: var(--color_black);
}

.creations_slider_arrow {
    width: 52px;
    height: 52px;
    position: absolute;
    top: 50%;
    cursor: pointer;
}

#creations_slider_arrow_left {
    left: 6%;
}

#creations_slider_arrow_right {
    right: 6%;
}

.creations_container {
    width: 80%;
    height: 70%;
    overflow: hidden;
}

.creations {
    width: calc(500% / 2);
    height: 100%;
    list-style: none;
    margin-left: -50%;
    
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.creation {
    width: calc(100% / 5);
    height: 90%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.creation_link {
    width: 300px;
    height: 100%;
    text-decoration: none;
    box-shadow: 0 0 4px var(--color_golden);
    border-radius: 10px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.creation_img {
    width: auto;
    height: 80%;
    object-fit: cover;
}

.creation_title {
    color: var(--color_black);
    font-size: 1.4rem;
} */

@media(hover:hover) {
    .banner_btn:hover {
        opacity: 1;
    }

    .product_btn:hover {
        opacity: 1;
    }

    .history_btn:hover {
        opacity: 1;
    }
}

@media screen and (max-width: 1000px) {
    .creations {
        width: 500%;
        margin-left: -100%;
    }

    .creation {
        width: calc(100% / 5);
    }

    .creation_link {
        width: 280px;
    }

    #creations_slider_arrow_left {
        left: 2%;
    }
    
    #creations_slider_arrow_right {
        right: 2%;
    }
}

@media screen and (max-width: 974px) {
    .section_products {
        height: auto;

        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .product_item {
        width: 100%;
        height: 320px;
    }
}