/* -- Section 1 - Banner -- */
section.banner {
    width: 100%;
    background-size: cover;
    background-position: 0 38%;
    background-repeat: no-repeat;
}
section.banner div.background-container {
    padding: 60px 0 100px;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

section.banner h1 {
    width: 100%;
    overflow-wrap: break-word;
    font-size: 55.43px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    color: white;
    text-align: center;
    line-height: 0.9em;
}

main {
    padding: 120px 15vw 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* -- Section 2 - Gallery Section -- */
.gallery {
    z-index: initial;
    width: 100%;
}

/* Load more button */
.vp-pagination__load-more {
    margin-top: 40px;
    display: block;
    background-color: var(--primary-color) !important;
    border-radius: 0;
    padding: 16px 60px !important;
    color: white !important;
    width: fit-content;
    cursor: pointer;
    height: fit-content;
}
.vp-pagination__load-more span {
    font-family: "DM Sans", sans-serif !important;
    font-weight: normal;
}

/* Gets rid of zoom affect on images (sets the variable value to none) */
.vp-portfolio__items-style-default {
    --vp-items-style-default--image-hover__transform: none !important;
}

/* -- Responsive CSS -- */
@media screen and (max-width: 830px) {
    main {
        padding: 120px 8vw 160px;
    }
}