@font-face {
    font-family: 'Golos Text';
    src: url('../fonts/golos-text/GolosText-Black.eot');
    src: url('../fonts/golos-text/GolosText-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/golos-text/GolosText-Black.woff2') format('woff2'),
        url('../fonts/golos-text/GolosText-Black.woff') format('woff'),
        url('../fonts/golos-text/GolosText-Black.ttf') format('truetype'),
        url('../fonts/golos-text/GolosText-Black.svg#GolosText-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Golos Text';
    src: url('../fonts/golos-text/GolosText-Bold.eot');
    src: url('../fonts/golos-text/GolosText-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/golos-text/GolosText-Bold.woff2') format('woff2'),
        url('../fonts/golos-text/GolosText-Bold.woff') format('woff'),
        url('../fonts/golos-text/GolosText-Bold.ttf') format('truetype'),
        url('../fonts/golos-text/GolosText-Bold.svg#GolosText-Bold') format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Golos Text';
    src: url('../fonts/golos-text/GolosText-DemiBold.eot');
    src: url('../fonts/golos-text/GolosText-DemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/golos-text/GolosText-DemiBold.woff2') format('woff2'),
        url('../fonts/golos-text/GolosText-DemiBold.woff') format('woff'),
        url('../fonts/golos-text/GolosText-DemiBold.ttf') format('truetype'),
        url('../fonts/golos-text/GolosText-DemiBold.svg#GolosText-DemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Golos Text';
    src: url('../fonts/golos-text/GolosText-Medium.eot');
    src: url('../fonts/golos-text/GolosText-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/golos-text/GolosText-Medium.woff2') format('woff2'),
        url('../fonts/golos-text/GolosText-Medium.woff') format('woff'),
        url('../fonts/golos-text/GolosText-Medium.ttf') format('truetype'),
        url('../fonts/golos-text/GolosText-Medium.svg#GolosText-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Golos Text';
    src: url('../fonts/golos-text/GolosText-Regular.eot');
    src: url('../fonts/golos-text/GolosText-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/golos-text/GolosText-Regular.woff2') format('woff2'),
        url('../fonts/golos-text/GolosText-Regular.woff') format('woff'),
        url('../fonts/golos-text/GolosText-Regular.ttf') format('truetype'),
        url('../fonts/golos-text/GolosText-Regular.svg#GolosText-Regular') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --c-primary: #E4443A;
    --c-ink: #0E0D0A;
    --c-background: #f6f1f1;
}

body {
    font-family: 'Golos Text', system-ui, sans-serif;
    background-color: var(--c-background);
    color: var(--c-ink);
}

button {
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
}

.wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 12px;
    padding-right: 12px;
}

.primary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    font-size: 15px;
    font-weight: 600;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 2px;
    background-color: var(--c-primary);
    color: #fff;
    position: relative;
    transition: .1s;
}

.primary-btn:hover {
    background-color: color-mix(in srgb, #E4443A 85%, black);
}

.primary-btn__text {
    position: relative;
    overflow: hidden;
}

.primary-btn__second {
    position: absolute;
    inset: 0;
    transform: translateY(100%);
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(10px);
}

.header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.header__logo {
    display: flex;
    align-items: center;
}

.header__logo img {
    display: block;
}

.header__logo_text {
    padding-left: 12px;
}

.header__logo_title {
    text-transform: uppercase;
    font-weight: normal;
    letter-spacing: .005em;
    font-weight: 700;
    color: #7C7868;
}

.header__logo_descr {
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: .24em;
    color: #7C7868;
}

.header__menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}

.header__menu ul li:not(:first-child) { margin-left: 30px; }

.header__menu ul li a {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.header__actions {
    display: flex;
    align-items: center;
}

.header__phone {
    margin-right: 24px;
}

.header__phone_call {
    font-weight: 600;
    font-size: 18px;
}

.header__phone_descr {
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-align: right;
}


.hero__title {
    font-size: clamp(52px,10.5vw,176px);
    font-weight: 900;
    line-height: 0.95;
}