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

.main_section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.main_section:before,
.main_section:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    mix-blend-mode: multiply;
    transition: .25s;
    opacity: .9;
    z-index: 3;
}

.main_section:before {
    width: 70vw;
    height: 100%;
    background: linear-gradient(to right, var(--blue), transparent);
}

.main_section:after {
    width: 100vw;
    height: 70%;
    background: linear-gradient(to top, var(--blue), transparent);
}

.main_section .main_box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10vw;
}

.main_section .info_box {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1vw;
    z-index: 4;
}

.main_section .info_box p {
    width: 50%;
}

.main_section .media_box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.main_section .st_slider {
    animation: slideup 9s infinite;
}

.main_section .ns_slider {
    animation: slideup 9s infinite;
    animation-delay: 3s;
}

.main_section .rd_slider {
    animation: slideup 9s infinite;
    animation-delay: 6s;
}

@media (max-width: 996px) {
    .main_section .info_box {
        gap: 3vw;
    }
    .main_section .info_box p {
        width: 100%;
    }
}


/* ---SERVICES STYLES--- */

.services_section {
    padding: 5vw 10vw;
}

.services_section .services_box {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 40% 60%;
}

.services_section .nav_box {
    position: absolute;
    bottom: 0;
    right: 15%;
    z-index: 2;
    user-select: none;
}

.services_section .nav_box i {
    color: var(--yellow);
    font-size: 2vw;
    cursor: pointer;
    transition: .25s;
}

.services_section .nav_box i:hover {
    color: white;
}

.services_section .nav_box i.disabled {
    pointer-events: none;
    opacity: .5;
}

.services_section .info_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1vw;
}

.services_section .slick-list {
    padding: 0 3vw;
}

.services_section .slick-slide {
    opacity: 0;
    transition: .25s;
}

.services_section .slick-active {
    opacity: 1;
}

.services_section .slick-current {
    transform: scale(1.2);
}

.services_section .services_item {
    width: 100%;
    height: 25vw;
    position: relative;
    transform: skewx(-5deg) scale(.75);
    display: flex;
    align-items: flex-end;
    padding: 0 0 2vw 2vw;
    border-radius: .5vw;
    overflow: hidden;
}

.services_section .services_item:hover {
    transform: skewx(-5deg) scale(.7);
}

.services_section .services_item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
    mix-blend-mode: multiply;
    background: linear-gradient(to top, var(--blue), transparent);
    transition: .5s;
    opacity: .75;
    z-index: 1;
}

.services_section .services_item:hover::before {
    opacity: 1;
}

.services_section .slick-current .services_item {
    transform: skewx(-5deg) scale(.8);
}

.services_section .slick-current .services_item:hover {
    transform: skewx(-5deg) scale(.75);
}

.services_section .services_item .absolute_media {
    transform: skewx(5deg) scale(1.3);
}

.services_section .description_box {
    display: flex;
    align-items: center;
    gap: .5vw;
    transform: skewx(5deg);
    z-index: 1;
    transition: .25s;
    opacity: 1;
}

.services_section .description_box i {
    color: var(--yellow);
    font-size: 0vw;
    opacity: 0;
    transition: .25s;
    z-index: 2;
}

.services_section .services_item:hover .description_box i {
    font-size: 2.5vw;
    opacity: 1;
}

.services_section .services_item h2,
.services_section .services_item h2 span {
    font-family: "Montserrat", sans-serif;
    font-size: 1.25vw;
}

@media (max-width: 996px) {
    .services_section {
        padding: 2.5vw 0 10vw 0;
    }
    .services_section .services_box {
        grid-template-columns: 100%;
        gap: 0;
    }
    .services_section .nav_box {
        display: none;
    }
    .services_section .info_box {
        gap: 3vw;
        order: 2;
        padding: 0 10vw;
    }
    .services_section .slick-list {
        padding: 0 10vw;
    }
    .services_section .slick-current {
        transform: scale(1);
    }
    .services_section .services_item {
        height: 100vw;
        transform: skewx(-5deg) scale(.8);
        padding: 0 0 5vw 5vw;
        border-radius: 1vw;
    }
    .services_section .services_item:hover {
        transform: skewx(-5deg) scale(.75);
    }
    .services_section .slick-current .services_item {
        transform: skewx(-5deg) scale(.8);
    }
    .services_section .slick-current .services_item:hover {
        transform: skewx(-5deg) scale(.75);
    }
    .services_section .description_box {
        gap: 3vw;
    }
    .services_section .description_box i {
        font-size: 0vw;
    }
    .services_section .services_item:hover .description_box i {
        font-size: 10vw;
    }
    .services_section .services_item h2,
    .services_section .services_item h2 span {
        font-size: 6vw;
    }
}


/* ---VALUES STYLES--- */

.values_section {
    padding: 5vw 10vw
}

.values_section .values_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5vw;
}

.values_section .value_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vw;
}

.values_section .value_item img {
    width: 30%;
}

.values_section .value_item h2 {
    color: var(--yellow);
    font-size: 1.5vw;
    text-align: center;
}

.values_section .value_item p {
    text-align: center;
}

@media (max-width: 996px) {
    .values_section {
        padding: 10vw
    }
    .values_section .values_box {
        grid-template-columns: 1fr;
        gap: 10vw;
    }
    .values_section .value_item {
        gap: 3vw;
    }
    .values_section .value_item h2 {
        font-size: 5vw;
    }
}


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

.about_section {
    padding: 5vw 10vw;
}

.about_section .about_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
}

.about_section .media_box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about_section .media_box img {
    border-radius: .5vw;
}

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

@media (max-width: 996px) {
    .about_section {
        padding: 10vw;
    }
    .about_section .about_box {
        grid-template-columns: 1fr;
        gap: 10vw;
    }
    .about_section .media_box img {
        border-radius: 1vw;
    }
    .about_section .info_box {
        gap: 3vw;
    }
}


/* ---CONTACT STYLES--- */

.contact_section .media_box {
    order: 2;
}