@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans';
}

:root {
    --color-blue: #0631AC;
    --color-white: #ffffff;
    --color-black: #2B2B2B;
    --color-lightblue: #F1F3FE;
    --color-btn-hover: #2C5BE2;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-white);
}

.container {
    max-width: 1470px;
    margin: 0 auto;
}

header {
    justify-content: space-around;
    border-radius: 0px 0px 60px 60px;
    background: white;
    position: fixed;
    width: 100%;
    z-index: 50;
}

header li {
    list-style: none;
}

header a {
    text-decoration: none;
}



.desktop_menu_container {
    display: flex;
    justify-content: space-between;
    max-width: 1470px;
    margin: 0 auto;
    padding: 20px;
    align-items: center;
}

.mobile_menu_container {
    display: none;
}

.logo {
    margin-top: 12px;
    width: 25%;
}

.logo img {
    width: 100%;
}

.menu-nav ul {
    display: flex;
    gap: 60px;
}

.menu-nav a {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-black);
}

.menu-nav a:hover {
    color: var(--color-btn-hover);
}

.header_tel {
    display: flex;
}

.header_email {
    display: flex;
}

.wrapper_email_tel a {
    color: var(--color-blue);
    font-size: 20px;
}

.wrapper_email_tel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.header_tel a,
.header_email a {
    color: var(--color-blue);
    transition: color 0.3s;
}

.header_tel svg path,
.header_email svg path {
    fill: var(--color-blue);
    transition: fill 0.3s;
}

/* При наведении */
.header_tel:hover a,
.header_email:hover a {
    color: var(--color-btn-hover);
}

.header_tel:hover svg path,
.header_email:hover svg path {
    fill: var(--color-btn-hover);
}

button.header_feedback,
button.order_more {
    padding: 11px 32px 13px 32px;
    background-color: var(--color-blue);
    color: white;
    font-size: 22px;
    font-weight: 600;
    border: 0px;
    border-radius: 74px;
    width: 100%;
}

button.header_feedback:hover,
button.order_more:hover {
    background-color: var(--color-btn-hover);
    cursor: pointer;
}

.top {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 40px 40px 0px 40px;
}

.mobile-burger-menu {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

main {
    padding-top: 120px;
}

.wrapper_video {
    padding-bottom: 60px;
}

/* Контейнер для видео */
.video-background {
    position: relative;
    width: 100%;
    height: 568px;
    overflow: hidden;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Само видео */
.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}

/* Видео на фоне */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Полупрозрачный оверлей */
.overlay_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Черный цвет с прозрачностью 0.5 */
    z-index: 0;
}

.error_video {
    position: absolute;
    font-size: 50px;
    color: var(--color-blue);
    top: 75%;
}

/* Контент поверх видео */
.content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
}

.content h1 {
    font-size: 42px;
    line-height: 68px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 40px;
}

button.video_feedback {
    padding: 11px 32px 13px 32px;
    background-color: var(--color-white);
    color: var(--color-blue);
    font-size: 22px;
    font-weight: 600;
    border: 0px;
    border-radius: 74px;
    /* width: 100%; */
}

button.video_feedback:hover {
    background-color: var(--color-btn-hover);
    color: var(--color-white);
    cursor: pointer;
}

.about_company_background {
    background-image: url(./assets/template/images/1921.png);
    background-color: var(--color-blue);
    border-radius: 50px;
    color: var(--color-white);
    padding: 45px 32px;
}

.about_company_background h2,
.manufacturers_background h2,
.order_background h2  {
    font-size: 50px;
    line-height: 62px;
    font-weight: 700;
}

.about_company_background p {
    font-size: 22px;
    padding-bottom: 24px;
    width: 70%;
}

.company_advantages {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
}

.item_advantages {
    flex: 1 1 calc(25% - 20px);
    box-sizing: border-box;
    background-color: var(--color-btn-hover);
    border-radius: 50px;
    padding: 24px 32px;
}

.item_advantages img {
    padding-bottom: 28px;
}

.item_advantages h3 {
    font-size: 22px;
    padding-bottom: 8px;
}

.item_advantages p {
    font-size: 16px;
    width: 100%;
}

.wrapper_feedback {
    margin-top: 60px;
}

.feedback_background {
    background-image: url(assets/template/images/group1.png);
    background-color: var(--color-blue);
    border-radius: 50px;
    color: var(--color-white);
    padding: 45px 32px;
    display: flex;
    background-position: bottom;
    background-repeat: no-repeat;
}

.block_feedback {
    flex: 1 1 calc(50% - 20px);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input_wrapper.block_feedback input {
    padding: 20px 30px;
    border-radius: 18px;
    border: 0 solid transparent;
    font-size: 20px;
    background-color: var(--color-btn-hover);
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.input_wrapper.block_feedback input::placeholder {
    color: #82A2FF;
}

.input_wrapper.block_feedback input:focus-visible {
    color: var(--color-white);
    background-color: #5F88FF;
    border: 0px solid transparent;
    transition: background-color 0.3s ease;
}

.input_wrapper.block_feedback input:focus {
    outline: none;
}

/* Изменение фона при автозаполнении */
.input_wrapper.block_feedback input:-webkit-autofill {
    background-color: #5F88FF !important;
    box-shadow: 0 0 0px 1000px #5F88FF inset !important; /* Устраняет проблемы с наложением */
    transition: background-color 0.3s ease; /* Плавный переход */
    color: white !important;
}

/* Для других браузеров */
.input_wrapper.block_feedback input:autofill {
    background-color: #5F88FF !important;
    box-shadow: 0 0 0px 1000px #5F88FF inset !important;
    transition: background-color 0.3s ease;
    color: white !important;
}

input {
    background-color: #5F88FF; /* Синий фон для полей */
    color: white; /* Белый текст */
    border: none;
    border-radius: 18px;
    padding: 20px;
    font-size: 16px;
    width: 100%; /* Растянуть на всю ширину */
}

input::placeholder {
    color: #82A2FF; /* Базовый цвет плейсхолдера */
    transition: color 0.3s ease; /* Плавный переход цвета */
}

input.filled::placeholder {
    color: #fff; /* Белый плейсхолдер для заполненного поля */
}

/* Стили для автозаполнения */
input:-webkit-autofill {
    background-color: #5F88FF !important;
    box-shadow: 0 0 0px 1000px #5F88FF inset !important;
    color: white !important;
}

input:-webkit-autofill::placeholder {
    color: #fff !important; /* Белый цвет плейсхолдера при автозаполнении */
}

.input_wrapper.block_feedback button {
    padding: 20px 30px;
    width: 100%;
    border-radius: 18px;
    border: 0 solid transparent;
    font-size: 22px;
    color: var(--color-blue);
    font-weight: 700;
    cursor: pointer;
}

.input_wrapper.block_feedback button:hover,
.button_contacts:hover,
button.feedback_manufacturer:hover {
    background-color: var(--color-btn-hover);
    color: var(--color-white);
}

.title_wrapper.block_feedback h2 {
    font-size: 50px;
    line-height: 62px;
}

.wrapper_manufacturers {
    padding-top: 60px;
}

.input_wrapper.manufacturers {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 12px;
    margin-top: 24px;
    justify-content: space-between;
}

.item_manufacturer {
    flex: 1 0 calc(15% - 12px);
    max-width: calc(15% - 12px);
    box-sizing: border-box;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: var(--color-white);
    background-color: var(--color-btn-hover);
    border-radius: 50px 50px 25px 25px;
    font-size: 22px;
    font-weight: 700;
}

.item_manufacturer a {
    text-decoration: none;
    color: var(--color-white);
}

.item_manufacturer:hover {
    transform: scale(1.05);
    cursor: pointer; /* Увеличиваем размер на 5% при наведении */
}

.image_manufacturer img {
    border: 2px solid #2C5BE2;
    border-radius: 15px;
}

/* .image_manufacturer img {
    width: 100%;
} */

.image_manufacturer img {
    width: 100%;
    height: 120px;
}

.image_manufacturer img {
    opacity: 1; /* Убедитесь, что прозрачность 100% */
    filter: none; /* Уберите фильтры, если они есть */
}

.name_manufacturer {
    padding: 0 0 10px 0;
}


.description_manufacturer {
    padding-top: 24px;
    display: flex;
    gap: 12px;
}

button.header_feedback_manufacturer {
    padding: 11px 32px 13px 32px;
    background-color: var(--color-blue);
    color: white;
    font-size: 22px;
    font-weight: 600;
    border: 0px;
    border-radius: 74px;
    width: 100%;
    cursor: pointer;
}

button.feedback_manufacturer {
    padding: 11px 32px 13px 32px;
    background-color: var(--color-blue);
    color: white;
    font-size: 22px;
    font-weight: 600;
    border: 0px;
    border-radius: 74px;
    width: 100%;
    cursor: pointer;
}

.text_description_manufacturer {
    width: 75%;
}

.order_wrapper {
    display: flex;
    padding-top: 24px;
    flex-direction: column;
    gap: 12px;
}

.item_order {
    display: flex;
    justify-content: space-between;
    padding: 32px;
    border: 2px solid var(--color-blue);
    border-radius: 17px;
    align-items: center;
}

.order_detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail {
    display: flex;
    gap: 12px;
    font-size: 22px;
    font-weight: 600;
}

.detail_mobile {
    display: none;
}

.data {
    display: flex;
    gap: 12px;
    font-size: 18px;
    font-weight: 400;
}


footer {
    border-radius: 60px 60px 0px 0px;
    background-color: var(--color-blue);
    margin-top: 100px;
}

.footer_menu_container {
    display: flex;
    justify-content: space-between;
    max-width: 1470px;
    margin: 0 auto;
    padding: 20px;
    align-items: stretch;
    padding-top: 52px;
}

.footer-menu-nav {
    padding-top: 20px;
    padding-bottom: 32px;
}

.footer-menu-nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer li {
    list-style: none;
}

footer a {
    text-decoration: none;
}

.footer-menu-nav a {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
}

.footer-menu-nav a:hover {
    color: var(--color-btn-hover);
}

.desktop_image {
    display: block;
}
.mobile_image {
    display: none;
}

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

.wrapper_email_tel_footer {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 32px;
}

button.footer_feedback {
    padding: 11px 32px 13px 32px;
    background-color: var(--color-white);
    color: var(--color-blue);;
    font-size: 22px;
    font-weight: 600;
    border: 0px;
    border-radius: 74px;
}

button.footer_feedback:hover {
    background-color: var(--color-btn-hover);
    cursor: pointer;
    color: var(--color-white);
}

.wrapper_email_tel_footer a {
    color: var(--color-white);
    font-size: 20px;
}

.footer_tel,
.footer_email {
    display: flex;
}

.footer_tel a,
.footer_email a {
    color: white;
    transition: color 0.3s;
}

.footer_tel svg path,
.footer_email svg path {
    fill: white;
    transition: fill 0.3s;
}

/* При наведении */
.footer_tel:hover a,
.footer_email:hover a {
    color: var(--color-btn-hover);
}

.footer_tel:hover svg path,
.footer_email:hover svg path {
    fill: var(--color-btn-hover);
}


.description_order {
    padding-top: 24px;
}

.image_order {
    width: 25%;
}

.image_order img,
.image_order_mobile img {
    opacity: 1;
    filter: none;
    object-fit: contain;
    width: 100%;
    height: auto;
    border-radius: 17px;
}

.image_order a {
    width: 100%;
}

.image_order {
    display: flex;
    flex-direction: column; /* Располагаем элементы вертикально */
    align-items: center; /* Центрируем элементы по горизонтали */
    width: 100%; /* Занимаем всю ширину родителя */
    max-width: 400px; /* Ограничиваем ширину блока (если требуется) */
    margin: 0 auto; /* Центрируем на странице */
}

.image_order_mini {
    display: flex; /* Устанавливаем flex-контейнер */
    justify-content: space-between; /* Равномерное распределение изображений */
    width: 100%; /* Занимаем всю ширину родителя */
    gap: 8px; /* Задаем расстояние между изображениями */
}

.image_order_mini a {
    flex: 1; /* Равномерно растягиваем элементы */
    max-width: calc((100% - 16px) / 3); /* Ограничиваем ширину для трех изображений с учетом отступов */
    text-align: center; /* Центрируем содержимое, если потребуется */
}

.image_order_mini img {
    width: 100%; /* Изображения занимают всю ширину контейнера ссылки */
    height: auto; /* Сохраняем пропорции */
    object-fit: cover; /* Масштабируем изображение без искажений */
    cursor: pointer; /* Указываем, что элемент кликабельный */
}

.wrapper_email_tel_footer a {
    list-style: none;
    text-decoration: none;
}

.button_contacts {
    padding: 12px 32px;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-blue);
    border-radius: 74px;
    border: 0 solid transparent;
    cursor: pointer;
    background-color: var(--color-white);
    width: fit-content;
}

.feedback_popup {
    background-color: var(--color-btn-hover);
    border-radius: 17px;
}

.delivery_order {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.date_order {
    font-size: 18px;
    font-weight: 500;
}

.title_order {
    font-size: 20px;
    font-weight: 600;
}

.content_order {
        padding: 20px 0;
}

@media (max-width: 1500px) {
    header {
        justify-content: space-around;
    }
    .top {
        padding: 25px 40px 20px 40px;
    }
    .wrapper_manufacturers {
        padding-top: 0px;
    }
    .menu-nav ul {
        gap: 30px;
    }
    .logo {
        width: 25%;
    }
    .container {
        padding: 0 40px;
    }
    .content h1 {
        font-size: 38px;
        padding: 0 50px;
    }
    .footer_menu_container {
        padding: 40px;
    }

    .about_company_background h2,
    .manufacturers_background h2,
    .order_background h2  {
        font-size: 50px;
        line-height: 50px;
    }

    .about_company_background p {
        font-size: 20px;
        padding-bottom: 24px;
        width: 85%;
    }
    
    .item_advantages {
        flex: 1 1 calc(30% - 20px);
    }

    .item_advantages h3 {
        font-size: 20px;
        padding-bottom: 8px;
    }

    .item_advantages p {
        font-size: 16px;
        width: 100%;
    }
    .feedback_background {
        gap: 12px;
    }
    .title_wrapper.block_feedback h2 {
        font-size: 50px;
        line-height: 55px;
    }
    .video-background {
        height: 450px;
    }
    .input_wrapper.manufacturers {
        gap: 22px 22px;
        justify-content: space-evenly;
    }
    .item_manufacturer {
        flex: 1 1 calc(16% - 12px);
        max-width: calc(16% - 12px);
    }
}


@media (max-width: 1300px) {
    .desktop_menu_container {
        display: none;
    }
    .mobile_menu_container {
        display: block;
    }
    .mobile-burger-btn {
        display: block;
        border: 0;
        background: transparent;
        cursor: pointer;
        padding-right: 40px;
        position: relative;
        top: 18px;
    }
    .mobile-burger-btn span {
        position: absolute;
        background-color: var(--color-blue);
        width: 40px;
        height: 3px;
        top: 11px;
        transition: all 0.5s ease 0s;
    }
    .mobile-burger-btn::before, .mobile-burger-btn::after {
        content: '';
        position: absolute;
        background-color: var(--color-blue);
        width: 40px;
        height: 3px;
        transition: all 0.5s ease 0s;
    }
    .mobile-burger-btn::before {
        bottom: 61px;
    }
    .mobile-burger-menu {
        padding-top: 32px;
        opacity: 0;
        visibility: hidden;
        flex-direction: column;
    }
    .mobile-burger-menu.open {
        position: relative;
        opacity: 1;
        visibility: visible;
        display: flex;
        align-items: center;
        gap: 35px;
        padding: 20px 20px 35px 20px;
    }
    .mobile-burger-btn.active::before {
        transform: rotate(45deg);
        top: -5px;
    }
    .mobile-burger-btn.active span {
        transform: scale(0);
    }
    .mobile-burger-btn.active::after {
        transform: rotate(-45deg);
        top: -5px;
    }
    .mobile-menu-nav {
        text-align: center;
    }
    .mobile-menu-nav ul {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .mobile-menu-nav a {
        font-size: 18px;
        color: var(--color-black);
        font-weight: 600;
    }
    .mobile-menu-nav a:hover {
        color: var(--color-btn-hover);
    }
    button.header_feedback {
        padding: 15px;
        width: 250px;
    }

    .overlay {
        position: fixed;
        top: 300px;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 10;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }
    
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .content h1 {
        font-size: 38px;
        line-height: 50px;
        padding: 0 50px 25px 50px;
    }

    .about_company_background p {
        width: 90%;
    }
}

@media (max-width: 1276px) {
    .input_wrapper.manufacturers {
        gap: 32px 22px;
    }
    .item_manufacturer {
        font-size: 20px;
    }
}

@media (max-width: 1150px) {
    .title_wrapper.block_feedback h2 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 1024px) {
    .desktop_image {
        display: none;
    }
    .mobile_image {
        display: block;
    }
    .item_advantages {
        flex: 1 1 calc(50% - 20px);
    }
    .about_company_background p {
        width: 100%;
    }
    .about_company_background {
        padding: 32px;
    }
    .feedback_background{
        padding: 32px;
    }
    .item_manufacturer {
        flex: 0 0 calc(20% - 12px);
        max-width: calc(35% - 12px);
    }
    .input_wrapper.manufacturers {
        gap: 10px;
    }
}

@media (max-width: 920px) {
    .content h1 {
        font-size: 35px;
    }
    .video-background {
        height: 464px;
    }
    .title_wrapper.block_feedback h2 {
        text-align: center;
        padding-bottom: 12px;
    }
    .feedback_background {
        display: flex;
        flex-direction: column;
    }
    .block_feedback {
        flex: 1 1 100%;
    }
    .description_manufacturer {
        flex-direction: column;
        gap: 20px;
    }
    .text_description_manufacturer {
        width: 100%;
        display: flex;
        gap: 20px;
        justify-content: center;
    }
    .content_order {
        padding: 0;
    }
}

@media (max-width: 825px) {
    .item_manufacturer {
        flex: 0 0 calc(32% - 12px);
        max-width: calc(32% - 12px);
    }
    .video-background {
        height: 380px;
    }
    .item_advantages img {
        padding-bottom: 10px;
    }
    .about_company_background h2,
    .manufacturers_background h2,
    .order_background h2 {
        font-size: 40px;
        line-height: 42px;
    }
    .about_company_background p {
        font-size: 18px;
    }
    .item_advantages h3 {
        font-size: 18px;
    }
    .item_advantages p {
        font-size: 16px;
    }
    .text_description_manufacturer {
        display: flex;
        gap: 20px;
        justify-content: center;
    }
}
@media (max-width: 780px) {
    .item_order {
        flex-direction: column;
        gap: 25px;
    }
    .item_order {
        align-items: flex-start;
    }
}
@media (max-width: 768px) {
    .content h1 {
        font-size: 28px;
        line-height: 45px;
        padding: 0 25px 25px 25px;
    }
    .container {
        padding: 0 30px;
    }
    .top {
        padding: 30px;
    }
    .mobile-burger-menu {
        padding-top: 25px;

    }
    .video-background {
        height: 420px;
    }
    .footer_menu_container {
        padding: 3
        
        0px;
    }
    .manufacturers_background.item_manufacturer_background {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .text_description_manufacturer {
        flex-direction: column;
    }
    .delivery_order {
        align-items: center;
    }
    .content_order {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 750px) {
    .item_advantages {
        flex: 1 1 100%;
    }
}

@media (max-width: 685px) {
    .content {
        padding: 25px;
    }
    .footer_menu_container {
        display: flex;
        justify-content: center;
        max-width: 1470px;
        margin: 0 auto;
        padding: 20px;
        align-items: center;
        padding-top: 52px;
        flex-direction: column;
        text-align: center;
    }
    .footer_tel, .footer_email {
        display: flex;
        justify-content: center;
    }
    .footer_block_right {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
}
@media (max-width: 565px) {
    .item_order {
        justify-content: space-between;
        padding: 15px;
    }
}
@media (max-width: 550px) {
    .about_company_background {
        text-align: center;
    }

    .about_company_background h2,
    .manufacturers_background h2,
    .order_background h2 {
        font-size: 35px;
        padding-bottom: 12px;
        line-height: 42px;
    }

    .footer_menu_container {
        display: flex;
        justify-content: center;
        max-width: 1470px;
        margin: 0 auto;
        padding: 20px;
        align-items: center;
        padding-top: 52px;
        flex-direction: column;
        text-align: center;
    }

    .footer_block_right {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .title_wrapper.block_feedback h2 {
        font-size: 22px;
        padding-bottom: 12px;
        line-height: 30px;
    }
    .feedback_background {
        padding: 20px;
    }
    .item_manufacturer {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
}
@media (max-width: 528px) {
    .detail {
        display: none;
    }
    .detail_mobile {
        display: flex;
        flex-direction: column;
        gap: 2px;
        font-size: 22px;
        font-weight: 600;
    }
    
    .wrapper_feedback_fancybox .container {
        padding: 0;
    }
    
    .wrapper_feedback_fancybox .container .feedback_background {
        border-radius: 0px;
        padding: 45px 32px;
        padding: 15px 10px;
    }
    .fancybox__content {
        padding: 44px 0;
    
    }
}

@media (max-width: 467px) {
    .content h1 {
        font-size: 28px;
        line-height: 45px;
        padding: 0 0 25px 0;
    }
}

@media (max-width: 430px) {
    main {
        padding-top: 100px;
    }
    .container {
        padding: 0 20px;
    }
    .top {
        padding: 20px;
    }
    .mobile-burger-menu {
        padding-top: 15px;

    }
    .wrapper_btn_feedback {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    button.header_feedback {
        padding: 15px;
        width: 250px;
    }
    button.video_feedback {
        font-size: 18px;
    }
    .content h1 {
        font-size: 25px;
        line-height: 35px;
    }
    .top img {
        width: 90%;
    }
    .mobile-burger-btn::before {
        bottom: 57px;
    }
    .mobile-burger-btn span {
        width: 32px;
    }
    .mobile-burger-btn::before, .mobile-burger-btn::after {
        width: 32px;
    }
    .about_company_background {
        padding: 20px;
    }
    .item_advantages {
        padding: 20px;
    }
    .manufacturers_background,
    .order_background h2 {
        text-align: center;
    }
    .about_company_background h2, .manufacturers_background h2, .order_background h2 {
        font-size: 30px;
        padding-bottom: 12px;
        line-height: 30px;
    }
    .item_manufacturer_background {
        text-align: start;
    }
    .description_manufacturer {
        padding-top: 0px;
    }
    .feedback_manufacturer a {
        width: 100%;
    }
    .item_order {
        align-items: center;
        text-align: center;
    }
}



.error__img {
    display: flex;
    justify-content: center;
}

.error__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;
}

.error__text p {
    font-size: 18px;
    font-weight: 500;
}

.error__text h4 {
    font-size: 18px;
    font-weight: 500;
}

.error__text a {
    text-decoration: none;
    text-color: black;
    color: #0631ac;
}

.success_message {
    width: 268px;
    padding: 10px;
    background: #f0f0f0;
    border-radius: 10px;
    position: fixed;
    top: 14%;
    right: 5%;
    z-index: 1;
    opacity: 1;
}

.image_manufacturer {
    background-color: white;
    height: 119px;
}

.image_manufacturer img {
    border: 2px solid #2C5BE2;
    border-radius: 15px 15px 0px 0px;
}

@media (max-width: 364px) {
    .mobile-burger-btn::before {
        bottom: 54px;
    }
    .item_advantages {
        padding: 10px;
    }
    .image_manufacturer img {
        height: 68px;
    }
    .item_manufacturer {
        font-size: 16px;
    }
}

@media (max-width: 344px) {
    .mobile-burger-btn::before {
        bottom: 53px;
    }
}

@media (max-width: 337px) {
    .mobile-burger-btn::before {
        bottom: 52px;
    }
}

@media (max-width: 330px) {
    .mobile-burger-btn::before {
        bottom: 51px;
    }
}

@media (max-width: 328px) {
    .mobile-burger-btn::before {
        bottom: 50px;
    }
}


