.banner_common{
    background-image: url("../imgs/about_bg.png");
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.banner_common_title{
    font-size: 60px;
    font-weight: 600;
    color: var(--color-white);
}
.banner_para{
    font-weight: 500;
    color: var(--color-white);
    font-size: 26px;
    text-align: center;
    width: 70%;
}
/* .height_control{
    height: 600px;
} */
.height_50{
    height: 50%;
}

.height_50 img{
    height: 100%;
    object-fit: cover;
}
/*Team*/
.team_grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.team_img{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin:auto;
}
.team_container{
    background-color: var(--color-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
}
.team_title{
    font-size: 26px;
    font-weight: 500;
}
.para_small{
    font-size: 16px;
}
.line_1{
    position: absolute;
    top: 0px;
    left: 20px;
    display: inline-block;
    height:40px;
    width: 3px;
    background-color: var(--color-golden);
}
.line_2{
    height: 30px;
    left: 30px;
}
.team_container{
    margin: 0px 10px;
}
.team_slider .slick-list{
    padding: 0.25rem 0rem;
}
@media screen and (max-width: 1024px){
    .para_small {
        font-size: 14px;
    }
    .team_title {
        font-size: 22px;
    }
}
@media screen and (max-width: 992px){
    .banner_common{
        height: 500px;
    }
    .banner_common_title{
        font-size: 50px;
    }
    .team_title {
        font-size: 20px;
    }
}
@media screen and (max-width: 568px){
    .banner_common{
        height: 300px;
    }
    .banner_common_title{
        font-size: 35px;
    } 
    .team_title {
        font-size: 18px;
    }
    .para_small {
        font-size: 12px;
    }
    .team_container{
        margin: 0px 0px;
    }
}