/*================ LANDING ===================*/

/*Video*/

.video {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video video {
    width: 100%;
    max-width: 1200px;
    height: auto;
    position: relative;
    margin: 0 auto;
    z-index: 4;
}




/*Who We Are*/

section.who-we-are {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 100px;
    background: var(--gray-lt);
}

.who-we-are-content {
    grid-column: col-start 8 / span 5;
    grid-row: 1;
    padding: 60px 0;
}

.who-we-are-content p {
    margin: 20px 0 30px 0;
}

.who-we-are-img {
    grid-column: col-start / span 6;
    grid-row: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    background-image: url('../img/who-we-are.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: var(--shadow);
    z-index: 3;
}

.who-we-are .drk-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 33%;
    background: var(--gradient-md);
    z-index: 1;
}






/*Where We Are*/

section.where-we-are {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 100px;
    background: var(--gradient-md);
}

.where-we-are .light-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 33%;
    background: var(--white);
    z-index: 1;
}

.where-we-are-img {
    grid-column: col-start / span 6;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    background-image: url('../img/where-we-are.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: var(--shadow);
    z-index: 3;
}

.where-we-are-content {
    grid-column: col-start 8 / span 5;
    padding: 60px 0;
}

.where-we-are-content p {
    margin: 20px 0 30px 0;
}










/*What We Do*/

.what-we-do {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 100px;
    background: var(--gradient-drk);
}

.what-we-do .heading-wrapper {
    grid-column: col-start / span 6;
}

.what-we-do-content {
    grid-column: col-start / span 7;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
}

.what-we-do-content .thing {
    width: 40%;
    margin-right: 10%;
    margin-top: 25px;
}

.what-we-do-content .thing h3 {
    margin-bottom: 5px;
}

.what-we-do .white-bg {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 25%;
    background: var(--white);
    z-index: 1;
}

.what-we-do-img {
    grid-column: col-start 9 / span 4;
    grid-row: 1 / 3;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    background-image: url('../img/what-we-do.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: var(--shadow);
    z-index: 3;
}







/*Join Us/Use Us*/

.join-us {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 100px;
    background: var(--gray-lt);
}

.join-us .grid-wrapper {
    width: 100%;
    row-gap: 100px;
}

.join-our-team-img {
    grid-column: col-start / span 8;
    grid-row: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    background-image: url('../img/join-our-team.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    box-shadow: var(--shadow);
}

.join-our-team-content {
    grid-column: col-start 6 / span 7;
    grid-row: 1;
    height: 350px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    padding: 45px 70px;
    box-shadow: var(--shadow);
}

.join-our-team-content p {
    margin: 20px 0 30px 0;
}

.use-our-services-img {
    grid-column: col-start 5 / span 8;
    grid-row: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    background-image: url('../img/use-our-services.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    box-shadow: var(--shadow);
}

.use-our-services-content {
    grid-column: col-start / span 7;
    grid-row: 2;
    height: 350px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    padding: 70px;
    box-shadow: var(--shadow);
}

.use-our-services-content p {
    margin: 20px 0 30px 0;
}






/*Media Queries*/

@media (max-width: 1100px) {

    .join-us .grid-wrapper {
        row-gap: 0;
    }

    .join-our-team-img {
        grid-column: col-start / span 12;
        grid-row: 1;
    }
    
    .join-our-team-content {
        grid-column: col-start / span 12;
        grid-row: 2;
        width: 90%;
        height: auto;
        margin: 0 auto;
        position: relative;
        top: -5px;
        margin-bottom: -50px;
    }
    
    .use-our-services-img {
        grid-column: col-start / span 12;
        grid-row: 3;
    }
    
    .use-our-services-content {
        grid-column: col-start / span 12;
        grid-row: 4;
        width: 90%;
        height: auto;
        margin: 0 auto;
        position: relative;
        top: -5px;
        margin-bottom: -150px;
        padding: 45px 70px;
    }
    
}





@media (max-width: 992px) {

    section.who-we-are, section.where-we-are, section.what-we-do, section.join-us {
        padding: 75px 100px;
    }

    .video video {
        z-index: 2;
    }

    .who-we-are-content {
        grid-column: col-start 7 / span 6;
        padding: 20px 0;
    }

    .who-we-are-img {
        grid-column: col-start / span 5;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
    }

    .where-we-are-content {
        grid-column: col-start 7 / span 6;
        padding: 20px 0;
    }

    .where-we-are-img {
        grid-column: col-start / span 5;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
    }

    .what-we-do .heading-wrapper {
        grid-column: col-start / span 12;
        display: flex;
        justify-content: center;
    }

    .what-we-do-img {
        display: none;
    }

    .what-we-do .white-bg {
        display: none;
    }

    .what-we-do-content {
        grid-column: col-start / 13;
    }

    .what-we-do-content .thing {
        text-align: center;
        margin-right: 0;
        margin-bottom: 10px;
        width: 50%;
        padding: 20px;
    }
}





@media (max-width: 768px) {

    .who-we-are-content {
        grid-column: col-start / span 12;
        padding: 0;
    }

    .who-we-are-img {
        display: none;
    }

    .who-we-are .drk-bg {
        display: none;
    }

    .where-we-are .light-bg {
        display: none;
    }

    .where-we-are-img {
        grid-column: col-start / span 12;
        width: 100%;
        aspect-ratio: 3 / 2;
    }

    .where-we-are-content {
        grid-column: col-start / span 12;
        margin-top: 20px;
        padding: 0;
    }

    section.who-we-are, section.where-we-are, section.what-we-do, section.join-us {
        padding: 50px 10%;
    }

    .what-we-do-content .thing {
        width: 80%;
        padding: 0;
    }

    .join-our-team-content {
        grid-column: col-start / span 12;
        grid-row: 2;
        width: 100%;
        height: auto;
        margin: 0 auto;
        position: relative;
        top: 50%;
        padding: 50px;
    }
    
    .use-our-services-img {
        margin-top: 50px;
    }

    .use-our-services-content {
        grid-column: col-start / span 12;
        grid-row: 4;
        width: 100%;
        height: auto;
        margin: 0 auto;
        position: relative;
        top: 50%;
        padding: 50px;
        margin-bottom: 0;
    }
}





@media (max-width: 450px) {
    .join-our-team-content, .use-our-services-content {
        background: none;
        box-shadow: none;
        padding: 0;
        margin-top: 5px;
        margin-bottom: 50px;
    }
}
