@font-face {
    font-family: "HeliosCond";
    src: url(../fonts/HeliosCond-regular.ttf);
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "HeliosCondC";
    src: url(../fonts/HeliosCondC-bold.otf);
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url(../fonts/Inter-Light.ttf);
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url(../fonts/Inter-Medium.ttf);
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url(../fonts/Inter-SemiBold.ttf);
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "RobotoCondensed";
    src: url(../fonts/RobotoCondensed-Bold.ttf);
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "RobotoCondensed";
    src: url(../fonts/RobotoCondensed-SemiBold.ttf);
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "RobotoCondensed";
    src: url(../fonts/RobotoCondensed-Regular.ttf);
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Roboto";
    src: url(../fonts/Roboto-Regular.ttf);
    font-weight: 400;
    font-style: normal;
}

:root {
    --color-text-secondary: rgba(30, 30, 30, 70%);
    --color-text-tetriary: rgba(30, 30, 30, 50%);
    --color-accent-black: #202020;
    --accent-yellow: #FFC75B;
    --accent-yellow-hover: #cea44f;
    --accent-black: #1E1E1E;
    --accent-red: #F65009;
    --color-white: #ffffff;
    --background-secondary: rgba(239, 237, 232, 70%);
    --background-tetriary: rgba(239, 237, 232, 30%);
    --background-light: #EFEDE8;
    --color-green: #A8D266;
    --color-purple: #773AF8;
    --color-orange: #F2943D;
    --color-pink: #E56AD9;
    --color-purple-light: #9563FF;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    font-size: 16px;
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--color-text-secondary);
    min-height: 100vh;
}

ul,
li {
    display: block;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "HeliosCondC", sans-serif;
    font-weight: 700;
    color: var(--accent-black);
}

p {
    margin: 0;
}

.container {
    width: 100%;
    max-width: 1136px;
    margin: 0 auto;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

    a:hover {
    }

button {
    font-family: inherit;
    font-weight: 500;
    border: none;
    background: none;
    cursor: pointer;
}

.btn {
    font-family: "HeliosCondC", sans-serif;
    font-weight: 700;
    background-color: var(--accent-yellow);
    border-radius: 12px;
    color: var(--accent-black);
    height: 46px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    line-height: 0.9375rem;
    letter-spacing: 0.1px;
    cursor: pointer;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

    .btn:hover {
        background-color: var(--accent-yellow-hover);
        -webkit-transition: background-color 0.3s;
        -o-transition: background-color 0.3s;
        transition: background-color 0.3s;
    }

img {
    display: block;
    width: 100%;
}

h1 {
    font-size: 6rem;
}

h2 {
    font-size: 5rem;
}

h3 {
    font-size: 4rem;
}

:hover {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.HeliosCondC {
    font-family: "HeliosCondC", sans-serif;
    font-weight: 700;
}

.HeliosCond {
    font-family: "HeliosCond", sans-serif;
    font-weight: 400;
}

.Inter-Light {
    font-family: "Inter", sans-serif;
    font-weight: 300;
}

.Inter-Medium {
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

.Inter-SemiBold {
    font-family: "Inter", sans-serif;
    font-weight: 600;
}

.RobotoCondensed-Bold {
    font-family: "RobotoCondensed", sans-serif;
    font-weight: 700;
}

.RobotoCondensed-SemiBold {
    font-family: "RobotoCondensed", sans-serif;
    font-weight: 600;
}

.RobotoCondensed-Regular {
    font-family: "RobotoCondensed", sans-serif;
    font-weight: 400;
}

.Roboto-Regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

.big-size {
    font-size: 1.25rem;
    line-height: normal;
    letter-spacing: 0.15px;
}

.thin-medium-size {
    font-size: 0.875rem;
    line-height: normal;
    letter-spacing: 0.15px;
}

.thin-semibold-size,
.small-light-size {
    font-size: 0.75rem;
    line-height: normal;
    letter-spacing: 0.15px;
}

.small-bold-size {
    font-size: 1rem;
    line-height: 0.9375rem;
    letter-spacing: 0.1px;
}

.body-small-size {
    font-size: 0.75rem;
    line-height: normal;
    letter-spacing: 0.5px;
}

.body-medium-size {
    font-size: 1rem;
    line-height: normal;
    letter-spacing: 0.5px;
}

.select-container {
    position: relative;
}

select {
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-image: url(../img/icon-svg/search-arrow-icon.svg);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center right 30px;
}

    select::-ms-expand {
        display: none;
    }

input,
select {
    font-family: inherit;
    padding: 16px 12px;
    width: 100%;
    height: 51px;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    background-color: var(--background-light);
    color: var(--color-accent-black);
}

textarea {
    padding: 12px;
    border-radius: 12px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    min-height: 157px;
    width: 100%;
    background-color: var(--background-light);
    color: var(--color-accent-black);
    border: none;
    overflow: hidden;
    resize: vertical;
}

    textarea::-webkit-input-placeholder {
        color: var(--color-text-tetriary);
    }

    textarea::-moz-placeholder {
        color: var(--color-text-tetriary);
    }

    textarea:-ms-input-placeholder {
        color: var(--color-text-tetriary);
    }

    textarea::-ms-input-placeholder {
        color: var(--color-text-tetriary);
    }

    textarea::placeholder {
        color: var(--color-text-tetriary);
    }

input::-webkit-input-placeholder {
    color: var(--color-text-tetriary);
}

input::-moz-placeholder {
    color: var(--color-text-tetriary);
}

input:-ms-input-placeholder {
    color: var(--color-text-tetriary);
}

input::-ms-input-placeholder {
    color: var(--color-text-tetriary);
}

input::placeholder {
    color: var(--color-text-tetriary);
}

select {
    color: var(--color-text-tetriary);
}

    input:focus,
    select:focus {
        outline: none;
    }

/* Состояние ошибки */
input.error {
    background-color: rgba(244, 99, 37, 20%);
    /* Красноватый фон для ошибки */
    color: var(--accent-red) !important;
    /* Цвет текста при ошибке */
}

/* Состояние успеха */
input.success {
    background-color: rgba(126, 215, 82, 21%);
    /* Зеленоватый фон при успехе */
    color: var(--color-green);
    /* Цвет текста для успеха */
}

/* Подсказка или ошибка под полем */
input + .hint {
    font-size: 12px;
    color: var(--color-text-secondary);
    margin-top: 8px;
}

/* Подсказка для ошибки */
input.error + .hint {
    color: var(--accent-red);
}

/* Подсказка для успеха */
input.success + .hint {
    color: var(--color-text-secondary);
}

/* Подсказка для обязательного поля */
input.required + .hint {
    color: var(--color-text-secondary);
}

/* Скрываем стандартный чекбокс */
.custom-checkbox input[type="checkbox"] {
    display: none;
}

/* Контейнер для кастомного чекбокса */
.custom-checkbox {
    display: inline-block;
    position: relative;
    width: 18px;
    height: 18px;
    margin-right: 8px; /* Добавляет отступ между чекбоксом и текстом */
}

    /* Стиль чекбокса, когда он не отмечен */
    .custom-checkbox .checkmark {
        width: 100%;
        height: 100%;
        border: 2px solid var(--color-text-tetriary);
        /* Цвет рамки для неактивного состояния */
        border-radius: 4px;
        width: 18px;
        height: 18px;
        display: inline-block;
        -webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
        -o-transition: background-color 0.3s ease, border-color 0.3s ease;
        transition: background-color 0.3s ease, border-color 0.3s ease;
    }

    /* Стиль для отмеченного состояния чекбокса */
    .custom-checkbox input[type="checkbox"]:checked + .checkmark {
        background-color: var(--accent-yellow);
        /* Жёлтый фон для активного состояния */
        border-color: var(--accent-yellow);
    }

        /* Галочка, видимая только при checked состоянии */
        .custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            background-image: url('../img/icon-svg/Subtract.svg');
            width: 11px;
            height: 8px;
        }

/* Стиль для текста рядом с чекбоксом */
.checkbox-label {
    cursor: pointer; /* Делает текст кликабельным */
}

/* Main */

.main {
    position: relative;
    padding: 145px 0 85px;
    z-index: 10;
    overflow: hidden;
}

.main-bg-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: var(--accent-black);
    border-radius: 0 0 0 40px;
    z-index: -1;
}

.main-bg-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    border-radius: 0 0 40px 0;
    background: linear-gradient(41.26deg, #FFC75B 3.46%, #B693FF 37.28%, #773AF8 67.89%, #FF41CA 106.89%);
    z-index: -1;
}

    .main-bg-right::before {
        content: "";
        position: absolute;
        top: -34px;
        right: 0;
        background-image: url(../img/icon-svg/main-circle.svg);
        background-repeat: repeat;
        background-size: contain;
        width: 100%;
        height: 254px;
    }

.main-letters {
    position: absolute;
    top: 92px;
    background-image: url(../img/icon-svg/main-letters.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 2560px;
    height: 100%;
    z-index: -1;
    left: 50%;
    transform: translate(-50%, 0);
}

.main-beer {
    position: absolute;
    top: -71px;
    right: 0;
    left: 0;
    margin: 0 auto;
    background-image: url(../img/main-beer.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 262px;
    height: 734px;
}

.main-left {
    width: 50%;
}

.main-right {
    width: 50%;
}

.main-container {
    align-items: flex-end;
    gap: 0;
}

.main__title {
    max-width: 400px;
    font-size: 3rem;
    color: var(--color-white);
    text-transform: uppercase;
}

.main__btn {
    margin-top: 115px;
    max-width: 223px;
}

.main-right__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background-color: var(--background-light);
    font-size: 0.875rem;
    max-width: 156px;
    height: 32px;
    color: var(--accent-black);
    margin-left: 152px;
}

.main-right__btn-img {
    width: 18px;
    height: 18px;
}

/* Main Stocks */

.main-stocks {
    padding: 80px 0 159px;
}

.container {
}

.main-stocks-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.main-stocks-top__card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.main-stocks-top__card-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    border-radius: 40px;
    grid-column: 1/3;
    background-color: var(--color-purple-light);
}

    .main-stocks-top__card-1::before {
        content: "";
        position: absolute;
        bottom: -132px;
        right: -98px;
        background-image: url(../img/main-stocs-1.png);
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        max-width: 495px;
        height: 100%;
        max-height: 490px;
    }

.main-stocks-top__card_title {
    text-transform: uppercase;
    font-size: 2.25rem;
    color: var(--background-light);
}

.main-stocks-top__card_btn {
    background-color: var(--background-light);
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.main-stocks-top__card-2 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

   

    .main-stocks-top__card-2::before {
        content: "";
        position: absolute;
        background-image: url(../img/main-stocs-hops.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

.main-stocks-top__card-wrapper {
    background-color: var(--background-light);
    border-radius: 24px;
    padding: 40px 24px;
    max-height: 228px;
    height: 100%;
}
.main-stocks-top__card-2:hover .main-stocks-top__card-wrapper {
    background-color: #A8D266;
    max-height: 328px;
}
.main-stocks-top__card-2 .main-stocks-top__card_title {
    font-size: 1.5rem;
    color: var(--accent-black);
    margin-bottom: 4px;
}

.main-stocks-top__card_arrow-img {
    position: absolute;
    right: 13px;
    bottom: 13px;
    width: 56px;
    height: 56px;
}

.main-stocks-top__card-3 {
}

.main-stocks-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.main-stocks-bottom__card {
    position: relative;
    min-height: 196px;
    border-radius: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 24px;
    overflow: hidden;
    z-index: 10;
}

.main-stocks-bottom__card-4 {
    background-color: var(--background-secondary);
    transition: background-color .5s ease-in-out 0s;
}
    .main-stocks-bottom__card-5 .main-stocks-bottom__card_number,
    .main-stocks-bottom__card-4 .main-stocks-bottom__card_number {
        transition: color 1s ease-in-out 0s, font-size .5s ease-in-out 0s;
    }
    .main-stocks-bottom__card-4:hover {
        color: #fff;
        background: var(--Colors-Pink, #E56AD9);
    }
        .main-stocks-bottom__card-4:hover .main-stocks-bottom__card_number {
            font-size: 6rem;
            color: #fff;
        } 

    .main-stocks-bottom__card-4 .main-stocks-bottom__card_number {
        color: var(--accent-black);
    }

.main-stocks-bottom__card_desc {
    max-width: 180px;
}

.main-stocks-bottom__card_number {
    font-size: 5rem;
    line-height: 1;
}

.main-stocks-bottom__card-5 {
    color: var(--color-white);
    background-color: var(--color-orange);
    transition: background-color 0.3s ease-in-out 0s, color 0.3s ease-in-out 0s;
}

    .main-stocks-bottom__card-5:hover .main-stocks-bottom__card_number {
        font-size: 6rem;        
    } 

    .main-stocks-bottom__card-5::before {
        content: "";
        position: absolute;
        bottom: -103px;
        right: -3px;
        background-image: url(../img/icon-svg/main-stocs-circle.svg);
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
        max-width: 318px;
        height: 342px;
        z-index: -1;
    }

.main-stocks-bottom__card-6 {
    background-image: url(../img/main-stocs-baner.png);
    background-size: cover;
    background-repeat: no-repeat;
}

    .main-stocks-bottom__card-6:hover {
        background: url(../img/main-stocs-baner.png), linear-gradient(91deg, #FEDC2D -6.93%, #B693FF 30.8%, #773AF8 69.99%, #FF41CA 108.46%);
    }

/* main-franchise-slider */

.main-franchise-slider {
    overflow: hidden;
}

.main-franchise-slider__header {
    max-width: 730px;
    text-align: center;
    margin: 0 auto;
}

.main-franchise-slider__header_title {
    font-size: 4rem;
    position: sticky;
    z-index: 2;
}

.main-franchise-slider__btn {
    position: sticky;
    z-index: 1;
    max-width: 287px;
    margin: 0 auto;
    transform: rotate(-9deg);
    height: 59px;
}

.main-franchise-slider__wrapper {
    display: flex;
    gap: 16px;
}

.main-franchise-slide {
    position: relative;
    min-width: 368px;
    width: 100%;
    height: 376px;
    border-radius: 24px;
    padding: 40px 38px;
}

    .main-franchise-slide:nth-child(odd) {
        margin-top: 82px;
    }

.main-franchise-slider__arrow-wrapper {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-light);
    border-radius: 50%;
}

.main-franchise-slider__title {
    display: flex;
    align-items: flex-end;
    font-size: 2.25rem;
    color: var(--color-white);
    height: 100%;
}

.main-franchise-slider .franchise-slide {
    width: 100%;
    height: 100%;
}

.franchise-slide-1 {
    background-image: url(../img/section-slide-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.franchise-slide-2 {
    background-image: url(../img/section-slide-2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.franchise-slide-3 {
    background-image: url(../img/section-slide-3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.franchise-slide-4 {
    background-image: url(../img/section-slide-4.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.franchise-slide-5 {
    background-image: url(../img/section-slide-5.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.franchise-slide-6 {
    background-image: url(../img/section-slide-4.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.franchise-slide-7 {
    background-image: url(../img/section-slide-5.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

/* main-franchise */

.main-franchise {
    position: relative;
    background-image: url(../img/wave-main-franshiz.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    mask-image: url(../img/icon-svg/wave-main-franshiz.svg);
    mask-size: cover;
    mask-repeat: no-repeat;
    mask-position: center;
    padding: 195px 0;
    width: 100%;
    margin-top: 220px;
    color: var(--color-white);
}

.main-franchise_wrapper {
    position: sticky;
    z-index: 2;
    max-width: 988px;
    margin: 0 auto;
    text-align: center;
}

.main-franchise__title {
    font-size: 3rem;
    color: var(--color-white);
}

.main-franchise__desc {
    font-size: 1.5rem;
    margin-top: 48px;
    margin-bottom: 32px;
}

.main-franchise__btn {
    max-width: 223px;
    margin: 0 auto;
}


/* Hero */

.hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    background-image: url(../img/hero-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--color-white);
    min-height: 464px;
}

.hero-shop {
    background-image: url(../img/hero-shop.jpg);
}

.hero-assortment {
    background-image: url(../img/hero-assortment.jpg);
}

.hero-taxi {
    background-image: url(../img/hero-taxi.jpg);
}

.hero-contacts {
    background-image: url(../img/hero-contacts.jpg);
}

.hero-stocks {
    background-image: url(../img/hero-stocks.jpg);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background-image: url(../img/icon-svg/hero-circle-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
    max-height: 286px;
}

.hero__title {
    font-size: 6rem;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-white);
}

/* Jobs */

.search-colleagues {
    padding: 80px 0 40px;
}

.search-colleagues__title {
    margin-bottom: 40px;
    font-size: 3rem;
    color: var(--accent-black);
}

.search-colleagues__block-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 28px;
    border-radius: 24px;
    background-color: var(--background-tetriary);
    padding: 40px 36px;
}

.search-colleagues__block_title {
    color: var(--accent-black);
    font-size: 2.25rem;
}

.select-container {
    padding: 9px 16px;
}

.search-colleagues__block_filter-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.search-colleagues__block_filter-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
}

.filter-option {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-style: normal;
    padding: 10.5px 19px;
    background-color: var(--background-light);
    color: var(--color-text-tetriary);
    border-radius: 29px;
    letter-spacing: 0.18px;
    font-size: 0.875rem;
}

    .filter-option.active {
        background-color: var(--accent-yellow);
        color: var(--accent-black);
    }

.search-colleagues__block_submit {
    max-width: 320px;
}


.search-products {
    padding: 40px 0;
}

.search-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 8px;
    padding: 12px 16px;
    margin-bottom: 40px;
}

.search-wrapper {
    position: relative;
    max-width: 100%;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background-image: url(../img/icon-svg/search.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: center;
    width: 20px;
    height: 20px;
    display: block;
}

.search-style {
    padding-left: 56px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    height: 56px;
}

    .search-style:focus {
        padding-left: 24px;
    }

        .search-style:focus + .search-icon {
            display: none;
        }

.search-filter {
    max-width: 72px;
    width: 100%;
}

.search-filter-btn {
    position: relative;
    background-color: var(--background-secondary);
    padding: 16px 24px;
    border-radius: 12px;
}

.search-filter-count {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    position: absolute;
    width: 16px;
    height: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 11px;
    color: var(--background-light);
    background-color: transparent;
    border-radius: 50%;
    top: 0;
    right: 0;
}

.search-filter-count--active {
    background-color: #F46325;
}

.job-listing__items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.job-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 559px;
    width: 100%;
    padding: 24px;
    border-radius: 24px;
    background-color: var(--background-secondary);
    cursor: pointer;
}

.job-card__title {
    font-size: 1.5rem;
    letter-spacing: 0.15px;
    line-height: normal;
    color: var(--accent-black);
}

.job-card__location,
.job-card__details {
    color: var(--color-text-tetriary);
    font-size: 1rem;
    line-height: normal;
    letter-spacing: 0.15px;
    margin: 12px 0;
}

.job-card__details {
    max-width: 216px;
    margin: 0;
    color: var(--color-text-secondary);
}

.job-card__salary {
    font-size: 1.5rem;
    color: var(--color-green);
}

    .job-card__salary span {
        display: block;
        color: var(--color-text-secondary);
    }

.job-listing__items + .job-card-full {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
}

.job-card-full {
    max-width: 100%;
    grid-column: 1 / -1;
    padding: 40px 80px;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}

    .job-card-full .job-card__title,
    .job-card-full .job-card__salary {
        font-size: 2.5rem;
    }

    .job-card-full .job-card__location {
        display: none;
    }

    .job-card-full .job-card__details {
        margin: 28px 0;
    }

    .job-card-full .job-card__right {
        max-width: 382px;
        width: 100%;
    }

.job-card__full-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 28px;
}

.job-card__full {
    display: none;
}

.job-card-full .job-card__full {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.job-card-full .job-card__full_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.job-card__full_title {
    font-size: 1.5rem;
    letter-spacing: 0.15px;
    color: var(--accent-black);
}

.job-card__full_btn {
    display: none;
    max-width: 382px;
    margin-top: 20px;
}

.job-listing__nav-wrapper {
    text-align: center;
}

.job-listing__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 27px;
    margin-bottom: 24px;
    margin-top: 40px;
}

.pagination-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

    .pagination-btn.active {
        background-color: var(--accent-yellow);
    }

.pagination-dots {
    cursor: pointer;
}

.job-listing__load-more {
    max-width: 176px;
    width: 100%;
    margin: 0 auto;
}

.jobs-feedback__group {
    padding: 12px 16px;
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .jobs-feedback__group input {
        max-width: 552px;
    }

.jobs-feedback__placeholder {
    position: absolute;
    top: 16px;
    left: 28px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #a3a3a3;
    font-size: 1rem;
    pointer-events: none;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
}

    .jobs-feedback__placeholder span {
        font-size: 0.875rem;
        vertical-align: top;
        line-height: normal;
    }

.jobs-feedback {
    padding: 110px 0;
}

.jobs-feedback__header {
    margin-bottom: 40px;
}

.jobs-feedback__title {
    font-size: 3rem;
    margin-bottom: 8px;
    color: var(--accent-black);
    text-transform: uppercase;
}

.jobs-feedback__desc {
    letter-spacing: 0.15px;
}

.jobs-feedback__flex {
    gap: 16px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.jobs-feedback__left {
    max-width: 656px;
    width: 100%;
    padding: 40px 36px;
    border-radius: 24px;
    background-color: var(--background-tetriary);
}

.jobs-feedback__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 28px;
}

.contact-us__input-file {
    display: none; /* Скрываем стандартное поле загрузки */
}

.contact-us__file-upload {
    padding: 12px 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--color-text-primary);
}

.contact-us__file-icon {
    width: 20px;
    height: 20px;
    background-image: url('../img/icon-svg/paper-clip.svg'); /* Путь к вашей иконке */
    background-size: cover;
    display: inline-block;
}

.contact-us__file-label {
    color: var(--color-text-secondary);
    cursor: pointer;
}

.jobs-feedback__group-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.jobs-feedback__btn {
    max-width: 442px;
    width: 100%;
    margin: 20px auto;
}

.jobs-feedback__right {
    text-align: center;
    max-width: 464px;
    width: 100%;
}

.jobs-feedback__why-us_title {
    font-size: 2.5rem;
    margin-bottom: 70px;
    color: var(--accent-black);
}

.jobs-feedback__why-us_card {
    margin-bottom: 28px;
}

    .jobs-feedback__why-us_card:last-child {
        margin-bottom: 0;
    }

.jobs-feedback__why-us_card-img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.jobs-feedback__why-us_card-title {
    font-size: 2rem;
    color: var(--accent-black);
    margin: 12px 0 8px;
}

.jobs-feedback__why-us_card-desc {
    max-width: 304px;
    margin: 0 auto;
}

/* Стили для оверлея */
.job-overlay {
    display: none; /* Скрыто по умолчанию */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Стили для попапа */
.job-pop-up {
    display: none; /* Скрыто по умолчанию */
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 40px 36px;
    border-radius: 24px;
    width: 100%;
    max-width: 656px;
    z-index: 1000;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    max-height: 80vh;
}
/* Кнопка закрытия */
.job-pop-up__closed {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #333;
}

/* Показ попапа и оверлея */
.job-overlay.active,
.job-pop-up.active {
    display: block;
}

.job-pop-up__title {
    font-size: 2.25rem;
}

.job-pop-up__address {
    margin: 28px 0;
    letter-spacing: 0.15px;
}

/* assortment */

.assortment {
    padding: 57px 0 65px;
}

.assortment__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
}

.assortment__item {
    background-color: var(--background-light);
    border-radius: 23px;
    max-width: 272px;
    min-height: 298px;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 23px;
    cursor: pointer;
}

.assortment__image {
    position: absolute;
}

.assortment__item--bottle-beer {
    background-color: var(--color-green);
}

    .assortment__item--bottle-beer .assortment__image {
        right: -35px;
        bottom: -82px;
    }

.assortment__item--draft-beer {
    background-color: var(--color-purple);
}

    .assortment__item--draft-beer .assortment__image {
        right: -55px;
        bottom: -40px;
    }

.assortment__item--snacks {
    background-color: var(--color-orange);
}

    .assortment__item--snacks .assortment__image {
        right: -50px;
        bottom: -58px;
    }

.assortment__item--merch {
    background-color: var(--color-pink);
}

    .assortment__item--merch .assortment__image {
        right: -50px;
        bottom: -28px;
    }

.assortment__title {
    font-size: 1.4375rem;
    line-height: 1.375rem;
    color: var(--color-white);
    text-transform: uppercase;
    max-width: 167px;
    -moz-text-align-last: left;
    text-align-last: left;
}

/* products__search-wrapper */

.products {
    margin-bottom: 56px;
}

.products__search-wrapper {
    margin-bottom: 24px;
}

    .products__search-wrapper .search-container {
        margin-bottom: 0;
    }

.products__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
}

.products__card {
    max-width: 272px;
    width: 100%;
    background-color: var(--background-tetriary);
    border-radius: 12px;
}

.products__card_header {
    position: relative;
    max-height: 12rem;
    overflow: hidden;
}

.products__card_estimation-wrapper {
    position: absolute;
    top: 12px;
    left: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4px 8px;
    background-color: var(--color-text-secondary);
    color: var(--accent-yellow);
    line-height: 1.25rem;
    font-size: 0.875rem;
    border-radius: 100px;
}

.products__card_estimation-img {
    width: 16px;
    height: 16px;
}

.products__card-offer-wrapper {
    padding: 12px;
    margin-bottom: 16px;
}

.products__card-offer_title {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--accent-black);
}

.products__card-offer_desc {
    font-weight: 300;
}

.products__card-offer_prices {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 16px;
}

.products__card-offer_price-new {
    font-size: 1.5rem;
    line-height: 1.75rem;
    color: var(--accent-red);
    letter-spacing: 1px;
}

.products__card-offer_price-old {
    font-weight: 300;
    letter-spacing: 0.15px;
    font-size: 0.75rem;
    text-decoration: line-through;
}

.products__card-offer_price-in-stock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    margin-right: 16px;
}

.products__card-offer_price-in-stock_img {
    width: 18px;
    height: 18px;
}

.products__card-offer_price-in-stock_text {
    color: var(--color-green);
}

/* Products card */

.crumbs {
    padding: 59px 0;
}

.crumbs__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    font-size: 1.5rem;
}

.product-card {
    padding-bottom: 163px;
}

.product-card__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
}

.product-card__left {
    max-width: 464px;
}

.product-card__img {
    margin-bottom: 6px;
}

.product-card__availability_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.product-card__availability_title {
    font-size: 2rem;
}

.product-card__availability_btn {
    max-width: 55px;
    height: 32px;
    width: 100%;
    font-size: 0.875rem;
}

    .product-card__availability_btn img {
        width: 18px;
        height: 18px;
    }

.product-card__availability_list {
    margin-top: 10px;
}

.product-card__availability_item {
    padding: 16px;
    border-bottom: 1px solid var(--background-light);
}

.product-card__availability_item-title {
    color: var(--accent-black);
}

.product-card__availability_item-time {
    margin: 8px 0;
    letter-spacing: 0.15px;
}

.product-card__availability_item-metro {
    letter-spacing: 0.15px;
}

.product-card__right {
    max-width: 560px;
}

.product-card__name-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-bottom: 28px;
}

.product-card__country {
    margin-bottom: 28px;
}

.product-card__right .products__card-offer_price-new {
    font-size: 3rem;
    line-height: 1.75rem;
}

.product-card__right .products__card-offer_price-old {
    font-size: 1.75rem;
    color: var(--color-text-tetriary);
}

.product-card__features {
    margin: 28px 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px;
}

.product-card__feature {
    text-align: center;
    max-width: 154px;
    width: 100%;
    padding: 12px 0;
}

.product-card__feature-line {
    width: 1px;
    height: 88px;
    background-color: var(--background-light);
    border-radius: 20px;
}

.product-card__feature_title {
    font-size: 2.5rem;
    line-height: 1.75rem;
    margin-bottom: 2px;
}

.product-card__feature_desc {
    font-weight: 600;
}

.product-card__review {
    background-color: var(--background-secondary);
    border-radius: 14px;
    color: var(--color-text-secondary);
    max-width: 272px;
    width: 100%;
    min-height: 125px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.product-card__review-estimation_wrapper {
    gap: 5px;
    padding: 5px 0;
}

    .product-card__review-estimation_wrapper svg {
        width: 29px;
        height: 29px;
    }

.product-card__review-estimation {
    font-size: 2.375rem;
    line-height: 2.125rem;
}

.product-card__descriptions {
    margin-top: 28px;
}

.product-card__description_btns {
    gap: 0;
    margin-bottom: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.product-card__description_btn.active {
    color: var(--color-accent-black);
    background-color: var(--accent-yellow);
}

.product-card__description_btn {
    max-width: 264px;
    width: 100%;
    height: 51px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--background-light);
    color: var(--color-text-tetriary);
}

.product-card__description_btn-specifications {
    border-radius: 0 100px 100px 0;
}

.product-card__description_btn-desc {
    border-radius: 100px 0 0 100px;
}

.product-card__description_text {
    padding: 0 12px;
    color: var(--color-text-secondary);
    font-weight: 300;
}

.product-card__no-availability-wrapper {
    display: none;
}

.product-card__no-availability_btn {
    width: 100%;
    margin-top: 10px;
}

/* similar-products */

.similar-products {
    padding-bottom: 93px;
}

.similar-products__title {
    font-size: 3rem;
    margin-bottom: 35px;
    margin-left: 14px;
}

.similar-products__cards {
    gap: 16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* window-pop-up-reviews */

.window-pop-up-reviews-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    z-index: 999;
}

.window-pop-up-reviews {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 984px;
    width: 100%;
    background-color: white;
    padding: 48px;
    border-radius: 24px;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    -o-transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    max-height: 80vh;
}

.window-pop-up-reviews__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.window-pop-up-reviews__rating {
    gap: 12px;
}

.window-pop-up-reviews__rating-score {
    font-size: 3rem;
    letter-spacing: 0.15px;
    color: var(--accent-black);
}

.window-pop-up-reviews__stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

    .window-pop-up-reviews__stars svg {
        width: 48px;
        height: 48px;
    }

.window-pop-up-reviews__header_btns {
    max-width: 300px;
    width: 100%;
    gap: 40px;
}

.window-pop-up-reviews__header_btn {
    max-width: 223px;
    width: 100%;
    height: 56px;
}

.window-pop-up-reviews__close-btn {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.window-pop-up-reviews__content {
    margin: 32px 0;
}

.review {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--background-light);
}

.review__name {
    color: var(--accent-black);
    font-size: 1.5rem;
    letter-spacing: 0.15px;
}

.review__stars {
    margin: 8px 0;
    padding: 9px 0;
    gap: 8px;
}

    .review__stars svg {
        width: 32px;
        height: 32px;
    }

.review__text {
    font-weight: 300;
}

.window-pop-up-reviews__pagination,
.window-pop-up-reviews__load-more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 10px;
}

.window-pop-up-reviews__load-more {
    background-color: #f8b400;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Показ попапа */
.window-pop-up-reviews.active,
.window-pop-up-reviews-overlay.active {
    visibility: visible;
    opacity: 1;
}

.review-pop-up {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: white;
    padding: 48px;
    width: 100%;
    border-radius: 24px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
    overflow-y: auto;
    max-height: 80vh;
}

.review-pop-up--leave.active,
.review-pop-up--login.active,
.window-pop-up--shop.active {
    display: block;
}

.review-pop-up--leave,
.review-pop-up--login,
.window-pop-up--shop {
    max-width: 984px;
}

.review-pop-up--leave__header {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 32px;
}

.review-pop-up__title {
    font-size: 3rem;
    text-transform: uppercase;
    text-align: center;
}

.review-pop-up--login .review-pop-up__title,
.window-pop-up--shop .review-pop-up__title {
    text-transform: none;
    font-size: 2.5rem;
}

.review-pop-up__products {
    margin-bottom: 32px;
}

.product-info {
    padding: 12px 16px;
    border-radius: 12px;
    background-color: var(--background-light);
    max-width: 348px;
}

.product-info__img {
    max-width: 64px;
}

.product-info__text_volume {
    margin: 4px 0;
    color: var(--color-text-tetriary);
}

.product-info__text_counter {
    color: var(--color-text-secondary);
}

.review-pop-up__content {
    margin-left: 16px;
}

.rating-stars {
    gap: 16px;
    margin-bottom: 16px;
}

.star {
    cursor: pointer;
}

    .star svg {
        width: 48px;
        height: 48px;
    }

    .star.active path {
        fill: var(--accent-yellow);
        fill-opacity: 1;
    }

.review-pop-up__content_title {
    font-size: 2rem;
    line-height: 2.5rem;
    margin-bottom: 20px;
}

.review-pop-up__close img,
.review-pop-up__back img {
    width: 24px;
    height: 24px;
}

.review-pop-up__content_submit-wrapper {
    text-align: center;
    margin-top: 32px;
}

.submit-review {
    max-width: 226px;
    width: 100%;
    margin: 0 auto 12px;
}

.review-pop-up__content_submit-desc {
    font-weight: 300;
}

.login-phone {
    margin-bottom: 24px;
}

.window-pop-up--shop__result .product-card__availability_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.product-card__availability_item-count {
    color: var(--color-green);
    margin-bottom: 8px;
}

.product-card__availability_item-right .products__card_estimation-wrapper {
    position: sticky;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
}

/* Shops */

.shop__card {
    max-width: 272px;
    border-radius: 12px;
    background-color: var(--background-light);
}

    .shop__card .products__card_img {
        border-radius: 12px 12px 0 0;
    }

.shop .products__search-wrapper {
    margin-top: 80px;
    margin-bottom: 60px;
}

.map {
    padding: 80px 0;
}

.map__title {
    font-size: 3rem;
    text-transform: uppercase;
}

.map__iframe {
    border-radius: 40px;
    margin-top: 60px;
}

    .map__iframe iframe {
        width: 100%;
    }

/* choosing-store */

.choosing-store-products {
    padding: 105px 0;
}

.choosing-store-products__title {
    text-transform: uppercase;
    font-size: 3rem;
    margin-bottom: 24px;
}

.choosing-store__flex {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px;
}

.choosing-store__map iframe {
    max-width: 464px;
    max-height: 275px;
    border-radius: 40px;
}

.choosing-store__offer_title {
    font-size: 2.5rem;
    line-height: 2.5rem;
}

.choosing-store__offer_desc {
    margin: 12px 0;
}

.choosing-store__offer .product-card__reviews {
    margin-top: 28px;
}

/* Contacts */

.contacts {
    padding: 144px 0 183px;
}

.contacts__block {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 112px;
    margin-bottom: 120px;
}

    .contacts__block:last-child {
        margin-bottom: 0;
    }

.contacts__block-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 366px;
}

.contacts__block_title {
    font-size: 2.5rem;
    text-transform: uppercase;
}

.contacts__block_desc {
    letter-spacing: 0.15px;
    color: var(--color-text-secondary);
}

.contacts__block-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 16px;
}

.contacts__block_link {
    background-color: var(--background-light);
    border-radius: 24px;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
    padding: 20px;
    position: relative;
    min-height: 327px;
    min-width: 319px;
    width: 100%;
}

.contacts__block_link-title {
    font-size: 2rem;
    letter-spacing: 0.15px;
    margin-bottom: 8px;
    display: block;
}

.contacts__block_link-desc {
    display: block;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    color: var(--color-text-tetriary);
}

.contacts__block_link-img {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 54px;
    height: 54px;
}

.contacts__block_link.active,
.contacts__block_link:hover {
    background-color: var(--accent-yellow);
}

    .contacts__block_link.active .contacts__block_link-title {
        color: var(--accent-black);
    }

/* permanent-promotions */

.permanent-promotions,
.temporary-promotions {
    padding: 70px 0;
}

.permanent-promotions__title {
    font-size: 3rem;
    margin-bottom: 70px;
    text-transform: uppercase;
}

.permanent-promotions__card {
    padding: 60px 76px;
    min-height: 348px;
    margin-bottom: 1rem;
    aspect-ratio: 16 / 5;
}

.stocks__card {
    background-image: url(../img/stocks-card-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 24px;
    padding: 55px 40px;
    min-height: 295px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.permanent-promotions__card_title,
.stocks__card_title {
    font-size: 3rem;
    color: var(--background-light);
}

.permanent-promotions__card_btn,
.stocks__card_btn {
    max-width: 309px;
    width: 100%;
}

.temporary-promotions__cards {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.temporary-promotions__title {
    margin-bottom: 35px;
}

.temporary-promotions .select-container {
    margin-bottom: 35px;
}

.temporary-promotions__card_btn {
    max-width: 230px;
}

.stock-page {
    padding-bottom: 135px;
}

.stock-page__title-address {
    font-size: 3rem;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .container {
        max-width: 960px;
        width: 100%;
    }

    .get-us__cards {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .crumbs__flex {
        font-size: 1rem;
    }

    .contacts__block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px;
    }

    .contacts__block-left {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
        width: 100%;
    }

    .main-nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }

    .contact-us__group {
        max-width: 100%;
    }

    .contact-us__group-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 20px;
    }

    .contact-us__group-textarea {
        margin: 20px 0;
    }

    .job-card {
        max-width: 100%;
        grid-column: 1 / -1;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 20px;
    }

    .job-card__full-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 20px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .job-card-full .job-card__right {
        margin-top: 20px;
    }

    .job-card-full .job-card__full_btn {
        width: 100%;
    }

    .jobs-feedback__flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .jobs-feedback__right {
        max-width: 100%;
    }

    .product-card__flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .product-card__left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 10px;
        max-width: 100%;
    }

    .product-card__right {
        max-width: 100%;
    }

        .product-card__right .products__card-offer_price {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 15px;
        }

    .product-card__reviews {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .product-card__name-title {
        font-size: 2rem;
        line-height: 2rem;
        margin-bottom: 28px;
    }

    .product-card__img {
        max-width: 300px;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .choosing-store__flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .choosing-store__map iframe {
        max-width: 100%;
    }

    .main-stocks-top {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 16px;
    }

    .main-stocks-top__card-1 {
        min-height: 400px;
    }

    .main-stocks-bottom {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        width: 100%;
    }

    html {
        font-size: 14px;
    }

    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 3rem;
    }

    h3 {
        font-size: 2rem;
    }

    .header-top-flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .get-us,
    .work-us,
    .contact-us {
        padding-bottom: 70px;
    }

    .work-us,
    .contact-us {
        padding-top: 70px;
    }

    .franchise-title {
        padding-top: 20px;
    }

    .jobs-feedback__left,
    .search-colleagues__block-wrapper {
        padding: 20px;
    }

    .jobs-feedback__group,
    .select-container {
        padding: 0;
    }

    .jobs-feedback__placeholder {
        left: 12px;
    }

    .jobs-feedback__group-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 20px;
    }

    .jobs-feedback__form {
        gap: 20px;
    }

    .job-pop-up__title {
        font-size: 2rem;
    }

    .search-container {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .product-card__left {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .product-card__img {
        max-width: 100%;
    }

    .crumbs__flex {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .window-pop-up-reviews__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .window-pop-up-reviews__rating {
        margin-right: auto;
    }

    .window-pop-up-reviews__header_btns {
        margin-left: auto;
    }

    .window-pop-up-reviews__stars svg,
    .star svg {
        width: 32px;
        height: 32px;
    }

    .review-pop-up {
        padding: 20px;
    }

    .contacts__block-right {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .contacts__block_link {
        min-width: 100%;
        min-height: 200px
    }

    .temporary-promotions__cards {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .main-beer {
        display: none;
    }

    .main-bg-left {
        display: none;
    }

    .main-bg-right {
        width: 100%;
        height: 100%;
        top: 0%;
        border-radius: 0;
    }

    .main-letters {
        top: auto;
        bottom: 0;
        max-height: 215px;
    }

    .main-container {
        flex-direction: column;
    }

    .main-left,
    .main-right {
        width: 100%;
    }

    .main__btn {
        margin-top: 40px;
    }

    .main-right__btn {
        margin-left: 0;
        margin-top: 40px;
    }

    .main-franchise-slide {
        min-width: 100%;
    }

        .main-franchise-slide:nth-child(odd) {
            margin-top: 0px;
        }

    .main-right__btn {
        max-width: 100%;
    }
    .permanent-promotions__card {
        aspect-ratio: auto;
    }
}

@media (max-width: 576px) {
    .container {
        width: calc(100% - 30px);
    }

    .hero__title {
        font-size: 4rem;
    }

    .review-pop-up__title,
    .main-stocks-top__card_title,
    .main-franchise-slider__header_title {
        font-size: 2rem;
    }

    .franchise-slide:nth-child(odd) {
        margin-top: 0;
    }

    .work-us__cards,
    .details__list {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    }

    .work-us__card-5 {
        grid-column: 1/-1;
    }

    .btn,
    .product-card__review {
        width: 100%;
        max-width: 100%;
    }

    .job-pop-up {
        padding: 20px;
        height: 100%;
        overflow: scroll;
    }

    .product-card__reviews,
    .product-card__features,
    .window-pop-up-reviews__rating {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .product-card__feature-line {
        width: 100%;
        height: 1px;
    }

    .nav-list {
        gap: 5px;
    }

    .nav-item-circle {
        width: 5px;
        height: 5px;
    }
    .shop .products__search-wrapper {
        margin: 4rem 0 4rem;
    }
    .search-container {
        padding: .75rem 0;
    }

    .hero__title,
    .franchise-title {
        font-size: 3rem;
    }

    .get-us__card_title,
    .contact-us__title {
        font-size: 2rem;
    }

    .main-stocks-top {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
        margin-bottom: 16px;
    }

    .main-stocks-top__card-1 {
        grid-column: 1/-1;
    }

    .main-stocks-top__card {
        min-height: 400px;
    }
}
