html {
    font-size: calc(0.0520833vw);
    height: fit-content;
}

body {
    background-color: #161820;
}

.header {
    z-index: 25;
    height: 80px;
    font-size: 16px;
    line-height: 1.625;
    color: rgb(255, 255, 255);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header,
.header * {
    box-sizing: border-box;
}

.header__wrapper {
    width: 100%;
    max-width: 1632px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.header a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s linear;
}

.header a:hover {
    color: rgb(242, 109, 33);
}

.header .header-logo {
    position: relative;
    z-index: 1;
    display: block;
    padding-left: 62px;
}

.header .header-logo-img {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 180px;
    height: 28px;
    transform: translateY(-50%);
}

.header .header-logo-text {
    font-size: 21px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.01em;
}

.header .header-phone {
    display: flex;
    align-items: center;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.header .header-phone-icon {
    display: block;
    margin-right: 10px;
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
}

.content-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px 40px;
}

.card {
    max-width: 520px;
    width: 100%;
    padding: 28px 24px 24px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #ffffff;
}

.card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-subtitle {
    font-size: 28px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 24px;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    margin: 0;
    padding: 7px 32px;
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;
    color: rgb(255, 179, 1);
    text-decoration: none;
    background-color: transparent;
    border: 2px solid currentColor;
    border-radius: 27px;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

.btn-small {
    font-size: 16px;
    line-height: 32px;
    padding: 4px 24px;
    border-radius: 22px;
}

.btn:hover {
    color: rgb(242, 109, 33);
}

.button-white-hover {
    background-color: transparent;
    color: rgb(255, 255, 255);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 24px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn-caption {
    margin-top: 8px;
    font-size: 11px;
    color: rgba(148, 163, 184, 0.9);
}

@media (max-width: 640px) {
    .header__wrapper {
        padding: 0 16px;
    }

    .card {
        padding: 22px 18px 18px;
        border-radius: 16px;
    }

    .card-title {
        font-size: 18px;
    }

    .buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }
}

body {
    margin: 0;
    overflow-x: hidden;
    min-height: 100vh;
    font-family: "TornadoCyr Web", sans-serif;
    font-size: 16px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

main {
    display: flex;
    flex-direction: column;
    flex: 1;
}


