#perks {
    padding-top: 70px;
    padding-bottom: 70px;
}

#perks .title {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
}

#perks .title span {
    font-size: 0.82142857em;
}

#perks p {
    font-size: 22px;
    line-height: 30px;
    max-width: 710px;
    margin-bottom: 50px;
}

#perks .container {
    gap: 68px;
}

#perks .inner {
    gap: 108px;
    left: 14px;
    position: relative;
}

#perks .button {
    width: 192px;
    height: 40px;
    border-radius: 20px;
    font-size: 20px;
}

@media screen and (max-width: 992px) {
    #perks {
        padding: 50px 0;
    }

    #perks .container {
        flex-direction: column;
        gap: 30px;
    }

    #perks .inner {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    #perks .inner {
        flex-direction: column;
        align-items: start;
        width: fit-content;
        margin: 0 auto;
    }
}

@media screen and (max-width: 567px) {
    #perks {
        padding: 50px 0 52px 0;
    }

    #perks .container {
        gap: 20px;
    }

    #perks .title {
        font-size: 36px;
        line-height: 1;
    }

    #perks .title span {
        font-size: 1em;
    }

    #perks .inner {
        gap: 20px;
        left: unset;
    }

    #perks .inner .el {
        flex-direction: row;
    }

    #perks .inner .el p {
        font-size: 16px;
        line-height: 18px;
        text-align: left;
        margin-bottom: 0;
        margin-left: 20px;
        color: var(--blue);
    }

    #perks img {
        max-width: 72px;
    }

    #perks .button {
        margin-top: 30px;
        width: 190px;
        font-size: 20px;
    }
}