/* HERO SECTION */
.hero-container{
    position: relative;
}

.hero-img{
    width: 100%;
    max-height: 80vh;
    padding-bottom: 30px !important;
}

.hero-headline-div{
    position: absolute;
    bottom: 30px;
    padding: 25px;
    width: 100%;
    box-sizing: border-box;
    background-color: #00000080;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    z-index: 1;
}

.hero-container h1 {
    margin: 0;
}

/* OUR WORK SECTION */
.our-work-sub-container .image-box{
    width: calc(33% - 10px);
    box-sizing: border-box;
    aspect-ratio: 1/1;
    background-color: #555555a4;
}

@media only screen and (max-width: 630px) {
    .our-work-sub-container .image-box{
        width: calc(50% - 10px);
    }
}

@media only screen and (max-width: 350px) {
    .our-work-sub-container .image-box{
        width: calc(100% - 10px);
    }
}

.home-page-video-container{
    text-align: center;
    margin: 100px auto 100px auto;
}

.home-page-video-container > .limit-width-med{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media only screen and (max-width: 630px) {
    .home-page-video-container video{
        width: calc(100% - 20px);
        max-height: 80vh;
    }
}


/* CASE STUDIES SECTION */

.case-studies-parent-container{
    background-color: #F1EFF0;
    padding: 50 0 100 0;
}

.case-study-container {
    display: flex;
    color: #5F5F5F;
    padding: 50 0 50 0;
}

.case-study-container img{
    min-width: 40%;
    max-width: 60%;
    max-height: 50vh;
    object-fit: contain;
}

.case-study-text-container {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}

.case-study-container.reverse{
    flex-direction: row-reverse;
}

/* VIDEO */
.home-video{
    width: 100%;
    padding: 10px;
    max-height: 90vh;
    box-sizing: border-box;
    object-fit: cover;
}

@media only screen and (max-width: 630px) {
    .home-video{
        width: calc(100% - 20px);
    }
}

/* CLIENTS SECTION */

.clients-container{
    padding: 75 50 100 50;
}
.clients-container .limit-width-med{
    /* display: flex; */
    /* align-items: center; */
}

.clients-logos-container {
    /* padding: 0 0 0 50; */
    flex: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.client-logo {
    width: 150px;
    padding: 10px 20px;
    box-sizing: border-box;
    max-height: 100px;
    max-width: 200px;
    object-fit: contain;
}

@media only screen and (max-width: 1100px) {
    .clients-container .limit-width-med{
        flex-direction: column;
        padding: 10 0 50 10;
    }

    .clients-container .limit-width-med h2{
        padding-left: 0;
    }
    .clients-logos-container{
        padding: 10px;
        
    }
}


@media only screen and (max-width: 630px) {
    .clients-container{
        padding: 10px;
    }

    .client-logo {
        width: calc(75%);
        height: fit-content;
    }
}

.clients-container h1 {
    flex: 1;
    /* text-align: justify; */
}

/* Testimonials + News Articles Section */
#testimonials-container, #news-articles-container{
    display: flex;
    justify-content: center;
    align-items: center;
}