
.what-we-do-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    background-color: #ccd4dd;
}


.what-we-do-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.what-we-do-photo {
    width: 15vw;
    height: 15vw;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.what-we-do-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 40px 0 40px 40px;
}

.what-we-do-info h1 {
    margin-bottom: 30px;
    font-size: 40px;
    color: #5b9089;
}

.what-we-do-info p {
    line-height: 1.7;
}

.img-color-block {
    position: relative;
}

.color-block {
    width: 15vw;
    height: 15vw;
    background-color: #7CB6B0;
    position: absolute;
    z-index: 1;
    right: -30px;
    top: -30px;
}

.person-block {
    display: flex;
    gap: 40px;
    height: 250px;
}

.person-img {
    width: auto;
    height: 100%;
}

.person-img img {
    height: 100%;
    width: 250px;
    object-fit: cover;
}

.person-block:nth-of-type(even) {
    flex-direction: row-reverse;
}

.person-info {
    display: grid;
}

.person-block:nth-of-type(odd) .person-info {
    border-left: 1px solid #ccd4dd;
    padding-left: 40px;
}

.person-block:nth-of-type(even) .person-info {
    border-right: 1px solid #ccd4dd;
    padding-right: 40px;
    text-align: right;
}

.person-name {
    color: #85b7b0;
    font-weight: 600;
}

.person-contact {
    align-self: flex-end;
    display: flex;
    flex-direction: column;
}

.person-contact p {
    margin: 0;
}

.person-contact a {
    text-decoration: none;
    color: #ccd4dd;
}

.person-about {
    color: #ccd4dd;
}

.person-position {
    color: #ccd4dd;
    font-size: 30px;
    font-weight: 200;
    text-transform: uppercase;
}

.meet-us-container .heading {
    margin: 50px auto 100px;
    text-align: center;
    font-size: 50px;
    color: #ccd4dd;
}

@media (max-width: 768px) {
    .person-block {
        flex-direction: column;
        align-items: center;
        height: 100%;
    }

    .person-block:nth-of-type(even) {
        flex-direction: column;
    }

    .person-block:nth-of-type(odd) .person-info {
        border-left: none;
        border-top: 1px solid #ccd4dd;
        padding: 40px 0 0 0;
        text-align: center;
    }

    .person-block:nth-of-type(even) .person-info {
        border-right: none;
        border-top: 1px solid #ccd4dd;
        padding: 40px 0 0 0;
        text-align: center;
    }
}

@media (max-width: 1000px) {
    .what-we-do-container {
        grid-template-columns: 1fr;
    }

    .what-we-do-photo {
        width: 20vw;
        height: 20vw;
    }
}

@media (max-width: 600px) {
    .what-we-do-info {
        padding: 40px;
    }

    .img-color-block {
        display: none
    }
}
