body {
    font-family: inter;
    color: #101010;
    line-height: 1.5;
    overflow-x: hidden;
}

.main-container {
    width: 100%;
    padding: 180px 50px 50px 50px
}

.first-section {
    width: 80%;
    display: flex;
    flex-direction: row;
    margin: auto;
}

.our-vision {
    width: 50%;
    text-align: center
}

.our-mission {
    width: 50%;
    text-align: center
}

.our-mission img, .our-vision img {
    width: 50px
}

.our-mission h2, .our-vision h2 {
    font-family: Inter;
    font-weight: 600;
    font-size: 40px;
    text-align: center;
    margin: 0
}

.our-mission span, .our-vision span {
    font-family: Inter;
    font-weight: 600;
    font-size: 20px;
    text-align: center
}

.our-mission p, .our-vision p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    margin: 20px auto
}

.hr-line {
    width: 80%;
    background-color: #cecece;
    border-top: 2px solid #cecece;
    margin: 50px auto
}

.our-crew h2 {
    font-family: Inter;
    font-weight: 600;
    font-size: 48px;
    text-align: center;
    margin: auto;
}

.our-crew {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.member-one, .member-two, .member-three, .member-four {
    display: flex;
    flex-direction: row;
    gap: 20px;
    box-shadow: 0 3px 8px #888;
    padding: 0;
    width: 100%;
    align-items: center;
    margin: auto;
    background: #f5f7ff;
}

.member-two {
    background-color: #fff2f1;
}

.member-three {
    background-color: #eef2f8;
}

.member-four {
    background: #ffeffc;
}

.member-img {
    width: 40%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
}

.member-img h4 {
    color: #101010;
    font-size: 20px;
    font-weight: 700;
    margin: 0px;
}

.member-img span {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.member-img p {
    font-size: 14px;
    font-weight: 500;
}

.member-img img {
    width: 150px;
    height: auto;
}

.member-description {
    width: 60%;
    padding: 50px;
    text-align: left;
    font-size: 16px;
    font-family: 'Inter';
    line-height: 1.5;
    background: #fff;
}

.linkedin-logo {
    width: 20px;
    height: auto;
}

@media only screen and (min-width:767px) {
    .mobileversion {
        display: none
    }
}

@media only screen and (max-width:767px) {
    .desktopversion {
        display: none
    }

    .main-container {
        padding: 120px 20px 20px 20px;
    }

    .first-section {
        width: 100%;
        flex-direction: column;
        gap: 50px;
    }

    .our-vision, .our-mission {
        width: 100%;
    }

    .our-crew h2 {
        font-size: 40px;
    }

    .member-one, .member-two, .member-three, .member-four {
        display: flex;
        flex-direction: column;
    }

    .member-img {
        width: 100%;
    }

    .member-description {
        width: 100%;
        padding: 20px;
    }

    .member-img h4 {
        font-size: 18px;
    }

    .our-mission h2, .our-vision h2 {
        font-size: 36px;
    }
}