.people_single_page_container{
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.people_single_page_banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url('assets/images/people_title_bg.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
}

.people_single_page_banner_text {
    font-weight: 700;
    font-size: 40px;
    color: #532C6D;
    max-width: 1000px;
    text-align: center;
}

.people_single_page_container_bg {
    padding-top: 40px;
    padding-bottom: 60px;
    position: relative;
    background-image: url('assets/images/people_left_bg.png');
    background-repeat: no-repeat;
    background-position: left -30px;
    background-size: cover;
}

.people_single_page_container_bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/people_right_bg.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    bottom: 0;
    right: 0;
}


.people_single_page {
    max-width: 1140px;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex;
    flex-direction: row;
    gap: 80px;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 40px;
    padding-right: 40px;
    box-shadow: 0px 4px 20px 0px #00000026;
    border-radius: 20px;
    background-color: white;
    position: relative;
    z-index: 1;

    .left_people{
        min-width: 24%;
    }

    .post_thumbnail{
        position: relative;
        margin-bottom: 20px;
        margin-left: 20px;
    }

    .post_thumbnail::before{
        content: "";
        position: absolute;
        width: 288px;
        height: 288px;
        background-image: url('assets/images/people_image_bg.png');
        bottom: -27px;
        left: -28px;

    }

    .post_thumbnail img{
        position: relative;
        object-fit: cover;
        width: 230px;
        height: 230px;
        border-radius: 130px;
        z-index: 1;
    }

    .left_people_child_content{
        width: fit-content;
    }

    .left_people_child_content_title{
        font-weight: 700;
        font-size: 24px;
        color: #072448;
    }

    .left_people_child_content_designation{
        font-weight: 400;
        font-size: 16px;
        color: #666666;
        margin-bottom: -6px;
    }

    .left_people_child_content_email{
        font-weight: 400;
        font-size: 16px;
        color: #1A796E;
        text-decoration: underline;
    }

    .left_people_child_content_email:hover{
        color: #21978A;
    }

    .left_people_child_content_cv_container{
        margin-top: 25px;
    }

    .left_people_child_content_courses{
        margin-top: 20px;
    }

    .left_people_child_content_cv,
    .left_people_child_content_courses{
        display: flex;
        justify-content: center;
        padding-top: 8px;
        padding-bottom: 8px;
        width: 100%;
        border-radius: 100px;
        background-color: #1A796E;
        color: white;
        text-transform: uppercase;
        font-size: 16px;
    }

    .left_people_child_content_cv:hover,
    .left_people_child_content_courses:hover{
        background-color: #21978A;
    }
}

@media screen and (min-width: 801px) and (max-width: 991px) {
  .people_single_page {
        .left_people {
            min-width: 33%;
        }
    }
}

@media screen and (min-width: 768px) and (max-width: 800px) {
  .people_single_page {
        .left_people {
            min-width: 36%;
        }
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .people_single_page_container_bg {
    padding-right: 20px;
    padding-left: 20px;
  }
}


@media screen and (max-width: 767px) {
    .people_single_page_banner,
    .people_single_page_container_bg{
        padding: 20px;
    }
    .people_single_page{
        flex-direction: column;
        gap: 30px;
    }
    .people_single_page_banner_text{
        font-size: 30px;
    }
    .left_people_child_content{
        width: 100% !important;
    }
}