
.our-people-page .main-wrapper{
    width: 1360px;

}
.ourpeople-page-list{
    display: flex;
    gap: 3%;
    flex-wrap: wrap;

}
.ourpeople-page-list .ourpeople-box{
    width: 30%;

    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.ourpeople-page-list .ourpeople-box img{
    width: 100%;
    height: auto;
    display: block;
}
.ourpeople-page-list .ourpeople-box .text-box{
    position: absolute;
    padding: 30px 35px;
    bottom: 0;
    z-index: 2;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.ourpeople-page-list .ourpeople-box .text-box h2{
    font-family: var(--font);
    font-style: normal;
    font-weight: 500;
    font-size: 40.9401px;
    line-height: 41px;
    color: #FFFFFF;
    margin-bottom: 10px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.ourpeople-page-list .ourpeople-box .text-box .subtitle{
    font-family: var(--font);
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 25px;
    color: #FFFFFF;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    position: relative;
    height: auto;
    
}

.ourpeople-page-list .ourpeople-box .image-box:after {
    content: "";
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg, var(--secondary) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.75;
    transform: rotate(-180deg);
    width: 100%;
    height: 50%;
    z-index: 0;

}
.ourpeople-page-list .ourpeople-box:before{
    content: "";
    display: block;
    position: absolute;
    opacity: 0.85;
    width: 100%;
    height: 0%;
    z-index: 1;
    bottom: 0;
    background: var(--primary);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.ourpeople-page-list .ourpeople-box:hover:before{
    height: 100%;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.ourpeople-page-list .ourpeople-box:hover  .text-box .subtitle{
    margin-bottom: 0px;
    opacity: 1;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    padding-top: 10px;
}
.ourpeople-section-box .title-filters{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ourpeople-section-box .filter-box{
    display: flex;
    align-items: center;

}
.ourpeople-section-box .filter-box .filterby{
    font-weight: 500;
    font-size: 13px;
    line-height: 23px;
    color: var(--secondary);
    white-space: nowrap;
    margin-right: 30px;
}
.ourpeople-section-box .filter-box select {
    background: #FFFFFF;
    border: 2px solid var(--secondary);
    font-weight: 500;
    font-size: 13px;
    line-height: 23px;
    color: var(--secondary);
    color: #343434;
    -webkit-appearance: button;
    appearance: button;
    outline: none;
    width: 100%;
    padding: 5px 50px 5px 15px;
    cursor: pointer;
    box-sizing: border-box;
    border: 1px solid #cacaca;
}

@media only screen and (max-width: 1400px) {
    .our-people-page .main-wrapper {
        width: 100%;
        box-sizing: border-box;
        padding: 0 5vw;
    }

}
@media only screen and (max-width: 1024px) {
    .ourpeople-page-list .ourpeople-box {
        width: 47%;
    }
}

@media only screen and (max-width: 700px) {
    .ourpeople-page-list .ourpeople-box {
        width: 100%;
    }
    .title-ourpeople-home {
        font-size: 9vw;
        line-height: 11vw;
        left: 0;
        top: 15vw;
        position: relative;
        width: 100%;
    }
}