/* ---BANNER STYLES--- */

.banner_section {
    position: relative;
    height: 100vh;
    padding: 0 !important;
    background: linear-gradient(to bottom, var(--blue) 0%, transparent 25%, transparent 75%, var(--blue) 100%);
}

.banner_section .bg_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: .4;
}

.banner_section .banner_contain {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.banner_section .media_box {
    position: relative;
    display: flex;
    align-items: center;
}

.banner_section .blobs {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30%;
}

.banner_section .media_box:first-child {
    justify-content: flex-start;
}

.banner_section .media_box:first-child .blobs {
    transform: translate(-90%, -10%) scale(-1);
}

.banner_section .media_box:last-child {
    justify-content: flex-end;
}

.banner_section .media_box:last-child .blobs {
    transform: translate(-50%, -135%);
}

.banner_section .hands {
    width: 100%;
    mix-blend-mode: screen;
}

.banner_section .left_hand {
    animation: hands_move 10s forwards infinite;
    animation-direction: reverse;
}

.banner_section .right_hand {
    animation: hands_move 10s forwards infinite;
}

.banner_section .title_contain {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner_section h1 {
    font-size: 100px;
    text-align: center;
    line-height: .9;
}

.banner_section .turquoise_text {
    color: var(--turquoise);
}

.banner_section .dots {
    width: 45%;
    position: absolute;
    transform: translate(30%, 30%);
    opacity: .4;
}

@keyframes hands_move {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(5px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 996px) {
    .banner_section {
        height: initial;
        padding: 40% 0 10% 0 !important;
    }
    .banner_section .banner_contain {
        grid-template-columns: 1fr;
    }
    .banner_section .blobs {
        width: 20%;
    }
    .banner_section .media_box:first-child .blobs {
        transform: translate(-180%, -20%) scale(-1);
    }
    .banner_section .media_box:last-child .blobs {
        transform: translate(50%, -125%);
    }
    .banner_section .hands {
        width: 60%;
    }
    .banner_section h1 {
        font-size: 60px;
    }
    .banner_section .dots {
        width: 40%;
    }
}


/* ---POINT STYLES--- */

.point_section {
    position: relative;
    padding: 5% 10% 10% 10%;
    background: linear-gradient(to bottom, var(--blue) 0%, transparent 25%, transparent 75%, var(--blue) 100%);
}

.point_section .bg_image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: .4;
    z-index: -1;
}

.point_section .point_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.point_section .info_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.point_section .info_box .subtitle {
    color: var(--turquoise);
    font-size: 22px;
    font-weight: 500;
}

.point_section .button_contain {
    width: 200px;
}

.point_section .media_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.point_section .icon_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.point_section .icon_box img {
    width: 50%;
}

.point_section .icon_box h2 {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 996px) {
    .point_section {
        padding: 15% 10% 20% 10%;
    }
    .point_section .point_box {
        grid-template-columns: 1fr;
    }
    .point_section .info_box {
        align-items: center;
        text-align: center;
    }
    .point_section .info_box .subtitle {
        font-size: 20px;
    }
    .point_section .media_box {
        gap: 30px;
    }
    .point_section .icon_box svg {
        width: 70%;
    }
    .point_section .icon_box h2 {
        font-size: 18px;
    }
}


/* ---POST STYLES--- */

.post_section {
    position: relative;
    padding: 10%;
    background: linear-gradient(to bottom, var(--blue) 0%, transparent 25%, transparent 75%, var(--blue) 100%);
}

.post_section .bg_image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: .4;
    z-index: -1;
}

.post_section .post_box {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.post_section .title_box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.post_section .title_box p {
    width: 70%;
    text-align: center;
}

.post_section .post_items {
    width: 100%;
}

.post_section .post_item {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    padding: 1vw;
    margin: 0 .5vw;
    border-radius: .5vw;
    background: var(--turquoise);
}

.post_section .media_box {
    position: relative;
    height: 12vw;
    overflow: hidden;
    border-radius: .25vw;
}

.post_section .media_box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.post_section .info_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.post_section .info_box h2 {
    color: var(--blue);
    font-size: 1.5vw;
}

.post_section .info_box p {
    color: var(--blue);
}

.post_section .button_contain {
    width: fit-content;
}

@media (max-width: 996px) {
    .post_section .title_box p {
        width: 100%;
    }
    .post_section .post_item {
        gap: 3vw;
        padding: 3vw;
        margin: 1vw;
        border-radius: 1.5vw;
    }
    .post_section .media_box {
        height: 70vw;
        border-radius: .75vw;
    }
    .post_section .info_box h2 {
        font-size: 5vw;
    }
}


/* ---MAIN STYLES--- */

.main_section .main_box {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.main_section .title_box {
    display: grid;
    grid-template-columns: .15fr 1fr;
    gap: 2vw;
}

.main_section .title_box .media_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_section .title_box .media_box img {
    width: 100%;
}

.main_section .gallery_box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1vw;
}

.main_section .gallery_item {
    position: relative;
    width: 100%;
    height: 15vw;
    cursor: pointer;
    overflow: hidden;
}

.main_section .gallery_item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: .25s;
}

.main_section .gallery_item:hover img {
    transform: scale(1.05);
}

.main_section .gallery_item i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3vw;
    z-index: 1;
}

@media (max-width: 996px) {
    .main_section .main_box {
        gap: 5vw;
    }
    .main_section .title_box {
        grid-template-columns: 1fr;
        gap: 5vw;
    }
    .main_section .title_box .media_box img {
        width: 50%;
    }
    .main_section .gallery_box {
        grid-template-columns: repeat(2, 1fr);
        gap: 5vw;
    }
    .main_section .gallery_item {
        height: 30vw;
    }
    .main_section .gallery_item i {
        font-size: 10vw;
    }
}


/* ----LIGHTBOX STYLES--- */

.light_section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: .25s;
}

.light_section.active {
    opacity: 1;
    pointer-events: inherit;
}

.light_section .light_box {
    position: relative;
    height: 40vw;
    z-index: 1;
}

.light_section .light_box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.light_section .backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000090;
    backdrop-filter: blur(.1vw);
}

@media (max-width: 996px) {
    .light_section .light_box {
        height: fit-content;
    }
}