:root {
    --color-revolver: #37373f;
    --color-accent: #dd6c60;

    --padX: 15px;
}
@font-face {
    font-family: 'Tilda Sans';
    src:
      url('../fonts/TildaSans-Medium.woff2') format('woff2'),
      url('../fonts/TildaSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Tilda Sans';
    src:
      url('../fonts/TildaSans-Semibold.woff2') format('woff2'),
      url('../fonts/TildaSans-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
html {
    height: 100%;
    color: white;
    font-size: 62.5%;
    font-weight: 500;
    font-family: 'Tilda Sans', Arial, serif;
    line-height: 1;
}
body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
}
main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 18rem var(--padX);
    min-height: 100vh;
    min-height: 100dvh;
}
.page-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.page-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-bg::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.page-bg::before {
    /* background: linear-gradient(180deg,rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%); */
    background: linear-gradient(to bottom,rgba(0,0,0,0.6),rgba(0,0,0,0.35));
}
/* .page-bg::after {
    top: auto;
    bottom: 0;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
} */

.page-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.page-content h1 {
    font-size: 4.8rem;
    font-weight: 600;
    margin-bottom: 4rem;
    /* line-height: 1.2; */
    line-height: 1.5;
}
.button-wrapper {
    margin: 9rem 0;
}
.button {
    font-size: 2rem;
    background-color: var(--color-revolver);
    border-radius: 3.4rem;
    padding: 1.1em 2.5em;
    transition: background-color .2s ease;
    color: white;
}
@media (hover: hover) {
    .button:hover {
        background-color: var(--color-accent);
    }
}
.page-text {
    font-size: 2.6rem;
    line-height: 1.2;
}
.page-text_bottom {
    font-size: 24px;
}
.page-text p:not(:last-child) {
    margin-bottom: 1em;
}
.page-text_width-limited {
    max-width: 65rem;
    margin-left: auto;
    margin-right: auto;
}

footer {
    background-color: #f0f0f0;
    color: var(--color-revolver);
    padding: 9rem var(--padX);
}
.copyright {
    font-size: 1.4rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .5;
}

.polisy {
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
	margin-top: 3rem;
}
a.polisy {
    color: var(--color-revolver);
}


@media (min-width: 1921px) {
    html {
        font-size: 0.5vw;
    }
}
@media (max-width: 767px) {
    html {
        font-size: 2vw;
    }
    .page-text {
        font-size: 2.1rem;
        padding: 0 7rem;
    }
    .page-text_bottom {
        font-size: 2.7rem;
    }
    main {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
    .page-content h1 {
        font-size: 4.2rem;
    }
    .button-wrapper {
        margin-top: 13rem;
    }
    .copyright {
        font-size: 1.6rem;
    }
    footer {
        padding-top: 11rem;
        padding-bottom: 11rem;
    }
}