@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 {
    --offset: 2px;
    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;
    overflow: hidden;
    box-sizing: border-box;
}

.primary-btn::before { 
    content: '';
    background: conic-gradient(transparent 270deg, white, transparent);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 1;
    width: 100%;
    animation: rotate 2s linear infinite;
}

.primary-btn::after {
    content: '';
    background: inherit;
    border-radius: inherit;
    position: absolute;
    inset: var(--offset);
    height: calc(100% - 2 * var(--offset));
    width: calc(100% - 2 * var(--offset));
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) scale(1.4) rotate(0turn);
    }

    to {
        transform: translate(-50%, -50%) scale(1.4) rotate(1turn);
    }
}

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

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

.primary-btn--outlined::before,
.primary-btn--outlined::after { display: none; }

.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;
    z-index: 1;
}

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

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    transition: .25s;
}

.header__burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-left: 12px;
    color: #fff;
    position: relative;
    z-index: 1;
    transition: color .1s, background-color .1s;
}

.header__burger--active {
    color: var(--c-primary);
    background-color: color-mix(in srgb, var(--c-primary) 20%, white);
}

.header__burger-bg {
    display: none;
    position: fixed;
    right: 12px;
    top: 12px;
    width: calc(100vw - 24px);
    height: calc(100dvh - 24px);
    border-radius: 2px;
    background: var(--c-primary);
    transform: scaleX(var(--collapsed-scale-x)) scaleY(var(--collapsed-scale-y));
    transform-origin: right top;
    will-change: transform, background;
    border-radius: 4px;
    z-index: 1;
}

.header__burger-bg--active {
    border: 1px solid #E2E8F0;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    background: var(--c-background);
}

.header__burger_x,
.header__burger_bars {
    position: absolute;
    margin: auto;
}

.header__burger_x { opacity: 0; }
.header__burger_bars { opacity: 1; }

.header.header--sticked {
    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__dropdown {
    position: relative;
}

.header__dropdown_list {
    position: absolute;
    left: -16px;
    top: 100%;
    background: var(--c-background);
    border: 1px solid #E2E8F0;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.09);
    border-radius: 8px;
    padding: 4px;
    width: 320px;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    transition: .15s ease-out;
    transform: translateY(2px) scale(0.99);
}

.header__dropdown:hover .header__dropdown_list {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.header__dropdown_list li a {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #90A1B9;
    padding: 6px 12px;
    transition: .1s;
}

.header__dropdown_list li a:hover {
    background-color: rgba(0,0,0,.03);
}



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

.header__phone {
    margin-right: 24px;
}

.header__phone_call {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    position: relative;
}

.header__phone_call svg {
    display: block;
    margin-right: 8px;
}

.header__phone_call::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 2px;
    width: 7px;
    height: 7px;
    border-radius: 100px;
    background-color: #10b981;
}

.header__phone_call::after {
    content: '';
    position: absolute;
    left: 14px;
    top: 2px;
    width: 7px;
    height: 7px;
    border-radius: 100px;
    background-color: #10b981;
    opacity: .6;
    animation: phonePulse 3s infinite;
}

@Keyframes phonePulse {
    0% {
        transform: scale(1);
        opacity: .6;
    }
    50% {
        transform: scale(2.4);
        opacity: 0;
    }
    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

.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;
    border-radius: 2px;
    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;
    border-radius: 2px;
}

.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);
}

@media screen and (max-width: 1200px) {
    .hero__content {
        gap: 16px;
    }
    
    .hero__title {
        font-size: 65px;
    }

    .hero__adv_icon svg {
        width: 20px;
    }

    .hero__adv_icon {
        width: 28px;
        height: 28px;
    }

    .hero__adv_descr {
        font-size: 12px;
    }

    .hero__adv_title {
        font-size: 16px;
    }
}

@media screen and (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
    }

    .hero__text {
        order: -1;
    }

    .header__burger {
        display: flex;

    }
    .header__burger-bg {
        display: block;
    }

    .header__menu {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100dvh;
        padding-top: 88px;
        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 12px;
        box-sizing: border-box;
    }
}