.av-features-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding:60px 20px;
    text-align: center;
    background-color: #2F3132;
    width: 100%;
}

.av-features-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.av-feature-row{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.av-feature-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
}

.av-feature-wrapper > div{
    flex: 1;
    padding: 20px;
    text-align: left;
}

.av-feature-media{
    width: 100%;
    border-radius: 15px;
}

.av-feature-media img{
    width: 100%;
    height: 400px;
    border-radius: 15px;
    object-fit: cover;
    object-position: center;
}

.av-feature-text {
    color:#fff;
}

.av-feature-text .av-feature-title{
    font-size:3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.av-feature-text .av-feature-description{
    font-size: 1.8rem;
    margin-bottom: 20px;
    width: 100%;
    max-width: 500px;
}

.av-feature-row-reverse .av-feature-wrapper{
    flex-direction: row-reverse;   
}

@media (max-width: 468px) {
    .av-features-section{
        padding: 40px 10px;
    }
    .av-feature-wrapper,.av-feature-row-reverse .av-feature-wrapper{
        flex-direction: column;
        align-items: center;
        margin:20px 0;
    }
    .av-feature-wrapper > div{
        padding: 0;
    }
    .av-feature-media img{
        height: 100%;
    }
    .av-feature-text .av-feature-title{
        font-size: 2.5rem;
        margin:10px 0;
    }
    .av-feature-description{
        font-size:1.6rem;
    }
}