/* #region fonts */
@font-face {
    font-family: "Core Sans C";
    src: local("Core Sans C 45 Regular"),
        url('../fonts/CoreSansC-45Regular.woff2') format("woff2"),
        url('../fonts/CoreSansC-45Regular.woff') format("woff"),
        url('../fonts/CoreSansC-45Regular.ttf') format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Core Sans C";
    src: local("Core Sans C 55 Medium"),
        url('../fonts/CoreSansC-55Medium.woff') format("woff"),
        url('../fonts/CoreSansC-55Medium.ttf') format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Core Sans C";
    src: local("Core Sans C 65 Bold"),
        url('../fonts/CoreSansC-65Bold.woff2') format("woff2"),
        url('../fonts/CoreSansC-65Bold.woff') format("woff"),
        url('../fonts/CoreSansC-65Bold.ttf') format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Core Sans C";
    src: local("Core Sans C 75 ExtraBold"),
        url('../fonts/CoreSansC-75ExtraBold.woff') format("woff"),
        url('../fonts/CoreSansC-75ExtraBold.ttf') format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Core Sans C";
    src: local("Core Sans C 85 Heavy"),
        url('../fonts/CoreSansC-85Heavy.woff') format("woff"),
        url('../fonts/CoreSansC-85Heavy.ttf') format("truetype");
    font-weight: 800;
    font-style: normal;
}

/* #endregion */

/* #region main */
:root {
    --ft-fm: "Core Sans C", Arial, Helvetica, sans-serif;
    --ln-hg: 1.4;

    --clr-white: #FFFFFF;
    --clr-black: #000000;
    --clr-green: #00AB55;
    --clr-red: #FF4748;
    --clr-light: #F5F5F5;
    --clr-light-gray: #919EAB;
    --clr-gray: #637381;
    --clr-dark-gray: #797979;
    --clr-dark: #212B36;
    --clr-transparent: rgba(255, 255, 255, 0);

    --indentation-mobile: ((100vw - 320px) / (1400 - 320));
}

html {
    min-width: 320px;
    min-height: 100vh;
}

html.--modal_showed,
html.--mn_active {
    overflow: hidden;
}

html.filter--open {
    overflow: hidden;
}

body {
    min-height: inherit;
    font-family: var(--ft-fm);
    font-size: 16px;
    font-weight: 400;
    line-height: var(--ln-hg);
    color: var(--clr-dark);
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    overflow: hidden;
    overflow-y: inherit;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
}

p {
    margin: 0;
}

.container {
    width: 100%;
    max-width: 1220px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    position: relative;
    z-index: 30;
}

.container--fullw {
    max-width: 1910px;
}

.main {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    padding-top: 102px;
}

.main_page {
    padding-top: 99px;
}

.section {
    margin: 50px 0;
}

/* #endregion */

/* #region header */
.header {
    background-color: rgb(255, 255, 255);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 40px -10px rgba(145, 158, 171, .2);
    border-bottom: 2px solid var(--clr-white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header_body__content {
    padding: 11px 18px;
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    position: relative;
    z-index: 10;
}

.header_body__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.haeder_body_right__text {
    color: #e9562d;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 900;
    text-transform: uppercase;
    background-position: center center;
    text-align: right;
}

.haeder_body_left__text {
    color: #9d0073;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    background-position: center center;
    text-transform: uppercase;
    background: linear-gradient(93deg, rgba(237, 117, 27, 1) 0%, rgba(222, 5, 59, 1) 50%, rgba(86, 37, 103, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.haeder_body_right__word {
    color: #e9562d;
    font-size: 38px;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    background-position: center center;
    margin-left: -1px;
}

.haeder_body_left__word {
    color: #e9562d;
    font-size: 38px;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    background-position: center center;
    margin-left: -1px;
}

.haeder_body__center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.header_body__center_left {
    display: flex;
    justify-content: flex-end;
}

.haeder_body_center__text {
    color: #000000;
    font-size: 28px;
    line-height: 1.4;
    font-weight: 500;
    text-transform: uppercase;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.haeder_body_center__word {
    color: #de053b;
    font-size: 38px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    background-position: center center;
    margin-left: auto;

}

.haeder_body__center_right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.haeder_body_center__name {
    color: #000000;
    font-size: 26px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    background-position: center center;
}

/* #endregion */

/* #region banner ( ban ) */

.ban_section {
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 140px;
}

.ban_body {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}

.ban__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ban__title {
    color: rgb(237, 117, 27);
    font-size: 85px;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    background: linear-gradient(93deg, rgba(237, 117, 27, 1) 0%, rgba(222, 5, 59, 1) 50%, rgba(86, 37, 103, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ban__sybtitle {
    font-size: 28px;
    line-height: 1;
    margin: 7px 0;
    color: #562567;
    font-weight: 600;
}

.ban_text {
    font-size: 16px;
    font-weight: 400;
    color: #212B36;
    margin: 0;
    padding-top: 7px;
}

.ban__box_img {
    width: 100%;
    height: 350px;
    position: relative;
    z-index: 30;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ban__box_img::before {
    content: '';
    position: absolute;
    z-index: 30;
    background: linear-gradient(93deg, rgba(237, 117, 27, 1) 0%, rgba(222, 5, 59, 1) 50%, rgba(86, 37, 103, 1) 100%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}


.ban__box_img::after {
    content: '';
    width: 370px;
    height: 370px;
    position: absolute;
    z-index: 35;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.ban__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 40;
}

/* #endregion */

/* #region ban2 */

.ban2_section {
    margin-top: 0;
    overflow: hidden;
    margin-bottom: 0;
}

.ban2__grid {
    display: grid;
    grid-template-columns: 1fr 30px 1fr;
    min-height: 614px;
}

.ban2__center {
    position: relative;
    z-index: 40;
}

.ban2_center__box_img {
    position: absolute;
    z-index: 40;
    top: 50%;
    width: 330px;
    left: -165px;
    transform: translateY(-50%);
}

.ban2_center__box_img img {
    position: relative;
    z-index: 45;
}

.ban2_center__box_img::after {
    content: '';
    left: -5px;
    top: -4px;
    width: 340px;
    height: 340px;
    position: absolute;
    z-index: 25;
    border-radius: 50%;
    background: #fff;
}

.ban2_center__box_img::before {
    content: '';
    left: -10px;
    top: -9px;
    width: 350px;
    height: 350px;
    position: absolute;
    z-index: 25;
    border-radius: 50%;
    background: #000;
}


.ban2_center__box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ban2__right {
    position: relative;
    z-index: 30;
}

.ban2_right__ban_img {
    position: absolute;
    z-index: 30;
    width: 1350px;
    left: -300px;
    top: -40px;
    clip-path: polygon(16% 25%, 88% 11%, 100% 100%, 0% 100%);
}

.ban2__left {
    position: relative;
    z-index: 43;
}

.ban2__left h1 {
    font-size: 50px;
    line-height: 1;
    padding-left: 50px;
    text-transform: uppercase;
    font-weight: 600;
}

.ban2_left__items {
    margin: 0;
    padding: 0;
    list-style: none;
    max-width: 76%;
}

.ban2_left__items>li {
    padding-left: 30px;
    margin-bottom: 30px;
    font-size: 27px;
    font-weight: 400;
    letter-spacing: -1.3px;
    line-height: 1.1;
    position: relative;
    z-index: 20;
}

.ban2_left__items>li::before {
    content: '';
    position: absolute;
    z-index: 20;
    left: -20px;
    top: 12px;
    width: 40px;
    height: 10px;
    background-color: #000;
}

.ban2_center__text {
    position: absolute;
    z-index: 30;
    top: 7%;
    left: -190px;
    background-color: #afcb1f;
    width: 452px;
    height: 114px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(355deg);
    font-size: 49px;
    line-height: 1;
    color: #000;
    font-weight: 700;
    border-radius: 73px;
    padding-bottom: 8px;
}


/* #endregion */


/* #region line_section */

.line_section {
    padding: 40px 0;
    position: relative;
    z-index: 40;
    margin: 40px 0;

    padding-top: 0;
    margin-top: 0;
}

.line_section::before {
    content: '';
    position: absolute;
    z-index: 30;
    top: -6px;
    left: 0;
    width: 120%;
    height: 80px;
    transform: rotate(359.2deg);
    background-color: #9d0073;
}

/* #endregion */

/* #region where */

.where_secton {
    padding: 40px 0;
}

.section__box_title {
    font-weight: 600;
    color: #000000;
    font-size: 30px;
    line-height: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section_subtitle {
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
    display: flex;
    justify-content: center;
}

.where_content {
    padding: 30px 0;
}

.where__box_img {
    width: 1200px;
    height: 560px;
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: auto;
}

.where__box_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: inherit;
}

.where__box_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    padding: 40px 0;
}

.where_box_inner_left__box_img {
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .15);
    z-index: 2;
    border-radius: 9px;
    overflow: hidden;
}

.where_box_inner_left__box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.where_box_inner_right__text h3 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    color: #1d1725;
    display: block;
    margin: 0 0 20px;
}

.where_box_inner_right__text p {
    margin-bottom: 0.875rem;
    font-size: 16px;
    font-weight: 400;
    color: #1c1f29;
    text-align: justify;
}

.where__box_video {
    display: flex;
    align-items: center;
    justify-content: center;
}

.where__box_video video {
    width: 720px;
    height: 500px;
}

.section_map {
    width: 100%;
    height: 100%;
}

#map_container {
    height: 100%;
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* #endregion */

/* #region slider */

.auto_slider {
    height: 400px;
}

.auto_slider .splide__slide img {
    height: 100%;
    object-fit: cover;
}

/* #endregion  */

/* #region info */

.info_section {
    padding: 40px 0;
}

.info_content {
    padding: 60px 0;
}

.info_content>div {
    margin-bottom: 120px;
}

.info_line_one {
    position: relative;
    z-index: 30;
    height: 300px;
}

.info_line_one::before {
    content: '';
    position: absolute;
    z-index: 30;
    width: 100%;
    height: 300px;
    transform: rotate(0.8deg);
    background-color: #e50156;
}


.info_line_two {
    position: relative;
    z-index: 30;
    height: 300px;
}

.info_line_two::before {
    content: '';
    position: absolute;
    z-index: 30;
    width: 100%;
    height: 300px;
    transform: rotate(359.8deg);
    background-color: #ed751b;
}

.info_line_three {
    position: relative;
    z-index: 30;
    height: 300px;
}

.info_line_three::before {
    content: '';
    position: absolute;
    z-index: 30;
    width: 100%;
    height: 300px;
    transform: rotate(0.8deg);
    background-color: #562567;
}

.info_line_four {
    position: relative;
    z-index: 30;
    height: 300px;
}

.info_line_four::before {
    content: '';
    position: absolute;
    z-index: 30;
    width: 100%;
    height: 300px;
    transform: rotate(359.8deg);
    background-color: #e50156;
}

.info_line__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}

.info_line__title {
    color: #fff;
    display: flex;
    font-size: 145px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.info_line__box_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info_line__title span {
    font-size: 40px;
}

.info_line_one .info_line__title span {
    font-size: 80px;
    text-align: center;
}

.info_line_one .info_line__box_img {
    height: 300px;
    position: relative;
    z-index: 30;
    width: 100%;
}

.info_line_two .info_line__title span {
    font-size: 90px;
    text-align: center;
}

.info_line_two .info_line__box_img {
    height: 400px;
    margin-top: -50px;
}

.info_line_three .info_line__title {
    line-height: 0.7;
        /*font-size: 130px;*/
    margin-top: 20px;
}

.info_line_three .info_line__title span {
    font-size: 59px;
    line-height: 1.3;
}

.info_line_three .info_line__box_img {
    height: 400px;
    margin-top: -50px;
}

.info_line_four .info_line__title {
    font-size: 150px;
    line-height: 0.7;
    align-items: flex-start;
    margin-top: 20px;
}

.info_line_four .info_line__title span {
    font-size: 55px;
    text-align: left;
}

.info_line_four .info_line__box_img {
    height: 520px;
    margin-top: -80px;
}


/* #endregion */

/* #region photos */


.photos__grid_two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
    margin-bottom: 15px;
}

.photos_box_img {
    width: 100%;
    height: 100%;
}

.photos_box_img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photos__grid_three {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
    margin-bottom: 15px;
}

/* #endregion  */

/* #region meal */

.meal_slider {
    height: 713px;
}

.meal_slider .splide__slide {
    height: 713px;
}

.meal_slider .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* #endregion */

/* #region supported */

.supported_section {
    margin: 150px 0;
}

.supported__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.supported__box_img {
    height: 220px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.supported__box_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* #endregion */

/* #region Footer */

.footer {
    height: 250px;
    background: linear-gradient(93deg, rgba(237, 117, 27, 1) 0%, rgba(222, 5, 59, 1) 50%, rgba(86, 37, 103, 1) 100%);
}

.footer>.container {
    height: 100%;
}

.footer_body {
    height: 100%;
}

.footer__mail {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.footer_mail__link {
    color: #fff;
    font-size: 32px;
    line-height: 1;
    text-decoration: none;
    text-transform: none;
    margin: 0 11px;
}

/* #endregion  */

/* #region  glightbox */


.glightbox {
    width: 100%;
    height: 100%;
    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;
    overflow: hidden;
    position: relative;
    border-radius: 12px;

}

.glightbox::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    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;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: 2;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAxMSAxMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuNjE1MzggNC42NTM4NUM3LjYxNTM4IDMuODM4NTQgNy4zMjU2MiAzLjE0MTEzIDYuNzQ2MDkgMi41NjE2QzYuMTY2NTcgMS45ODIwNyA1LjQ2OTE1IDEuNjkyMzEgNC42NTM4NSAxLjY5MjMxQzMuODM4NTQgMS42OTIzMSAzLjE0MTEzIDEuOTgyMDcgMi41NjE2IDIuNTYxNkMxLjk4MjA3IDMuMTQxMTMgMS42OTIzMSAzLjgzODU0IDEuNjkyMzEgNC42NTM4NUMxLjY5MjMxIDUuNDY5MTUgMS45ODIwNyA2LjE2NjU3IDIuNTYxNiA2Ljc0NjA5QzMuMTQxMTMgNy4zMjU2MiAzLjgzODU0IDcuNjE1MzggNC42NTM4NSA3LjYxNTM4QzUuNDY5MTUgNy42MTUzOCA2LjE2NjU3IDcuMzI1NjIgNi43NDYwOSA2Ljc0NjA5QzcuMzI1NjIgNi4xNjY1NyA3LjYxNTM4IDUuNDY5MTUgNy42MTUzOCA0LjY1Mzg1Wk0xMSAxMC4xNTM4QzExIDEwLjM4MyAxMC45MTYzIDEwLjU4MTMgMTAuNzQ4OCAxMC43NDg4QzEwLjU4MTMgMTAuOTE2MyAxMC4zODMgMTEgMTAuMTUzOCAxMUM5LjkxNTg3IDExIDkuNzE3NTUgMTAuOTE2MyA5LjU1ODg5IDEwLjc0ODhMNy4yOTE0NyA4LjQ4Nzk4QzYuNTAyNiA5LjAzNDQ2IDUuNjIzNCA5LjMwNzY5IDQuNjUzODUgOS4zMDc2OUM0LjAyMzY0IDkuMzA3NjkgMy40MjA5NyA5LjE4NTQgMi44NDU4NSA4Ljk0MDgxQzIuMjcwNzMgOC42OTYyMSAxLjc3NDk0IDguMzY1NjkgMS4zNTg0NyA3Ljk0OTIyQzAuOTQyMDA3IDcuNTMyNzUgMC42MTE0NzggNy4wMzY5NiAwLjM2Njg4NyA2LjQ2MTg0QzAuMTIyMjk2IDUuODg2NzIgMCA1LjI4NDA1IDAgNC42NTM4NUMwIDQuMDIzNjQgMC4xMjIyOTYgMy40MjA5NyAwLjM2Njg4NyAyLjg0NTg1QzAuNjExNDc4IDIuMjcwNzMgMC45NDIwMDcgMS43NzQ5NCAxLjM1ODQ3IDEuMzU4NDdDMS43NzQ5NCAwLjk0MjAwNyAyLjI3MDczIDAuNjExNDc4IDIuODQ1ODUgMC4zNjY4ODdDMy40MjA5NyAwLjEyMjI5NiA0LjAyMzY0IDAgNC42NTM4NSAwQzUuMjg0MDUgMCA1Ljg4NjcyIDAuMTIyMjk2IDYuNDYxODQgMC4zNjY4ODdDNy4wMzY5NiAwLjYxMTQ3OCA3LjUzMjc1IDAuOTQyMDA3IDcuOTQ5MjIgMS4zNTg0N0M4LjM2NTY5IDEuNzc0OTQgOC42OTYyMSAyLjI3MDczIDguOTQwODEgMi44NDU4NUM5LjE4NTQgMy40MjA5NyA5LjMwNzY5IDQuMDIzNjQgOS4zMDc2OSA0LjY1Mzg1QzkuMzA3NjkgNS42MjM0IDkuMDM0NDYgNi41MDI2IDguNDg3OTggNy4yOTE0N0wxMC43NTU0IDkuNTU4ODlDMTAuOTE4NSA5LjcyMTk2IDExIDkuOTIwMjcgMTEgMTAuMTUzOFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=);
    background-size: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(0, 0, 0, .4);
    border-radius: inherit;
    -webkit-transition: opacity 250ms cubic-bezier(.25, .46, .45, .94);
    -o-transition: opacity 250ms cubic-bezier(.25, .46, .45, .94);
    transition: opacity 250ms cubic-bezier(.25, .46, .45, .94)
}

.glightbox:focus-visible::before,
.glightbox:hover::before {
    opacity: .8
}

.glightbox:focus-visible img,
.glightbox:hover img {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5)
}

.glightbox img {
    z-index: 1;
    width: 100%;
    height: 100%;
    /*-o-object-fit: cover;*/
    /*object-fit: cover;*/
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform 550ms cubic-bezier(.25, .46, .45, .94);
    transition: -webkit-transform 550ms cubic-bezier(.25, .46, .45, .94);
    -o-transition: transform 550ms cubic-bezier(.25, .46, .45, .94);
    transition: transform 550ms cubic-bezier(.25, .46, .45, .94);
    transition: transform 550ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 550ms cubic-bezier(.25, .46, .45, .94)
}

@media all and (max-width:575px) {
    .glightbox::before {
        background-size: 24px
    }
}

.glightbox-clean .gslide-desc {
    font-family: inherit;
    font-size: .85rem;
    color: #fff
}

.glightbox-clean .gslide-description {
    position: absolute;
    bottom: -1px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, .5);
    z-index: 2
}



.glightbox2 {
    width: 100%;
    height: 100%;
    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;
    overflow: hidden;
    position: relative;
    border-radius: inherit
}

.glightbox2::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    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;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: 2;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAxMSAxMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuNjE1MzggNC42NTM4NUM3LjYxNTM4IDMuODM4NTQgNy4zMjU2MiAzLjE0MTEzIDYuNzQ2MDkgMi41NjE2QzYuMTY2NTcgMS45ODIwNyA1LjQ2OTE1IDEuNjkyMzEgNC42NTM4NSAxLjY5MjMxQzMuODM4NTQgMS42OTIzMSAzLjE0MTEzIDEuOTgyMDcgMi41NjE2IDIuNTYxNkMxLjk4MjA3IDMuMTQxMTMgMS42OTIzMSAzLjgzODU0IDEuNjkyMzEgNC42NTM4NUMxLjY5MjMxIDUuNDY5MTUgMS45ODIwNyA2LjE2NjU3IDIuNTYxNiA2Ljc0NjA5QzMuMTQxMTMgNy4zMjU2MiAzLjgzODU0IDcuNjE1MzggNC42NTM4NSA3LjYxNTM4QzUuNDY5MTUgNy42MTUzOCA2LjE2NjU3IDcuMzI1NjIgNi43NDYwOSA2Ljc0NjA5QzcuMzI1NjIgNi4xNjY1NyA3LjYxNTM4IDUuNDY5MTUgNy42MTUzOCA0LjY1Mzg1Wk0xMSAxMC4xNTM4QzExIDEwLjM4MyAxMC45MTYzIDEwLjU4MTMgMTAuNzQ4OCAxMC43NDg4QzEwLjU4MTMgMTAuOTE2MyAxMC4zODMgMTEgMTAuMTUzOCAxMUM5LjkxNTg3IDExIDkuNzE3NTUgMTAuOTE2MyA5LjU1ODg5IDEwLjc0ODhMNy4yOTE0NyA4LjQ4Nzk4QzYuNTAyNiA5LjAzNDQ2IDUuNjIzNCA5LjMwNzY5IDQuNjUzODUgOS4zMDc2OUM0LjAyMzY0IDkuMzA3NjkgMy40MjA5NyA5LjE4NTQgMi44NDU4NSA4Ljk0MDgxQzIuMjcwNzMgOC42OTYyMSAxLjc3NDk0IDguMzY1NjkgMS4zNTg0NyA3Ljk0OTIyQzAuOTQyMDA3IDcuNTMyNzUgMC42MTE0NzggNy4wMzY5NiAwLjM2Njg4NyA2LjQ2MTg0QzAuMTIyMjk2IDUuODg2NzIgMCA1LjI4NDA1IDAgNC42NTM4NUMwIDQuMDIzNjQgMC4xMjIyOTYgMy40MjA5NyAwLjM2Njg4NyAyLjg0NTg1QzAuNjExNDc4IDIuMjcwNzMgMC45NDIwMDcgMS43NzQ5NCAxLjM1ODQ3IDEuMzU4NDdDMS43NzQ5NCAwLjk0MjAwNyAyLjI3MDczIDAuNjExNDc4IDIuODQ1ODUgMC4zNjY4ODdDMy40MjA5NyAwLjEyMjI5NiA0LjAyMzY0IDAgNC42NTM4NSAwQzUuMjg0MDUgMCA1Ljg4NjcyIDAuMTIyMjk2IDYuNDYxODQgMC4zNjY4ODdDNy4wMzY5NiAwLjYxMTQ3OCA3LjUzMjc1IDAuOTQyMDA3IDcuOTQ5MjIgMS4zNTg0N0M4LjM2NTY5IDEuNzc0OTQgOC42OTYyMSAyLjI3MDczIDguOTQwODEgMi44NDU4NUM5LjE4NTQgMy40MjA5NyA5LjMwNzY5IDQuMDIzNjQgOS4zMDc2OSA0LjY1Mzg1QzkuMzA3NjkgNS42MjM0IDkuMDM0NDYgNi41MDI2IDguNDg3OTggNy4yOTE0N0wxMC43NTU0IDkuNTU4ODlDMTAuOTE4NSA5LjcyMTk2IDExIDkuOTIwMjcgMTEgMTAuMTUzOFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=);
    background-size: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(0, 0, 0, .4);
    border-radius: inherit;
    -webkit-transition: opacity 250ms cubic-bezier(.25, .46, .45, .94);
    -o-transition: opacity 250ms cubic-bezier(.25, .46, .45, .94);
    transition: opacity 250ms cubic-bezier(.25, .46, .45, .94)
}

.glightbox2:focus-visible::before,
.glightbox2:hover::before {
    opacity: .8
}

.glightbox2:focus-visible img,
.glightbox2:hover img {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5)
}

.glightbox2 img {
    z-index: 1;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform 550ms cubic-bezier(.25, .46, .45, .94);
    transition: -webkit-transform 550ms cubic-bezier(.25, .46, .45, .94);
    -o-transition: transform 550ms cubic-bezier(.25, .46, .45, .94);
    transition: transform 550ms cubic-bezier(.25, .46, .45, .94);
    transition: transform 550ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 550ms cubic-bezier(.25, .46, .45, .94)
}

@media all and (max-width:575px) {
    .glightbox2::before {
        background-size: 24px
    }
}

.glightbox2-clean .gslide-desc {
    font-family: inherit;
    font-size: .85rem;
    color: #fff
}

.glightbox2-clean .gslide-description {
    position: absolute;
    bottom: -1px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, .5);
    z-index: 2
}

/* #endregion */

/* #region team */
.team__box_img{
    border-radius: 9px;
    box-shadow: 0 5px 12px 0 #dcdeec;
}

.team__box_img:focus-visible img, .team__box_img:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.team_slider .splide__list{
    padding: 13px 0 !important;
}


.team_slider .splide__slide:first-child{
    padding-left: 10px !important;
}
/* #endregion  */

/* #region Media */

@media all and (width < 1680px) {

    .ban2_center__text {
        top: 3%;
        left: -80px;
    }

    .ban2__left h1 {
        font-size: 41px;
    }

    .ban2_left__items>li {
        margin-bottom: 24px;
    }
}

@media all and (width < 1280px) {

    .header_body__content {
        grid-template-columns: 90px 1fr 90px;
    }

    .ban_body {
        grid-gap: 0;
    }

    .meal_slider {
        height: 513px;
    }

    .meal_slider .splide__slide {
        height: 513px;
    }

    .auto_slider {
        height: 32vw;
    }

    .ban__title {
        font-size: 52px;
    }

    .ban__sybtitle {
        font-size: 20px;
    }

    .ban_text {
        font-size: 14px;
    }

    .ban__box_img {
        height: 225px;
    }

    .ban__box_img::before {
        width: 310px;
        height: 310px;
    }

    .ban__box_img::after {
        width: 250px;
        height: 250px;
    }

    .ban_section {
        margin-bottom: 50px;
    }

    .ban2_center__box_img {
        width: 250px;
    }

    .ban2_center__box_img::after {
        content: '';
        left: -5px;
        top: -4px;
        width: 260px;
        height: 260px;
        position: absolute;
        z-index: 25;
        border-radius: 50%;
        background: #fff;
    }

    .ban2_center__box_img::before {
        content: '';
        left: -10px;
        top: -9px;
        width: 270px;
        height: 270px;
        position: absolute;
        z-index: 25;
        border-radius: 50%;
        background: #000;
    }

    .ban2_left__items>li {
        font-size: 20px;
    }

    .ban2_left__items>li {
        margin-bottom: 15px;
    }

    .ban2__left h1 {
        font-size: 34px;
    }

    .ban2_center__text {
        font-size: 31px;
        width: 342px;
        height: 64px;
    }

    .ban2__grid {
        min-height: 464px;
    }

    .ban2_center__box_img {
        left: 125px;
    }

    .ban2_center__text {
        top: 6%;
        left: 80px;
    }

    .ban2__left h1 {
        padding-left: 20px;
    }

    .section__box_title h2 {
        font-size: 26px;
    }

    .section_subtitle {
        font-size: 16px;
    }

    .where_secton {
        padding: 0;
    }

    .where__box_img {
        height: 470px;
    }

    .where_box_inner_right__text p {
        font-size: 14px;
    }

    .where_box_inner_right__text h3 {
        font-size: 25px;
    }

    .info_line__title {
        font-size: 80px;
    }

    .info_line__title span {
        font-size: 30px;
    }

    .info_line_one::before {
        height: 180px;
    }

    .info_line_two::before {
        height: 180px;
    }

    .info_line_three::before {
        height: 190px;
    }

    .info_line_four::before {
        height: 200px;
    }

    .info_line_one {
        height: 248px;
    }

    .info_line_two {
        height: 248px;
    }

    .info_line_three {
        height: 248px;
    }

    .info_line_four {
        height: 170px;
    }

    .info_line_one .info_line__title span {
        font-size: 50px;
    }

    .info_line_two .info_line__title span {
        font-size: 50px;
    }

    .info_line_thee .info_line__title span {
        font-size: 50px;
    }

    .info_line_four .info_line__title span {
        font-size: 50px;
    }

    .info_line_four .info_line__title {
        font-size: 75px;
        line-height: 0.9;
        align-items: center;
    }

    .info_line_one .info_line__box_img {
        height: 180px;
    }

    .info_line_two .info_line__box_img {
        height: 210px;
        margin-top: -20px;
    }

    .info_line_three .info_line__box_img {
        height: 210px;
        margin-top: -20px;
    }

    .info_line_four .info_line__box_img {
        height: 330px;
    }

    .info_content>div {
        margin-bottom: 16px;
    }

    .haeder_body_right__word {
        font-size: 30px;
    }

    .haeder_body_right__text {
        font-size: 12px;
    }

    .haeder_body_left__word {
        font-size: 25px;
    }

    .haeder_body_left__text {
        font-size: 12px;
    }

    .haeder_body_center__text {
        font-size: 22px;
    }

    .haeder_body_center__word {
        font-size: 28px;
    }

    .haeder_body_center__name {
        font-size: 19px;
    }

    .main {
        padding-top: 83px;
    }

    .ban_body {
        padding: 46px 0;
    }

    .where__box_img {
        width: 700px;
    }
}

@media all and (width < 890px) {
    .ban2__left h1 {
        font-size: 21px;
    }

    .ban2_left__items>li {
        font-size: 18px;
    }

    .ban2_left__items>li::before {
        left: -20px;
        top: 8px;
        width: 30px;
    }

    .ban2_center__text{
        font-size: 22px;
        width: 232px;
        height: 44px;
        top: 16%;
        left: 70px;
    }

    .ban2__grid{
        min-height: 384px;
    }

    .ban2_center__text{
        top: 6%;
    }

    .ban2_left__items{
        max-width: inherit;
    }

    .ban2_right__ban_img{
        left: -200px;
    }

}

@media all and (width < 768px) {

    .ban__title {
        font-size: 35px;
    }

    .ban__sybtitle {
        font-size: 18px;
    }

    .ban_text {
        font-size: 12px;
    }

    .ban__box_img {
        height: 116px;
    }

    .ban__box_img::after {
        width: 130px;
        height: 130px;
    }

    .ban__box_img::before {
        width: 160px;
        height: 160px;
    }

    .info_line__content {
        grid-gap: 0;
    }

    .info_content {
        padding: 0;
    }

    .info_line__content {
        grid-gap: 0;
    }

    .where__box_img {
        width: 100%;
        height: 60vw;
    }

    .where__box_inner {
        display: block;
    }

    .where_box_inner_left__box_img {
        height: 180px;
        margin-bottom: 30px;
    }

    .where__box_video video {
        width: 100%;
        height: 100%;
    }

    .supported__grid {
        grid-template-columns: 1fr 1fr;
    }

    .info_line__title {
        font-size: 62px;
    }

    .info_line_one::before {
        height: 120px;
    }

    .info_line_one {
        height: 168px;
    }

    .info_line_two::before {
        height: 120px;
    }

    .info_line_two {
        height: 168px;
    }

    .info_line_three::before {
        height: 120px;
    }

    .info_line_three {
        height: 168px;
    }

    .info_line_four::before {
        height: 120px;
    }

    .info_line_four {
        height: 168px;
    }

    .info_line_one .info_line__box_img {
        margin-top: -25px;
    }

    .info_line_one .info_line__title span {
        font-size: 38px;
    }

    .info_line_one .info_line__content {
        grid-template-columns: 2fr 1fr;
    }

    .info_line_two .info_line__title span {
        font-size: 38px;
    }

    .info_line_two .info_line__content {
        grid-template-columns: 1fr 2fr;
    }

    .info_line_two .info_line__box_img {
        height: 170px;
    }

    .info_line_three .info_line__title span {
        font-size: 40px;
    }

    .info_line_three .info_line__content {
        grid-template-columns: 2fr 1fr;
    }

    .info_line_three .info_line__box_img {
        height: 170px;
        margin-top: -50px;
    }

    .info_line_four .info_line__content {
        grid-template-columns: 1fr 2fr;
    }

    .info_line_four .info_line__title {
        font-size: 57px;
    }

    .info_line_four .info_line__title span {
        font-size: 38px;
    }

    .info_line_four .info_line__box_img {
        height: 270px;
    }



}

@media all and (width < 575px) {
    .main {
        padding-top: 73px;
    }

    .ban2__grid{
        min-height: 484px;
    }

    .ban2_section{
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .ban2__grid{
        display: block;
    }

    .ban2__left h1{
        font-size: 26px;
        padding-left:0;
        margin-bottom: 0;
    }

    .ban2_left__items>li{
        font-size:16px;
        padding-left: 19px;
    }

    .ban2_left__items>li::before {
        left: -29px;
        top: 1px;
        width: 28px;
    }

    .ban2_left__items>li {
        margin-bottom: 5px;
    }

    .ban2_center__box_img{
        top: 50px;
        left: 170px;
    }

    .ban2_center__box_img::after{
        width: 140px;
        height: 140px;
    }

    .ban2_center__box_img::before{
        width: 150px;
        height: 150px;
    }

    .ban2_left__items{
        margin-top: 10px;
    }

    .ban2_center__box_img{
        width: 130px;
        top: 50px;
        transform: inherit;
    }

    .ban2_right__ban_img{
        width: 850px;
        top: -70px;
        left: -250px;
    }

    .ban2_left__items>li::before{
        height: 8px;
        top: 4px;
    }

    .ban2_center__text{
        top: 202px;
        left: 10px;
        padding-bottom: 4px;
    }

    .header_body__center_left {
        display: none;
    }

    .haeder_body__center_right {
        display: none;
    }

    .haeder_body_right__word {
        font-size: 22px;
    }

    .haeder_body_left__word {
        font-size: 22px;
    }

    .section__box_title h2 {
        font-size: 23px;
    }

    .section_subtitle {
        font-size: 14px;
    }

    .info_section {
        margin: 10px 0;
        padding: 20px 0;
    }

    .info_line__title {
        font-size: 40px;
    }

    .info_content>div {
        margin-bottom: 47px;
    }

    .info_line_one .info_line__title span {
        font-size: 24px;
    }

    .info_line_two .info_line__title span {
        font-size: 24px;
    }

    .info_line_three .info_line__title span {
        font-size: 24px;
    }

    .info_line_four .info_line__title span {
        font-size: 24px;
    }

    .info_line_one {
        height: 100px;
    }

    .info_line_two {
        height: 100px;
    }

    .info_line_three {
        height: 100px;
    }

    .info_line_four {
        height: 100px;
    }

    .info_line_one .info_line__box_img {
        height: 100px;
        margin: 0;
    }

    .info_line_two .info_line__box_img {
        height: 100px;
        margin: 0;
    }

    .info_line_three .info_line__box_img {
        height: 100px;
        margin: 0;
    }

    .info_line_four .info_line__box_img {
        height: 100px;
        margin: 0;
    }

    .info_line__content {
        align-items: center;
    }

    .info_line_four .info_line__title {
        font-size: 40px;
    }

    .section {
        margin: 20px 0;
    }

    .photos__grid_three {
        grid-template-columns: 1fr 1fr;
    }

    .photos__grid_three>.photos_box_img:nth-child(3) {
        grid-column: 1 /span 2;
    }

    .supported__box_img {
        height: 110px;
    }

    .supported__box_img img {
        width: 78%;
    }

    .header_body__content {
        padding: 11px 0;
    }

    .footer {
        height: 140px;
    }

    .footer_mail__link {
        font-size: 24px;
    }

    .meal_slider {
        height: 380px;
    }

    .meal_slider .splide__slide {
        height: 380px;
    }

    .where__box_img{
        height: 87vw;
    }

}


/* #endregion */
