html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.aboutSec {
    margin: 0 0 100px;
}

.aboutSec .headingSec {
    text-align: center;
    margin: 0 0 100px;
}

.aboutSec .headingSec h4 {
    margin-bottom: 10px;
}

.aboutThumbWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.aboutThumbWrap .content {
    flex: 1;
    min-width: 150px;
}

.aboutThumbWrap h2 {
    font-size: 50px;
    color: #25356B;
    font-weight: 700;
    margin: 0;
}

.aboutThumbWrap .content:nth-child(even) {
    text-align: right;
}

.contentImg {
    flex: 1;
}

h3 {
    margin: 0 0 30px;
}

h4 {
    margin: 0 0 20px;
}

.enjoyWorkingSec {
    display: flex;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 9px 34px 0 rgba(0, 0, 0, 0.05);
    align-items: center;
    overflow: hidden;
    gap: 30px;
    margin: 0 0 100px;
}

.enjoyImg {
    width: 50%;
}

.peopleBehindSec {
    margin: 0 0 100px;
    position: relative;
}

.memberCardRow {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin: 50px 100px 0;
}

.memberCardRow:nth-child(3) {
    justify-content: flex-end
}

.memberCard {
    position: relative;
    overflow: hidden;
}

.memberCard {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: solid 2px #fff;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.15);
}

.memberCard h5 {
    font-size: 26px;
}

.memberImg {
    width: 100%;
    display: block;
}

/* Overlay wrapper */
.memberHoverWrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, #97539F 35%);
    transform: translateY(50%);
    /* only show top part initially */
    transition: transform 0.4s ease;
}

/* Hidden content */
.memberHoverWrap .content {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 28px;
}

/* Hover effect */
.memberCard:hover .memberHoverWrap {
    transform: translateY(0);
    /* slide up */
}

.memberCard:hover .memberHoverWrap .content {
    opacity: 1;
    transform: translateY(0);
}

.deg {
    font-size: 20px;
}

.social {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: solid 1px #fff;
    border-radius: 50px;
    margin: 10px 6px 10px 0;
    transition: all ease .2s;
    font-size: 17px;
}

.social:hover {
    background: #fff;
    color: #000;
}

.backgroundGraphics {
    position: relative;
}

.growingTeamSec {
    position: relative;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

.growingTeamSec .teamImg {
    z-index: 1;
    position: absolute;
    top: 100px;
    left: 15px;
    width: 100%;
}

.growingTeamSec .content {
    padding: 0 6px;
}

.sineWavesId {
    position: absolute;
    top: 0px;
    right: -330px;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.2;
}

.sineWavesId2 {
    position: absolute;
    top: 100px;
    right: -430px;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.2;
}

@media only screen and (max-width: 980px) {
    .aboutSec .headingSec {
        margin: 0 0 60px;
    }

    .aboutSec h3 {
        display: none
    }

    .enjoyWorkingSec {
        flex-direction: column;
        gap: 11px;
        margin: 0 0 60px;
    }

    .enjoyWorkingSec .content {
        padding: 0 20px 20px 20px;
    }

    .enjoyImg {
        width: 100%;
    }

    .peopleBehindSec h4 {
        margin: 0
    }

    .memberCardRow {
        justify-content: center !important;
        margin: 20px 0;
    }

    .growingTeamSec .content {
        padding: 0 10px;
    }

    .growingTeamSec .teamImg {
        width: 100%;
    }

    .growingTeamSec {
        gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .sineWavesId {
        right: 0;
    }
}

@media only screen and (max-width: 480px) {
    .aboutSec {
        margin: 0 0 00px;
    }

    .aboutThumbWrap {
        margin: 20px 0 50px;
        gap: 20px;
    }

    .aboutThumbWrap .content {
        display: flex;
        align-items: center;
        gap: 10px;
        order: 2
    }

    .aboutThumbWrap .content h2 {
        margin: 0 !important
    }

    .aboutSec .headingSec {
        text-align: left;
    }

    .contentImg {
        border-radius: 30px;
    }

    .teamImg {
        top: 0 !important;
    }
}