/* ---------- Index ---------- */

.terms {
    width: 1024px;
    margin: 0;
    padding: 150px calc(50% - 512px) 150px calc(50% - 512px);
}

/* ---------- Terms title ---------- */

.terms_title {
    width: 100%;
    margin: 0 0 20px 0;
    padding: 0;
    color: var(--p-black);
    font-family: order;
    font-size: var(--p-large);
}

/* ---------- Terms second title ---------- */

.terms_second_title {
    width: 100%;
    margin: 100px 0 20px 0;
    padding: 0;
    color: var(--p-black);
    font-family: order;
    font-size: var(--p-medium);
    text-decoration: underline;
}

/* ---------- Terms text ---------- */

.terms_text {
    width: 100%;
    margin: 0 0 20px 0;
    padding: 0;
    color: var(--p-black);
    font-family: inter;
    font-size: var(--p-extra-light);
    line-height: 32px;
    text-align: justify;
}

.terms_text_no_margin {
    margin: 0;
}

/* ---------- Terms link ---------- */

.terms_link {
    word-break: break-all;
    word-wrap: break-word;
    margin: 0;
    padding: 0;
    color: var(--p-black);
    font-family: inter;
    font-size: var(--p-extra-light);
    text-decoration: underline;
    line-height: 32px;
    cursor: pointer;
    transition-duration: 150ms;
}

.terms_link:hover {
    color: var(--p-blue);
}

/* ---------- Terms point ---------- */

.terms_point {
    width: calc(100% - 20px);
    margin: 0 0 0 20px;
    padding: 0;
    color: var(--p-black);
    font-family: inter;
    font-size: var(--p-extra-light);
    line-height: 32px;
    text-align: justify;
}

.terms_point_last {
    margin: 0 0 20px 20px;
}

/* ---------- Resize ---------- */

@media only screen and (max-width: 1148px) {
    .terms {
        width: 90%;
        padding: 150px 5% 150px 5%;
    }
}

@media only screen and (max-width: 778px) {
    .terms_title {
        font-size: var(--p-medium);
    }
    
    .terms_second_title {
        font-size: var(--p-light);
    }
}