.why-it-works {
    padding-top: 25px;
    padding-bottom: 50px;
}

.why-it-works__title {
    margin: 0;

    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    color: var(--color-primary);
}

.why-it-works__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 50px;
    margin-top: 30px;
}

.why-it-works__grid--three {
    justify-content: center;
}

.why-it-works__item {
    background-color: var(--color-secondary);
    border-radius: 20px;
    padding: 30px 40px;

    width: calc(50% - 25px);



    &:nth-child(1) {
        background-image: url("../../../images/services-bg/bg-1.png");
    }

    &:nth-child(2) {
        background-image: url("../../../images/services-bg/bg-2.png");
    }

    &:nth-child(3) {
        background-image: url("../../../images/services-bg/bg-3.png");
    }

    &:nth-child(4) {
        background-image: url("../../../images/services-bg/bg-4.png");
    }

    &:nth-child(5) {
        background-image: url("../../../images/services-bg/bg-5.png");
    }

    &:nth-child(6) {
        background-image: url("../../../images/services-bg/bg-6.png");
    }

    @media screen and (max-width: 992px) {
        width: 100%;
        background-image: none!important;
    }
}

.why-it-works__item--three {
    &:nth-child(1) {
        background-image: url("../../../images/services-bg/bg-three-1.png");
    }

    &:nth-child(2) {
        background-image: url("../../../images/services-bg/bg-three-2.png");
    }

    &:nth-child(3) {
        background-image: url("../../../images/services-bg/bg-three-3.png");
        background-position: center;

    }
}

.why-it-works__item-title {
    margin: 0;

    font-weight: 500;
    font-size: 30px;
    line-height: 38px;

    color: var(--color-primary);
}

.why-it-works__item-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: var(--color-dark);

    margin-top: 20px;
}