/* Прописываем Silk Serif */
* {
  box-sizing: border-box; /* Обеспечивает, чтобы padding и border не выходили за пределы ширины элемента */
}
p{
  text-align: justify;
}
@font-face {
  font-family: 'Silk Serif';
  src: url('/fonts/SilkSerif-Bold.ttf') format('truetype'); /* ttf формат */
  font-weight: 700; /* или bold, medium в зависимости от того, какой стиль */
  font-style: normal; /* если есть курсив, можно добавить 'italic' */
}
@font-face {
  font-family: 'Silk Serif';
  src: url('/fonts/SilkSerif-Medium.ttf') format('truetype'); /* ttf формат */
  font-weight: 500; /* или bold, medium в зависимости от того, какой стиль */
  font-style: normal; /* если есть курсив, можно добавить 'italic' */
}

/* Прописываем Arial */
/* Прописываем Arial Regular */
@font-face {
  font-family: 'Arial';
  src: url(/fonts/ArialRegular.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Прописываем Arial Bold */
@font-face {
  font-family: 'Arial';
  src: url(/fonts/ArialBold.ttf) format('truetype');
  font-weight: bold; /* bold = 700 */
  font-style: normal;
}

/* Прописываем Arial Medium */
@font-face {
  font-family: 'Arial';
  src: url(/fonts/ArialRegular.ttf) format('truetype');
  font-weight: 500; /* медиум = 500 */
  font-style: normal;
}

html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial';

  background: #f7f6f3;
  /* Цвет фона страницы */
  height: 100%;
  scroll-behavior: smooth;
  /* Высота страницы на всю высоту окна */
  overflow-x: hidden;
  width: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  /* Применить box-sizing ко всем элементам */
}

h1,
h2,
h3,
.bold-text {
  font-family: 'Silk Serif';
  font-weight: bold;
}

.container {
  width: 100%;
  max-width: 1690px; /* Ширина контейнера */
  margin: 0 auto;
  padding: 0 20px; /* Отступы для внутреннего контента */
}

.top-section {
  height: 100vh;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  
  background-size: cover;
  
  position: relative;
}
.top-section .container{
  height: 100%;
}
.desk-video{
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.top-section__content {
  display: flex;
  flex-direction: column;
  padding-top: 29px;
  color: #fff;
  position: relative;
  z-index: 3;
}
.header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.logo {
  width: 58.077px;
  height: 64px;
  z-index: 20;
}
.header-list {
  display: flex;
  justify-content: space-between;
  max-width: 902px;
  width: 100%;
  align-items: center;
  font-family: Arial;
  z-index: 2;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}


.language-select {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  position: relative;
  cursor: pointer;
}
.language-select svg {
    transition: transform 0.3s ease;
}

.language-select.active svg {
    transform: rotate(180deg);
}

.language-select svg.rotated {
    transform: rotate(180deg);
}


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgb(0 0 0 / 29%); /* Полупрозрачный фон */
    padding: 8px 0;
    list-style: none;
    margin: 8px 0 0 0;
    display: none;
    width: 100px;
    border-radius: 4px;
    z-index: 100;
}

.language-select.active .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 8px 12px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: block;
    width: 100%;
    position: relative;
}

/* Гарантируем, что текст занимает всю область */
.dropdown-menu li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.dropdown-menu li:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Альтернативное решение - pointer-events */
.dropdown-menu li {
    pointer-events: auto;
}

.dropdown-menu li * {
    pointer-events: none;
}

.dropdown-menu li:hover {
    background: rgba(255, 255, 255, 0.2);
}

.top-section__main {
  display: flex;
  height: 100%;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
 
  position: relative;
  z-index: 2
  ;
  transition: opacity 0.3s ease; /* Анимация для перемещения */
}
.top-section__main.active {
  opacity: 0;
}
.line-bot {
 padding-top: 104px;
}
.top-subt{
  color: #FFF;
text-align: center;
font-family: Arial;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: -0.4px;
}
.top-section__main span {
  text-align: center;
  font-family: 'Silk Serif';
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.96px;
  padding-bottom: 64px;
}
h1 {
  color: #fff;
  font-family: 'Silk Serif';
  font-size: 200px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 240px */
  letter-spacing: -8px;
}
.top-section__subtittle {
  color: #fff;
  text-align: center;
  font-family: 'Silk Serif';
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  padding-bottom: 24px;
  line-height: 120%; /* 57.6px */
  letter-spacing: -1.92px;
}
p {
  font-size: 20px;
  font-family: 'Arial';
}
.header-list-hidden {
  display: none;
}
.burger-btn {
  display: none;
  z-index: 20;
}

.introduction-section {
  padding: 132px 0;

}
.column-content {
  display: flex;
  flex-direction: column;
}
h2 {
  color: #282828;
  font-family: 'Silk Serif';
  font-size: 124px;
  font-style: normal;
  font-weight: 500;
  line-height: 92%; /* 114.08px */
  letter-spacing: -4.96px;
  text-transform: uppercase;
}
.introduction-section h2 {
  max-width: 1384px;
  width: 100%;
}
.introduction-subtittle {
  padding-top: 64px;
  color: #282828;
  font-family: Arial;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 46.8px */
  letter-spacing: -0.72px;
  padding-bottom: 24px;
}
.small-text {
  color: #282828;
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.32px;
}
.small-text.introduction {
  max-width: 695px;
}
.introduction-content {
  display: flex;
  justify-content: space-between;
}
.introduction-content__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 24px;
  gap: 64px;
}
.introduction-content__text .small-text {
  max-width: 554px;
}
.introduction-content__footer {
  border-top: 1px solid #c0c0c0;
}
.introduction-content__footer p {
  padding-top: 24px;
  color: #282828;
  font-family: Arial;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 46.8px */
  letter-spacing: -0.72px;
}
.introduction-content__img img {
  width: 573px;
}
.introduction-content__hidden {
  display: none;
}
.freshwaters-section {
  padding-top: 124px;
  background-image: url(/img/freshwaters-bg.webp);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.freshwaters-top_block {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.freshwaters-top_block__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 143px;
}
.freshwaters-top_block__content img {
  max-width: 713px;
  width: 100%;
}
.freshwaters-top_block__content-text {
  height: 100%;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 695px;
  width: 100%;
}
.medium-text {
  color: #282828;
  font-family: Arial;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 46.8px */
  letter-spacing: -0.72px;
}

.freshwaters-bottom_block {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
.freshwaters-bottom_block__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.freshwaters-bottom_block__item-top {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding-top: 98px;
}

.freshwaters-bottom_block__item-top p {
  color: #282828;
  font-family: 'Silk Serif';
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 92%; /* 22.08px */
  letter-spacing: -0.96px;
}
.freshwaters-bottom_block__item-with-bg {
  /* background-image: url(/img/freshwaters-bottom_block__item-with-bg.webp);
    background-size: cover;
    background-position: center; */
  height: 910px;
  display: flex;
  align-items: end;
  width: 61%;
  position: relative;
}
.rules-overlay{
  display: none;
}
.freshwaters-bottom_block__item-with-bg img {
  position: absolute;
  width: 50vw;
  object-fit: cover;
  height: 100%;
}
.freshwaters-bottom_block__item-with-bg p {
  color: #fff;
  font-family: Arial;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 46.8px */
  letter-spacing: -0.72px;
  max-width: 795px;
  width: 100%;
  padding-left: 36px;
  z-index: 1;
  padding-bottom: 60px;
}
.freshwaters-bottom_block__item .small-text {
  max-width: 515px;
  width: 100%;
  padding-bottom: 60px;
}
.pride_section {
  padding-top: 183px;
  padding-bottom: 183px;
  background: #282828;
}
.pride_section .column-content {
  gap: 72px;
}
.pride_section img {
  width: 163px;
  height: 54px;
}
.pride_section .medium-text {
  color: #fff;
}
.magic-section {
  padding: 94px 0;
}
.magic-section__item {
  display: flex;
  justify-content: space-between;
  gap: 90px;
  flex-wrap: wrap;
  padding-top: 64px;
}
.magic-section__item-left {
  width: 35%;
  background-image: url(/img/magic-section__item-left.webp);
  background-size: cover;
  background-position: center;
}
.magic-section__item-right {
  width: 55%;
}
.magic-section__item-right-text {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.comment-text {
  color: #909090;
  font-family: Arial;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 26px */
  letter-spacing: -0.4px;
}
.magic-section__item-right-text__item {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 84px;
}
.magic-section__item-right-text__item .small-text {
  max-width: 557px;
  width: 100%;
}

.magic-section__item-right-text__item-img img {
  max-width: 403px;
  width: 100%;
}
.magic-section__item.top-item {
  padding-bottom: 64px;
  border-bottom: 1px solid #c0c0c0;
}

.magic-left_text {
  background: none !important;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.magic-right_img {
  background-image: url(/img/magic-section__item-right\ magic-right_img.webp);
  background-size: cover;
  background-position: center;
}
.rules-section {
  background-image: url(/img/rules-bg.webp);
  background-size: cover;
  background-position: center;
  padding-top: 92px;
  padding-bottom: 71px;
  overflow: hidden;
}

.rules-box {
  padding-top: 96px;
  max-width: 969px;
  width: 100%;
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 32px;
}
.rules-box-line {
  display: flex;
  align-items: center;
  gap: 100px;
}
.rules-box-line-item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #3c3c3c;
  width: 50%;
  padding-bottom: 32px;
}
.pb-item {
  padding-bottom: 83px;
}
.rules-box-line-item-logo {
  padding-bottom: 48px;
}
.rules-box-line-item-top_text {
  color: #f7f6f3;
  font-family: Arial;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.48px;
  padding-bottom: 24px;
}
.rules-box-line-item-bottom-text {
  color: #f7f6f3;
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.32px;
}
.rules-section h2 {
  color: #f7f6f3;
}
.seasonaly-section {
  padding-bottom: 108px;
  padding-top: 152px;
}
.seasonaly-box {
  padding-top: 64px;
  display: flex;
  align-items: end;
  gap: 74px;
}
.seasonaly-box-imgs {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.seasonaly-box-imgs img {
  width: 262px;
  height: 216px;
}
.seasonaly-box-imgs img:last-child {
  width: 480px;
  height: 699px;
}
.seasonaly-box__text {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.seasonaly-box__text-top {
  color: #282828;
  font-family: Arial;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 39px */
  letter-spacing: -0.6px;
}
.small-text b {
  font-weight: 700;
}
.comment-text.hidden {
  display: none;
}
.recipes-section {
  background-image: url(/img/recipes-bg.webp);
  background-size: cover;
  padding-top: 148px;
  padding-bottom: 88px;
}

.recipes-top {
  padding-top: 72px;
  display: flex;
  gap: 46px;
  padding-bottom: 72px;
  border-bottom: 1px solid #c0c0c0;
}
.recipes-top-img {
  width: 50%;
}
.recipes-top-img img {
  max-width: 709px;
  width: 100%;
}
.recipes-top-text {
  display: flex;
  align-items: end;
  flex-direction: column;
  justify-content: flex-end;
}
.recipes-top-text-top {
  color: #909090;
  font-family: Arial;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 26px */
  letter-spacing: -0.4px;
}
.recipes-top-text-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.recipes-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 72px;
  justify-content: space-between;
}
.recipes-box__item {
  width: 31%;
  height: 718px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  display: flex;
  background: #fff;
  padding: 36px;
  align-items: flex-start;
}
.recipes-box__item-img {
  width: 100%;
}
.recipes-box__item-name {
  color: #000;
  font-family: 'Silk Serif';
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 92%;
  letter-spacing: -0.96px;
}
.recipes-box__item-name span {
  color: #9e9e9e;
}
.recipes-section h2 {
  max-width: 1375px;
  width: 100%;
}
.thank-section {
  background-image: url(/img/thank.bg.webp);
  background-size: cover;
  padding-top: 148px;
  padding-bottom: 126px;
}
.thank-section h2 {
  max-width: 1636px;
  width: 100%;
}
.thank-box {
  padding-top: 48px;
  display: flex;
  gap: 48px;
  justify-content: space-between;
}
.thank-box img {
  max-width: 790px;
  width: 100%;
  height: 442px;
}
.thank-box__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.family-section {
  background-image: url(/img/family-bg.webp);
  background-size: cover;
  padding: 266px 0;
  background-position: center;
}
.family-box {
  display: flex;
  flex-direction: column;
}
.family-box-top {
  padding-bottom: 80px;
  border-bottom: 1px solid #fff;
  color: #fff;
  text-align: center;
  font-family: 'Silk Serif';
  font-size: 96px;
  font-style: normal;
  font-weight: 500;
  line-height: 90%; /* 86.4px */
  letter-spacing: -3.84px;
}
.family-box-bottom {
  display: flex;
  align-items: flex-start;
  gap: 85px;
  padding-top: 24px;
}
.family-box-bottom .small-text {
  color: #fff;
}

.family-box-bottom-text {
  max-width: 761px;
  color: #fff;
  font-family: Arial;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 39px */
  letter-spacing: -0.6px;
}
.you-section {
  padding: 87px 0;
}

.you-box-top {
  padding-bottom: 103px;
  border-bottom: 1px solid #c0c0c0;
  display: flex;
  gap: 84px;
}
.you-box-top img {
  max-width: 480px;
  width: 100%;
}
.you-box-medium {
  color: #282828;
  font-family: Arial;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 39px */
  letter-spacing: -0.6px;
}
.you-box-top-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.you-box-bottom {
  padding-top: 50px;
  color: #282828;
  text-align: center;
  font-family: Arial;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.48px;
  max-width: 826px;
  justify-self: center;
}
.you-img-hidden {
  display: none;
}
.you-box-top-right .small-text {
  display: none;
}
.my-section {
  padding-top: 122px;
  padding-bottom: 122px;
  background: #eee;
}
.my-section-box {
  display: flex;
  gap: 78px;
  align-items: center;
  justify-content: space-between;
}
.my-section-box-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.my-section-box-text-top {
  color: #282828;
  font-family: Arial;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 39px */
  letter-spacing: -0.6px;
}

.my-section-img {
  max-width: 826px;
  width: 100%;
}
.delivery-section {
background-image: url(/img/delivery-bg.webp);
background-size: cover;
padding-top: 100px;
padding-bottom: 80px;
}
.delivery-box {
    padding: 36px;
    background: #FFF;
    display: flex;
    align-items: center;
    gap: 80px;
    justify-content: space-between;
}

.delivery-box img{
    max-width: 892px;
    width: 100%;
}
.delivery-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.delivery-tittle {
    color: #282828;
font-family: "Silk Serif";
font-size: 72px;
font-style: normal;
font-weight: 500;
line-height: 92%; /* 66.24px */
letter-spacing: -2.88px;
text-transform: uppercase;
}
.delivery-subtittle {
    color: #282828;
font-family: Arial;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 130%; /* 20.8px */
letter-spacing: -0.32px;
max-width: 544px;
width: 100%;
}
.care-section {
background-image: url(/img/care-bg.webp);
background-size: cover;
padding-top: 42px;
padding-bottom: 91px;
}
.care-section h2{
    max-width: 1260px;
    width: 100%;
    padding-bottom: 282px;
    color: #FFF;

}
.care-bottom {
    padding-top: 32px;
    border-top: 1px solid #fff;
    display: flex;
    gap: 49px;
}
.care-bottom .small-text {
    color: #FFF;
max-width: 515px;
}

.nowrap{white-space: nowrap;}

.order-section{
    background-image: url(/img/order-bg.webp);
    background-size: cover;
    padding-top: 90px;
    padding-bottom: 122px;
}
 .order-content{padding:75px 115px;        
                border-top: 2px solid rgba(200, 200, 200, 0.2);            
                border-left:2px solid rgba(255, 255, 255, 0.2);
                border-right:2px solid rgba(255, 255, 255, 0.2);
                border-bottom: 2px solid rgba(255, 255, 255, 0.4);
                border-radius:25px;                
                color:#fff;
                max-width:1430px;
                margin: 0 auto; text-align:center; backdrop-filter: blur(35px);
 }

 @supports not (backdrop-filter: blur(35px)) {
    .order-content {background-color: rgba(83, 75, 64, 0.82); }
}

 .fonts26{font-size:22px;text-transform: uppercase;}
 .font-big{font-family: 'Silk Serif'; font-size:70px;text-transform: uppercase;margin:10px 0 20px;}

 .fonts20s{font-family: 'Silk Serif'; font-size:18px;}
 .fonts22s{font-family: 'Silk Serif'; font-size:20px; margin: 60px 0 10px;}
 .fonts20{line-height:26px;}

.footer {
    padding-top: 50px;
    padding-bottom: 48px;
    background-image: url(/img/footer-bg.webp);
    background-size: cover;
}
.footer-box{
    display: flex;
    flex-direction: column;
    gap: 90px;
}
.footer-top {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.footer-email {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-email-top {
    color: #909090;
font-family: Arial;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 130%; /* 26px */
letter-spacing: -0.4px;
}
.footer-link {
    color: #FFF;
font-family: "Silk Serif";
font-size: 48px;
font-style: normal;
font-weight: 500;
line-height: 120%; /* 57.6px */
letter-spacing: -1.92px;
}
.footer-bottom {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.footer-bottom-left {
    color: #909090;
font-family: Arial;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 130%; /* 20.8px */
letter-spacing: -0.32px;
}
.footer-bottom-right {
    color: #FFF;
font-family: "Silk Serif";
font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: 120%; /* 28.8px */
letter-spacing: -0.96px;
}
.mob-video{
    display: none;
}

.language-select {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 100;
}

.language-current {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.language-current span {
    font-size: 14px;
}

.language-toggle {
    display: none;
}

.language-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: none;
    z-index: 99;
}

.language-toggle:checked ~ .language-overlay {
    display: block;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 8px 0;
    margin-top: 8px;
    min-width: 80px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none;
}

.language-toggle:checked ~ .language-dropdown {
    opacity: 1;
    visibility: visible;
}

.language-dropdown li {
    padding: 0;
    margin: 0;
}

.language-dropdown a {
    display: block;
    color: white;
    padding: 8px 16px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.language-dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

/* Стиль для текущего языка в dropdown */
.language-dropdown a[href*="index-ru.html"] {
    background: rgba(255, 255, 255, 0.15);
    font-weight: 500;
}