:root {
    --font-scale: 1;
}
@media (min-width: 1681px) {
    html {
        font-size: calc((100vw / 192) * var(--font-scale));
    }
}

@media (min-width: 1500px) and (max-width: 1680px) {
    html {
        font-size: calc((100vw / 168) * var(--font-scale));
    }
}

@media (min-width: 1281px) and (max-width: 1499px) {
    html {
        font-size: calc((100vw / 148) * var(--font-scale));
    }
}

@media (min-width: 768px) and (max-width: 1280px) {
    html {
        font-size: calc((100vw / 76.8) * var(--font-scale));
    }
}

@media (max-width: 767px) {
    html {
        font-size: calc((100vw / 37.5) * var(--font-scale));
    }
}

html {
    font-display: swap;
    overflow-x: hidden;
}

html, body {
    font-family: var(--font-family-base);
    font-weight: 400;
    overflow-x: hidden;
}

html *, body * {
    box-sizing: border-box;
    outline: none;
    line-height: 1;
}

body {
    max-width: 100vw;
}

body[data-scroll-lock-locked] {
    padding-right: 0 !important;
}

body.no-scroll {
    overflow-y: hidden;
    max-height: 100vh;
    scrollbar-gutter: stable;
}

@media (max-width: 1280px) {
    body.no-scroll {
        max-height: 100vh;
    }
}

*, *:before, *:after, *::before, *::after {
    outline: none;
}
div,
p,
span,
a {
    font-size: 1.6rem;
    line-height: 110%;
    margin: 0;
}

div,
span,
a,
p {
    color: var(--dark);
}

a {
    text-decoration: none;
}

button {
    margin: 0;
    padding: 0;
    border-radius: 0;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

h1,
.h1 {
    font-size: 3.5rem;
    line-height: 120%;
}

@media (min-width: 768px) and (max-width: 1280px) {
    h1,
    .h1 {
        font-size: 2.8rem;
        line-height: 110%;
    }
}

@media (max-width: 767px) {
    h1,
    .h1 {
        font-size: 2.8rem;
        line-height: 110%;
    }
}

h1 span,
.h1 span {
    font-size: 3.5rem;
    line-height: 120%;
}
@media (min-width: 768px) and (max-width: 1280px) {
    h1 span,
    .h1 span {
        font-size: 2.8rem;
        line-height: 110%;
    }
}

@media (max-width: 767px) {
    h1 span,
    .h1 span {
        font-size: 2.8rem;
        line-height: 110%;
    }
}

h2,
.h2 {
    font-size: 2.8rem;
    line-height: 120%;
}

@media (min-width: 768px) and (max-width: 1280px) {
    h2,
    .h2 {
        font-size: 3.5rem;
    }
}

@media (max-width: 767px) {
    h2,
    .h2 {
        font-size: 3.5rem;
    }
}

h3,
.h3 {
    font-size: 2.4rem;
    line-height: 120%;
}

@media (min-width: 768px) and (max-width: 1280px) {
    h3,
    .h3 {
        font-size: 2.8rem;
    }
}

@media (max-width: 767px) {
    h3,
    .h3 {
        font-size: 2.8rem;
    }
}

h4,
.h4 {
    font-size: 2rem;
    line-height: 120%;
}

@media (min-width: 768px) and (max-width: 1280px) {
    h4,
    .h4 {
        font-size: 2.4rem;
    }
}

@media (max-width: 767px) {
    h4,
    .h4 {
        font-size: 2.4rem;
    }
}

h5,
.h5 {
    font-size: 1.8rem;
    line-height: 120%;
}

@media (min-width: 768px) and (max-width: 1280px) {
    h5,
    .h5 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    h5,
    .h5 {
        font-size: 2rem;
    }
}

h6,
.h6 {
    font-size: 1.6rem;
    line-height: 120%;
}

@media (min-width: 768px) and (max-width: 1280px) {
    h6,
    .h6 {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    h6,
    .h6 {
        font-size: 1.8rem;
    }
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

ul li {
    padding: 0;
    margin: 0;
}

picture {
    display: block;
    height: 100%;
    width: 100%;
}

img {
    display: block;
    user-select: none;
    width: 100%;
    height: 100%;
}

input {
    user-select: none;
    outline: transparent;
}

.container {
    margin: 0 auto;
    padding: 0;
}

@media (min-width: 1681px) {
    .container {
        width: 128rem;
    }
}

@media (min-width: 1281px) and (max-width: 1680px) {
    .container {
        width: calc(100% - 12rem);
    }
}

@media (min-width: 768px) and (max-width: 1280px) {
    .container {
        width: calc(100% - 4rem);
    }
}

@media (max-width: 767px) {
    .container {
        width: calc(100% - 3rem);
    }
}

#overlay {
    display: none;
    background: #1F1E2A66;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
}

#overlay.visible {
    display: block;
}

.section {
    position: relative;
    padding-bottom: 8rem;
}
@media (max-width: 767px){
    .section {
        padding-bottom: 6.4rem;
    }
}
.section--grey {
    background-color: var(--grey);
}
.section__title {
    font-weight: 500;
    line-height: 120%;
}
.section__title:not(.section__title--big) {
    font-size: 2.8rem;
}
.section__title--big {
    font-size: 3.5rem;
    margin-bottom: 3.2rem;
}
.section__title:not(.section__head .section__title) {
    margin-bottom: 3.2rem;
}
.section__head .section__title {
    margin-bottom: 1.2rem;
}
.section__head {
    margin-bottom: 2rem
}
.section__bg {
    width: 100%;
    position: relative;
}

.section__bg img {
    object-fit: cover;
}
.section__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.section__content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.section__text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}


@media (max-width: 767px){
    .section__content {
        position: relative;
        top: unset;
        right: unset;
        bottom: unset;
        left: unset;
    }
    .section__title:not(.section__head .section__title) {
        margin-bottom: 2.4rem;
    }
    .section__actions .btn {
        width: 100%;
    }
}




