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

.main_section {
    position: relative;
    padding: 5vw;
    border-bottom: .05vw solid var(--whitesmoke);
}

.main_section .main_box {
    display: grid;
    grid-template-columns: 50% 45%;
    gap: 5%;
}

.main_section .media_box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1vw;
}

.main_section .media_box h1 {
    width: 60%;
    position: relative;
    text-align: center;
    z-index: 1;
}

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

.main_section .info_box h2 {
    font-size: 2vw;
}

@media (max-width: 996px) {
    .main_section {
        padding: 5vw;
        border-bottom: .1vw solid var(--whitesmoke);
    }
    .main_section .main_box {
        grid-template-columns: 1fr;
        gap: 5vw;
    }
    .main_section .media_box {
        gap: 3vw;
    }
    .main_section .media_box h1 {
        width: 60%;
    }
    .main_section .info_box {
        gap: 5vw;
    }
    .main_section .info_box h2 {
        font-size: 5vw;
    }
}


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

.services_section {
    border-bottom: .05vw solid var(--whitesmoke);
}

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

.services_section .info_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: .05vw solid var(--whitesmoke);
    padding: 5vw 0;
}

.services_section .title_box {
    position: relative;
    padding: 0 5vw;
}

.services_section .service_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1vw;
    padding: 2.5vw 5vw;
    border-bottom: .05vw solid var(--whitesmoke);
}

.services_section .service_item:last-child {
    border-bottom: 0;
}

.services_section .service_item h2 {
    font-size: 2vw;
}

.services_section .media_box {
    height: 55vw;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 995px) {
    .services_section {
        border-bottom: .1vw solid var(--whitesmoke);
    }
    .services_section .services_box {
        grid-template-columns: 1fr;
    }
    .services_section .info_box {
        order: 2;
        padding: 0;
        border-right: 0;
        border-top: .1vw solid var(--whitesmoke);
    }
    .services_section .title_box {
        padding: 5vw 5vw 0 5vw;
    }
    .services_section .title_box h2 {
        width: 100%;
    }
    .services_section .title_box img {
        top: 10%;
        right: 25%;
        width: 20%;
    }    
    .services_section .service_item {
        gap: 2vw;
        padding: 5vw;
        border-bottom: .1vw solid var(--whitesmoke);
    }
    .services_section .service_item h2 {
        font-size: 5vw;
    }
    .services_section .media_box {
        height: 100vw;
    }
}


/* ---FEED STYLES--- */

.feed_section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.feed_section iframe {
    width: 100%;
    height: 40vw;
}

@media (max-width: 996px) {
    .feed_section iframe {
        height: 110vw;
    }
}