body {
    margin: 0;
}

.banner-section {
    background-image: url('../../assets/img/aboutheroimg.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.image-wrapper {
    min-height: 400px;
    height: 100%;
}

.about-section{
    margin-top: 70px;
    margin-bottom: 70px;
}

.about-sub-header{
    text-align: center;
    margin-bottom: 35px;
}

.about-sub-header h2 {
    font-size: 18px;
    color: #D50000;
    font-weight: 400;
}

.about-main-header{
    text-align: center;
    margin-bottom: 2rem;
}

.about-main-header h2 {
    font-size: 35px;
    font-weight: 700;
}

.about-image-container {
    float: left;
    width: 34%;
    padding: 5px 10px 10px 5px;
}

.about-image-container img{
    width: 360px;
    height: 340px;
}

.about-text-wrapper{
    font-family: 'Poppins', sans-serif;
    line-height: 3rem;
}

.content-sub-header{
    font-size: 24px;
    font-weight: 600;
    margin: 15px 0;
}

.about-outside-content{
    font-family: 'Poppins', sans-serif;
    line-height: 3rem;
}

.about-features-section{
    padding: 50px 0px 50px 0px;
    background-color: #F6EDF0;
}

#features-card-wrapper{
    margin-top: 35px;
}

.features-card{
    padding: 10px;
}

.features-icon-container{
    margin-bottom: 3rem;
}

.features-icon-container img{
    width: 85px;
    margin: 0 auto;
    display: flex;
}

.feature-header{
    text-align: center;
}

.feature-header h3{
    font-size: 20px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.feature-text{
    text-align: center;
}

@media(max-width: 1200px){
    .about-image-container{
        width: 41%;
    }
}

@media(max-width: 992px){
    .about-image-container{
        width: 53%;
    }
}

@media(max-width: 768px){
    .about-image-container{
        width: 100%;
        float: none;
    }

    .about-image-container img{
        margin: 0 auto;
        display: flex;
    }
}

@media(max-width: 400px){
    .about-image-container img{
        width: 100%;
        height: auto;
    }
}