:root{
    --clr-black: #000;
    --clr-white: #FFF;

    --clr-grey: #C0C2CE;
    --clr-brd-light: #E3E9FB;
    --clr-blue: #5B47FF;

    --btn-fill-grey: #F8F8F8;
    --btn-border-grey: #D2D2D2;

    --fz-title: 6rem;
    --fz-text: 1.6rem;

    --ff-default: 'Helvetica Now Text', Arial;
    --ff-Acta: 'ActaDisplay', Arial;

    --row-margin: -3rem;
    --col-padding: 3rem;

    --row-width: calc(100% + (var(--col-padding) * 2));

    --tr-quick: .25s;
    --tr-medium: .5s;
}

@media screen and (max-width: 960px) {
    :root {
        --fz-title: 3rem;
        --fz-text: 1.4rem;
    }
}

@media screen and (max-width: 450px) {
    :root {
        --fz-title: 2.6rem;
        --fz-text: 1.2rem;

        --row-margin: -1.5rem;
        --col-padding: 1.5rem;
    }
}

html{
    font-size: 10px;
}

@media (-webkit-min-device-pixel-ratio: 2) {
    html{
        font-size: 9px;
    }
}

body{
    margin: 0;

    font-family: var(--ff-default);
    color: var(--clr-black);
    font-size: var(--fz-text);
    background: var(--clr-white);
}

main{
    min-height: calc(100vh - 63.6rem);
}

@media screen and (max-width: 960px) {
    main br {
        display: none;
    }
}

section{}

.container {
    max-width: 140rem;
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0 auto;
    padding: 0 4rem;
    box-sizing: border-box;
}
.container-content {
    max-width: 129rem;
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0 auto;
    padding: 0 4rem;
    box-sizing: border-box;
}

@media screen and (max-width: 960px) {
    .container, .container-content {
        padding: 0 3rem;
    }
}
@media screen and (max-width: 450px) {
    .container, .container-content {
        padding: 0 1.5rem;
    }
}

div > svg, a > svg, button > svg{
    display: block;
}

input,
textarea,
button,
select,
a{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

a{
    text-decoration: none;
}

p {
    margin: 0;
}

button{
    font-family: inherit;
    background: transparent;
    border: 0;
    padding: 0;
    color: inherit;

    user-select: none;
}

button:hover{
    cursor: pointer;
}
button:hover:disabled{
    cursor: default;
}
button:focus, button:active {
    outline: 0;
}

h1, h2, h3{
    margin: 0;
}

.title {
    margin-left: -0.5rem;

    font-family: var(--ff-Acta);
    font-size: var(--fz-title);
    font-weight: 400;
    font-style: italic;
    line-height: 1.16;
    text-align: left;
}

.title--desktop{
    display: block;
}
.title--mobile{
    display: none;
}

.subtitle, .text {
    line-height: 1.45;
}

.subtitle {
    font-size: 2rem;
    font-weight: 400;
}

.text {
    font-size: var(--fz-text);
    line-height: 1.45;
    font-weight: 300;
}

.text--normal {
    font-weight: 400;
}

.title--centered, .subtitle--centered, .text--centered {
    text-align: center;
}

.display--desk{
    display: block;
}
.display--mob{
    display: none;
}

@media screen and (max-width: 960px) {
    .title, .subtitle, .text {
        text-align: center;
    }

    .display--desk{
        display: none;
    }
    .display--mob{
        display: block;
    }
}

.btn-black, .read-more {
    width: 25.4rem;
    height: 4.8rem;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    background: var(--clr-black);
    color: var(--clr-white);

    transition: var(--tr-quick);
}
.btn-black:hover {
    opacity: .75;
}
.btn-black:disabled {
    background: var(--btn-fill-grey);
    color: var(--clr-black);
}
.btn-black:disabled:hover {
    opacity: 1;
}

.read-more {
    position: relative;
}
.read-more__second-bg {
    width: inherit;
    height: inherit;

    position: absolute;
    top: 0;
    left: 0;

    background: #2ce889;

    opacity: 0;
    transition: all var(--tr-quick) ease-in-out;
}
.read-more__text {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
    transition: all var(--tr-quick) ease-in-out;
}

.read-more:hover .read-more__text {
    transform: translate(calc(-50% + 1rem), calc(-50% + 1rem));
}
.read-more:hover .read-more__second-bg {
    opacity: 1;
    transform: translate(1rem, 1rem);
}

.img-container {
    width: 100%;
    height: 100%;
}
.img-container img {
    width: 100%;
}

.home-card {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    border: 1px solid var(--clr-brd-light);
    box-sizing: border-box;
}

.text-field {}
.text-field__label {
    display: block;
    margin-bottom: .6rem;

    font-family: var(--ff-default);
    font-size: var(--fz-text);
    font-weight: 300;
}
.text-field__input {
    width: 100%;
    height: 4.8rem;

    padding: 0 1.6rem;

    font-family: var(--ff-default);
    font-size: var(--fz-text);
    font-weight: 300;
    line-height: 1.125;

    border: 1px solid #C7C9CC;
    box-sizing: border-box;
}
.text-field__input:disabled {
    background: rgba(239, 239, 239, 0.3);
}

.checkbox {}
.checkbox__input {
    display: none;
}
.checkbox__input:checked + .checkbox__body .checkbox__box-check {
    opacity: 1;
}
.checkbox__input:disabled + .checkbox__body .checkbox__box {
    background: rgba(239, 239, 239, 0.3);
}
.checkbox__input:disabled + .checkbox__body:hover {
    cursor: default;
}
.checkbox__body {
    display: flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
}
.checkbox__box {
    width: 4.8rem;
    height: 4.8rem;
    position: relative;
    border: 1px solid #C7C9CC;
    box-sizing: border-box;
}
.checkbox__box-check {
    width: 80%;
    height: 80%;

    position: absolute;
    top: 10%;
    left: 10%;
    background: #C7C9CC;
    opacity: 0;
    transition: var(--tr-quick);
}
.checkbox__label {
    flex: 1;
    margin-left: 1.3rem;

    font-family: var(--ff-default);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
}
.checkbox__label a {
    color: var(--clr-black);
    text-decoration: underline;
}

.text-field.error .text-field__input {
    border-color: #f00;
}
.text-field.error:focus .text-field__input {
    border: 1px solid #C7C9CC;
}

.checkbox.error .checkbox__box {
    border-color: #f00;
}

.recaptcha {
    position: relative;
}
.recaptcha__block {
    margin-bottom: -.2rem;
    margin-left: -.2rem;
}
.recaptcha__error {
    position: absolute;
    bottom: -.5rem;
    left: 0;
    transform: translateY(100%);
    z-index: 0;

    font-size: 1rem;
    color: #f00;

    opacity: 0;
    transition: var(--tr-quick);
}

.recaptcha.error .recaptcha__error {
    opacity: 1;
}

.tabs {}
.tabs__header {
    --row-margin: -1.4rem;
    --col-padding: 1.4rem;

    position: relative;
    z-index: 10;

    margin-top: 5.4rem;
}
.tabs__header-btn {
    width: 100%;
    height: 4.8rem;
    border: 1px solid var(--clr-black);
    font-size: var(--fz-text);
    transition: var(--tr-quick);
}
.tabs__header-btn.active {
    background: var(--clr-black);
    color: var(--clr-white);
}
.tabs__content {
    min-height: 20.3rem;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
.tabs__item {
    max-width: 0;
    max-height: 0;
    overflow: hidden;

    width: 100%;
    height: 100%;

    display: block;

    opacity: 0;
    z-index: -1;
    transition: var(--tr-speed);
}

.tabs__item.active {
    max-width: unset;
    max-height: unset;
    overflow: unset;

    opacity: 1;
    z-index: 1;
}

.info-page {
    padding: 13rem 0;
}

.info-page .subtitle, .info-page .text {
    display: block;
    margin-top: 2.3rem;
}
