@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;
}

html {
    scroll-behavior: smooth;
}

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);
    border: 1px solid transparent;
    color: #fff;
    position: relative;
    transition: .1s;
}

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

.primary-btn--outlined {
    background-color: transparent;
    border-color: var(--c-primary);
    color: var(--c-primary);
}

.primary-btn--outlined:hover {
    background-color: transparent;
    border-color: color-mix(in srgb, var(--c-primary) 85%, black);
    color: color-mix(in srgb, var(--c-primary) 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 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.hero__title {
    font-size: 85px;
    font-weight: 900;
    line-height: 0.95;
    margin: 0;
    text-transform: uppercase;
}


.hero__top {
    position: relative;
}

.hero__topimg {
    position: absolute;
    top: 0;
    left: 320px;
    width: 180px;
    border-radius: 2px;
    overflow: hidden;
}

.hero__topimg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
    border-radius: inherit;
}

.hero__topimg::before {
    content: '';
    display: block;
    padding-top: 66%;
}

.hero__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero__descr {
    font-size: 20px;
    font-weight: 500;
}

.hero__lgimg {
    position: relative;
    border-radius: 4px;
}
.hero__lgimg::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 80%;
}

.hero__lgimg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
}

.hero__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.hero__btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: auto;
}

.hero__advs {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.hero__adv {
    display: flex;
    align-items: center;
    background-color: color-mix(in srgb, var(--c-primary) 15%, transparent);
    padding: 10px 16px 10px 10px;
    color: var(--c-primary)
}

.hero__adv_title {
    font-size: 20px;
    font-weight: 700;
}

.hero__adv_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background-color: var(--c-primary);
    color: #fff;
    margin-right: 10px;
}

.hero__adv_descr {
    color: #64748b
}


.marquee {
    padding: 40px 0;
}

.marquee__group {
    display: flex;
    flex-shrink: 0;
    white-space: nowrap;
    gap: 32px
}

.marquee__row {
    display: flex;
    overflow: hidden;
    gap: 32px
}
.marquee__item {
    display: flex;
    align-items: center;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
}

.marquee__item::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    margin-left: 32px;
    border-radius: 100px;
    background-color: var(--c-primary);
}