@font-face {
    font-family: 'Gilroy Medium';
    src: url('../fonts/Gilroy-Medium.eot');
    src: url('../fonts/Gilroy-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gilroy-Medium.woff') format('woff'),
    url('../fonts/Gilroy-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.container {
    max-width: 1920px;
    width: 100%;
    overflow: hidden;
}

.container_cust {
    width: 100%;
    max-width: 1745px;
    margin: 0 auto;
    padding: 0 15px;
}

.container_category_cust {
    width: 100%;
    margin: 0 auto;
    /*padding: 0 5%;*/
}

header .container_cust {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.pagination {
    display: flex;
    gap: 10px;
}

.pagination > li:first-child > a, .pagination > li:first-child > span,
.pagination > li:last-child > a, .pagination > li:last-child > span {
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
}

.pagination > li > a, .pagination > li > span {
    width: 40px;
    height: 40px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
    background-color: #B1D1ED;
    border-radius: 100px;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    border-radius: 100px !important;
    background: #B1D1ED;
    border: none;
    display: flex;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}

.header_bottom {
    width: 100%;
    height: 4px;
    filter: drop-shadow(0px 0px 4px rgba(109, 109, 109, 0.15));
}

#form-language > div > button.language-select.btn.btn-link.active {
    border-bottom: 2px solid rgb(250, 115, 175);
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    /*padding: 40px 0;*/
    z-index: 2;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    background: #FFF;
    backdrop-filter: blur(15px);
    filter: drop-shadow(0px 0px 4px rgba(109, 109, 109, 0.15));
}

header, footer {
    max-width: 1920px;
    margin: 0 auto;
}

.header_links_one {
    display: flex;
    gap: 50px;
    width: 20%;
}

.header_links_two {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 100px;
    gap: 50px;
}

.vacancies_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.vacancies_item {
    max-height: 300px;
    max-width: 48%;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
}

.show-more-button {
    display: block;
    width: 50%;
    text-align: center;
    background-color: #EC008C;
    color: white;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
}

.show-more-button:hover {
    background-color: #00B0F0;
    color: white;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.vacancies_item.expanded {
    max-height: none;
}

.vacancy_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.modal_vacancy_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 1;
}

.vacancies_item_top,
.vacancies_item_bottom,
.top_vacancy_info,
.attributes,
.main_vacancy_info {
    position: relative;
    z-index: 2;
}

.vacancies_item_top {
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.vacancy_description {
    max-width: 90%;
    overflow: hidden;
    white-space: normal; /* Замість nowrap */
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Визначте кількість рядків, які хочете відобразити */
    -webkit-box-orient: vertical;
}

.vacancies_item:hover .vacancies_item_top {
    transform: scale(1.05);
}

.vacancy_attribute_remote {
    display: inline-flex;
    color: #FFFFFF;
    background-color: #CA0088;
    padding: 6px 10px;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.modal-dialog {
    max-width: 80%;
    margin: 1.75rem auto;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: .3rem;
    outline: 0;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
}

.modal-body {
    display: flex;
    flex-direction: column;
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

/* Планшетні стилі */
@media only screen and (max-width: 1170px) {
    .vacancies_container {
        padding: 0 5% !important;
    }
    .vacancy_title,.vacancy_salary {
        font-size: 20px;
    }
    .show-more-button {
        width: 70%;
        padding: 5px;
    }
    .vacancies_content {
        width: 100%;
        justify-content: space-between;
    }
}

@media only screen and (max-width: 950px) {

}

/* Мобільні стилі */
@media only screen and (max-width: 767px) {
    .vacancies_container {
        padding: 0 50px !important;
    }
    .vacancy_title,.vacancy_salary {
        font-size: 20px;
    }
    .show-more-button {
        width: 80%;
    }
    .vacancies_content {
        gap: 30px;
        justify-content: center;
    }
    .vacancies_item {
        padding: 15px !important;
    }
    .vacancy_attribute_remote {
        font-size: 12px;
        padding: 4px 8px;
    }
}

.close {
    padding: 0.75rem 1.25rem;
    margin: -0.75rem -1.25rem -0.75rem auto;
}

.vacancy_attribute_full {
    display: inline-flex;
    background-color: #51a351;
    padding: 6px 10px;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}

.vacancy_attribute_part {
    display: inline-flex;
    background-color: #ff6000;
    padding: 6px 10px;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}



/*/////////////// Vacancies //////////////////*/

.vacancies_container {
    width: 100%;
    max-width: 1900px;
    margin: 0 auto;
    padding: 0 100px;
}

.vacancies_item {
    margin-top: 3%;
    min-width: 300px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 8.5px 0 rgba(0, 0, 0, .13);
    cursor: pointer;
    padding: 30px 40px;
}

/*/////////////// End Vacancies //////////////////*/


/* Сховати випадаюче меню за замовчуванням */
.dropdown-container {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    background-color: #fff;
}

/* Стилізація випадаючого меню */
.dropdown-content a {
    display: flex;
    width: 230px;
    padding: 10px;
    text-decoration: none;
    color: #333;
}

.dropdown-content a:hover {
    background-color: #B1D1ED;
    color: #fff;
}

.menu_desktop:hover .dropdown-content {
    display: block;
}

.header_link {
    font-size: 17px;
    color: black;
    text-decoration: none;
    transition: 0.3s ease;
}

.header_link:hover {
    text-decoration: none;
    color: #EC008C;
}


.language-select {
    color: black;
    font-size: 16px;
    border: none;
    background-color: #ffffff;
    transition: 0.3s ease;
}

.language-select:hover {
    text-decoration: none;
    color: #EC008C;
}

#search {
    position: relative;
}

.search {
    width: 30px;
    height: 30px;
}

.search-container {
    display: flex;
    align-items: center;
}

.search-icon {
    margin-right: 10px;
}

.search-input {
    border: none;
    border-bottom: 1px solid #000;
    outline: none;
    transition: width 0.3s ease, margin-left 0.3s ease, text-align 0.3s ease;
    flex-grow: 1; /* Займати весь доступний простір */
    padding: 0;
    margin: 0;
}

.search-input:focus {
    width: 100%;
    margin-left: -550px;
}

/* Стилі для лінії */
.search-input::placeholder {
    color: transparent;
}

.search-input:focus::placeholder {
    color: #000;
}

.search-button {
    border: none;
    background: none;
}

.search-button:hover {
    background: none;
}

.image_cap {
    width: 100%;
    height: 1000px;
    filter: brightness(0.8);
    z-index: -1;
}

.image_cap_text {
    position: absolute;
    color: #ffffff;
    font-size: 70px;
    font-weight: 600;
    text-transform: uppercase;
}

.cap_image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cap_image a {
    display: flex;
    position: absolute;
    justify-content: center;
    width: 12%;
    height: 60px;
    color: #ffffff;
    background-color: #FF1E8F;
    transition: background-color 0.3s ease;
    border-radius: 50px;
    font-weight: 600;
    align-items: center;
    margin-top: 15%;
}

.cap_image a:hover {
    background-color: #00b0f0;
    text-decoration: none;

}

.main_logo {
    display: flex;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1000;
    width: 157px;
    height: 79px;
    transition: transform 0.3s ease-in-out, width 0.3s ease-in-out, height 0.3s ease-in-out;
}

.oval {
    position: absolute;
    top: 90%;
    /* left: 50%; */
    width: 212px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    z-index: 1;
    transition: transform 0.3s ease-in-out, width 0.3s ease-in-out, height 0.3s ease-in-out;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.main_logo:hover .oval {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}


.image_link {
    width: 100%;
}

.text_over_photo_links {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FF83AE;
    font-size: 45px;
    font-weight: 800;
    margin: 120px auto 50px;
    padding: 0 15px;
}

.block_photo {
    position: relative;
    overflow: hidden;
    margin-top: 14px;
    width: calc((100% - 42px) / 4);
}

.block_photo:hover .overlay {
    height: 100%;
    opacity: 1;
}

.block_photo .overlay .text_photo_link {
    color: #000; /* Колір за замовчуванням */
    transition: color 0.3s ease; /* Змінюємо колір протягом 0.5 секунди з плавним ефектом */
}

.block_photo:hover .overlay .text_photo_link {
    color: #FF1E8F;
}

.image-container {
    position: relative;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out;
}

.overlay p {
    color: #000; /* колір тексту в блоку */
}

.row_photo {
    margin-top: 2%;
}

.category_home {
    width: 100%;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.block_photo .overlay .text_photo_link {
    color: #353333;
    text-align: center;
    font-family: Gilroy medium;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

.slider_window {
    position: absolute;
    display: flex;
    width: 35%;
    height: 70%;
    background-color: rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
    color: #000000;
    text-decoration: none;
}

.slider_content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.slider_window a {
    display: flex;
    position: absolute;
    justify-content: center;
    width: 35%;
    height: 60px;
    color: #ffffff;
    background-color: #FF1E8F;
    transition: background-color 0.3s ease;
    border-radius: 50px;
    font-weight: 600;
    align-items: center;
    margin-top: 30%;
}

.slideshow {
    z-index: -1;
}

/*________________________________FOOTER________________________________*/
.footer {
    width: 100%;
    padding-top: 85px;
    background-color: #f8f8f8;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
}

.footer__col--first {
    width: 40%;
}

.footer__col--second {
    /*width: 29%;*/
    padding-top: 45px;
}

.footer__col--third {
}

.footer__logo {
    margin-bottom: 30px;
    font-size: 46px;
    font-weight: 700;
    color: #ccc;
}

.footer__text {
    color: #353333;
    font-family: Gilroy medium;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.footer__text b {
    color: #353333;
    text-align: center;
    font-family: Gilroy medium;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.footer__text a {
    color: #353333;
    text-decoration: none; /* Зняття підкреслення */
}

.footer__text a:hover {
    text-decoration: none; /* Підкреслення при наведенні */
}

.footer__power {
    margin-bottom: 25px;
    order: 2;
}

.footer__power-header {
    padding-bottom: 15px;
    font-size: 15px;
    color: #333;
}

.footer__social-header b {
    font-size: 18px;
}

.footer__social-content {
    padding-top: 15px;

    font-size: 15px;
    color: #999;
    font-style: italic;
    font-weight: 300;
}

.footer__social-content a {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;

    font-size: 18px;
    color: #95e1d3;
}

.footer__title {
    font-size: 15px;
    color: #333;
}

/* Copyright */
.copyright {
    padding-top: 130px;
    color: #353333;
    font-family: Gilroy medium;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    order: 1;
}

.copyright span {
    color: #EC008C;
    font-family: Gilroy medium;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.img_footer {
    width: 100px;
}

.footer__work {
    color: #353333;
    text-align: center;
    font-family: Gilroy medium;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 30px;
    padding-top: 130px;
}

.footer_block_one {
    width: 35%;
    display: flex;
    justify-content: space-between;
}

.footer_block_three {
    width: 35%;
    display: flex;
    justify-content: space-between;
}

.social {
    max-width: 100%;
    background-color: #B2D0F0;
}

.social_text {
    color: #353333;
    text-align: center;
    font-family: Gilroy medium;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    padding-top: 11px;
    padding-bottom: 11px;
}

.social_text a {
    position: relative;
    top: 5px;
    margin-left: 40px; /* Застосовуємо відступ до посилань */
    text-decoration: none; /* Зберігаємо стилі посилань */
}


.confectionery {
    padding-top: 65px;
    background-image: url("/image/catalog/background-logo-conf-min.png");
}

.confectionery__inner {
    display: flex;
    justify-content: space-between;
    padding-bottom: 65px;
    background-image: url("/image/catalog/background-logo.png");
}

.confectionery__col--first {
    margin-top: 100px;
    width: 45%;
}

.confectionery__col--third {
    width: 45%;
}

.confectionery__logo {
    font-size: 30px;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 20px;
    color: #343434;
    font-family: Gilroy medium;
}

.confectionery__text {
    margin-bottom: 30px;
    font-family: Gilroy medium;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    font-size: 16px;
    color: #333;

}

.confectionery__social {
    margin-bottom: 25px;
}

.confectionery__social-header {
    padding-bottom: 15px;

    font-size: 14px;
    color: #333;

    border-bottom: 1px solid #e5e5e5;
}

.confectionery__social-header b {
    font-size: 18px;
}

.confectionery__social-content {
    padding-top: 15px;

    font-size: 15px;
    color: #999;
    font-style: italic;
    font-weight: 300;
}

.confectionery__social-content a {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;

    font-size: 18px;
    color: #95e1d3;
}

.confectionery__title {
    margin: 30px 0;

    font-size: 14px;
    color: #333;
    text-transform: uppercase;
}


.confectionery__photo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.confectionery__item {
    width: calc(50% - 5px);
    margin-bottom: 10px;
    box-sizing: border-box;
}

.confectionery__item img {
    max-width: 100%;
    height: auto;
    width: 100%;
    max-height: 300px;
}

/* Перший елемент - розмір в 100% ширини */
.confectionery__item:first-child {
    width: 100%;
}

.confectionery__btn {
    display: flex;
    padding: 15px 59px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background: #EC008C;
    color: white;
    width: 249px;
    height: 54px;
    text-align: center;
    font-family: Gilroy medium;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    transition: background-color 0.3s ease;
}

.confectionery__btn:hover {
    background-color: #00b0f0;
    text-decoration: none;
    color: #ffffff;
}

/*TEST STYLE*/

.virni-tradiziyam {
    width: 100%;
    height: 840px;
}

.virni-tradiziyam .overlap {
    position: relative;
    height: 840px;
}

.virni-tradiziyam .group {
    position: absolute;
    width: 100%;
    height: 400px;
    top: 115px;
    left: 0;
    background-image: url("/image/catalog/background-logo-virntrad.png");
    background-color: #B1D1ED;
    background-size: cover;
    background-position: 50% 50%;
}

.virni-tradiziyam .frame {
    height: 307px;
    gap: 10px;
    position: absolute;
    top: 161px;
    left: 55%;
    display: flex;
    flex-direction: column;
    width: 495px;
    align-items: flex-start;
}

.virni-tradiziyam .div {
    gap: 20px;
    position: relative;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    width: 681px;
    align-items: flex-start;
}

.virni-tradiziyam .text-wrapper {
    position: relative;
    width: 620px;
    margin-top: -1px;
    font-family: "Marmelad-Regular", Helvetica;
    color: black;
    font-size: 64px;
    line-height: 83.2px;
    font-weight: 400;
    letter-spacing: 0;
    left: 26px;
}

.virni-tradiziyam .group-2 {
    position: relative;
    width: 695px;
    height: 144px;
    margin-right: -2px;
    color: black;
    font-family: Gilroy;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 24px */
}

.virni-tradiziyam .element-ISO {
    position: absolute;
    width: 681px;
    top: 0;
    left: 8px;
    font-family: "Gilroy-Semibold", Helvetica;
    font-weight: 400;
    color: black;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
}

.virni-tradiziyam .group-3 {
    position: absolute;
    width: 7px;
    height: 128px;
    top: 8px;
    left: 0;
}

.virni-tradiziyam .ellipse {
    top: 0;
    position: absolute;
    width: 7px;
    height: 8px;
    left: 0;
    background-color: black;
    border-radius: 3.5px/4px;
}

.virni-tradiziyam .ellipse-2 {
    top: 24px;
    position: absolute;
    width: 7px;
    height: 8px;
    left: 0;
    background-color: black;
    border-radius: 3.5px/4px;
}

.virni-tradiziyam .ellipse-3 {
    top: 48px;
    position: absolute;
    width: 7px;
    height: 8px;
    left: 0;
    background-color: black;
    border-radius: 3.5px/4px;
}

.virni-tradiziyam .ellipse-4 {
    top: 72px;
    position: absolute;
    width: 7px;
    height: 8px;
    left: 0;
    background-color: black;
    border-radius: 3.5px/4px;
}

.virni-tradiziyam .ellipse-5 {
    top: 96px;
    position: absolute;
    width: 7px;
    height: 8px;
    left: 0;
    background-color: #000000;
    border-radius: 3.5px/4px;
}

.virni-tradiziyam .ellipse-6 {
    top: 120px;
    position: absolute;
    width: 7px;
    height: 8px;
    left: 0;
    background-color: black;
    border-radius: 3.5px/4px;
}

/*.virni-tradiziyam .group-4 {*/
/*    position: relative;*/
/*    width: 217px;*/
/*    height: 50px;*/
/*    left: 26px;*/
/*}*/

/*.virni-tradiziyam .text-wrapper-2 {*/
/*    position: absolute;*/
/*    height: 24px;*/
/*    top: 13px;*/
/*    left: 0;*/
/*    color: #EC008C;*/
/*    font-family: Gilroy;*/
/*    font-size: 16px;*/
/*    font-style: normal;*/
/*    font-weight: 600;*/
/*    line-height: 150%;*/
/*}*/

.component {
    position: absolute;
    width: 83px;
    height: 50px;
    top: 0;
    left: 132px;
}

.eclipse {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: none;
    /* position: relative; */
    overflow: hidden;
    border: 1px solid white;
    left: 32px;
    background-color: rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}


.virni-tradiziyam .overlap-group {
    position: relative;
    width: 50px;
    height: 50px;
    background-image: url(./img/ellipse-14.svg);
    background-size: 100% 100%;
}

.virni-tradiziyam .text-wrapper-3 {
    /*position: absolute;*/
    height: 21px;
    top: 14px;
    left: 3px;
    font-family: "Open Sans-SemiBold", Helvetica;
    font-weight: 600;
    color: #EC008C;
    font-size: 16px;
}

.virni-tradiziyam .arrow {
    position: absolute;
    width: 32px;
    height: 12px;
    top: 20px;
    left: -3px;
}

.about_company_block .text_about {
    color: #EC008C;
    font-family: Gilroy bold;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}

.about_company_block {
    display: flex;
    margin-left: 20px;
    width: 30%;
}

.about_eclipse_arrow {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 30px;
}

.virni-tradiziyam .rectangle {
    width: 550px;
    height: 630px;
    top: 0;
    left: 100px;
    position: absolute;
    object-fit: cover;
}

.virni-tradiziyam .img {
    width: 476px;
    height: 284px;
    top: 556px;
    left: 463px;
    position: absolute;
    object-fit: cover;
}

.faithful_traditions {
    display: flex;
    width: 100%;
    height: 840px;
    margin-top: 120px;
}

.traditions_photo_woman {
    position: relative;

}

.background__logo-traditions {
    width: 1920px;
    height: 400px;
    background-image: url(/image/catalog/background-logo-virntrad.png);
    background-color: #B1D1ED;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    z-index: 1;
    margin-top: 6%;
}

.traditions_woman {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 630px;
    margin: 0px 0 0 100px;
    object-fit: cover;
}

.traditions_bize {
    width: 100%;
    height: 280px;
    position: absolute;
    z-index: 3;
    right: -440px;
    object-fit: cover;
}

.traditions_text_block {
    display: flex;
    position: relative;
    z-index: 2;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 70%;
    margin-left: 100px;
}

.traditions_list ul {
    padding: 0;
}

.faithful_traditions .group-4 {
    position: relative;
    width: 217px;
    height: 50px;
    left: 26px;
}

.faithful_traditions .text-wrapper-2 {
    position: absolute;
    height: 24px;
    top: 13px;
    left: 0;
    color: #EC008C;
    font-family: Gilroy;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.faithful_traditions .text-wrapper-3 {
    /*position: absolute;*/
    height: 21px;
    top: 14px;
    left: 3px;
    font-family: "Open Sans-SemiBold", Helvetica;
    font-weight: 600;
    color: #EC008C;
    font-size: 16px;
}

.title_traditions {
    color: #353333;
    font-family: Marmelad;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-left: 2.5%;
}

.traditions_item {
    color: #353333;
    font-family: Gilroy medium;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 24px */
}

.block_bize {
    width: 100%;
    position: absolute;
    /* top: 93.5%; */
    bottom: 280px;
    z-index: 2;
}

.frame img {
    border: none;
    background: none;
}

.social_text a {
    text-decoration: none;
}

.col-sm-12, .col-md-4, .col-md-3 {
    padding: 0;
}

.about_company_block:hover .eclipse {
    border-color: #EC008C
}

.about_company_block .eclipse,
.about_company_block .text-wrapper-3,
.about_company_block .arrow path {
    transition: all 0.2s ease;
}

.about_company_block:hover .text-wrapper-3 {
    color: #ffffff;
}

.about_company_block:hover .arrow path {
    fill: #EC008C;
}

.container_categories {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/*Breadcrumbs*/

.breadcrumbs_cust {
    display: flex;
    gap: 10px;
    margin: 40px 0 0 100px;
}

.product_container_cust .breadcrumbs_cust {
    margin: 80px 50px;
}

.atribute_image {
    width: 70px;
    height: 70px;
}

.product_attributes_cust {
    display: flex;
    align-items: center;
    gap: 15px;
    width: calc(100% / 2);
}

.tab_pane_cust {
    display: flex;
    flex-wrap: wrap;
    margin-top: 70px;
}

.attribute_title {
    color: #444;
    font-family: Gilroy medium;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 30px */
}

.atribute_content .attribute_text {
    display: flex;
    flex-direction: column;
    color: #666;
    font-family: Gilroy medium;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.attributes_items {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumbs_cust a {
    text-decoration: none;
    color: #353333;
    text-align: center;
    font-family: Gilroy medium;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    transition: color 0.3s ease, transform 0.3s ease;
}

.breadcrumbs_cust a:hover {
    color: #EC008C;
}

.breadcrumbs_cust_blog {
    margin: 50px 0 0 90px;
}

.breadcrumbs_cust_product {
    margin: 50px 0 50px 140px;
}

#product-category .breadcrumbs_emitents {
    display: flex;
    margin: 0 0 0 30px;
    flex-wrap: wrap;
    padding-bottom: 0 !important;
}

.breadcrumbs_cakes {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 0 80px;
}

/*/Breadcrumbs*/

.swiper-container__cust {
    margin-top: 133px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.slider_down_content img {
    width: 100%;
    object-fit: cover;
    height: 800px;
}

.slider_home_down .swiper-button-next:before {
    content: url('/image/catalog/slider/frame_slider_next.svg');
}

.slider_home_down .swiper-button-prev:before {
    content: url('/image/catalog/slider/frame_slider_prev.svg');
}

.slider_home_down .swiper-button-next {
    margin-right: 12%;
}

.slider_home_down .swiper-button-prev {
    margin-left: 12%;
}

.slider_up_content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.slider_up_content img {
    width: 100%;
    object-fit: cover;
    height: 800px;
}

.slider_home_up, .slider_home_down {
    border: none;
    z-index: 1;
}

.slider_home_down {
    margin-top: 50px;
    height: 600px;
    overflow: hidden;
}

.learn_more {
    display: flex;
    padding: 15px 59px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background: #EC008C;
    color: white;
    width: 249px;
    height: 54px;
    text-align: center;
    font-family: Gilroy Medium;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    transition: background-color 0.3s ease; /* Плавний перехід кольору протягом 0.3 секунди */
    border: white;
}

.learn_more:hover {
    background-color: #00b0f0;
    text-decoration: none;
    color: #ffffff;
}

.slider_up_title {
    color: #FFFFFF;
    text-align: center;
    font-family: Gilroy medium;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 35px;
}

.title_button_slider_up {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* /////////////////////////////////////////// */

.slider_down_all_content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
    width: 100%;
}

.slider_down_all_content img {
    width: 100%;
    object-fit: cover;
    height: 800px;
}

.slider_down_container {
    position: absolute;
    width: 680px;
    height: 350px;
    background-color: #FFFEFE99;
    display: flex;
    margin-bottom: 15%;
}

.circle {
    width: 160px;
    height: 160px;
    background-color: #B1D1ED;
    color: #000000;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 100px;
    border: 3px solid #ffffff;
    position: absolute;
    top: -30px;
    left: -80px;
}

.slider_down_content {
    display: flex;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 80%;
    justify-content: space-around;
}

.slider_down_inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.slider_down_content h1 {
    color: #353333;
    text-align: center;
    font-family: Gilroy medium;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    margin: 80px 0 15px 0;
}

.slider_home_down .swiper-button-next {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider_home_down .swiper-button-next:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    opacity: 0.5;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slider_home_down .swiper-button-next:before {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider_home_down .swiper-button-prev {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider_home_down .swiper-button-prev:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    opacity: 0.5;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slider_home_down .swiper-button-prev:before {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider_down_content p {
    width: 410px;
    color: #353333;
    text-align: center;
    font-family: Gilroy medium;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 35px;
}

.fa-home:before .breadcrumb__cust {
    content: "Головна";
    list-style: none;
    font-family: Roboto Flex;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0em;
    color: #7A7A7A;
}

.swiper-viewport:hover .swiper-button-next,
.swiper-viewport:hover .swiper-button-prev {
    opacity: 1;
}

.circle p {
    color: #391F0B;
    font-family: Gilroy medium;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.circle h1 {
    color: #391F0B;
    font-family: Marmelad;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
}

.head_photo_production {
    position: relative;
}

.head_photo_production img {
    width: 100%;
    object-fit: cover;
    height: 500px;
}

.internal_text_block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #000;
    width: 80%;
    background-color: rgb(255 255 255 / 50%);
    height: 390px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.internal_text_block h1 {
    color: #353333;
    text-align: center;
    font-family: Gilroy medium;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 104px */
}

.container_categories .breadcrumbs_cust {
    margin: 40px 0 0 100px;
}

.container_categories .text_over_photo_links {
    margin: 55px 0 50px 0;
}

.search_btn_cust {
    border: none;
    background-color: rgba(0, 0, 0, 0);
}

.search_btn_cust {
    transition: transform 0.3s ease;
}

.search_btn_cust:hover {
    transform: scale(1.2);
}

/*  PRODUCT     */

.product_container_cust {
    background-image: url("/image/catalog/background-logo-product.png");
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.product_content_cust {
    display: inline-flex;
    align-items: flex-start;
    gap: 60px;
}

.product_row {
    display: flex;
}

.right_content {
    margin-left: 85px;
}

.right_content .breadcrumbs_cust {
    margin: 0;
}

.atributes_items {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

/*.product_description_cust {*/
/*    color: #353333;*/
/*    font-family: Gilroy medium;*/
/*    font-size: 16px;*/
/*    font-style: normal;*/
/*    font-weight: 500;*/
/*    line-height: 150%;*/
/*    margin-right: 110px;*/
/*    padding-left: 30px;*/
/*}*/

.description_product_cust p {
    color: #353333;
    font-family: Gilroy medium;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    margin: 0 0 0 85px;
}

.product_attributes .product_description_cust {
    margin-right: 0;
}

.product_attributes {
    display: flex;
    margin-top: 50px;
    gap: 15px;
    width: 100%;
    flex-wrap: wrap;
}

.product_attributes_item {
    display: flex;
    width: calc(100% / 2);
}

.product_attributes_item img {
    width: 70px;
    height: 70px;
}

.product_attributes_texts {
    margin-left: 15px;
    width: 270px;
}

.product_description_text {
    padding-left: 85px;
}

.product_attributes_texts h2 {
    color: #444;
    font-family: Gilroy medium;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin: 0;
}

.product_attributes_texts p {
    color: #666;
    font-family: Gilroy medium;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.product_attributes_texts p b {
    color: #666;
    font-family: Gilroy medium;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.product-images {
    display: flex;
    flex-direction: column;
    width: 500px;
    height: auto;
    background-color: #ffffff;
    margin: 0 0 100px 150px;
    box-shadow: 10px 10px 8px 0px rgba(177, 209, 237, 0.35);
}

.main-image {
    display: flex;
    justify-content: center;
}

.main-image img {
    width: 445px;
    height: auto;
    opacity: 1;
}

.additional-images {
    display: flex;
    flex-wrap: wrap;
    width: 360px;
    margin: 0 auto;
}

.main-image img,
.image-additional img {
    transition: opacity 0.3s ease-in-out;
}

.image-additional {
    flex: 0 0 10%;
    padding: 5px;
    box-sizing: border-box;
}

.image-additional img {
    width: 110px;
    height: auto;
    object-fit: contain;
    cursor: pointer;
}

.image-additional img:hover {
    opacity: 1;
}

.image-additional img.active {
    border: 1px solid #B1D1ED;
}


.product_text_title,
.product_text_description {
    margin-left: 85px;
}

.product_text_title {
    color: #353333;
    font-family: Gilroy bold;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.product_text_description {
    color: #353333;
    font-family: Gilroy medium;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.open {
    display: flex !important;
}

.nav {
    display: flex;
    width: 700px;
    padding: 0 40px;
}

.nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.burger {
    display: none;
    position: relative;
    z-index: 50;
    align-items: center;
    justify-content: flex-end;
    width: 30px;
    height: 18px;
}

.burger span {
    height: 2px;
    width: 100%;
    transform: scale(1);
    background-color: #000000;
}

.burger::before, .burger::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #000000;
    transition: all 0.3s ease 0s;
}

.burger::before {
    top: 0
}

.burger::after {
    bottom: 0
}

.burger.active span {
    transform: scale(0)
}

.burger.active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0, -50%);
}

.burger.active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0, 50%);
}

.line_footer {
    width: 100%;
    height: 5px;
    display: block;
    background-color: #B1D1ED;
    margin: 100px 0 35px 0;
}

.social_text_footer {
    display: flex;
    gap: 40px;
}

.confectionery__item.confectionery_four {
    display: none;
}

#slider_home_up0 .swiper-wrapper,
#slider_home_down0 .swiper-wrapper {
    gap: 0;
}

@media (max-width: 1800px) {
    .breadcrumbs_emitents {
        margin: 40px 0 0 30px;
    }
}

@media (max-width: 1700px) {
    .breadcrumbs_emitents {
        margin: 40px 0 0 0px;
    }
}

@media (min-width: 1301px) {
    .burger_link_one {
        display: none;
    }

    .menu_mobile {
        display: none;
    }
}

@media (max-width: 1350px) {
    .traditions_text_block {
        height: 62%;
    }
}

@media (max-width: 1300px) {
    .menu_desktop {
        display: none;
    }

    .menu_mobile {
        display: flex;
    }

    .burger_link_two {
        display: none;
    }

    .burger {
        display: flex;
        z-index: 60;
    }

    .nav {
        display: none;
        flex-direction: column;
        position: fixed;
        height: 100vh;
        width: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        overflow-y: auto;
        padding: 15% 40px 0 0;
        background-color: #ffffff;
        animation: burgerAnimation 0.4s;
    }

    .nav ul {
        flex-direction: column;
        row-gap: 30px;
        align-items: center;
    }

    .nav ul a {
        color: #FA73AF;
        display: flex;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        flex-shrink: 0;
        text-align: center;
        font-family: Gilroy bold;
        font-size: 45px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%; /* 58.5px */
    }

    .nav ul li {
        box-shadow: 0px 4px 8px 0px rgba(148, 142, 142, 0.15);
        width: 100%;
        height: 85px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .language-select {
        color: #FA73AF;
        font-family: Gilroy medium;
        font-size: 30px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
    }

    .language_select.burger_link_one {
        display: flex;
        justify-content: center;
    }

    .dropdown-container {
        display: none;
    }

    .main_logo {
        width: 100%;
        background-color: #fff;
    }
}

@media screen and (max-width: 1200px) {
    .footer__col--second {
        order: 1;
    }

    .footer_block_three,
    .footer_block_one {
        flex-direction: column;
        justify-content: flex-start;
    }

    .footer_block_one {
        order: 2;
    }

    .footer_block_three {
        order: 3;
    }

    .footer__work {
        padding-top: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .copyright {
        order: 3;
        padding-top: 0;
    }

    .footer__power-header {
        padding-bottom: 0;
    }

    .footer__power {
        margin-bottom: 0;
    }

    .social_text_footer {
        order: 2;
        margin-top: 15px;
    }

    .footer__text {
        margin-top: 14px;
    }

    .footer__col--second {
        padding-top: 0;
    }

    .footer__inner {
        margin-top: 0;
    }

    .footer__col--second {
        margin-left: 0;
    }

    .text_over_photo_links {
        color: #FA73AF;
        text-align: center;
        font-family: Gilroy bold;
        font-size: 36px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%;
    }

    .category_home {
        display: flex;
        justify-content: space-between;
    }

    .block_photo {
        width: calc((100% - 2%) / 2);
    }

    .slider_down_container {
        width: 70%;
        height: auto;
        margin-top: -5%;
    }

    .slider_home_down .swiper-button-next {
        margin-right: 5%;
    }

    .slider_home_down .swiper-button-prev {
        margin-left: 5%;
    }

    .confectionery__col--first {
        margin-top: 0;
    }

    .about_company_block {
        width: 40%;
    }

    .row .product_row {
        flex-direction: column;
        align-items: center;
    }

    .product-images {
        margin: 0 0 100px 0;
    }

    .product_description_cust {
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .product_attributes {
        margin: 50px 0 0 5%;
    }

    .product_text_description,
    .product_text_title {
        margin-left: 10%;
    }

    .product_content_cust {
        width: 100%;
        display: inline-flex;
        justify-content: center;
    }

    .product_text_description, .product_text_title {
        margin-left: 85px;
    }

    .product_description_text {
        padding-left: 85px;
    }

    .product_attributes {
        margin-left: 0;
    }

    .right_content {
        margin: 0 50px;
    }

    .breadcrumbs_cust_blog {
        margin: 50px 0 50px 20px;
    }

    .breadcrumbs_cust_product {
        margin: 50px 0 50px 30px;
    }
}

@media screen and (max-width: 1000px) {
    .faithful_traditions {
        height: auto;
    }

    .background__logo-traditions {
        width: 100%;
        height: 290px;
    }

    .traditions_woman {
        height: auto;
        margin-left: 20%;
    }

    .traditions_bize {
        display: none;
    }

    .traditions_text {
        margin-left: 100px;
        margin-top: 10%;
    }

    .traditions_item {
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 130%;
    }

    .title_traditions {
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
        margin-left: 4.5%;
    }

    .traditions_text_block {
        margin: 0;
    }

    .about_company_block {
        width: 50%;
    }

    .container_categories .breadcrumbs_cust {
        margin: 40px 0 0 30px;
    }

    .breadcrumbs_emitents {
        margin: 0;
        padding-bottom: 0 !important;
    }
}

@media screen and (max-width: 900px) {
    .about_company_block {
        width: 60%;
    }
}

@media screen and (max-width: 800px) {

    .social_text div {
        display: flex;
        column-gap: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .title_traditions {
        margin-left: 6%;
    }

    .traditions_woman {
        margin-left: 10%;
        width: 90%;
    }

    .traditions_text {
        margin-left: 5%;
        margin-top: 4%;
    }

    .background__logo-traditions {
        margin-top: 3%;
    }

    .about_company_block {
        margin-left: 9%;
    }


    .confectionery__logo b {
        position: absolute;
        text-align: center;
        font-family: Gilroy bold;
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%;
        width: 100%;
    }

    .confectionery__text {
        font-family: Gilroy medium;
        font-size: 28px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%;
        width: 100%;
        margin-top: 170px;
    }

    .confectionery__col--third {
        width: 50%;
        position: relative;
        margin-top: 180px;
    }

    .confectionery__photo {
        display: flex;
        flex-wrap: wrap;
        justify-content: unset;
        width: 100%;
        gap: 10px;
    }

    .confectionery__item {
        margin: 0;
    }

    .confectionery__item.confectionery_four {
        display: block;
    }

    .confectionery__item.confectionery_one,
    .confectionery__item.confectionery_four {
        width: 100%;
    }

    .confectionery__item.confectionery_two img,
    .confectionery__item.confectionery_three img {
        width: 100%;
        height: 75px;
    }

    .about_company_block {
        width: 70%;
    }

    .internal_text_block h1 {
        text-align: center;
        font-size: 45px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%;
    }

    .internal_text_block {
        width: 80%;
        height: 70%;
        flex-shrink: 0;
    }

    .slider_down_container {
        margin-top: -10%;
    }
}

@media screen and (max-width: 770px) {
    .slider_up_title {
        font-size: 45px;
        font-weight: 700;
        line-height: 130%;
    }

}

@media screen and (max-width: 750px) {
    .slider_home_down .swiper-button-next {
        margin-right: 4%;
    }

    .slider_home_down .swiper-button-prev {
        margin-left: 4%;
    }
}

@media screen and (max-width: 700px) {
    .product_text_description, .product_text_title {
        margin-left: 65px;
    }

    .product_description_text {
        padding-left: 65px;
    }

    .nav {
        padding: 20% 40px 0 0;
    }

    .block_photo {
        width: calc((100% - 3%) / 2);
    }

    .background__logo-traditions {
        margin-top: 2%;
    }

    h1.title_traditions {
        font-size: 18px;
        margin-left: 11%;
    }

    .eclipse {
        width: 40px;
        height: 40px;
    }

    .eclipse .text-wrapper-3 {
        font-size: 10px;
    }

    .traditions_item {
        font-size: 12px;
    }

    .traditions_text {
        margin-left: 0%;
        margin-top: 8%;
    }

    .faithful_traditions .text-wrapper-3 {
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .confectionery__text {
        font-size: 24px;
    }

    .product_attributes_item img {
        width: 50px;
        height: 50px;
    }

    .slider_down_container {
        margin-top: -15%;
    }
}

@media screen and (max-width: 600px) {
    .nav ul {
        gap: 20px;
    }

    .nav ul a {
        color: rgb(250, 115, 175);
        font-family: Gilroy bold;
        font-size: 32px;
        font-weight: 700;
        line-height: 130%;
        text-align: center;
    }

    .nav ul li {
        width: 360px;
        height: 70px;
        left: 0;
        right: 0;
        top: 242px;
        bottom: 489px;
    }

    .right_content {
        margin: 0 15px;
    }

    .search-input {
        border-bottom: none;
        position: absolute;
        width: 0;
    }

    .traditions_text {
        margin-top: 18%;
    }

    .traditions_item {
        font-size: 10px;
    }

    h1.title_traditions {
        font-size: 16px;
        margin-left: 0;
    }

    .about_company_block .text_about {
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%;
    }

    .about_eclipse_arrow {
        margin-left: 5px;
    }

    .background__logo-traditions {
        margin-top: 8%;
        background-repeat: unset;
        background-size: 100%;
    }

    .traditions_woman {
        height: 100%;
        margin: 20px 0 20px 10px;
    }

    .traditions_list {
        padding-left: 10px;
    }

    .confectionery__text {
        font-size: 21px;
    }

    .product-images {
        width: 330px;
    }

    .image-additional {
        width: 80px;
    }

    .additional-images {
        gap: 7%;
    }

    .product_text_description {
        width: 85%;
    }

    .slider_home_down {
        overflow: unset;
    }

    .slider_home_down .swiper-container-horizontal {
        overflow: hidden;
        height: 600px;
    }

    .slider_home_down .swiper-pager {
        top: 105%;
    }

    .slider_home_down .swiper-pager {
        top: 105%;
        display: flex;
        justify-content: center;
        flex-direction: row-reverse;
        gap: 60px;
    }

    .slider_home_down .swiper-pager .swiper-button-next,
    .slider_home_down .swiper-pager .swiper-button-prev {
        position: relative;
    }

    .slider_home_down .swiper-button-prev:before {
        content: url('/image/catalog/slider/arrow_slider_down_prev.svg');
    }

    .slider_home_down .swiper-button-next:before {
        content: url('/image/catalog/slider/arrow_slider_down_next.svg');
    }

    .slider_home_down .swiper-button-prev:before,
    .slider_home_down .swiper-button-next:before {
        height: 50px;
        width: 50px;
        box-shadow: 0px 4px 8px 0px rgba(146, 144, 144, 0.15);
        border-radius: 100%;
        display: flex;
        align-items: stretch;
    }
}

@media screen and (max-width: 650px) {
    .product_attributes_texts h2 {
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%;
    }

    .product_attributes_texts p,
    .product_attributes_texts p b {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
    }
}

@media screen and (max-width: 500px) {
    .atributes_items {
        justify-content: space-between;
    }

    .product_description_text {
        padding: 0;
    }

    .slider_home_down .swiper-button-next {
        margin-right: -1%;
    }

    .slider_home_down .swiper-button-prev {
        margin-left: -1%;
    }

    .search {
        width: 100%;
    }

    .footer__inner {
        flex-wrap: wrap;
    }

    .footer__col--second {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 10px 0 15px 0;
    }

    .footer_block_one {
        width: 60%;
    }

    .footer_block_one .footer__text {
        width: 60%;
    }

    .social_text_footer {
        display: flex;
        /*justify-content: flex-end;*/
        position: relative;
        right: 70%;
        gap: 40px;
        margin-top: 40px;
    }

    .nav {
        padding: 25% 40px 0 0;
    }

    .block_photo {
        width: calc(95% / 2);
    }

    .slider_down_content {
        width: 100%;
    }

    .slider_down_content h1 {
        color: #353333;
        text-align: center;
        font-family: Gilroy bold;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%;
    }

    .slider_down_content p {
        color: #353333;
        text-align: center;
        font-family: Gilroy medium;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 130%;
        width: 100%;
    }

    .circle h1 {
        color: #391F0B;
        text-align: center;
        font-family: Marmelad;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
        margin: 0;
    }

    .circle p {
        color: #391F0B;
        text-align: center;
        font-family: Gilroy medium;
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%;
    }

    .circle {
        width: 70px;
        height: 70px;
        top: -30px;
        left: -10px;
    }

    .about_eclipse_arrow .arrow {
        width: 14px;
    }

    h1.title_traditions {
        margin: 0 0 10px 30px;
    }

    .traditions_woman {
        width: 160px;
        height: 227px;
    }

    .traditions_list {
        padding-left: 45px;
    }

    .traditions_text {
        margin-top: 20px;
    }

    .about_company_block .text_about {
        font-size: 12px;
    }

    .traditions_bize {
        display: block;
        width: 121px;
        height: 80px;
        box-shadow: 0px 4px 8px 0px rgba(129, 123, 123, 0.15);
        right: -10px;
        bottom: -270px;
    }

    .traditions_photo_woman {
        padding-bottom: 60px;
    }

    .background__logo-traditions {
        margin-top: 0;
        height: 330px;
    }

    .confectionery__btn {
        position: relative;
        z-index: 5;
        width: 158px;
        height: 40px;
        padding: 0;
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: 130%;
    }

    .confectionery__text {
        font-size: 18px;
    }

    .title_button_slider_up.learn_more {
        display: flex;
        width: 158px;
        height: 40px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .about_company_block {
        width: 100%;
    }

    .social_text {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 40px;
    }

    .social_text a {
        margin: 0;
    }

    .container_categories .block_photo .text_photo_link {
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%; /* 26px */
    }

    .product_attributes_texts h2 {
        font-size: 14px;
    }

    .product_attributes_texts p,
    .product_attributes_texts p b {
        font-size: 12px;
    }

    .product_attributes_item img {
        width: 40px;
        height: 40px;
    }

    .product_text_description,
    .product_text_title {
        margin-left: 10%;
    }

    .breadcrumbs_cust {
        display: flex;
        flex-wrap: wrap;
        margin: 50px 30px;
    }

    .breadcrumbs_cust a {
        font-size: 16px !important;
        font-weight: 500;
        line-height: 150%;
        text-align: center;
    }

    .product_text_title {
        color: #FA73AF;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%;
        margin-left: 0;
    }

    .product_description_cust {
        font-size: 10px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%;
        padding: 0 30px;
    }

    .main-image img {
        width: calc(445px - 40%);
    }

    .block_photo .overlay .text_photo_link {
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%;
    }

    .breadcrumbs_emitents a {
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
    }

    .breadcrumbs_emitents {
        margin: 0 !important;
    }

    .slider_down_container {
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 400px) {
    .confectionery__text {
        font-size: 14px;
    }

    .slider_up_title {
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%;
        padding: 0 50px;
    }

    .learn_more {
        font-size: 14px;
        font-weight: 600;
        line-height: 130%;
        width: 240px;
        height: 50px;
    }

    .text_over_photo_links {
        font-size: 24px;
        font-weight: 800;
        line-height: 130%;
        margin: 55px 0 26px 0;
    }

    .breadcrumbs_cust a {
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
    }

    .breadcrumbs_cust {
        margin: 50px 30px !important;
    }

    .breadcrumbs_emitents {
        margin: 0 !important;
    }
}

@media screen and (max-width: 350px) {
    .block_photo {
        width: calc((100% - 5%) / 2);
    }
}

@keyframes burgerAnimation {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

/* PC версія - відображається при ширині екрану більше 1300px */
@media (min-width: 1300px) {
    .language-form {
        display: none; /* Ховаємо форму за замовчуванням */
    }

    .language-form.active {
        display: block; /* Відображаємо активну мову при кліку */
    }
}

/* Мобільна версія - відображається при ширині екрану менше 1300px */
@media (max-width: 1300px) {
    .language-form {
        display: block; /* Показуємо форму за замовчуванням на мобільних пристроях */
    }
}
