.eq1-box-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.eq1-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50rem;
}
.eq1-box:nth-child(2n) {
    flex-direction: row-reverse;
}

.eq1-box-image {
    width: 50%;
    min-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.eq1-box-text h6 {
    font-size: 24rem;
    margin-bottom: 15rem;
}

.eq1-box-text h5 {
    font-size: 50rem;
}

.eq1-box-text h5 span {
    color: var(--main-color);
}

.eq1-box-text p {
    color: #888;
    font-size: 20rem;
    font-weight: 500;
    line-height: 1.6;
    margin-top: 30rem;
}



/*==================================================*/
@media (max-width: 991px) {
    .eq1-box-wrapper {
        gap: 100rem;
    }
    
    .eq1-box {
        flex-direction: column !important;
        gap: 0;
    }

    .eq1-box-image {
        width: 80%;
        min-width: unset;
    }
}


@media (max-width: 550px) {
    .eq1-box-text p {
        font-size: 24rem;
    }
}