

/* Start:/local/templates/gurmaster/css/style.css?174552519370307*/
/**
  Нормализация блочной модели
 */
 *,
 ::before,
 ::after {
   box-sizing: border-box;
 }
 
 /**
   Убираем внутренние отступы слева тегам списков,
   у которых есть атрибут class
  */
 :where(ul, ol):where([class]) {
   padding-left: 0;
 }
 
 /**
   Убираем внешние отступы body и двум другим тегам,
   у которых есть атрибут class
  */
 body,
 :where(blockquote, figure):where([class]) {
   margin: 0;
 }
 
 /**
   Убираем внешние отступы вертикали нужным тегам,
   у которых есть атрибут class
  */
 :where(
   h1,
   h2,
   h3,
   h4,
   h5,
   h6,
   p,
   ul,
   ol,
   dl
 ):where([class]) {
   margin-block: 0;
 }
 
 :where(dd[class]) {
   margin-left: 0;
 }
 
 :where(fieldset[class]) {
   margin-left: 0;
   padding: 0;
   border: none;
 }
 
 /**
   Убираем стандартный маркер маркированному списку,
   у которого есть атрибут class
  */
 :where(ul[class]) {
   list-style: none;
 }
 
 :where(address[class]) {
   font-style: normal;
 }
 
 /**
   Обнуляем вертикальные внешние отступы параграфа,
   объявляем локальную переменную для внешнего отступа вниз,
   чтобы избежать взаимодействие с более сложным селектором
  */
 p {
   --paragraphMarginBottom: 24px;
 
   margin-block: 0;
 }
 
 /**
   Внешний отступ вниз для параграфа без атрибута class,
   который расположен не последним среди своих соседних элементов
  */
 p:where(:not([class]):not(:last-child)) {
   margin-bottom: var(--paragraphMarginBottom);
 }
 
 
 /**
   Упрощаем работу с изображениями и видео
  */
 img,
 video {
   display: block;
   max-width: 100%;
   height: auto;
 }
 
 /**
   Наследуем свойства шрифт для полей ввода
  */
 input,
 textarea,
 select,
 button {
   font: inherit;
 }
 
 html {
   /**
     Пригодится в большинстве ситуаций
     (когда, например, нужно будет "прижать" футер к низу сайта)
    */
   height: 100%;
   /**
     Убираем скачок интерфейса по горизонтали
     при появлении / исчезновении скроллбара
    */
   scrollbar-gutter: stable;
 }
 
 /**
   Плавный скролл
  */
 html,
 :has(:target) {
   scroll-behavior: smooth;
 }
 
 body {
   /**
     Пригодится в большинстве ситуаций
     (когда, например, нужно будет "прижать" футер к низу сайта)
    */
   min-height: 100%;
   /**
     Унифицированный интерлиньяж
    */
   line-height: 1.5;
 }
 
 /**
   Нормализация высоты элемента ссылки при его инспектировании в DevTools
  */
 a:where([class]) {
   display: inline-flex;
 }
 
 /**
   Курсор-рука при наведении на элемент
  */
 button,
 label {
   cursor: pointer;
 }
 
 /**
   Приводим к единому цвету svg-элементы
   (за исключением тех, у которых уже указан
   атрибут fill со значением 'none' или начинается с 'url')
  */
 :where([fill]:not(
   [fill="none"],
   [fill^="url"]
 )) {
   fill: currentColor;
 }
 
 /**
   Приводим к единому цвету svg-элементы
   (за исключением тех, у которых уже указан
   атрибут stroke со значением 'none')
  */
 :where([stroke]:not(
   [stroke="none"],
   [stroke^="url"]
 )) {
   stroke: currentColor;
 }
 
 /**
   Чиним баг задержки смены цвета при взаимодействии с svg-элементами
  */
 svg * {
   transition-property: fill, stroke;
 }
 
 /**
   Приведение рамок таблиц в классический 'collapse' вид
  */
 :where(table) {
   border-collapse: collapse;
   border-color: currentColor;
 }
 
 /**
   Удаляем все анимации и переходы для людей,
   которые предпочитают их не использовать
  */
@media (prefers-reduced-motion: reduce) {
   *,
   ::before,
   ::after {
     animation-duration: 0.01ms !important;
     animation-iteration-count: 1 !important;
     transition-duration: 0.01ms !important;
     scroll-behavior: auto !important;
   }
}

:root {
    --color-dark-grey: #2D2D36;
    --color-white: #F9FDFF;

    --border-radius: 62.5rem;

    --font-family-base: 'Euclid', sans-serif;
    --font-family-title: 'phonk-sans';

    --container-width: 110rem;
    --container-padding-x: .6rem;

    --transition-duration: 0.3s;
}

body {
    font-family: var(--font-family-base);
    font-weight: 400;
    font-size: 1rem;
    line-height: 100%;
    color: var(--color-white);
    background-color: var(--color-dark-grey);
}

.container {
    max-width: calc(var(--container-width));
    margin-inline: auto;
    padding-inline: var(--container-padding-x);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    text-transform: uppercase;
}

a,
button,
input,
textarea,
svg * {
  transition-duration: var(--transition-duration);
}

input {
  font-size: 1.125rem;
  line-height: 120%;
  letter-spacing: -2%;
  color: #fff;
}

input[type="checkbox"] {
  border: 1px solid #7C88A0;
  border-radius: .6rem; 
  background: transparent; 
  width: 1.5rem; 
  height: 1.5rem; 
  cursor: pointer;
  appearance: none; 
  -webkit-appearance: none; 
  -moz-appearance: none; 
  position: relative; 
}

input[type="checkbox"]:checked {
  background: transparent; 
  border-color: #9aa0ad; 
}

input[type="checkbox"]:checked::before {
  content: '✓'; 
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem; 
  color: #4AA3DB;
}

a {
  text-decoration: none;
  color: var(--color-white);
  cursor: pointer;
}

.btn-card {
  width: 100%;
  max-width: 15rem;
  background: none;
  color: #7C88A0;
  border: 1px solid #7C88A0;
  border-radius: 3.75rem;
  font-size: 1.25rem;
  padding: 1.125rem 0;
  cursor: pointer;
}


/* HEADER */
.header {
  position: relative;
  z-index: 100;
}

.header__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 2rem;
    padding-top: 1.5rem;
}

.header__nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    column-gap: 6.5rem;
    font-weight: 400;
    line-height: 120%;
}

.nav__item {
  text-decoration: none;
  transition: all .3s ease;
}

.nav__item:hover {
  opacity: .5;
}

.nav__item:focus,
.nav__item:active,
.nav__item.active {
  color: #4AA3DB;
}

.nav__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    column-gap: 3rem;
    max-width: 80%; 
    justify-content: center;
}

.nav__icons {
    display: flex;
    gap: 1.25rem;
}

.nav__icon {
  background: none;
  border: none;
}

.burger-icon {
  display: none;
}

.unioin-mobile {
  display: none;
}

.hidden {
  display: none !important;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 23.5rem;
  height: 100vh;
  background: #2D2D36;
  z-index: 1000;
  transition: right 0.4s ease;
  padding: 1.125rem;
  padding-top: 1.9rem;
  overflow-y: auto;
}

.mobile-sidebar.active {
  right: 0;
}

/* Шапка модалки (лого + крестик) */
.mobile-sidebar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-sidebar__logo img {
  height: 40px; /* Подстройте под ваш логотип */
}

.mobile-sidebar__close {
  background: none;
  border: none;
  cursor: pointer;
}

/* Затемнение фона */
.mobile-sidebar__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-sidebar__close svg path {
  stroke: #7C88A0 !important;
}

.mobile-sidebar__overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Контент меню */
.mobile-sidebar__nav {
  margin-top: 3.75rem;
}

.mobile-sidebar__items {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.mobile-sidebar__item {
  color: #F9FDFF;
  text-decoration: none;
  font-family: var(--font-family-title);
  font-size: 1.125rem;
  margin: 2.25rem 0;
  display: block;
  transition: color 0.2s;
}

.mobile-sidebar__nav-icons .nav__icon {
  padding: 0;
  margin-left: 1.4rem;
}

.mobile-sidebar__nav-icons .nav__icon:first-child {
  margin-left: 0;
}

.mobile-sidebar__item:hover {
  color: #4AA3DB;
}

.mobile-sidebar__app {
  font-family: var(--font-family-title);
  font-size: 1.125rem;
  text-transform: uppercase;
  color: #4AA3DB;
  display: inline-block;
  margin-top: 1rem;
}

/* Блокировка скролла */
body.menu-open {
  overflow: hidden;
}

.burger-icon.active svg path:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger-icon.active svg path:nth-child(2) {
  opacity: 0;
}
.burger-icon.active svg path:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-sidebar__close {
  transition: transform 0.2s ease;
}

.mobile-sidebar__close:hover {
  transform: rotate(90deg); /* Эффект вращения */
}

.mobile-sidebar__close:hover svg path {
  stroke: #4AA3DB; /* Изменение цвета при наведении */
}

/* MAIN */
.main {
    position: relative;
    z-index: 100;
    margin-top: 4rem;
}

.main__info {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    column-gap: 2.3rem;
}

.main__info-text {
    position: relative;
    z-index: 10;
    margin-top: 1rem;
}

.main__info-text-title {
    text-transform: uppercase;
    font-family: var(--font-family-title);
    line-height: 100%;
    font-weight: 400;
    font-size: 2.5rem;
    white-space: nowrap;
}

.main__info-text-img {
    width: 21rem;
    padding: 1rem 1rem 1rem 1.5rem;
    margin-top: 7rem;
    background: linear-gradient(to top, 
    #F88628,
    #F8862880 10%,   
    #3A3B47 38%   
    );
    border-radius: 3.125rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main__img-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main__img {
    width: 120%;
    max-width: 40rem;
    height: auto;
    margin-left: -4rem;
    margin-top: 1rem;
    filter: drop-shadow(74px 13px 35px rgba(0, 0, 0, 0.4));
    clip-path: inset(-25px -90px -50px 5px);
}

.main__info-img {
    position: relative;
    z-index: 10;
}

.main__img-content-likes {
    width: 52px;
    height: 52px;
    background-color: #F88628;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.main__img-content-like {
    max-width: 50%;
    height: auto;
    margin: auto;
}

.main__img-content-block {
    display: flex;
    flex-direction: column;
}

.main__img-content-title {
    font-size: 1.25rem;
    line-height: 110%;
    flex-direction: column;
    text-transform: inherit;
}

.main__img-content-text {
    margin-top: 4rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.main__info-title-text {
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    gap: 5rem;
}

.main__info-title-text p{
    font-weight: 400;
}

.main__info-title-text span {
    color: #4AA3DB;
    font-weight: 600;
}

.main__titles {
    margin-top: 11rem;
}

.main__info-title {
    position: relative;
    z-index: 10;
    margin-bottom: auto;
    margin-top: 1rem;
}

.main__titles-text {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.main__title {
    font-family: var(--font-family-title);
    font-size: 3.75rem;
    margin-top: 3rem;
}

.main__info-title-btn {
    width: 18rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .2rem .5rem .2rem 2rem;
    background-color: #F9FDFF;
    color: #2D2D36;
    border-radius: 1000px;
    border: none;
    margin-top: 4rem;
}

.main__btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #4AA3DB;
    display: flex;
    justify-content: center;
}

.main__btn-img {
    max-width: 50%;
    height: auto;
    margin: auto;
}

.main__btn-cen {
    font-family: 'phonk-sans';
    font-size: 1.375rem;
}

.rub {
    font-size: 1rem;
    vertical-align: super;
    margin-left: .3rem;
}

/* BTN-HOVER */

.btn-hover-text {
  transition: transform 0.4s ease;
}

.btn-hover-img {
  transition: transform 0.4s ease;
}

.btn-hover:hover .btn-hover-img {
  transform: translateX(-320%);
}

.btn-hover:hover .main__btn-cen {
  transform: translateX(50%);
}

.btn-rev-text {
  transition: transform 0.4s ease;
}

.btn-rev-img {
  transition: transform 0.4s ease;
}

.btn-rev:hover .btn-rev-img {
  transform: translateX(300%);
}

.btn-rev:hover .btn-rev-text {
  transform: translateX(-50%);
}

.btn-hoverbpt-text {
  transition: transform 0.4s ease;
}

.btn-hoverbpt-img {
  transition: transform 0.4s ease;
}

.btn-hoverbpt:hover .btn-hoverbpt-img  {
  transform: translateX(-685%);
}

.btn-hoverbpt:hover .btn-hoverbpt-text {
  transform: translateX(290%);
}

.btn-hoverbot-text {
  transition: transform 0.4s ease;
}

.btn-hoverbot-img {
  transition: transform 0.4s ease;
}

.btn-hoverbot:hover .btn-hoverbot-img  {
  transform: translateX(755%);
}

.btn-hoverbot:hover .btn-hoverbot-text {
  transform: translateX(-20%);
}

/* BTN-HOVER */

.main__info-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    row-gap: 1.3rem;
    margin-top: 4rem;
}

.unioin {
    position: absolute;
    top: 0;
    right: 6.6rem;
    z-index: -1;
    opacity: .7;
}

.mobile-main {
  display: none;
}

/* DISH */
.dish__container {
  margin-top: 20rem;
}

.dish__info {
    display: flex;
    flex-direction: column;
}

.dish__info-title {
  display: flex;
  column-gap: 10rem;
}

.dish__title {
  font-family: var(--font-family-title);
  font-size: 3.75rem;
  line-height: 100%;
}

.blue {
  color: #4AA3DB;
}

.dish__items {
  display: flex;
  margin-top: 5rem;
  flex: 1;
}

.dish__item {
  display: flex;
  align-items: center;
  column-gap: 2rem;
}

.dish__item-info {
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem 0 1.8rem;
  background: linear-gradient(to top, 
    #4AA3DB,
    #4AA3DB80 10%,   
    #3A3B47 38%   
    );
  border-radius: 10%;
}

.orange {
  background: linear-gradient(to top, 
    #F88628,
    #F8862880 10%,   
    #3A3B47 38%   
    );
}

.dish__item-number {
  width: 44px;
  height: 44px;
  background-color: #4AA3DB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.orange-num {
  background-color: #F88628;
}

.dish__item-title {
  margin-top: 2rem;
  width: 10rem;
  line-height: 120%;
}

.img-up {
  margin-right: 2rem;
}

.dish__img {
  height: 18rem;
  margin-top: 5rem;
}

.dish__item-infos-text {
  margin-top: 2rem;
  max-width: 75%;
  line-height: 120%;
}

.rel {
  max-width: 88%;
}


/* SKILLS */
.skills__container {
  margin-top: 20rem;
}

.skills__infos {
  background: url(/local/templates/gurmaster/image/main/skills-img.png) no-repeat center center;
  background-size: auto;
  height: auto;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 0 2.5rem 2.5rem;
  border-radius: 3.75rem;
}

.skills__infos-span {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.skills-star {
  width: 52px;
  height: 52px;
  background-color: #F88628;
  border-radius: 50%;
  display: flex;
  justify-content: center;
}

.skills-star__img {
  max-width: 50%;
  height: auto;
  margin: auto;
}

.skills__text {
  color: #F88628;
}

.skills__title {
  font-family: var(--font-family-title);
  font-size: 2.5rem;
  line-height: 110%;
  width: 100%;
  max-width: 42rem;
  margin-top: 8.125rem;
}

.skills__info {
  display: flex;
  flex-direction: column;
}

.skills__scroll-container {
  display: flex;
  column-gap: 2.75rem;
  padding: 1rem 0;
  max-width: 100%;
  overflow: hidden;
  transition: overflow 0.3s ease-in-out;
}

.skills__items {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 1rem 2rem 1.8rem;
  background: linear-gradient(to top, 
    #4AA3DB, 
    #4AA3DB80 10%, 
    rgba(32, 33, 37, 0.8) 47%
  );
  border-radius: 2.5rem;
  margin-top: 13.3rem;
  margin-right: 2.5rem;
  flex: 1 1 calc(25% - 2.75rem); 
  min-width: 15rem;
  max-width: 25rem;
  transition: all 0.3s ease;
}

.skills-orange {
  background: linear-gradient(to top, 
    #F88628,
    #F8862880 10%,   
    rgba(32, 33, 37, 0.8) 47%
  );
}

.skills__item-imgs {
  width: 54px;
  height: 54px;
  margin-left: auto;
  border: 1px solid #F9FDFF3D;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.skills__item-img {
  max-width: 50%;
  height: auto;
  margin: auto;
}

.skills__item-title {
  margin-top: 3.875rem;
  font-size: 1.25rem;
  line-height: 100%;
  text-transform: inherit;
  width: 100%;
  max-width: 17rem;
}

.skills__item-text {
  font-size: 1rem;
  margin-top: 1rem;
  flex-grow: 1;
}


/* sliderAbout */
.about-slider {
  margin-top: 20rem;
  position: relative;
  overflow: hidden;
}

.about-slider_titles {
  display: flex;
  align-items: center;
  margin-bottom: 3.6rem;
}

.about-slider_title {
  font-family: var(--font-family-title);
  font-size: 2.6rem;
  line-height: 100%;
  margin: 0 auto;
}

.about-slider_pagination {
  display: flex;
  align-items: flex-start;
  position: absolute;
  left: 0;
  font-family: var(--font-family-title);
  font-size: 1.375rem;
  color: #777;
}

.about-slider_pagination .current {
  color: #4AA3DB;
}

.about-slider_pagination .fraction {
  display: flex;
  flex-direction: column;
  line-height: 0.8;
}

.about-slider_pagination .divider {
  width: 1.87rem;
  opacity: .2;
  transform: translate(-0.5rem, 1.2rem) rotate(120deg);
}

.about-slider_pagination .total {
  transform: translate(1.7rem, 1rem);
  color: #7C88A0;
}

.swiper {
  width: 100%;
  height: 45rem;
  padding: 0 15%;
  margin: 0 -15%;
  overflow: visible;
}

.about-slider_item {
  width: 50rem !important;
  height: 40.6rem !important;
  background-size: cover;
  background-position: center;
  border-radius: 3.75rem;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  color: white;
  transition: transform 0.6s ease, opacity 0.6s ease;
  position: relative;
  overflow: hidden;
}

.about-slider_title-info {
  width: 100%;
  max-width: 20rem;
  font-size: 1.75rem;
  line-height: 100%;
  text-transform: inherit;
}

.about-slider_texts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.about-slider_text {
  font-size: 1.25rem;
  letter-spacing: -2%;
  width: 100%;
  max-width: 21rem;
}

.swiper-slide-active {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  z-index: 5;
}

.swiper-slide:not(.swiper-slide-active) {
  transform: scale(0.85);
  opacity: 0.6;
  filter: brightness(0.8);
}

.swiper-slide-prev {
  transform: translate3d(-105%, 0, -500px) scale(0.85);
  opacity: 0.6;
  z-index: 4;
}

.swiper-slide-next {
  transform: translate3d(105%, 0, -500px) scale(0.85);
  opacity: 0.6;
  z-index: 4;
}

.swiper-slide-prev-prev {
  transform: translate3d(-210%, 0, -600px) scale(0.75);
  opacity: 0;
  z-index: 3;
}

.swiper-slide-next-next {
  transform: translate3d(210%, 0, -600px) scale(0.75);
  opacity: 0;
  z-index: 3;
}

/* Номера слайдов */
.slide-number {
  width: 44px;
  height: 44px;
  background-color: #F88628;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  padding-top: .79rem;
}

.about-slider_item .about-slider_title-info,
.about-slider_item .about-slider_texts {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.swiper-slide-active .about-slider_title-info,
.swiper-slide-active .about-slider_texts {
  opacity: 1;
  transform: translateY(0);
}

p:where(:not([class]):not(:last-child)) {
  width: 100%;
  max-width: 16.5rem;
}

.number-blue {
  background-color: #4AA3DB;
}




/* adaptations */
.adaptations__container {
  position: relative;
  margin-top: 20rem;
}

.adaptations__info-title {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.adaptations__info-span {
  font-size: 1.25rem;
}

.adaptations__info-text {
  width: 100%;
  max-width: 15rem;
  font-size: 1.25rem;
  line-height: 100%;
}

.adaptations__items {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 7.3rem;
}

.adaptations__items-mb {
  display: none;
}

.adaptations__info-text-mb {
  display: none;
}

.adaptations__union {
  position: absolute;
  top: -10rem;
  z-index: -1;
}

.adaptations__item {
  display: flex;
  align-items: center;
  padding: 1rem;
  position: relative;
}

.fs {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.fs .hover-num:hover {
  color: #fff;
}

.fs:hover::after {
  content: "";
  position: absolute;
  top: -13rem;
  left: 50%;
  transform: translateX(-50%);
  width: 397px; 
  height: 464px;
  background-image: url('/local/templates/gurmaster/css/../image/main/adaptations.png');
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: -1;
  display: block;
}

.adaptations__text {
  font-family: var(--font-family-title);
  font-size: 1.8rem;
  white-space: nowrap;
}

.adaptations__number {
  font-size: 1rem;
  color: #7C88A0;
  margin-left: 1rem;
  margin-bottom: 1.8rem;
}

.adaptations__hr {
  width: 30px;
  height: 1px;
  opacity: .2;
  margin-left: 7rem;
  transform: rotate(-60deg);
}

.adaptations__group {
  grid-column: span 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}


/* EAT */
.eat__container {
  margin-top: 20rem;
}

.eat__info {
  background-size: auto;
  height: auto;
  width: 100%;
  border-radius: 3.75rem;
}

.eat__items {
  display: flex;
  flex-direction: column;
  padding: 3rem;
}

.eat__items-points {
  width: 100%;
  max-width: 80rem;
  display: flex;
  justify-content: space-between;
  column-gap: 10rem;
}

.eat__item, .eat__item2 {
  display: flex;
  column-gap: .5rem;
}

.eat__item {
  margin-top: 9rem;
  margin-left: 13rem;
  text-align: left;
}

.eat__item2 {
  margin-top: 20rem;
  text-align: right;
}

.eat__point, .eat__point2 {
  width: 24px;
  height: 24px;
  background-color: rgb(83, 79, 79);
  border-radius: 50%;
  position: relative;
}

.eat__point::after {
  content: "";
  position: absolute;
  top: 25%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4AA3DB;
  transform: translateX(50%);
}

.eat__point2::after {
  content: "";
  position: absolute;
  top: 25%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4AA3DB;
  transform: translateX(-150%);
}

.point-text {
  width: 100%;
  max-width: 10rem;
}

.eat__item-title {
  margin-top: 20rem;
}

.eat__item-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.eat__title {
  font-family: var(--font-family-title);
  font-size: 2.5rem;
  line-height: 100%;
  width: 100%;
  max-width: 35rem;
}

.eat__title-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eat__title-text-mb {
  display: none;
}

.eat__title-text-circle {
  text-align: center;
  background-color: #F88628;
  padding: .8rem 2rem;
  border-radius: 62.5rem;
}

.eat__text {
  width: 100%;
  max-width: 22rem;
  line-height: 120%;
  margin-top: 3rem;
}

/* advantages-slider */
.advantages-slider {
  margin-top: 20rem;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.swiper-wrapper {
  height: 100%;
  align-items: center;
}

.advantages-info-text {
  background: #F88628;
  padding: .8rem 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 2.75rem;
}

.advantages-slider__title {
  font-family: var(--font-family-title);
  font-size: 3.75rem;
  line-height: 100%;
  margin: 0 auto;
  text-align: center;
  z-index: 10;
  position: relative;
}

.advantages-slider__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 80vh;
  margin-top: 2rem;
}

.advantages-slider__swiper {
  width: 80%;
  height: 100%; 
  position: relative;
  margin: 0 auto;
}

.advantages-slider__item {
  width: 100%;
  height: 42rem; 
  border-radius: 3.75rem;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.advantages-slider__item:nth-child(1) {
  background: url(/local/templates/gurmaster/image/main/advantages-img.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.advantages-slider__item:nth-child(2) {
  background: url(/local/templates/gurmaster/image/main/advantages-img.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.advantages-slider__item:nth-child(3) {
  background: url(/local/templates/gurmaster/image/main/advantages-img.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.advantages-slider__item:nth-child(4) {
  background: url(/local/templates/gurmaster/image/main/advantages-img.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.advantages-slider__item:nth-child(5) {
  background: url(/local/templates/gurmaster/image/main/advantages-img.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-slide-active .advantages-slider__item {
  transform: translateY(0);
  opacity: 1;
  z-index: 10;
}

.swiper-slide-prev .advantages-slider__item {
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.8s ease-out;
}

.swiper-slide-next .advantages-slider__item {
  transform: translateY(100%);
  opacity: 0;
}

.swiper-slide.swiper-slide-active:not(.swiper-slide-prev) .advantages-slider__item {
  animation: slideFromBottom 0.8s ease-out forwards;
}

@keyframes slideFromBottom {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.swiper-slide.swiper-slide-prev .advantages-slider__item {
  animation: slideToTop 0.8s ease-out forwards;
}

@keyframes slideToTop {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}

.advantages-slider__pagination {
  position: absolute;
  left: 5%;
  top: 40%;
  transform: translateY(-50%);
  font-family: var(--font-family-title);
  font-size: 1.375rem;
  color: #777;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 30;
}

.advantages-slider__pagination .current {
  color: #4AA3DB;
  font-size: 2rem;
}

.advantages-slider__pagination .fraction {
  display: flex;
  flex-direction: column;
  line-height: 0.8;
  position: relative;
}

.advantages-slider__pagination .divider {
  width: 2.5rem;
  height: 1px;
  background: #777;
  opacity: 0.2;
  transform: rotate(120deg);
  position: absolute;
  left: 2.8rem;
  top: 1rem;
}

.advantages-slider__pagination .total {
  margin-left: 5rem;
  margin-top: 3rem;
  color: #7C88A0;
  font-size: 1.5rem;
}

.advantages-slider__text {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(-50%);
  width: 23.6rem;
  color: white;
  z-index: 20;
}

.advantages-slider__slide-title {
  font-size: 1.75rem;
  line-height: 100%;
  color: #F88628;
  margin-bottom: 2.75rem;
}

.advantages-slider__slide-text {
  line-height: 120%;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 42rem;
  display: flex;
  justify-content: center;
} 




/* PURITY */
.purity__container {
  margin-top: 20rem;
}

.purity__info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.purity__item-title {
  position: relative;
  background-color: #3A3B47;
  padding: 2.75rem;
  padding-right: 4.5rem;
  border-radius: 3.75rem;
  display: flex;
  flex-direction: column;
  row-gap: 9rem;
}

.purity__title {
  font-family: var(--font-family-title);
  font-size: 3.75rem;
  line-height: 100%;
}

.purity__title-blue {
  color: #4AA3DB;
}

.purity__item-texts {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.purity__item-text {
  width: 100%;
  max-width: 20.4rem;
}

.purity__item-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3.2rem;
}

.purity__item-img {
  height: 26.75rem;
  width: 100%;
  max-width: 100%;
  padding: 2.75rem;
  border-radius: 3.75rem;
  display: flex;
  flex-direction: column;
}

.purity__item-img-title {
  width: 100%;
  max-width: 12rem;
  font-size: 1.25rem;
  line-height: 100%;
  text-transform: inherit;
}

.purity__item-img-link {
  margin-top: auto;
}

.purity__item-img-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.purity__text-span {
  text-transform: uppercase;
  font-size: .9rem;
}

.purity__arrow {
  width: 44px;
  height: 44px;
  background-color: #F9FDFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  border: none;
}

.purity__arrow img {
  max-width: 100%;
  height: auto;
  margin: auto;
}

.purity__union {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  border-radius: 5rem;
}


/* VIDEO */
.video__container {
  margin-top: 20rem;
}

.video__info-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.video__title {
  font-family: var(--font-family-title);
  font-size: 3.75rem;
  line-height: 100%;
}

.video__title-text {
  width: 21rem;
  line-height: 120%;
  margin-right: 4.5rem;
}

.video__items {
  width: 100%;
  height: 100vh;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  margin-top: 2.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video__item {
  background-color: #F9FDFF;
  border-radius: 62.5rem;
  padding: .5rem 2.25rem .5rem .5rem;
  color: #2D2D36;
  display: flex;
  align-items: center;
  column-gap: 1.5rem;
}

.video__item-play {
  width: 4rem;
  height: 4rem;
  background-color: #4AA3DB;
  border-radius: 50%;
  border: none;
  display: flex;
  justify-content: center;
}

.video__item-play img{
  max-width: 50%;
  height: auto;
  margin: auto;
}

.video__item-text {
  display: flex;
  flex-direction: column;
  row-gap: .3rem;
}

.video__text {
  font-family: var(--font-family-title);
  margin-bottom: 0;
}

.video__text-span {
  color: #7C88A0;
}

/* APPLICATION */
.application__container {
  margin-top: 20rem;
  overflow-x: hidden;
  position: relative;
}

.application__items {
  display: flex;
  justify-content: flex-start;
  column-gap: 2.75rem;
}

.application__item-img {
  padding: 3rem 4rem 0 4rem;
  background: linear-gradient(to top, 
    #4AA3DB,
    #4AA3DB80 35%,   
    #3A3B47 55%   
  );
  border-radius: 3.75rem;
  display: flex;
  justify-content: center;
}

.application__item-img-mb {
  display: none;
}

.application__item-info {
  display: flex;
  flex-direction: column;
}

.application__title {
  width: 100%;
  max-width: 41rem;
  font-family: var(--font-family-title);
  font-size: 2.5rem;
  line-height: 110%;
  margin-top: 1.5rem;
}

.application__item-text {
  margin-top: auto;
}

.application__text {
  width: 100%;
  max-width: 22rem;
  line-height: 120%;
}

.application__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
}

.application-block {
  width: 12.5rem;
  height: 12.5rem;
  background-color: #3A3B47;
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;

}

.google-text, .app-text {
  line-height: 120%;
}

.application-block img {
  margin-top: auto;
  max-width: 15%;
}

.application__union {
  position: absolute;
  z-index: 10;
  right: -4.6rem;
  top: 0;
}

/* EQUIPMENT */ 
.equipment__container {
  margin-top: 20rem;
  overflow-x: hidden;
}

.equipment__title {
  font-family: var(--font-family-title);
  font-size: 3.75rem;
  line-height: 100%;
  width: 100%;
  max-width: 35rem;
}

.equipment__items {
  margin-top: 2.75rem;
  display: flex;
  justify-content: flex-start;
  column-gap: 2.75rem;
}

.equipment__items img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.equipment__item {
  width: 100%;
  background-color: #3A3B47;
  border-radius: 3.75rem;
  padding: 2.75rem 4rem 2.75rem 2rem;
  display: flex;
  flex-direction: column;
}

.equipment__item-title {
  width: 100%;
  /* max-width: 17rem; */
  font-family: var(--font-family-title);
  font-size: 1.4rem;
  line-height: 100%;
  color: #4AA3DB;
  margin-bottom: 5.25rem;
}

.equipment__item-text {
  width: 100%;
  /* max-width: 20rem; */
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 2rem;
  transition: var(--transition-duration);
  cursor: pointer;
}

.equipment__item-text p {
  font-size: 1.25rem;
  letter-spacing: -2%;
  white-space: nowrap;
  margin-left: 1rem;
  transition: var(--transition-duration);
}

.equipment__item-text .equipment__num {
  transition: var(--transition-duration);
}

.equipment__item-text:hover .equipment__num,
.equipment__item-text:hover p {
  color: #F88628; /
}

.equipment__item-text span {
  width: 1.3rem;
  color: #7C88A0;
}

.equipment__item-text:last-child {
  margin-bottom: 0;
}

/* GALLERY-SLIDER */
.gallery-slider {
  margin-top: 20rem;
  position: relative;
  overflow: hidden;
}

.gallery-slider_item {
  width: 80.3rem !important;
  background-size: cover;
  background-position: center;
  border-radius: 3.75rem;
  transition: transform 0.6s ease, opacity 0.6s ease;
  position: relative;
  overflow: hidden;
}


/* PROPERTY */
.property__container {
  margin-top: 20rem;
  position: relative;
}

.property__info-img {
  position: relative;
  display: inline-block;
}

.property_title {
  font-family: var(--font-family-title);
  font-size: 3.75rem;
  line-height: 100%;
}

.property__items-title {
  display: flex;
  flex-direction: column;
}

.property__items {
  display: flex;
  justify-content: space-between;
}

.robot-image {
  display: block;
  max-width: 100%;
  height: auto;
}

.line {
  position: absolute;
  background-color: #7C88A066;
}

.vertical {
  width: 27.87rem;
  height: 1px;
  left: -15%;
  top: 43%;
  transform: rotate(90deg);
}

.horizontal1 {
  width: 13.7rem;
  height: 1px;
  bottom: 14%;
  left: 20%;
  transform: rotate(24deg);
}

.horizontal2 {
  width: 18rem;
  height: 1px;
  bottom: 13%;
  left: 62%;
  transform: rotate(-16deg);
}

.dimension {
  position: absolute;
  color: #61A3E5; 
  font-size: 14px;
}

.vertical-text {
  left: 12%;
  top: 40%;
  transform: rotate(-90deg);
}

.horizontal-text-left {
  bottom: 11%;
  left: 31%;
  transform: rotate(24deg);
}

.horizontal-text-right {
  bottom: 10%;
  right: 12%;
  transform: rotate(-16deg);
}

.property__item-info {
  height: 9.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.5rem;
  row-gap: 1.5rem;
  margin: 0 auto;
}

.property__info-text {
  height: 9.25rem;
  background: #3A3B47;
  padding: 2.75rem;
  border-radius: 2.75rem;
  text-align: left;
  color: #fff;
}

.property__info-text p {
  font-size: 1.125rem;
  color: #7C88A0;
  white-space: nowrap;
}

.property__info-text h3 {
  font-family: var(--font-family-title);
  font-size: 1.375rem;
  margin-top: 0.5rem;
  font-weight: 300;
}

.property__info-text span {
  font-family: var(--font-family-base);
  font-size: 1.125rem;
  text-transform: initial;
  color: #7C88A0;
}

.property__info-arrow {
  width: 100%;
  max-width: 11.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6rem;
}

.property__union {
  position: absolute;
  z-index: -1;
  top: 0;
  left: -4.5rem;
}

/* MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #3A3B47CC;
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-sidebar {
  position: fixed;
  top: 0;
  right: -40rem;
  width: 100%;
  max-width: 37rem;
  height: 100vh;
  background-color: #2D2D36;
  z-index: 1000;
  padding: 2.75rem;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-back {
  background: none;
  border: none;
  cursor: pointer;
}

.location {
  display: flex;
  align-items: center;
  column-gap: .6rem;
}

.location-text {
  font-size: 1.25rem;
  color: #FFFFFF;
}

.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 9.5rem;
}

.modal-title {
  font-family: var(--font-family-title);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  line-height: 100%;
  color: #FFFFFF;
  text-align: center;
}

.modal-subtitle {
  width: 100%;
  max-width: 20rem;
  color: #7C88A0;
  line-height: 120%;
  text-align: center;
  margin-bottom: 2.75rem;
}

.form-group input {
  width: 100%;
  background-color: #3A3B47 !important;
  border: none;
  border-radius: 2.5rem;
  padding: 1.6rem 1.9rem;
  padding-right: 7rem;
}

/* .submit-btn {
  width: 100%;
  padding: 14px;
  background-color: #4a6bff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #3a5bef;
} */

.social-icons {
  display: flex;
  justify-content: center;
  column-gap: .6rem;
  margin-top: 15rem;
}

/* .social-icons img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s;
} */

/* Класс для блокировки скролла */
.body-no-scroll {
  overflow: hidden;
}

/* Анимации при открытии */
.modal-overlay.active {
  display: block;
  opacity: 1;
}

.modal-sidebar.active {
  right: 0;
  left: auto;
}


/* SMS */
.modal-screen {
  display: none;
  width: 100%;
  height: 100%;
  flex-direction: column;
}

.modal-screen.active {
  display: flex;
}

.sms-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.6rem;
}

.code-inputs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.code-input {
  width: 4rem;
  height: 4rem;
  background-color: #3A3B47;
  border: none;
  border-radius: 1rem;
  color: white;
  font-size: 1.5rem;
  text-align: center;
  padding: 0;
}

.sms-resend {
  color: #7C88A0;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.sms-resend:hover {
  text-decoration: underline;
}

.sms-agreement {
  color: #F9FDFF;
  font-size: 0.9rem;
  text-align: center;
  max-width: 25rem;
  line-height: 120%;
  margin-top: 1.9rem;
}

.sms-agreement-orange {
  color: #F88628;
}

.sms-timer {
  color: #7C88A0;
  margin-top: 2.75rem;
  font-size: 0.9rem;
}

.sms-resend {
  color: 7C88A0;
  text-decoration: none;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  display: none;
}

.sms-resend-error {
  margin-top: 2.75rem;
  color: #4AA3DB;
  line-height: 120%;
  border-bottom: 2px solid #4AA3DB;
}

.sms-resend.visible {
  display: block;
}

.error-message {
  color: #FF5745;
  margin-top: 2.75rem;
  line-height: 120%;
}

/* PROFILE */
.profile-screen .modal-content {
  margin-top: 7rem;
  display: flex;
  align-items: flex-start;
}

.profile-links {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  row-gap: 2.75rem;
}

.profile-links a {
  font-family: var(--font-family-title);
  font-size: 1.4rem;
  line-height: 100%;
  color: #FFFFFF;
  text-decoration: none;
  transition: all .3s ease;
}

.profile-links a:hover {
  opacity: .6;
}

.logout-btn {
  color: #77bde9;
  border-bottom: 1px solid #4AA3DB;
  line-height: 120%;
  cursor: pointer;
  margin-top: 6.25rem;
  transition: all .3 ease;
}

.logout-btn:hover {
  color: #0a5280;
  border-color: #0a5280;
}


/* FOOTER */
.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 7.2rem;
}

.footer__item {
  display: flex;
  align-items: center;
  column-gap: 1.4rem;
}

.footer__item-icon {
  border-radius: .5rem;
  cursor: pointer;
  transition: all .3s ease;
}

.footer__item-icon:hover {
  transform: scale(1.2);
}

.footer__item-link {
  margin-top: 3.75rem;
}

.footer-nav__items {
  display: flex;
  align-items: center;
  column-gap: 2.75rem;
}

.footer-nav__item {
  line-height: 120%;
  transition: all .3s ease;
}

.footer-nav__item:hover {
  opacity: .6;
}

.footer__line {
  width: 100%;
  margin-top: 3.75rem;
  opacity: .1;
}

.footer__span {
  color: #7C88A0;
  line-height: 120%;
  margin-top: 3.75rem;
}

.footer__img {
  margin-top: 3.75rem;
  margin-bottom: 5.6rem;
}







/* АНИМАЦИИ */
.main__info-img, .main__info-text, .main__info-title, .main__info-img.desktop-main {
  opacity: 0; 
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease; 
}

.main__info-img.fade-in {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main__info-text.slide-in-left, .main__info-title.slide-in-left {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.main__info-img.desktop-main.slide-in-right {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.js-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
}

.fade-in {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 0.8s ease;
}

.slide-in-left {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: all 0.8s ease;
}

.slide-in-right {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: all 0.8s ease;
}

.from-left {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100px);
}

.from-right {
  opacity: 0;
  visibility: hidden;
  transform: translateX(100px);
}

.js-dish-hidden {
  opacity: 0;
  transform: translateY(50px); 
  visibility: hidden;
}

.dish__title, .dish__info-text {
  opacity: 0;
  transform: translateY(50px);  
  visibility: visible;
  transition: opacity 1s ease, transform 1s ease;  
}

.dish__title.fade-in-up, .dish__info-text.fade-in-up {
  opacity: 1;
  transform: translateY(0);
}

.dish__item-infos {
  opacity: 0;
  transform: translateY(50px);
  visibility: hidden;
  transition: opacity 1s ease, transform 1s ease;
}

.dish__item-infos.fade-in-up {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.adaptations__info-title,
.adaptations__info-text,
.adaptations__item {
  opacity: 0;
  transform: translateY(50px); /* Сдвиг вниз */
  transition: opacity 1s ease, transform 1s ease;
}

/* Стили для анимации появления */
.adaptations__info-title.adaptations-show,
.adaptations__info-text.adaptations-show,
.adaptations__item.adaptations-show {
  opacity: 1;
  transform: translateY(0); /* Элементы возвращаются на место */
}

/* Для элементов адаптации */
.adaptations__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 7.3rem;
  opacity: 0;
  transform: translateY(50px); /* Сначала скрыто */
  transition: opacity 1s ease, transform 1s ease;
}

.adaptations__items.adaptations-show {
  opacity: 1;
  transform: translateY(0);
}

.advantages-slider {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.advantages-slider.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Появление слайдера с наклоном */
.advantages-slider__swiper {
  opacity: 0;
  transform: translateY(400px) rotate(-40deg);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.advantages-slider__swiper.visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

/* Анимация для заголовка */
.advantages-slider__title {
  opacity: 0;
  transform: translateY(-100px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.advantages-slider__title.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Плавное появление текста */
.advantages-slider__text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.advantages-slider__text.visible {
  opacity: 1;
  transform: translateY(0);
}

.advantages-info-text {
  opacity: 0;
  transform: translateY(-30px) rotate(-15deg); /* Начальная позиция сверху и с наклоном */
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.advantages-info-text.visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg); /* Конечная позиция - без наклона */
}

/* Анимация для заголовка и текста слайда */
.advantages-slider__slide-title, .advantages-slider__slide-text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.advantages-slider__slide-title.visible, .advantages-slider__slide-text.visible {
  opacity: 1;
  transform: translateY(0);
}






/* АДАПТИВ */
@media (max-width: 120rem) {
  .skills__items {
    flex: 1 1 calc(33.3% - 2.75rem); 
  }
}

@media (max-width: 109rem) {
  .equipment__items {
    display: flex;
    flex-direction: column;
  }

  .equipment__item {
    margin-top: 1.25rem;
  }
}

@media (max-width: 100rem) {
  .main__info {
    column-gap: 1rem;
  }

  .main__title {
    font-size: 3rem;
  }

  .skills__items {
    flex: 1 1 calc(50% - 2.75rem); 
  }

  .adaptations__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .adaptations__group {
    grid-template-columns: repeat(2, 1fr);
  }
  

  .adaptations__group {
    grid-column: span 2;
  }

  .adaptations__text {
    font-size: 1.6rem;
  }

  .adaptations__number {
    font-size: 0.9rem;
  }

  .adaptations__hr {
    display: none;
  }

  .purity__info {
    flex-direction: column-reverse;
    align-items: center;
    gap: 3rem;
  }

  .purity__info > img {
    order: 1;
    width: 100%;
    height: auto;
  }

  .purity__item-title {
    width: 100%;
    order: 2;
    padding: 2rem;
    row-gap: 3rem;
    align-items: flex-start;
    text-align: center;
  }

  .purity__title {
    font-size: 3rem;
    line-height: 110%;
    text-align: left;
  }

  .purity__item-texts {
    order: 3;
    gap: 1.5rem;
    align-items: center;
  }

  .purity__item-text {
    max-width: 28rem;
    margin-left: 0 !important;
  }

  .purity__union {
    display: none;
  }

  .purity__item-link {
    order: 4;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    width: 100%;
  }

  .purity__item-img {
    width: 100%;
    max-width: 32rem;
  }

  .purity__item-img-link {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 90rem) {
  .catalog__items {
    flex-direction: column;
    row-gap: 2rem;
  }
  
  .advantages-slider__wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto;
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .advantages-slider__pagination {
    order: 1;
    position: static;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
  }

  .advantages-slider__pagination .current {
    font-size: 1.75rem;
    color: #4AA3DB;
    margin-right: 1rem;
  }

  .advantages-slider__pagination .fraction {
    flex-direction: row;
    align-items: center;
    position: static;
  }

  .advantages-slider__pagination .divider {
    transform: none;
    width: 2rem;
    height: 1px;
    margin: 0 1rem;
    position: static;
    background: #777;
    opacity: 0.5;
  }

  .advantages-slider__pagination .total {
    margin: 0;
    font-size: 1.25rem;
    color: #7C88A0;
  }

  .advantages-slider__swiper {
    order: 2;
    width: 100%;
    height: auto;
  }

  .advantages-slider__item {
    height: 30rem;
  }

  .advantages-slider__text {
    order: 3;
    position: static;
    transform: none;
    width: 100%;
    max-width: 36rem;
    padding: 0 1rem;
    text-align: center;
    color: white;
  }

  .advantages-slider__slide-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #F88628;
  }

  .advantages-slider__slide-text {
    font-size: 1rem;
    line-height: 1.4;
  }

  .advantages-slider__wrapper {
    height: 85vh;
  }

  .advantages-slider__title {
    font-size: 2.5rem;
  }

  .gallery-slider_item {
    width: 60rem !important; 
  }

  .property__items {
    display: flex;
    flex-direction: column;
  }

  .property__info-arrow {
    display: flex;
  }
  
  .footer__container {
    margin-top: 50.2rem;
  }

  .video__items {
    width: 100%;
    height: 135vh;
  }
}

@media (max-width: 80rem) {
  .header__nav {
    column-gap: 2rem;
  }

  .nav__items {
    column-gap: 1rem;
  }

  .main__info {
    column-gap: 0;
  }

  .main__info-text-img {
    width: 20rem;
  }

  .main__info-title-text {
    font-size: .95rem;
  }

  .main__title {
    font-size: 2.5rem;
  }
  
  .main__info-text-title {
    font-size: 1.8rem;
  }

  .main__titles-text {
    font-size: 1rem;
  }

  .dish__item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .dish__title {
    font-size: 1.9rem;
  }  


  .skills__scroll-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    flex-wrap: nowrap;
    padding-bottom: 10px;
    justify-content: flex-start;
  }

  .skills__items {
    flex: 0 0 auto; 
    min-width: 20rem; 
    scroll-snap-align: start;
  }

  .skills__scroll-container::-webkit-scrollbar {
    height: 8px;
  }

  .skills__scroll-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
  }

  .skills__scroll-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
  }

  .video__items {
    width: 100%;
    height: 120vh;
  }
}

@media (max-width: 64rem) {
  .header__nav {
    display: none;
  }

  .main__info-img {
    opacity: 1;
  }

  .burger-icon {
    display: flex;
    margin-left: 1rem;
  }

  .unioin {
    display: none;
  }

  .unioin-mobile {
    display: block;
    position: absolute;
    top: 7rem;
    right: 0;
    z-index: -1;
    opacity: .7;
  }

  .nav__icons > :not(.burger-icon) {
    display: none;
  }

  /* Стили для иконок в модальном меню */
  .mobile-sidebar__top-icons {
  display: flex;
  column-gap: 1.4rem;
  }

  .mobile-sidebar__profile-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  }

  .mobile-sidebar__profile-btn img,
  .mobile-sidebar__basket img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
  }

  .mobile-sidebar__profile-btn:hover img,
  .mobile-sidebar__basket:hover img {
  transform: scale(1.1);
  }

  .main__info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .main__titles {
    margin-top: 2rem;
  }

  .main__info-text-title {
    font-size: 2rem;
  }

  .main__info-title {
    margin-left: auto;
    margin-right: auto;
  }
  
  .main__info-text {
    margin-left: auto;
    margin-right: auto;
  }

  .main__img {
    width: 100%;
    max-width: 26rem;
    height: auto;
    margin-left: 0;
  }

  .desktop-main {
    display: none;
  }

  .mobile-main {
    display: block;
  }

  .main__title {
    margin-top: 2rem;
  }

  .main__info-title-text {
    gap: 2rem;
  }

  .main__info-title-btn {
    margin-top: 3rem;
  }

  .main__info-text-img {
    margin-top: 2rem;
  }

  .about-slider_title {
  }

  .advantages-slider__wrapper {
    height: 80vh;
  }

  .advantages-slider__swiper {
    width: 90%;
  }

  .swiper-slide {
    height: 28rem;
  }

  .advantages-slider__item {
    height: 28rem;
    border-radius: 2rem;
  }

  .swiper {
    height: 35rem;
    padding: 0 10%;
    margin: 0 -10%;
  }

  .about-slider_item {
    width: 36rem !important;
    height: 30rem !important;
    border-radius: 2rem;
    padding: 2rem;
  }

  .about-slider_title-info {
    max-width: 16rem;
  }

  .about-slider_text {
    font-size: 1rem;
    max-width: 18rem;
  }

  .slide-number {
    width: 38px;
    height: 38px;
    padding-top: 0.65rem;
    font-size: 0.9rem;
  }

  .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.8);
  }

  .swiper-slide-prev {
    transform: translate3d(-110%, 0, -500px) scale(0.8);
  }

  .swiper-slide-next {
    transform: translate3d(110%, 0, -500px) scale(0.8);
  }

  .swiper-slide-prev-prev {
    transform: translate3d(-200%, 0, -600px) scale(0.7);
  }

  .swiper-slide-next-next {
    transform: translate3d(200%, 0, -600px) scale(0.7);
  }

  .advantages-slider__title {
    font-size: 2rem;
  }

  .purity__item-texts {
    flex-wrap: wrap;
    order: 3;
    gap: 1.5rem;
    align-items: center;
  }

  .purity__title  {
    font-size: 2.5rem;
  }

  .purity__item-text {
    text-align: left;
  }

  .purity__item-img {
    width: 40%;
    max-width: 31rem;
    padding-left: 0.5rem !important;
    padding: 1rem;
  }

  .purity__item-img {
    height: 19.75rem;
  }

  .application__items {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    text-align: center;
  }

  .application__item-info {
    order: 1;
    align-items: center;
  }

  .application__title {
    font-size: 2.25rem;
    text-align: left;
    max-width: 90%;
  }

  .application__text {
    margin-top: 1.5rem;
    text-align: left;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 28rem;
  }

  .application__item-texts {
    display: flex;
    flex-direction: column;
  }

  .application__item-img-mb {
    display: block;
    padding: 3rem 4rem 0 4rem;
    background: linear-gradient(to top, 
      #4AA3DB,
      #4AA3DB80 35%,   
      #3A3B47 55%   
    );
    border-radius: 3.75rem;
    display: flex;
    justify-content: center;
    margin-top: 2.9rem;
  }

  .application__item-img {
    display: none;
  }

  .application__item-img img {
    width: 100%;
    height: auto;
  }

  .application__item-text {
    order: 3;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .application__item {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }

  .application__item img {
    width: 100%;
    max-width: 10rem;
  }

  .application-block {
    width: 13rem;
    height: 13rem;
    padding: 1rem;
  }

  .application-block img {
    max-width: 20%;
  }

  .application__union {
    display: none;
  }

  .gallery-slider_item {
    width: 45rem !important; 
  }

  .video__info-title {
    flex-direction: column;
  }

  .video__title-text {
    margin-top: 1.25rem;
  }

  .video__title {
    font-size: 2.75rem;
  }

  .video__items {
    width: 100%;
    height: 53vh;
  }
}

@media (max-width: 55rem) { 
  .main__info-text-title {
    font-size: 1.8rem;
  }

  .main__title {
    font-size: 2rem;
  }

  .adaptations__items {
    grid-template-columns: 2fr;
  }

  .adaptations__group {
    grid-column: span 2;
    grid-template-columns: repeat(2, 1fr);
  }

  .adaptations__text {
    font-size: 1.4rem;
  }

  .adaptations__number {
    font-size: 0.8rem;
  }

  .adaptations__hr {
    margin-left: 2rem;
    width: 15px;
  }

  .adaptations__container {
    margin-top: 10rem;
  }

  .about-slider_item {
    width: 30rem !important;
    height: 22rem !important;
    border-radius: 2rem;
    padding: 2rem;
  }

  .swiper {
    height: 29rem;
    padding: 0 10%;
    margin: 0 -10%;
  }

  .about-slider_pagination {
    left: 45%;
    bottom: 1rem;
  }
  
  .about-slider_title {
    font-size: 1.9rem;
  }

  .swiper-wrapper {
    height: 80% !important;
  }

  .eat__title-text {
    display: none;
  }

  .eat__text {
    margin-top: 1rem;
}

  .eat__title-text-mb {
    display: block;
    margin-top: 1.9rem;
  }

  .eat__title-text-circle {
    width: 100%;
    max-width: 14rem;
  }

  .video__items {
    width: 100%;
    height: 48vh;
  }
}

@media (max-width: 48rem) {
  .main__info-text-title {
    font-size: 1.5rem;
  }

  .main__img {
    margin-top: 3rem;
  }

  .main__title {
    margin-top: 1rem;
  }

  .main__info-title-btn {
    margin-top: 2rem;
  }
  
  .main__info {
    display: flex;
    flex-direction: column;
  }

  .main__info-title-text {
    display: none;
  }

  .main__info-text-img {
    width: 23rem;
  }

  .dish__item-infos.fade-in-up {
    height: 40rem;
  }

  .about-slider_item {
    width: 25rem !important;
    height: 20rem !important;
    border-radius: 2rem;
    padding: 2rem;
  }

  p:where(:not([class]):not(:last-child)) {
    max-width: 15.5rem;
  }

  .about-slider_item {
    padding: 1rem;
  }

  .adaptations__items {
    display: none;
  }

  .adaptations__info-text {
    display: none;
  }

  .adaptations__items-mb {
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    row-gap: .6rem;
    margin-top: 2.9rem;
  }

  .adaptations__item-mb {
    display: flex;
    align-items: center;
    column-gap: .9rem;
  }

  .adaptations__number {
    margin: 0;
  }

  .adaptations__info-text-mb {
    display: inline-block;
    width: 100%;
    margin-top: 2.9rem;
    max-width: 20rem;
  }

  .application-block {
    width: 10rem;
    height: 10rem;
    padding: 1rem;
  }

  .application__item img {
    width: 100%;
    max-width: 10rem;
    height: 10rem;
  }

  .application-block img {
    max-width: 20%;
    height: auto;
    margin: 0;
    margin-top: auto;
  }

  .equipment__title {
    font-size: 2.75rem;
  }

  .gallery-slider_item {
    width: 30rem !important; 
  }

  .property__item-info {
    display: flex;
    flex-direction: column;
  }

  .property_title {
    font-size: 2.75rem;
  }
  .footer__container {
    margin-top: 90.2rem;
  }

  .footer-nav__items {
    flex-direction: column;
    row-gap: 1.25rem;
  }

  .video__items {
    width: 100%;
    height: 41vh;
  }

  .purity__item-img-link {
    margin-left: 2rem;
    margin-right: 1rem;
  }

  .purity__item-img {
    width: 100%;
  }

  .property__info-arrow {
    display: none;
  }
}

@media (max-width: 40rem) {
  .adaptations__items {
    grid-template-columns: 1fr;
  }

  .adaptations__group {
    grid-column: span 1;
    grid-template-columns: repeat(1, 1fr);
  }

  .adaptations__text {
    font-size: 1.4rem;
  }

  .adaptations__number {
    font-size: 0.8rem;
  }

  .adaptations__hr {
    margin-left: 2rem;
    width: 15px;
  }

  .adaptations__container {
    margin-top: 10rem;
  }

  .dish__img {
    height: 12rem;
  }

  .dish__info-title {
    column-gap: 2rem;
  }

  .eat__title {
    font-size: 1.5rem;
  } 

  .equipment__title {
    font-size: 1.75rem;
  }

  .video__items {
    width: 100%;
    height: 36vh;
  }
}

@media (max-width: 32rem) {
  .dish__container {
    margin-top: 6rem;
  }

  .dish__img {
    height: 5rem;
    margin-top: 2rem;
  }
  .dish__info-title {
    column-gap: 2rem;
  }

  .dish__title {
    font-size: 1.9rem;
  }

  .dish__info-title {
    flex-direction: column;
  }

  .dish__info-text {
    margin-top: 1.25rem;
  }

  .dish__item-title {
    margin-top: 0;
    font-size: 1rem;
  }

  .dish__img {
    height: 10rem;
    width: 100%;
    margin-top: 2rem;
  } 

  .dish__item-infos-text {
    max-width: 100%;
  }

  .dish__item-infos.fade-in-up {
    height: 29rem;
  }

  .gallery-slider_item {
    width: 25rem !important; 
  }

  .main__info-arrow {
    display: none;
  }

  .dish__item-info {
    padding: .5rem .5rem 0 .5rem;
  }

  .skills__title {
    font-size: 1.25rem;
    margin-top: 10rem;
  }

  .skills__item-text {
    line-height: 110%;
  }

  .skills__items {
    margin-top: 0;
    margin-right: 0;
    max-width: 20rem;
    padding: .5rem .5rem 1rem 1rem
  }

  .skills__scroll-container {
    column-gap: 1rem;
  }

  .skills__infos {
    padding: 1.5rem 0 1.5rem 1.5rem;
  }

  .skills__item-title {
    font-size: 1rem;
  }

  .skills__container {
    margin-top: 6rem;
  }

  .about-slider {
    margin-top: 6rem;
  }

  .video__items {
    width: 100%;
    height: 27vh;
  }

  .video__title {
    font-size: 1.9rem;
  }

  .video__container {
    margin-top: 6rem;
  }
}

@media (max-width: 26.5rem) {
  .purity__container {
    margin-top: 6rem;
  }

  .purity__items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .purity__item-title {
    max-width: 85%;
  }

  .purity__item-img {
    width: 50%;
    max-width: 20rem;
  }
  
  .application__container {
    margin-top: 6rem;
  }

  .application__item {
    gap: 1rem;
  }

  .application__item img {
    width: 100%;
    max-width: 8rem;
    height: 8rem;
  }

  .application-block img {
    max-width: 25%;
    height: auto;
  }

  .application-block {
    width: 8rem;
    height: 8rem;
    padding: .9rem;
  }

  .equipment__container {
    margin-top: 6rem;
  }

  .gallery-slider {
    margin-top: 6rem;
  }

  .property__container {
    margin-top: 6rem;
  }

  .eat__container {
    margin-top: 6rem;
  }

  .property_title {
    font-size: 1.9rem;
  }

  .vertical {
    width: 18.87rem;
    left: -20%;
  }

  .vertical-text {
    left: 7%;
  }

  .horizontal1 {
    width: 10.7rem;
    bottom: 13%;
  }

  .horizontal2 {
    width: 9rem;
    bottom: 10%;
  }

  .horizontal-text-right {
    bottom: 6%;
  }
}

@media (max-width: 24rem) {

  .main__info-title-btn {
    width: 15rem;
  }

  .main__btn-cen {
    font-size: 1rem;
  }

  .header__container {
    column-gap: .8rem;
  }

  .nav__icons {
    column-gap: .8rem;
  }

  .burger-icon {
    margin-left: .6rem;
  }

  .header__logo {
    width: 50%;
  }
  
  .main__info-text-title {
    font-size: 1.25rem;
  }

  .main__img-content-text {
    margin-top: 2rem;
  }

  .main__info-text-img {
    width: 19rem;
  }

  .dish__img {
    height: 8rem;
  }

  .gallery-slider_item {
    width: 20rem !important; 
    height: 20rem !important;
  }

  .skills__title {
    max-width: 18rem;
  }

  .skills__item-title {
    max-width: 14rem;
  }

  .about-slider_title {
    padding-left: .9rem;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
  }

  .about-slider_title-info {
    font-size: 1rem;
    max-width: 10rem;
  }

  .about-slider_text {
    font-size: .9rem;
  }

  .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.6);
  }

  .swiper-slide-prev {
    margin-right: 0 !important;
  }

  .swiper-slide-next {
    margin-left: 0 !important;
  }

  .about-slider_info {
    padding-left: 5rem !important;
  }

  .about-slider_item {
    width: 20rem !important;
    margin-right: 0 !important;
    margin-left: .3rem !important;
  }

  .about-slider_pagination {
    left: 37%;
  }

  .adaptations__union {
    opacity: .6;
    top: 0;
    left: -11rem;
  } 
  
  .adaptations__text {
    font-size: 1.25rem;
    white-space: wrap;
    line-height: 110%;
  }

  .advantages-slider__title {
    font-size: 1.75rem;
  }

  .purity__info > img {
    width: 100%;
    border-radius: 2.5rem;
  }

  .purity__item-title {
    border-radius: 2.5rem;
  }

  .purity__title {
    font-size: 1.9rem;
  }

  .purity__item-img-title {
    font-size: 1rem;
  }

  .purity__text-span {
    font-size: .75rem;
  }

  .purity__item-img {
    width: 50%;
    max-width: 30rem;
    border-radius: 1.9rem;
  }

  .purity__item-link {
    gap: 1rem;
  }

  .video__title {
    font-size: 1.9rem;
  }

  .video__info-title {
    flex-direction: column;
  }

  .video__title-text {
    margin-top: 1.25rem;
  }

  .video__items {
    width: 100%;
    height: 21vh;
  }
  
  .google-text, .app-text {
    font-size: .5rem;
    text-align: left;
  }

  .application__item img {
    width: 100%;
    max-width: 6rem;
    height: 6rem;
  }

  .application-block img {
    max-width: 25%;
    height: auto;
  }

  .application-block {
    width: 6rem;
    height: 6rem;
    padding: .9rem;
  }

  .application__item-img-mb {
    padding: 1rem 2rem 0 1rem;
  }

  .property__info-text h3 {
    line-height: 110%;
  }

  .property__info-text {
    padding: 1rem;
    border-radius: 1.75rem;
  }

  .property__info-text p {
    line-height: 110%;
    white-space: wrap;
  }
}

@media (max-width: 20rem) { 
  .dish__title {
    font-size: 1.6rem;
  }

  .dish__item {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }

  .dish__item-infos.fade-in-up {
    height: 27rem;
  }

  .dish__item-info {
    padding: 2rem 2rem 0 2rem;
  }

  .video__title {
    font-size: 1.6rem;
  }

  .application__title {
    font-size: 1.6rem;
  }

  .application__item-img-mb {
    border-radius: 2.75rem;
  }

  .equipment__item-text p {
    line-height: 110%;
    white-space: wrap;
  }

  .equipment__item {
    padding-left: 1rem;
  }

  .equipment__title {
    font-size: 1.6rem;
  }

  .property_title {
    font-size: 1.6rem;
  }

  .vertical {
    width: 14.87rem;
    left: -20%;
  }

  .vertical-text {
    left: 7%;
  }

  .horizontal1 {
    width: 7.7rem;
    bottom: 13%;
  }

  .horizontal-text-left {
    bottom: 8%;
  }

  .horizontal2 {
    width: 7rem;
    bottom: 10%;
  }

  .horizontal-text-right {
    bottom: 4%;
  }

  .footer__span  {
    text-align: center;
  }
}
/* End */


/* Start:/local/templates/gurmaster/css/card-product.css?17455266524483*/
.card-product__info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.card-product__link {
    position: relative;
    display: flex;
    align-items: center;
}

.card-product__item-cards {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    background-color: #3A3B47;
    padding: 0.6rem;
    border-radius: 1.6rem;
    transition: background 0.3s ease;
}
  
.card-product__cards {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: none;
    border: none;
    border-radius: 1.6rem;
    height: 8.75rem;
    cursor: pointer;
}
  
.card-product__cards::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: 1.6rem;
    background: linear-gradient(to top, #F88628, #F8862880 10%, #00000033 38%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
  
.card-product__cards:hover::before {
    opacity: 1;
}
  
.card-product__cards.cards-active::before {
    opacity: 1;
}

.card-product__img {
    display: none;
}
  .card-product__img.active {
    display: block;
}

.card-product__items-text {
    display: flex;
    flex-direction: column;
}

.card-product__title {
    font-family: var(--font-family-title);
    font-size: 3.75rem;
    line-height: 100%;
}

.card-product__text {
    width: 100%;
    max-width: 38rem;
    font-size: 1.25rem;
    line-height: 100%;
    margin-top: 2.25rem;
}

/* card-product__infos */
.card-product__infos {
    position: relative;
    z-index: -2;
    background: url(/local/templates/gurmaster/image/cardProduct/infos.png) no-repeat;
    background-position: center;
    background-size: auto;
}

.card-product__title {
    width: 100%;
    max-width: 47rem;
    font-size: 2.5rem;
}

.card-product__img-infos {
    position: absolute;
    z-index: -1;
    right: 11rem;
    bottom: 14rem;
}

.card-product-skills__scroll-container{
    display: flex;
    column-gap: 0;
    padding: 1rem 0;
    max-width: 100%;
    overflow: hidden;
    transition: overflow 0.3s ease-in-out;
}

.card-product-skills__item-title {
    margin-top: 1.875rem;
    font-size: 1.25rem;
    line-height: 100%;
    text-transform: inherit;
    width: 100%;
    max-width: 17rem;
}

/* SLIDER */
.card-product-advantages-slider__item:nth-child(1) {
    background: url(/local/templates/gurmaster/image/cardProduct/slide.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
  
.card-product-advantages-slider__item:nth-child(2) {
    background: url(/local/templates/gurmaster/image/cardProduct/slide.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
  
.card-product-advantages-slider__item:nth-child(3) {
    background: url(/local/templates/gurmaster/image/cardProduct/slide.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
  
.card-product-advantages-slider__item:nth-child(4) {
    background: url(/local/templates/gurmaster/image/cardProduct/slide.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
  
.card-product-advantages-slider__item:nth-child(5) {
    background: url(/local/templates/gurmaster/image/cardProduct/slide.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}


/* DISH */
.card-product-dish__item {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.card-product-dish__item-info {
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.card-product-dish__item-title {
    width: 100%;
    max-width: 41rem;
    font-family: var(--font-family-title);
    font-size: 2.5rem;
    line-height: 110%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.card-product-dish__item-infos-text {
    width: 100%;
    max-width: 34rem;
    font-size: 1.125rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.card-product-dish__item-number {
    margin-left: auto;
    margin-right: 1rem;
    margin-top: 1rem;
}

.card-product-dish__info-title {
    display: none;
}
/* End */


/* Start:/local/templates/gurmaster/css/fonts.css?1744989510202*/
@font-face {
    font-family: 'phonk-sans'; 
    src: url('/local/templates/gurmaster/css/../fonts/phonk-sans-light.otf');
}

@font-face {
    font-family: 'Euclid'; 
    src: url('/local/templates/gurmaster/css/../fonts/Euclid Circular A Light.ttf');
}
/* End */


/* Start:/local/templates/gurmaster/css/blog.css?17449900017291*/
.blog__container {
    margin-top: 6rem;
}

.blog__title {
    font-family: var(--font-family-title);
    font-size: 3.75rem;
}

.blog__buttons {
    display: flex;
    column-gap: 1rem;
    margin-top: 3.75rem;
}

.blog__btn {
    border: none;
    border-radius: 3.75rem;
    padding: 1.125rem 1.4rem;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.blog__btn.active {
    background-color: #4AA3DB;
    color: #F9FDFF;
}

.blog__btn:not(.active) {
    background: none;
    color: #7C88A0;
    border: 1px solid #7C88A0;
}

.blog__btn:not(.active):hover {
    background-color: #4AA3DB;
    border: none;
    color: #F9FDFF;
}

.blog__info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.8rem;
    margin-top: 3.75rem;
}

.blog__items {
    min-height: 38rem;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    border-radius: 3.75rem;
    cursor: pointer;
}

.blog__items:nth-child(1) {
  background: url('/image/blog/blog1.png');
}

.blog__items:nth-child(2) {
  background: url('/image/blog/blog2.png');
}

.blog__items:nth-child(3) {
  background: url('/image/blog/blog3.png');
}

.blog__items:nth-child(4) {
  background: url('/image/blog/blog4.png');
}

.blog__items:nth-child(5) {
  background: url('/image/blog/blog5.png');
}

.blog__items:nth-child(6) {
  background: url('/image/blog/blog6.png');
}

.blog__item {
    display: flex;
    flex-direction: column;
    border-radius: 3.75rem;
    margin-top: 28rem;
    padding: 2.75rem;
    padding-top: 5rem;
    background: linear-gradient(to bottom, 
    hsla(0, 0%, 50%, .5),
    #3A3B4700 50%,
    #F88628BF); 
    backdrop-filter: blur(.4rem);
    -webkit-backdrop-filter: blur(.4rem);
}

.blog-blue {
    background: linear-gradient(to bottom, 
    hsla(0, 0%, 50%, .5),
    #3A3B4700 50%,
    #4AA3DB); 
}

.blog__item-title {
    width: 100%;
    max-width: 17rem;
    line-height: 100%;
    font-size: 1.75rem;
    text-transform: initial;
    margin-bottom: 1.9rem;
}

.blog__item-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.blog__item-text-img {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.blog__item-text-img:nth-child(2) {
    margin-bottom: 0;
}

.blog__item-btn {
    margin-bottom: .5rem;
    align-self: flex-end;
    background: #F9FDFF;
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.blog__item-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* collaboration */
.collaboration__container{
    margin-top: 14rem;
    padding-bottom: 20rem;
}

.collaboration__title {
    font-family: var(--font-family-title);
    font-size: 3.75rem;
    line-height: 100%;
}

.collaboration__items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 2.75rem;
    margin-top: 3.75rem;
}

.collaboration__item {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 2.75rem;
    background-color: #3A3B47;
    border-radius: 3.75rem;
    padding: 2.75rem;
    padding-bottom: 4rem;
}

.collaboration__item-title {
    font-family: var(--font-family-title);
    font-size: 1.375rem;
    line-height: 100%;
    margin-top: 1.9rem;
}

.collaboration__item-text {
    width: 100%;
    max-width: 22rem;
    font-size: 1.125rem;
    line-height: 120%;
    color: #7C88A0;
    margin-top: 1.25rem;
}

.collaboration__item-link {
    position: relative;
    z-index: 1;
}

.collaboration__item-link::before {
    content: '';
    position: absolute;
    z-index: 10;
    width: 3.75rem;
    height: 3.75rem;
    bottom: -8.5%;
    left: 40%;
    border-radius: 50%;
    background-color: #4AA3DB;
    cursor: pointer;
}

.collaboration__item-link::after {
    content: '';
    position: absolute;
    z-index: 10;
    width: 3.75rem;
    height: 3.75rem;
    bottom: -8.5%;
    left: 40%;
    background: url(/local/templates/gurmaster/image/about/send.png) no-repeat center;
    cursor: pointer;
}



@media (max-width: 75rem) {
    .collaboration__items {
      flex-direction: column;
      align-items: center;
      row-gap: 1rem;
    }
  
    .collaboration__item {
      flex-direction: column;
      text-align: center;
    }
  
    .collaboration__item-text {
      max-width: 100%;
    }
  
    .collaboration__item-link::before,
    .collaboration__item-link::after {
      left: 50%;
      transform: translateX(-50%);
    }
  }

@media (max-width: 64rem) {
    .blog__title {
      font-size: 2.75rem;
    }
  
    .blog__buttons {
      flex-wrap: wrap;
      row-gap: 1rem;
      justify-content: center;
    }
  
    .blog__btn {
      font-size: 1.125rem;
      padding: 1rem 1.25rem;
    }
  
    .blog__info {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  
    .blog__item {
      margin-top: 22rem;
      padding: 2rem;
      padding-top: 4rem;
    }

    .blog__items {
        min-height: 35rem;
    }
  
    .blog__item-title {
      font-size: 1.5rem;
      max-width: 100%;
      margin-bottom: 1.5rem;
    }
  
    .blog__item-text-img img {
      width: 1.5rem;
      height: auto;
    }
  
    .blog__item-btn {
      width: 2.75rem;
      height: 2.75rem;
    }
  }
  
  @media (max-width: 48rem) {
    .blog__title {
      font-size: 2.25rem;
      text-align: center;
      line-height: 100%;
    }
  
    .blog__info {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .blog__item {
      margin-top: 20rem;
      padding: 2rem;
      padding-top: 3.5rem;
    }
  
    .blog__items {
      min-height: 32rem;
      border-radius: 2.5rem;
    }
  
    .blog__item-title {
      font-size: 1.375rem;
    }
  
    .blog__item-text-img p {
      font-size: 1rem;
    }
  
    .blog__item-btn {
      width: 2.5rem;
      height: 2.5rem;
    }
  }
  
  @media (max-width: 30rem) {
    .blog__title {
      font-size: 2rem;
    }
  
    .blog__buttons {
      flex-direction: column;
      align-items: center;
      row-gap: 0.75rem;
    }
  
    .blog__btn {
      width: 100%;
      max-width: 20rem;
      text-align: center;
      font-size: 1.125rem;
      padding: 1rem 1.5rem;
    }
  
    .blog__info {
      gap: 1.5rem;
    }
  
    .blog__items {
      min-height: 29rem;
      border-radius: 2rem;
    }
  
    .blog__item {
      margin-top: 18rem;
      padding: 1.5rem;
      padding-top: 3rem;
    }
  
    .blog__item-title {
      font-size: 1.25rem;
      margin-bottom: 1.25rem;
    }
  
    .blog__item-text-img p {
      font-size: 0.95rem;
    }
  
    .blog__item-btn {
      width: 2.25rem;
      height: 2.25rem;
    }
  }
/* End */


/* Start:/local/templates/gurmaster/template_styles.css?1745676237154*/
.basket-input {
    border: none; background: transparent; outline: none;
    width: 2.5rem;
    height: 2.5rem;
}

.hidden {
    display: none;
}
/* End */
/* /local/templates/gurmaster/css/style.css?174552519370307 */
/* /local/templates/gurmaster/css/card-product.css?17455266524483 */
/* /local/templates/gurmaster/css/fonts.css?1744989510202 */
/* /local/templates/gurmaster/css/blog.css?17449900017291 */
/* /local/templates/gurmaster/template_styles.css?1745676237154 */
