@charset "UTF-8";

main {
    counter-reset: section;
}

.partnership {
    padding-block: 100px 120px;
}

@media only screen and (max-width: 768px) {
    .partnership {
        padding-block: 80px;
    }
}

.partnership__heading {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 5px;

    &::before {
        counter-increment: section;
        content: counter(section) ".";
    }
}

.partnership__text {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}

.partnership__description {
    margin-bottom: 40px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}

.partnership__list--square {
    margin-bottom: 50px;

    .partnership__item {
        display: flex;
        align-items: flex-start;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.8;

        &::before {
            content: "";
            flex-shrink: 0;
            width: 5px;
            height: 5px;
            background-color: var(--color-blue);
            margin-right: 10px;
            margin-top: 12px;
        }
    }
}

@media only screen and (max-width: 768px) {
    .partnership__list--square .partnership__item::before {
        margin-right: 5px;
    }
}	

.partnership__item + .partnership__item {
    margin-top: 5px;
}

.partnership__list--decimal .partnership__item {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    padding-left: 1.2em;
    text-indent: -1.2em;
}

.partnership__meta {
    margin-block: 65px 70px;
    text-align: right;
}

.partnership__meta-item {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}

.partnership__action {
    text-align: center;
}