/*-----------------------------------*\
  #TERMS
\*-----------------------------------*/

.terms-section {
    width: 100%;
    height: auto;

    padding: 160px 32px 80px 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.terms-container {
    max-width: 1280px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
}

.terms-title {
    font-size: 32px;
    line-height: 48px;
    font-weight: var(--bold);
}

.terms-text {
    text-align: start;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 24px;
    font-weight: var(--medium);
}



@media (width < 1320px) {
    .terms-container {
        max-width: 1000px;
    }
}

@media (width < 1080px) {
    .terms-container {
        max-width: unset;
        width: 100%;
    }
}

@media (width < 700px) {
    .terms-section {
        width: 100%;
        height: auto;
        padding: 160px 20px 80px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .terms-title {
        font-size: 24px;
        line-height: 32px;
        font-weight: var(--bold);
    }
}

@media (width < 500px) {
    .terms-section {
        padding: 160px 16px 80px 16px;
    }

    .terms-title {
        font-size: 24px;
        line-height: 32px;
        font-weight: var(--bold);
    }

}