/* banner start */
.banner{
    height: 350px;
    background-image: url(../../images/banners/about.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
}
.banner p{
    font-size: 24px;
}
@media only screen and (max-width: 767px){
    .banner{
        height: 230px;
    }
    .banner p{
        font-size: 16px;
    }
}
/* banner end */

/* about section start */
.about{
    margin-top: 60px;
}
.about p{
    font-size: 18px;
}
/* about section end */


/* information section start */
.information{
    background-color: black;
    padding: 40px 5px;
    margin-top: 60px;
}
.information h2{
    font-size: 50px;
    color: white;
    margin: 0px;
    margin-top: 25px;
}
.information p{
    color: white;
    font-size: 18px;
    letter-spacing: 0.4px;
}

@media only screen and (max-width: 1280px){
    .information h2 {
        font-size: 44px;
        margin-top: 0;
    }
    .information p {
        font-size: 17px;
    }
}
@media only screen and (max-width: 991px){
    .information h2 {
        font-size: 32px;
    }
    .information p {
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .information{
        margin-top: 40px;
    }
    .information h2{
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 512px){
    .information{
        padding: 20px 5px;
    }
}
/* information section end */


/* team section start */
.team{
    margin-top: 80px;
}
.team .container{
    display: flex;
    align-items: flex-start;
}
.team img{
    float: left;
    width: 260px;
    margin-right: 30px;
}
.team.right img{
    margin-left: 30px;
    margin-right: 0px;
}
.team h2{
    font-weight: 900;
    margin-bottom: 2px;
    text-transform: uppercase;
}
.team h3{
    color: #c83232;
    font-weight: 700;
    text-transform: uppercase;
}
.team .content.ellipse{
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.team .read-more{
    cursor: pointer;
}
@media only screen and (max-width: 767px){
    .team .container{
        flex-wrap: wrap;
    }
    .team.right .container{
        flex-direction: column-reverse;
    }
    .team img{
        float: none;
        width: 100%;
        margin-right: 0px;
        margin-bottom: 15px;
    }
    .team.right img{
        margin-left: 0px;
    }
}
/* team section end */


/* service section start */
.service{
    margin-top: 80px;
    background-color: #F0F0F0;
    padding: 60px 0px
}
.service img{
    width: 100%;
}
@media only screen and (max-width: 512px){
    .service{
        padding: 15px 0px
    }
    .service img{
        margin-bottom: 15px;
    }
}
/* service section end */