.container {
    font-family: "Public sans", sans-serif;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    margin: auto;
}

.img_container {
    width: 47%;
    background: url("/static/images/mecat/benefits-bg.jpg") no-repeat center
        center/cover;
}

.content {
    padding-right: 40px;
    width: 47%;
}

.heading {
    font-size: 54px;
    font-weight: 700;
    color: #012237;
}

.description {
    margin: 30px 0px;
    color: #555;
    font-weight: 600;
    font-size: 16px;
    word-spacing: 2px;
    line-height: 1.8rem;
}

.benefits {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.benefit svg {
    color: #2da397;
}

.b_text {
    margin: 10px 0px;
    font-weight: 700;
    font-size: 20px;
    color: #012237;
}
.btn {
    font-family: "Public sans", sans-serif;
    background: #f16101;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 18px;
    padding: 25px;
    width: 250px;
    outline: none;
    border: none;
    margin: 40px 0px;
}

@media screen and (max-width: 950px) {
    .container {
        width: 90%;
        flex-direction: column;
    }
    .img_container {
        width: 100%;
        height: 350px;
        margin-bottom: 30px;
    }
    .content {
        width: 100%;
        padding-right: 0px;
    }
    .btn {
        width: 100%;
    }
}

@media screen and (max-width: 550px) {
    .benefits {
        gap: 20px;
    }
    .b_text {
        font-size: 16px;
    }
}
