.display-1,
.display-2,
.display-3,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.button-xs {
    font-family: var(--font-family);
    font-weight: 400
}

.display-1,
.display-2 {
    line-height: 116%
}

.display-3 {
    line-height: 125%
}

.display-1 {
    font-size: var(--display-1)
}

.display-2 {
    font-size: var(--display-2)
}

.display-3 {
    font-size: var(--display-3)
}

.h1 {
    font-size: var(--h1);
    line-height: 1.25
}

@media only screen and (min-width: 1281px) {
    .h1 {
        line-height: 116%
    }
}

.h2,
.h3,
.h4,
.h5,
.h6 {
    line-height: 129%
}

.h2 {
    font-size: var(--h2)
}

.h3 {
    font-size: var(--h3)
}

.h4 {
    font-size: var(--h4)
}

.h5 {
    font-size: var(--h5)
}

.h6 {
    font-size: var(--h6)
}

.body-xxl {
    font-size: var(--body-xxl);
    line-height: 140%
}

.body-xl {
    font-size: var(--body-xl);
    line-height: 166%
}

.body-l {
    font-size: var(--body-l);
    line-height: 200%
}

@media only screen and (min-width: 769px) {
    .body-l {
        line-height: 167%
    }
}

.body-m {
    line-height: 165%;
    font-size: var(--body-m)
}

.body-s {
    font-size: var(--body-s);
    line-height: 165%
}

.body-xs {
    font-size: var(--body-xs);
    line-height: 24px
}

.button-l {
    font-size: var(--button-l);
    line-height: 112%
}

.button-m {
    font-size: var(--button-m);
    line-height: 30px
}

.button-s {
    font-size: var(--button-s);
    line-height: 28px
}

.button-xs {
    font-size: var(--button-xs);
    line-height: 24px
}

.blockquote-1 {
    font-size: var(--blockquote-1);
    line-height: 178%
}

.contact form .field {
    border-bottom: 1px solid var(--color-2)
}

.contact form .field input::-moz-placeholder,
.contact form .field textarea::-moz-placeholder {
    -moz-transition: opacity .25s ease;
    transition: opacity .25s ease
}

.contact form .field input::placeholder,
.contact form .field textarea::placeholder {
    transition: opacity .25s ease
}

.contact form .field input:focus::-moz-placeholder,
.contact form .field textarea:focus::-moz-placeholder {
    opacity: .2
}

.contact form .field input:focus::placeholder,
.contact form .field textarea:focus::placeholder {
    opacity: .2
}

.contact form .agree-check .agree:hover input~.checkmark {
    background-color: var(--color-2)
}

.contact form .agree-check .agree input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.contact form .agree-check .agree input:checked~.checkmark {
    background-color: var(--color-primary)
}

.contact form .agree-check .agree input:checked~.checkmark:after {
    display: block
}

.contact form .agree-check .agree .checkmark {
    background-color: var(--color-5);
    border-radius: 5px;
    overflow: hidden;
    position: absolute;
    transform: translate(0%, -50%);
    top: 50%;
    left: 0%;
    height: 25px;
    width: 25px;
    transition: all .2s linear
}

.contact form .agree-check .agree .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 10px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: solid var(--color-light);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: all .3s linear
}

