@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');


.terms {
    position: relative;
    overflow: hidden;
}

.terms .shape__big {
    position: absolute;
    top: -4rem;
    left: -9rem;
}

.terms .shape__small {
    position: absolute;
    bottom: 3rem;
    right: -10px;
}

.terms__title {
    font-size: var(--h1-font-size);
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 48px;
}

.terms__subtitle {
    text-align: center;
    color: var(--text-color-light);
    margin-bottom: 3rem;
    font-size: var(--small-font-size);
}

.terms__wrapper {
    background: hsla(0, 0%, 100%, 0.05);
    backdrop-filter: blur(16px);
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    border-radius: 1.25rem;
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.terms__section-title {
    font-size: var(--h3-font-size);
    color: var(--title-color);
    margin: 2rem 0 0.75rem 0;
}

.terms__section-title:first-child {
    margin-top: 0;
}

.terms__text {
    color: var(--text-color);
    line-height: 1.4em;
    font-size: var(--normal-font-size);
    margin-bottom: 8px;
    font-family: 'Lora', serif;
}
.terms__text a {
    color: var(--green-color);
}
.terms__text a:hover {
    text-decoration: underline;
}

.terms__text-points {
    list-style: inside;
    padding-left: 16px;
    font-family: 'Lora', serif;
    margin-bottom: 16px;
}
.terms__text-points a {
    color: var(--green-color);
}
.terms__text-points a:hover {
    text-decoration: underline;
}

.terms__note {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
}

.terms__text-brand {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4em;
    margin: 16px 0 0 0;
    color: var(--title-color);
}

@media screen and (max-width: 1200px) {
    .terms__title {
        font-size: 38px;
    }
}

@media screen and (max-width: 1024px) {
    .terms__wrapper {
        padding: 30px;
    }
}

@media screen and (max-width: 768px) {
    .terms__wrapper {
        padding: 20px;
    }
}