.features-section {
    background-color: #fff;
}

.features-section .top-part {
    column-gap: 50px;
}

.features-section .top-part .right-side img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.features-section h2 {
    line-height: 1.4;
    color: var(--main-blue);
    font-size: 40px;
}

.features-section .features {
    column-gap: 15px;
    row-gap: 15px;
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(3, 1fr);
}

.features-section .feature {
    background-color: var(--main-blue);
    width: 100%;
    justify-content: flex-start;
}

.features-section .feature img {
    width: fit-content;
    height: 40px;
    margin-bottom: 60px;
}

.features-section .feature .description {
    font-size: 19px;
    font-family: 'Poppins-Medium';
    color: #fff;
}

@media screen and (max-width: 767px) {
    .features-section .top-part {
        flex-flow: column-reverse;
        padding-top: 80px;
    }

    .features-section h2 {
        font-size: 35px;
    }

    .features-section h3 {
        font-size: 20px;
    }

    .features-section .features {
        grid-template-columns: 1fr;
        padding-bottom: 70px;
    }

    .features-section .feature {
        flex-direction: row;
        column-gap: 30px;
        justify-content: flex-start;
        align-items: center;
        padding: 30px 25px;
        margin-bottom: 5px;
    }

    .features-section .feature img {
        margin-bottom: 0;
        height: 25px;
    }

    .features-section .feature .description {
        font-size: 12px;
        display: flex;
        align-content: center;
        flex-wrap: wrap;
    }

    .features-section .top-part .left-side p
    {
        font-size: 14px;
    }
}