body {
  padding: 0px;
  margin: 0px;
  overflow-x: hidden;
}
body.overflow.active {
  overflow: hidden;
}
/* fonts */
@font-face {
  font-family: Gill-Sans;
  src: url(../font/Gill-Sans.otf);
}
@font-face {
  font-family: Gill-Sans-Medium;
  src: url(../font/Gill-Sans-Medium.otf);
}
@font-face {
  font-family: Gill-Sans-Bold;
  src: url(../font/Gill-Sans-Bold.otf);
}
a {
  text-decoration: none;
  -webkit-transition: all 0.5s;
  transition: 0.5s;
}
a:hover {
  text-decoration: none;
  transition: 0.5s;
  -webkit-transition: all 0.5s;
  color: #0F6A44;
}
a:focus {
  text-decoration: none;
  outline: none;
}
ul {
  padding: 0;
  margin: 0;
}
li {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  outline: none;
  background:transparent;
  padding: 0;
}
button:focus {
  outline: none;
}
[type=reset], [type=submit], button, html [type=button] {
  cursor: pointer;
}
*,
*:focus,
*:focus-within {
  outline: none;
  outline-color: transparent;
  text-decoration: none;
}
.container {
  max-width: 1230px;
}
section.section-header-top {
  background: #0F6A44;
  padding: 10px 0;
}
header {
  position: fixed;
  top: 0px;
  width: 100%;
  color: #fff;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  z-index: 1000;
  left: 0;
  right: 0;
  background: #FFFFFF;
}
header.sticky {
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
}
.flex-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.drown-menu {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.drown-menu p {
  margin: 0;
  font-size: 16px;
  color: #fff;
}
.drown-menu svg {
  margin-left: 18px;
}
.social-networks ul {
  display: flex;
  align-items: center;
}
.social-networks ul li {
  margin-left: 34px;
}
.social-networks ul li:first-child {
  margin: 0;
}
.phone-number {
  margin: 0 57px 0 24px;
}
.phone-number a {
  font-size: 14px;
  color: #fff;
}
.drown-language {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-left: 24px;
}
.drown-language span {
  display: block;
  margin: 0 8px;
  font-size: 14px;
  color: #fff;
}
.block-right {
  display: flex;
  align-items: center;
}
header .logo a {
  display: flex;
  align-items: center;
}
.section-header {
  padding: 19px 0;
  background: #43895112;
}
header .logo a h3 {
  font-weight: bold;
  font-size: 24px;
  color: #1A1A1A;
  line-height: 100%;
  margin: 0;
  letter-spacing: 16%;
}
header .logo a p {
  color: #1A1A1A;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 8%;
  text-transform: uppercase;
  margin: 8px 0 0 0;
}
header .logo a div {
  margin-left: 16px;
}
header .menu ul {
  display: flex;
}
header .menu ul li {
  margin-right: 24px;
}
header .menu ul li:last-child {
  margin: 0;
}
header .menu ul li a {
  font-weight: 600;
  font-size: 16px;
  color: #1A1A1A;
}
header .menu ul li a:hover {
  color: #0F6A44;
}
section.section-banner {
  margin-top: 140px;
}
.slider-banner .item {
  position: relative;
  height: 621px;
}
.slider-banner .item::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  background: #1A1A1AB2;
}
.slider-banner .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-banner .item .heading-banner {
  position: absolute;
  top: 155px;
  bottom: 0;
  z-index: 2;
  width: 100%;
}
.slider-banner .item .heading-banner h3 {
   font-weight: 600;
  font-size: 28px;
  color: #fff;
  margin: 0;
}
.slider-banner .item .heading-banner h2 {
   font-weight: bold;
  font-size: 52px;
  color: #fff;
  margin: 14px 0 8px;
  line-height: 100%;
}


input[name="main-tabs"] {
  display: none;
}
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 35px;
}
.tabs-nav label {
  padding: 12px 45px;
  font-size: 24px;
  font-weight: 500;
  color: #333;
  border: 1px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.section-description {
  max-width: 800px;
  margin: 0 auto 50px;
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 16px;
}

#tab-news:checked ~ .tabs-nav label[for="tab-news"],
#tab-recipes:checked ~ .tabs-nav label[for="tab-recipes"],
#tab-events:checked ~ .tabs-nav label[for="tab-events"] {
  border-color: var(--gold);
  color: #0F6A44;
}

.tab-panel {
  display: none;
}

#tab-news:checked ~ .tabs-container #news-content,
#tab-recipes:checked ~ .tabs-container #recipes-content,
#tab-events:checked ~ .tabs-container #events-content {
   display: block;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px 15px;
  margin-bottom: 50px;
}
.event-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
  text-align: left;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.card-image-box {
  position: relative;
  height: 220px;
}

.card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 18px;
  right: 0;
  padding: 11px 12px;
  color:#FFFFFF;
  font-size: 9.9px;
  line-height: 100%;
  border-radius: 0;
  font-weight: normal;
}
.badge.online { background: var(--gold); }
.badge.onsite { background: var(--bright-green); }

.card-green-bar {
  background: #0F6A44;
  color: #fff;
  padding: 8px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 300;
}
.card-body {
  padding: 16px 18px;
}
.info-row {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.info-row .icon {
  font-size: 20px;
  margin-right: 15px;
  color: var(--bright-green);
}
.info-row .text {
  font-size: 18px;
  color: #222;
  font-weight: 400;
}

.details-link {
  display: inline-block;
  margin-top: 10px;
  color: #1A1A1A;
  font-size: 10px;
  text-decoration: none;
}

.load-more {
  background: #0F6A44;
  color: white;
  border: none;
  padding: 13px 32px;
  font-size: 24px;
  font-weight: 600;
  border-radius: 24px;
  cursor: pointer;
  transition: 0.3s;
}

.load-more:hover {
  background: var(--bright-green);
}

.empty-state {
  padding: 100px;
  color: #ccc;
  font-size: 20px;
}
:root {
  --dark-green: #0a4d2e;
  --bright-green: #00a651;
  --gold: #b38e44;
  --text-gray: #666;
  --border: #f0f0f0;
  --card-radius: 20px;
}
.card-green-bar span {
  font-size: 10.3px;
  color: #FFFFFF;
}
.info-row span.text-date {
  font-size: 10px;
  color: #333333;
  line-height: 100%;
}
.info-row span.text {
  font-size: 14px;
  color: #1A1A1A;
}
.tabs-wrapper {
  text-align: center;
}
.section {
  padding: 150px 0;
}
.bg {
  background: #FAFFFA;
}
.heading {
  text-align: center;
  margin-bottom: 10px;
}
.heading h2 {
   font-weight: 600;
  font-size: 40px;
  color: #1A1A1A;
  line-height: 100%;
  text-transform: uppercase;
  margin: 0;
}
.heading p {
  color: #6B7280;
  font-size: 18px;
  line-height: 30px;
  margin: 16px 0 0 0;
}
.news-card {
  width: 100%;
  max-width: 100%;
  padding: 25px 23px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px rgba(15, 106, 68, 0.25);
  border: 1px solid #D4D2E3;
  border-radius: 24px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}

.news-card__image-wrap {
  position: relative;
  height: 220px;
}

.news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__badge {
  position: absolute;
  bottom: 5px;
  left: 7px;
  background: #1a6d4f; /* Темно-зеленый фон плашки */
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
}

.news-card__content {
  padding: 12px 0 30px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}

.news-card__title {
  margin: 0 0 12px 0;
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
  font-weight: bold;
}

.news-card__description {
  margin: 0 0 0 0;
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
}

.news-card__link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6B7280; /* Цвет ссылки */
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.news-card__link svg {
  margin-top: 2px;
}
.col-lg-4.col-md-6.col-12 {
    margin-top: 40px;
}
.main-footer {
    background-color: #0F3D2A; /* Тот самый темно-зеленый */
    color: #ffffff;
    padding: 100px 0 35px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 60px;
}
.right-block-footer {
    display: flex;
    gap: 100px;
}
/* Брендинг */
.footer-brand-section {
    flex: 0 0 35%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 60px;
}

.footer-logo h2 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.footer-desc {
    color: #A0AEC0; /* Сероватый текст */
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Форма подписки */
.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 320px;
}

.sub-input {
    background: #F8FAFC;
    border: none;
    padding: 18px 25px;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
}

.sub-button {
    background: #718096; /* Цвет со скрина */
    color: white;
    border: none;
    padding: 18px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    width: fit-content;
    min-width: 150px;
}

.sub-button:hover {
    background: #4A5568;
}

/* Списки ссылок */
.footer-links h3 {
    font-size: 20px;
    font-weight: bold;
    color: #5D5A88; /* Цвет заголовков */
    margin-bottom: 40px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: #9795B5;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* Нижняя панель */
.footer-bottom {
  border-top: 1px solid #fff;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

/* Иконки как на скрине (квадратные со скруглением) */
.social-icons a {
    background: #E2E8F0;
    color: #2D3748;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #fff;
    transform: translateY(-3px);
}
.section-block .container {
  max-width: 100%;
  padding: 0;
}
.images-block {
  height: 608px;
}
.images-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-block h3 {
   font-weight: 600;
  color: #333333;
  font-size: 36px;
  margin: 0;
  line-height: 46px;
}
.content-block p {
  color: #333333;
  font-size: 18px;
  line-height: 30px;
  margin: 16px 0 40px;
}
.content-block {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  height: 100%;
  padding: 0 100px;
}
.flex-link-s {
  display: flex;
  width: 100%;
}
.flex-link-s a {
  background: #0F6A44;
  border: 1px solid #0F6A44;
  padding: 20px 56px;
  border-radius: 47.27px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
.flex-link-s a:last-child {
  color: #333333;
  background: transparent;
  border-color: #B8903F;
  font-weight: normal;
  margin-left: 24px;
}
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 60px;
}

.adv-main-card {
  background: url(../img/bg-advenges.jpg) no-repeat;
  background-size: cover;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  min-height: 594.3203125px;
  display: flex;
  align-items: flex-end;
  padding: 40px 46px 70px;
}

.adv-pattern {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}

.adv-main-content {
  position: relative;
  z-index: 2;
}

.adv-icon-large {
  margin-bottom: 25px;
}

.adv-main-title {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  line-height: 46px;
  margin: 0 0 12px 0;
}

.adv-main-subtitle {
  color:#FFFFFF;
  font-size: 26px;
  margin: 0;
}

/* --- Правая сетка карточек --- */
.adv-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
}

.adv-item {
  background: #fff;
  border: 1px solid #6B728099;
  border-radius: 16px;
  padding: 52px 30px 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.adv-item:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transform: translateY(-4px);
  border-color: #B8903F;
}

/* Золотистая рамка для первой карточки */
.adv-icon {
    margin-bottom: 28px;
}


.adv-text {
  font-size: 20px;
  font-weight: 500;
  color: #333333;
  line-height: 20px;
  margin: 0;
}

/* Адаптивность для планшетов и мобилок */
@media (max-width: 991px) {
    .advantages-grid {
        grid-template-columns: 1fr; /* В одну колонку */
    }
}

@media (max-width: 576px) {
    .adv-sub-grid {
        grid-template-columns: 1fr; /* Малые карточки тоже в одну колонку */
    }
    .adv-main-card {
        min-height: 320px;
        padding: 25px;
    }
    .adv-main-title {
        font-size: 24px;
    }
}
.flex-representatives {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 72px;
}
.flex-representatives .item {
  width: 223.99998474121094px;
  height: 223.99998474121094px;
  overflow: hidden;
  border-radius: 25px;
  margin-top: 32px;
  position: relative;
}
.flex-representatives .item img {
  width: 100%;
}
.flex-link {
  display: flex;
  margin-top: 24px;
}
.flex-link a {
   font-weight: 600;
  background: transparent;
  border: 1px solid #FFFFFF;
  padding: 12px 20px;
  font-size: 16px;
  margin-left: 24px;
  color: #FFFFFF;
  border-radius: 100px;
}
.flex-link a:hover {
  background: #C9A34E;
  border-color: #C9A34E;
}
.flex-link a:first-child {
  margin: 0;
}
.block-banner {
  margin-top: -80px;
}
.block-banner .item {
  background: #fff;
  border-radius: 15px;
  padding: 37px 24px 36px 38px;
  cursor: pointer;
  border: 1px solid #6B728099;
  transition: 0.5s;
}
.block-banner .item:hover {
  box-shadow: 0px 9px 20px 0px #6B728099;
}
.block-banner .item .flex-title {
  display: flex;
  align-items: center;
}
.block-banner .item .flex-title h3 {
   font-weight: 600;
  color: #333333;
  font-size: 22px;
  margin: 0 0 0 22px;
}
.block-banner .item h4 {
   font-weight: bold;
  color: #0F6A44;
  font-size: 50px;
  margin: 40px 0 0 0;
  line-height: 66px;
}
.flex-partners {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 70px;
}
.flex-partners .slider-partners {
  width: 75%;
  margin: 0 -15px;
}
.flex-partners .slider-partners .item {
  margin: 0 15px;
  overflow: hidden;
  border-radius: 20px;
}
.flex-partners .slider-partners .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.title-parners h3 {
  color: #333333;
  font-size: 36px;
  line-height: 100%;
  margin: 0 0 66px 0;
}
.slider-partners .slick-arrow {
  width: 32px;
  height: 32px;
  border-radius: 100px;
  background-position: center;
  background-image: url(../img/prev-icon.svg);
  background-repeat: no-repeat;
  background-color: #6B7280;
  font-size: 0;
  position: absolute;
  left: -30%;
  transition: 0.5s;
  top: 90px;
}
.slider-partners .slick-next {
  transform: rotate(180deg);
  left: -22%;
}
.slider-partners .slick-arrow:hover {
  background-color: #0F6A44;
}
.flex-partners.last-s .slider-partners .slick-arrow {
    top: 100px;
}
.restoran-block ul {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.restoran-block ul li {
  margin-right: 30px;
}
.restoran-block ul li button {
  font-size: 35px;
  color: #6B7280;
  line-height: 100%;
  padding-bottom: 10px;
  transition: 0.5s;
  white-space: nowrap;
}
.restoran-block ul li button.active {
  color: #333333;
  border-bottom: 1px solid #6B7280;
}
.item-slider {
  margin: 0 -15px;
}
.item-slider .item {
  background: #fff;
  border: 1px solid #D4D2E3;
  border-radius: 10px;
  position: relative;
  margin: 0 15px;
  cursor: pointer;
}
.item-slider .item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.item-slider .item:hover .block-position {
  opacity: 1;
  visibility: visible;
  background: #0F6A44B2;
}
.item-slider .item .block-position {
  transition: 0.5s;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  justify-content: center;
}
.item-slider .item .block-position a {
  border: 1px solid #FFFFFF;
  background: transparent;
  border-radius: 100px;
  padding: 12px 20px;
  font-size: 16px;
  color: #fff;
}
.item-slider .item .block-position a:first-child {
  margin-bottom: 22px;
}
.item-slider .item .block-position a:hover {
  background: #C9A34E;
  border-color: #C9A34E;
}
.item-slider .item h3 {
   font-weight: bold;
  color: #1A1A1A;
  font-size: 20px;
  line-height: 20px;
  margin: 0;
  padding: 29px 24px;
}
.item-slider .slick-arrow {
  width: 16px;
  height: 22px;
  background-image: url(../img/prev-new.png);
  background-repeat: no-repeat;
  font-size: 0;
  position: absolute;
  left: -10px;
  transition: 0.5s;
  top: 140px;
}
.item-slider .slick-next {
  transform: rotate(180deg);
  left: auto;
  right: -10px;
}
.item-slider {
  display: none;
}
div#first {
  display: block;
}
.slider-calendar {
  margin: 0 -15px;
}
.slider-calendar .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-content: center;
  height: 233.27027893066406px;
  width: 100%;
  margin: 0 15px;
  border-radius: 20px;
  padding: 0 70px 0 50px;
  background: #CDE9DA;
}
.slider-calendar .item:nth-child(2n) {
  background: #E5E7EB;
}
.slider-calendar .item span {
  color: #6B7280;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 10%;
}
.slider-calendar .item h3 {
   font-weight: 600;
  color: #333333;
  line-height: 28px;
  font-size: 22px;
  margin: 5px 0 0 0;
}
.slider-calendar .item .block-s {
  background: #FFFFFF;
  width: 103px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 16px;
}
.slider-calendar .item .block-s .h4 {
  color: #6B7280;
  font-size: 22px;
  line-height: 28px;
  margin: 0;
   font-weight: bold;
}
.slider-calendar .slick-arrow {
  width: 64px;
  height: 64px;
  background-image: url(../img/next-icon.png);
  background-repeat: no-repeat;
  font-size: 0;
  position: absolute;
  right: -80px;
  transition: 0.5s;
  top: 90px;
  z-index: 11;
}
.slider-calendar {
  margin-top: 54px;
}
.slider-calendar .slick-next {
  transform: rotate(180deg);
  left: -80px;
  right:auto;
}
/* mobile */
.mobile-burger {
  display: none;
}
.owerlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: #00000087;
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  z-index: 1111;
}
.toggle-nav {
  background: transparent;
  border: none;
  padding: 0;
  z-index: 999999;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.toggle-nav span {
  width: 25px;
  height: 3px;
  border-radius: 3px;
  background: #000;
  display: block;
  margin-bottom: 5px;
  transition: 0.5s;
}
.toggle-nav span:last-child {
  width: 20px;
  margin: 0;
  float: right;
}
.owerlay.active {
  opacity: 1;
  visibility: visible;
}
.toggle-nav.active span:first-child {
  width: 25px;
  transform: rotate(-45deg) translateY(5px);
}
.toggle-nav.active span:last-child {
  width: 25px;
  transform: rotate(45deg) translateY(-5px);
}
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 350px;
}
.about-section {
  border-top: 1px solid #6B7280;
  background: #fff;
  position: absolute;
  right: 0;
  left: 0;
  top: 147px;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all .4s ease 0s;
  -o-transition: all .4s ease 0s;
  transition: all .4s ease 0s;
  opacity: 0;
  visibility: hidden;
}
.about-section.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
.menu-drown {
  border-right: 1px solid #6B7280;
  padding-top: 24px;
  padding-bottom: 71px;
}

.menu-drown .h3 {
   font-weight: bold;
  color: #1A1A1A;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}

.menu-drown ul {
  list-style: none;
  margin-bottom: 25px;
  padding-left: 24px;
}
.menu-drown li {
   font-weight: 600;
  margin-bottom: 20px;
  cursor: pointer;
  color: #333333;
  transition: 0.3s;
}
.menu-drown-active {
  padding-top: 16px;
}
.menu-drown-active ul li {
    margin-bottom: 20px;
}
.menu-drown-active ul li a {
   font-weight: 600;
  color: #333333;
  transition: 0.3s;
}
.menu-drown li.active {
  color: #0F6A44;
  text-decoration: underline;
}

.menu-drown li:hover {
  color: #0a7d4f;
}
.menu-drown-active ul li a:hover {
  color: #0a7d4f;
}
.about-section  .content {
  padding: 24px;
  border-right: 1px solid #6B7280;
}

.tab {
  display: none;
}

.tab.active {
  display: block;
}

.info {
  padding: 24px;
}

.info-box {
  background: #0F6A44;
  color: #fff;
  padding:50px 25px 62px;
  border-radius: 16px;
}

.info-box h4 {
   font-weight: bold;
  margin-top: 0;
  font-size: 20px;
  width: 100%;
  text-align: center;
}

.info-box p {
   font-weight: 600;
  font-size: 18px;
  line-height:120%;
  margin: 32px 0 0 0;
}
/* CERTIFIED JUDGES DIRECTORY */
.certified-judges {
  margin: 120px 0;
}

.certified-judges .flexx {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: start;
}

.certified-judges .title {
  text-align: center;
  border-bottom: 2px solid #333333;
  padding-bottom: 15px;
}

.certified-judges .title h3 {
  margin-bottom: 34px;
  font-weight: 600;
}

.certified-judges .title span {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -1.12px;
}

.judges-filter {
  margin: 40px 0 50px;
}

.judges-filter__select {
  max-width: 199px;
  width: 100%;
  appearance: none;
  background: #fff url('data:image/svg+xml;utf8,<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L5 5L9 1" stroke="%23333333" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat right 20px center;
  border: 1px solid #E6E6E6;
  border-radius: 50px;
  padding: 13px 17px;
  font-size: 18px;
  color: #333333;
  cursor: pointer;
  transition: border-color 0.3s;
}

.judges-filter__select:hover,
.judges-filter__select:focus {
  border-color: var(--dark-green);
}

.judges-filter__search-box {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.judges-filter__input {
  flex: 1;
  border: 1px solid #E6E6E6;
  border-radius: 50px;
  padding: 13px 17px;
  font-size: 15px;
  color: #333333;
  transition: border-color 0.3s;
}

.judges-filter__input:focus {
  border-color: var(--dark-green);
}

.judges-filter__search-btn {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: var(--dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s;
}

.judges-filter__search-btn:hover {
  background-color: var(--bright-green);
}

.judges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  padding: 0 70px;
}

.judge-card {
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: 16px;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.04);
  padding: 40px 20px 35px;
  position: relative;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.judge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.08);
}

.judge-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--dark-green);
  color: #FFFFFF;
  font-size: 10px;
  padding: 6px 12px;
  border-radius: 4px;
}

.judge-card__image-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  background: #F9F9F9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.judge-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.judge-card__name {
  font-size: 18px;
  font-weight: bold;
  color: #1A1A1A;
  margin: 0 0 10px;
}

.judge-card__level {
  font-size: 12px;
  color: #666666;
  margin: 0 0 6px;
}

.judge-card__specialty {
  font-size: 13px;
  color: #333333;
  margin: 0 0 7px;
}

.judge-card__date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  color: #666666;
  margin-bottom: 30px;
}

.judge-card__btn {
  display: inline-block;
  background-color: var(--dark-green);
  color: #FFFFFF;
  font-size: 13px;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.judge-card__btn:hover {
  background-color: var(--bright-green);
  color: #FFFFFF;
}

.judges-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.judges-pagination__item {
  width: 34px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E6E6E6;
  border-radius: 6px;
  color: #333333;
  font-size: 15px;
  background: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}

.judges-pagination__item:hover {
  background: #F5F5F5;
}

.judges-pagination__item--active {
  background-color: var(--dark-green);
  color: #FFFFFF;
  border-color: var(--dark-green);
}

.judges-pagination__item--active:hover {
  background-color: var(--dark-green);
  color: #FFFFFF;
}

.judges-pagination__item--dots {
  border: none;
  background: transparent;
  pointer-events: none;
  color: #333333;
}
/* events */

.organization {
  padding: 120px 0;
}

.organization__header {
  text-align: center;
  margin-bottom: 50px;
}

.organization__title {
  font-weight: bold;
  font-size: 32px;
  color: #1A1A1A;
  margin: 0;
  text-transform: uppercase;
}

.organization-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.organization-tabs__btn {
  background-color: transparent;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  padding: 8px 10px;
  font-size: 12px;
  color: #333333;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #FAFAFA;
}

.organization-tabs__btn:hover {
  border-color: var(--dark-green);
  color: var(--dark-green);
}

.organization-tabs__btn--active {
  background-color: var(--dark-green);
  color: #FFFFFF;
  border-color: var(--dark-green);
}

.organization-tabs__btn--active:hover {
  background-color: var(--bright-green);
  border-color: var(--bright-green);
  color: #FFFFFF;
}

.organization-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.team-card {
  text-align: center;
}

.team-card__img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  background-color: #F5F5F5;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
}

.team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card__img {
  transform: scale(1.05);
}

.team-card__name {
  font-weight: bold;
  font-size: 14px;
  color: var(--dark-green);
  margin: 0 0 6px 0;
}

.team-card__role {
  font-size: 13px;
  color: #666666;
  margin: 0 0 10px 0;
}

.team-card__location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.team-card__location svg {
  flex-shrink: 0;
}

.team-card__location span {
  font-size: 11px;
  color: #999999;
}

/* awards recognitio */
.awards-recognition {
  padding: 120px 0;
}
.awards-recognition .title {
  margin-bottom: 32px;
  text-align: center;
}
.awards-recognition .title h3 {
  font-weight: bold;
}
.awards-recognition .slyder-awards-recongition {
  margin: 0 -15px;
}
.awards-recognition .slyder-awards-recongition .block {
  width: 162px;
  box-shadow: 0px 0px 8px 0px #00000033;
  border: 1px solid #0000001A;
  border-radius: 10px;
  margin: 10px 15px;
  overflow: hidden;

}
.awards-recognition .slyder-awards-recongition .block img {
  max-width: 162px;
  width: 100%;
}

section.banner-custom {
    margin-top: 147px;
}

.arrows-slyder-awards-recongition button {
  font-weight: 900;
  font-size: 22px;
  line-height: 22px;
  letter-spacing: -0.27px;
  color: #000000;
}

.arrows-slyder-awards-recongition {
  z-index: 50;
}

/* new style */
.banner-custom {
  color: #FFFFFF;
  padding: 132px 0;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  object-fit: contain !important;
}

.banner-custom .title h1 {
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
}

.frequently-faq {
  padding: 120px 0;
  background-color: #FAFFFA;
}
.accordion__item.active .details {
    border-radius: 30px;
    background: #CDE9DA;
}
.accordion__item .details {
  padding: 23px 36px;
  background-color: #fff;
  transition: 250ms;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid #D4D2E3
}
.accordion__item.active .details img.close-icon {
    display: inline-block;
}
.accordion__item.active .details .open-icon {
  display: none;
}
.accordion__item.active .details img.close-icon {
    display: inline-block;
    background: #0F6A44;
}
.accordion__item .details h3::marker {
  display: none;
  content: '';
}

.accordion__item .details h3 img {
  display: inline-block;
  padding: 10px;
  border-radius: 80px;
}

.accordion__item .details h3 {
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #1A1A1A;
  display: flex;
  justify-content: space-between;
  align-items: center;
   font-weight: 600;
}

.accordion__content_faq {
  margin-top: 15px;
  display: none;
}

.accordion__item .details p {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #333333;
   font-weight: 600;
}

.frequently-faq .title {
  text-align: center;
  margin-bottom: 60px;
}
.accordion__item .details h3 img.close-icon {
    display: none;
}
.accordion__item {
  margin-bottom: 24px;
  max-width: 812px;
  width: 100%;
  display: inline-block;
}

.accordion {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.accordion__item:last-child {
  margin-bottom: 0;
}

.frequently-faq .title h1 {
  font-weight: bold;
  font-size: 36px;
  line-height: 46px;
  letter-spacing: 0%;
  color: #1A1A1A;
  margin: 0;
}

.frequently-faq .title p {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #6B7280;
  max-width: 596px;
  display: inline-block;
  margin-top: 15px;
  margin-bottom: 0;
}

.arrow-left-slyder-awards-recongition,
.arrow-right-slyder-awards-recongition {
  position: absolute;
  top: 38%;
  z-index: 50;
}

.arrow-left-slyder-awards-recongition {
  left: -24px;
}

.arrow-right-slyder-awards-recongition {
  right: -24px;
}

.awards-recognition .slyder {
  position: relative;
}

.main-footer {
    background-color: #0F3D2A; /* Тот самый темно-зеленый */
    color: #ffffff;
    padding: 100px 0 35px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 60px;
}
.right-block-footer {
    display: flex;
    gap: 100px;
}
/* Брендинг */
.footer-brand-section {
    flex: 0 0 35%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 60px;
}

.footer-logo h2 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.footer-desc {
    color: #A0AEC0; /* Сероватый текст */
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Форма подписки */
.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 320px;
}

.sub-input {
    background: #F8FAFC;
    border: none;
    padding: 18px 25px;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
}

.sub-button {
    background: #718096; /* Цвет со скрина */
    color: white;
    border: none;
    padding: 18px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    width: fit-content;
    min-width: 150px;
}

.sub-button:hover {
    background: #4A5568;
}

/* Списки ссылок */
.footer-links h3 {
    font-size: 20px;
    font-weight: bold;
    color: #5D5A88; /* Цвет заголовков */
    margin-bottom: 40px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: #9795B5;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* Нижняя панель */
.footer-bottom {
  border-top: 1px solid #fff;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

/* Иконки как на скрине (квадратные со скруглением) */
.social-icons a {
    background: #E2E8F0;
    color: #2D3748;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #fff;
    transform: translateY(-3px);
}
.restoran-block ul li h3 {
   font-weight: 600;
  color: #0B4F33;
  font-size: 40px;
  margin: 0;
}
section.section-restoran.news-page.section.bg {
    padding-bottom: 0;
}
.block-coollaps .flex-item {
  display: flex;
  justify-content: space-between;
  margin-top: 66px;
}
.block-coollaps .flex-item .item-images {
    width: 50%;
    overflow: hidden;

}
.block-coollaps .flex-item .item-images img {
  width: 100%;
}
.block-coollaps .flex-item .item-content {
  width: 45%;
  padding-top: 50px;
}
section.about-us {
  margin-bottom: 120px;
}
.block-coollaps .flex-item .item-content h3 {
  font-weight: bold;
  color: #1A1A1A;
  font-size: 36px;
  margin: 0;
  line-height: 46px;
}
.flex-item .item-content p {
  color: #333333;
  font-size: 18px;
  line-height: 30px;
  margin: 15px 0;
}
section.section-restoran.news-page.section.bg ul.nav {
    margin: 0;
}
section.section-restoran.news-page.section.bg {
    padding-bottom: 60px;
}
.block-coollaps {
  display: none;
}
.heading h4 {
   font-weight: bold;
  color: #6B7280;
  margin: 0 0 8px 0;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 10%;
}
.our-mission .col-lg-4.col-md-6 {
  margin-top: 30px;
}
.our-mission .item {
  text-align: center;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.our-mission .item .icon-block {
  width: 160px;
  height: 160px;
  background: #F9F9FF;
  border-radius: 100px;
}
.our-mission .item h4 {
   font-weight: bold;
  color: #333333;
  font-size: 28px;
  margin: 24px 0 16px;
}
.our-mission .item p {
  color: #6B7280;
  font-size: 18px;
  margin: 0;
  line-height: 30px;
}
section.about-us.section-s.bg {
    padding: 100px 0;
    margin-top: 100px;
}
/* Заголовки с привязкой к родителю */
.national-associations-wrap .na-title-main {
   font-weight: bold;
  font-size: 24px;
  text-transform: uppercase;
  border-bottom: 2px solid #333333;
  padding-bottom: 10px;
  margin: 0 0 40px 0;
}

.national-associations-wrap .na-category .na-title-category {
  font-size: 24px;
  text-transform: uppercase;
  border-bottom: 2px solid #333333;
  padding-bottom: 10px;
  margin: 0 0 30px 0;
   font-weight: bold;
}

.national-associations-wrap .na-section-header .na-title-section {
    font-size: 24px;
    text-transform: uppercase;
    border-bottom: 2px solid #333333;
    padding-bottom: 5px;
    margin: 40px 0 20px 0;
    font-weight: bold;
}

.national-associations-wrap .na-sub-category .na-title-sub {
    font-size: 18px;
    text-transform: uppercase;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    margin: 0 0 15px 0;
    font-weight: bold;
    color: #333333;
}


.national-associations-wrap .na-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.national-associations-wrap .na-item span {
  font-size: 15px;
  color: #1A1A1A;
}
.national-associations-wrap .na-item img {
    width: 32px;
    height: auto;
    margin-right: 10px;
    display: block;
}
section.na-category {
    width: 380px;
    margin-bottom: 50px;
}
.flex-country {
  display: flex;
  justify-content: space-between;
}
.na-items-grid .na-item {
    width: 150px;
    cursor: pointer;
}
.na-items-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
/* НОВЫЕ СТИЛИ 16.04.2026 */

.awards-sec-one {
  padding: 120px 0;
}

.awards-sec-one .title {
  text-align: center;
  margin-bottom: 60px;
}

.awards-sec-one .title h1 {
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
   font-weight: bold;
  margin: 0;
}

.files-list-dowloand {
  padding: 120px 0;
}

.files-list-dowloand .title {
  text-align: center;
  margin-bottom: 120px;
}

.files-list-dowloand .title h1 {
   font-weight: bold;
  font-size: 36px;
  line-height: 29px;
  letter-spacing: 0.5px;
  margin: 0;
}

.files-list-dowloand .file-list-dow .block-flex {
  max-width: 996px;
  width: 100%;
  box-shadow: 0px 4px 4px 0px #00000040;
  background-color: #fff;
  padding: 15px;
}

.files-list-dowloand .file-list-dow .block-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.files-list-dowloand .file-list-dow .block-flex .flex-info-file {
  display: flex;
  gap: 10px;
  align-items: center;
}

.files-list-dowloand .file-list-dow .block-flex .flex-info-file .name-and-size-file a {
  display: block;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.5px;
   font-weight: 600;
  color: #000000;
}

.files-list-dowloand .file-list-dow .block-flex .flex-info-file .name-and-size-file span {
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
  letter-spacing: 0%;
}

.files-list-dowloand .file-list-dow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.contact-us-form .contact-formm {
  background-color: #F2F1FA;
  padding: 70px 80px;
  border-radius: 25px;
  max-width: 752px;
  width: 100%;
}

.contact-us-form .contact-formm .title h1 {
  font-size: 56px;
  line-height: 66px;
  letter-spacing: 0px;
   font-weight: bold;
  margin-bottom: 12px;
}

.contact-us-form .contact-formm .title p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #333333;
}

.contact-us-form .contact-formm .title {
  margin-bottom: 26px;
}

.contact-us-form .contact-formm .formm-cont .flex-contact-us-formm .block label {
  display: block;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0%;
   font-weight: bold;
  margin-bottom: 12px;
}

.contact-us-form .contact-formm .formm-cont .flex-contact-us-formm .block input {
  background-color: #FFFFFF;
  border-radius: 50px;
  color: #6B7280;
  border: 1px solid transparent;
  padding: 17px 24px;
  width: 100%;
}

.contact-us-form .contact-formm .formm-cont .flex-contact-us-formm .block {
  max-width: 100%;
  width: 100%;
}

.contact-us-form .contact-formm .formm-cont .flex-contact-us-formm .block input::placeholder {
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0px;
  color: #6B7280;
  border: 1px solid transparent;
}

.contact-us-form .contact-formm .formm-cont .flex-contact-us-formm {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.contact-us-form .contact-formm .formm-cont .flex-contact-us-formm {
  margin-bottom: 32px;
}

.contact-us-form .contact-formm .formm-cont .text-area-cont-form label {
  display: block;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0%;
   font-weight: bold;
  margin-bottom: 12px;
}

.contact-us-form .contact-formm .formm-cont .text-area-cont-form textarea {
  background-color: #FFFFFF;
  border-radius: 20px;
  color: #6B7280;
  border: 1px solid transparent;
  padding: 17px 24px;
  width: 100%;
  height: 142px;
}

.contact-us-form .contact-formm .formm-cont .btn-send-msg {
  margin-top: 32px;
}

.contact-us-form .contact-formm .formm-cont .btn-send-msg a {
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0%;
  padding: 24px 36px;
   font-weight: bold;
}

.contact-us-form {
  padding: 120px 0;
}

.contact-us-form .container {
  position: relative;
  display: flex;
  align-items: center;
}
.contact-us-form .container > img {
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  width: 62%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.contact-us-form .contact-formm {
  position: relative;
  z-index: 2;
}
.contact-us-form .contact-formm .formm-cont .btn-send-msg a:hover {
  background: #0a4a2f;
  color: #ffffff;
}

.global-culinary-page-secc .block-coollaps .flex-item .item-content {
  padding-top: 0;
}

.global-culinary-page-secc .block-coollaps .flex-item {
  align-items: center;
}

.global-culinary-page-secc .titlee {
  text-align: center;
}

.global-culinary-page-secc .titlee {
  margin-bottom: 96px;
}

.global-culinary-page-secc .titlee h1 {
  font-size: 36px;
  line-height: 46px;
  letter-spacing: 0%;
   font-weight: bold;
  color: #1A1A1A;
}

.global-culinary-page-secc .titlee p {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #333333;
}

.global-culinary-page-secc {
  padding: 120px 0;
}

.global-culinary-page-secc .block-coollaps .flex-item {
  margin-top: 0;
  margin-bottom: 96px;
}

.global-culinary-page-secc .block-coollaps .flex-item .item-content span {
  font-size: 36px;
  line-height: 46px;
  letter-spacing: 0%;
   font-weight: bold;
  background-color: #0F6A44;
  padding: 13px 12px;
  color: #FFFFFF;
  border-radius: 20px;
  margin-bottom: 32px;
  display: inline-block;
}

.global-culinary-page-secc .block-coollaps .flex-item:last-child {
  margin-bottom: 0;
}

.have-a-questionss .bg-have-a-quest {
  width: 100%;
  background-color: #0F6A44;
  padding: 83px 25px;
  border-radius: 20px;
}

.have-a-questionss .bg-have-a-quest .title {
  text-align: center;
}

.have-a-questionss .bg-have-a-quest .title h1 {
  font-size: 56px;
  line-height: 66px;
  letter-spacing: 0px;
   font-weight: bold;
  color: #FFFFFF;
}

.have-a-questionss .bg-have-a-quest .flex-link-s {
  justify-content: center;
  margin-top: 40px;
}

.have-a-questionss .bg-have-a-quest .flex-link-s a {
  padding: 28px 56px;
}

.have-a-questionss .bg-have-a-quest .flex-link-s a:first-child {
  background: #FFFFFF;
  color: #1A1A1A;
}

.have-a-questionss .bg-have-a-quest .flex-link-s a:last-child {
  color: #B8903F;
}

.global-culinary-page-secc section.about-us {
  margin-bottom: 0;
}

.have-a-questionss {
  margin-bottom: 94px;
}

.global-culinary-page-secc .block-coollaps .flex-item .item-content .flex-link-s {
  margin-top: 56px;
}

.training-and-certification {
  padding: 120px 0;
}

.training-and-certification .tab-panel {
    display: block;
}

.training-and-certification .tab-panel .info-row .icon {
  display: flex;
}

.training-and-certification .flex-time-lang-mny {
  display: flex;
  margin-top: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.training-and-certification .flex-time-lang-mny .blockk {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.training-and-certification .flex-time-lang-mny .blockk img {
  display: inline-block;
}

.training-and-certification .flex-time-lang-mny .blockk span {
  display: inline-block;
}

.section-news-sec-one .title {
  margin-bottom: 60px;
}

.section-news-sec-one .title h1 {
  font-size: 36px;
  line-height: 30px;
  letter-spacing: 0.5px;
   font-weight: bold;
}

.section-news-sec-one .descccc p {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.5px;
  color: #333333;
}

/* sd */
.section-news-sec-oneee {
  margin-top: 100px;
  margin-bottom: 50px;
}
.section-news-sec-oneee .title {
  margin-bottom: 16px;
}

.section-news-sec-oneee .title h1 {
  font-size: 36px;
  line-height: 50px;
  letter-spacing: 0.5px;
   font-weight: bold;
}

.section-news-sec-oneee .descccc p {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.5px;
  color: #333333;
  max-width: 953px;
  width: 100%;
  display: inline-block;
}
/* sd */

.section-news-sec-two .title {
  margin-bottom: 60px;
}

.section-news-sec-two .title h1 {
  font-size: 36px;
  line-height: 30px;
  letter-spacing: 0.5px;
   font-weight: bold;
}

.section-news-sec-two .descccc p {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.5px;
  color: #333333;
}

.newss-page-secc {
  padding: 60px 0;
}

.section-news-sec-one {
  margin-top: 120px;
}

.section-news-sec-two {
  margin-bottom: 60px;
}

.section-news-sec-three-banner {
  height: 600px;
  background-size: cover !important;
}

.section-news-sec-three .contentt-sec-new-three {
  width: 100%;
  background-color: #0F6A44;
  padding: 48px 42px 48px 0px;
  border-radius: 10px;
}

.section-news-sec-three .contentt-sec-new-three .title h1 {
  font-size: 36px;
  line-height: 30px;
  letter-spacing: 0.5px;
   font-weight: bold;
  color: #FFFFFF;
}

.section-news-sec-three .contentt-sec-new-three .desccc p {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  margin-top: 31px;
}


.section-news-sec-three-slyderr-arrow-left,
.section-news-sec-three-slyderr-arrow-right {
  padding: 13px;
  background-color: #fff;
  border-radius: 44.9px;
}

.section-news-sec-three-slyderr-arrow-left {
  transform: rotate(180deg);
  display: block;
}

.section-news-sec-three-slyderr-arrow-right {
  margin-top: 52px;
  margin-left: 108px;
}

.section-news-sec-three .contentt-sec-new-three .flex {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.section-news-sec-three .contentt-sec-new-three {
  margin-top: -110px;
}

.slider-container {
    display: flex;
    position: relative;
    background-color: #0F6A44;
    border-radius: 15px;
    overflow: hidden;
    align-items: end;
    gap: 67px;
}

.section-news-sec-three-slyderr {
    flex: 1;
    min-width: 0;
    padding: 0 40px;
}

.slider-navigation {
    width: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
}

.section-news-sec-fourr .flex-sec-fourr {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.section-news-sec-fourr .flex-sec-fourr .block {
  text-align: center;
}

.section-news-sec-fourr .flex-sec-fourr .title h1 {
  font-size: 28px;
  line-height: 30px;
  letter-spacing: 0.5px;
  color: #1A1A1A;
  margin-top: 32px;
   font-weight: bold;
}

.section-news-sec-fourr .flex-sec-fourr .desccc p {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #333333;
  margin-top: 16px;
}

.section-news-sec-fourr .flex-sec-fourr .image {
  padding: 50px;
  border: 1px solid #0F6A44;
  border-radius: 100%;
  display: inline-block;
}

.section-news-sec-fivee {
  margin: 0 0 120px;
}
section.section-heading {
    margin-top: 120px;
}


.section-news-sec-fivee .title {
  text-align: center;
}

.section-news-sec-fivee .title h1 {
  font-size: 36px;
  line-height: 46px;
  letter-spacing: 0%;
   font-weight: bold;
}

.section-news-sec-fivee .title p {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #333333;
  margin-top: 16px;
  max-width: 613px;
  width: 100%;
  display: inline-block;
}

.section-news-sec-fivee .flexxx {
  display: flex;
  margin-top: 50px;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.section-strukture .item {
  border: 1px solid #D4D2E3;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-strukture .item .our-images {
  width: 45%;
  height: 100%;
}
.section-strukture .item .our-images img {
  width: 100%;
  object-fit: cover;
}
.section-strukture .item .content-our {
  width: 55%;
  padding: 28px 32px;
}
.section-strukture .item .content-our h3 {
   font-weight: bold;
  color: #1A1A1A;
  text-transform: uppercase;
  font-size: 20px;
  margin: 0 0 8px 0;
}
.section-strukture .item .content-our span {
  color: #6B7280;
   font-weight: bold;
  text-transform: uppercase;
}
.section-strukture .item .content-our p {
  color: #333333;
  font-size: 18px;
  line-height: 30px;
  margin: 0;
}
.section-strukture .col-lg-6 {
  margin-top: 50px;
}
.block-coollaps .flex-item .item-content ul li {
  list-style: disc;
  margin: 5px 0 5px 30px;
    color: #333333;
  font-size: 18px;
  line-height: 30px;
}
.na-grid-four .na-sub-category {
    width: 20%;
}
.na-grid-four {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.na-grid-four .na-sub-category h3.na-title-sub::after {
    content: '';
    background: #333;
    width: 50%;
    height: 2px;
    display: block;
    margin-top: 5px;
}
.na-grid-four .na-sub-category h3.na-title-sub {
  border: none;
  position: relative;
  width: fit-content;
}
.na-grid-four .na-sub-category ul li {
  font-size: 15px;
  color: #1A1A1A;
}
.na-grid-four.not-ful .na-sub-category {
    width: 50%;
}
.na-grid-four.not-ful .na-sub-category h3.na-title-sub {
    width: 100%;
}
.na-grid-four.not-ful.mini .na-sub-category {
    width: 30%;
}
.na-grid-four.not-ful.mini {
    justify-content: stretch;
}
.ef-sidebar {
  width: 100%;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.ef-sidebar .ef-header {
  background: #0F6A44;
  color: #ffffff;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ef-sidebar .ef-header-title {
  font-size: 14px;
  font-weight: 600;
}

.ef-sidebar .ef-clear-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    cursor: pointer;
}

.ef-sidebar .ef-content {
    padding: 24px 20px;
}

/* Поиск */
.ef-sidebar .ef-search-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.ef-sidebar .ef-search-input {
    width: 100%;
    padding: 22px 40px 22px 12px;
    border: 1.5px solid #6b7280;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
}

.ef-sidebar .ef-search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
}

/* Заголовки */
.ef-sidebar .ef-section-title {
    color: #0F6A44;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    margin: 0 0 20px 10px;
}

.ef-sidebar .ef-section {
    margin-bottom: 40px;
}

/* Реальные Select элементы */
.ef-sidebar .ef-select-real {
    width: 100%;
    padding: 8px 35px 8px 12px;
    border-radius: 1px;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
    border: none;
    font-size: 14px;
    color: #C1C1C1;
    background: #ffffff;
    appearance: none; /* Убираем стандартную стрелку */
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230c6341'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    cursor: pointer;
    outline: none;
}

.ef-sidebar .ef-select-real:focus {
    border-color: #0c6341;
}

/* Календарь (input type="date") */
.ef-sidebar .ef-date-wrapper {
    position: relative;
}

.ef-sidebar .ef-date-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
    color: #4b5563;
    cursor: pointer;
    box-sizing: border-box;
    outline: none;
}

/* Стилизация иконки календаря внутри инпута */
.ef-sidebar .ef-date-input::-webkit-calendar-picker-indicator {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230c6341' viewBox='0 0 24 24'%3E%3Cpath d='M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11z'/%3E%3C/svg%3E");
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Чекбоксы (как в прошлом шаге) */
.ef-sidebar .ef-checkbox-item {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 14px;
    color: #1A1A1A;
}

.ef-sidebar .ef-checkbox-item input {
    position: absolute;
    opacity: 0;
}

.ef-sidebar .ef-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    border: 1.5px solid #6b7280;
    border-radius: 2px;
    background: #fff;
}

.ef-sidebar .ef-checkbox-item input:checked ~ .ef-checkmark {
    background-color: #0075ff;
    border-color: #0075ff;
}

.ef-sidebar .ef-checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.ef-sidebar .ef-checkbox-item input:checked ~ .ef-checkmark:after {
    display: block;
}
.search-bar-container {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 8px; /* Внутренний отступ для центрирования кнопки */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Легкая тень */
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    padding-left: 16px;
}

.search-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.search-input {
    border: none;
    outline: none;
    padding: 10px;
    color: #333333;
    font-size: 16px;
    width: 100%;
}

.search-input::placeholder {
    color: #9999cc; /* Светло-фиолетовый как на макете */
}

.search-button {
    background-color: #0c6341; /* Темно-зеленый */
    color: #ffffff;
    border: none;
    outline: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-button:hover {
    background-color: #1a7a5a; /* Легкое осветление при наведении */
}
.heading.event-s h2 {
    font-size: 24px;
}
.heading.event-s {
   margin: 30px 0;
}
.cards-grid.three-coll {
    grid-template-columns: repeat(auto-fill, minmax(252px, 1fr));
}
.images-contact {
    top: 0;
    position: absolute;
    right: 0;
    height: 100%;
}
.contact-us-form {
    position: relative;
    margin: 120px 0;
}
.images-contact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.drown-menu:hover .ul-sub-menu  {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
.ul-sub-menu {
  background: #fff;
  position: absolute;
  right: 0;
  left: 0;
  top: 30px;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all .4s ease 0s;
  -o-transition: all .4s ease 0s;
  transition: all .4s ease 0s;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.ul-sub-menu ul li a {
  font-weight: 600;
  font-size: 13px;
  color: #1A1A1A;
  display: inline-block;
  padding: 10px;
  border-bottom: 1px solid #000;
  width: 100%;
}
.ul-sub-menu ul li a:hover {
  background: #0F6A44;
  color: #fff;
}
.drown-language {
  position: relative;
}
.drown-language:hover .ul-sub-menu  {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
/* Полноэкранный блок */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95); /* Темный фон */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;

    /* Начальное состояние для анимации */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    transform: scale(1.1); /* Слегка увеличен */
}

/* Состояние при открытии */
.search-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Контент внутри */
.search-content {
    width: 80%;
    max-width: 800px;
    text-align: center;
}

.search-content input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 3rem;
    font-weight: 300;
    padding: 10px 0;
}

/* Декоративная линия под инпутом */
.search-line {
    height: 2px;
    background: #fff;
    width: 0;
    transition: width 0.6s ease 0.3s; /* Задержка линии */
}

.search-overlay.active .search-line {
    width: 100%;
}

/* Кнопка закрытия */
.close-search {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: white;
    font-size: 50px;
    cursor: pointer;
    line-height: 1;
}

.close-search:hover {
    color: #0F6A44;
}
.slider-banner .slick-arrow {
  width: 16px;
  height: 22px;
  background-image: url(../img/prev-banner.png);
  background-repeat: no-repeat;
  font-size: 0;
  position: absolute;
  left: 20px;
  transition: 0.5s;
  top: 270px;
  z-index: 1;
}
.slider-banner .slick-next {
  transform: rotate(180deg);
  left: auto;
  right: 20px;
}
.tour-hover {
  opacity: 0;
  visibility: hidden;
  background: #1A1A1A40;
  width: 100%;
  position: absolute;
  bottom: 0;
  text-align: center;
  display: flex;
  align-items: center;
  height: 50.47880172729492px;
  transition: 0.5s;
}
.flex-representatives .item:hover .tour-hover {
  opacity: 1;
  visibility: visible;
}
.tour-hover span {
  color: #FFFFFF;
  display: inline-block;
  width: 100%;
  font-size: 24px;
}
.restoran-block ul li:last-child {
  margin-right: 0;
}
.link-more {
  margin-top: 50px;
  display: flex;
  justify-content: flex-end;
}
.link-more a {
  letter-spacing: 0em;
  text-decoration: none;
  background: linear-gradient(180deg, #1DD085 0%, #0F6A44 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-size: 16px;
}
.link-more a img {
  margin-left: 8px;
}
.country-association__modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(2px);
}
.country-association__modal-content {
    background: #ffffff;
    border-radius: 21px;
    width: 425px;
    max-width: 95vw;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    position: relative;
    font-family: inherit;
    transform: scale(0.9);
    animation: modalAppear 0.2s ease forwards;
    padding-bottom: 40px;
}
.country-association__close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    font-size: 16px;
    color: #000;
    font-weight: 600;
    line-height: 1;
    transition: color 0.2s ease;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20%;
    border: 1px solid;
    padding: 0px;
}
.country-association__modal-header {
    display: flex;
    align-items: center;
    padding: 25px 35px;
    gap: 16px;
}
.country-association__modal-header figure img {
    max-height: 53px;
    height: auto;
    object-fit: cover;
    max-width: 53px;
}
.country-association__modal-content h3 {
    font: normal normal bold 28px / 33px;
    color: #0F6A44;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex: 1;
}
.country-association__modal-info {
    width: 100%;
    padding: 0px 25px 0px 50px;
}
.country-association__modal-info p {
    width: 100%;
    margin: 0 0 10px 0;
    text-align: left;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500 !important;
}
.country-association__modal-info p span.label {
    font: normal normal 500 20px / 23px;
    color: #0F6A44;
    display: block;
    letter-spacing: 0em;
}
.country-association__modal-info p span.value {
    font: normal normal 500 20px / 23px;
    color: #403F3F;
    display: block;
}
.country-association__visit-button {
    display: inline-block;
    width: auto;
    text-align: center;
    margin: 20px auto 0px auto;
    padding: 12px 24px;
    background-color: #0F6A44;
    border: 1px solid #0F6A44;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    pointer-events: auto;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0, 159, 227, 0.2);
    letter-spacing: 0.01em;
    font-family: inherit;
    transition: all 0.2s ease;
    text-decoration: none;
}
.country-association__visit-button:hover {
  background: transparent;
}
.judge-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.judge-modal__content {
    background: #fff;
    width: 90%;
    max-width: 950px;
    border-radius: 15px;
    position: relative;
    overflow: hidden; /* Чтобы синий фон не вылезал */
}

.judge-modal__close {
    position: absolute;
    top: 15px; right: 20px;
    color: #fff; font-size: 28px;
    cursor: pointer; z-index: 10;
}

.judge-modal__body {
    display: flex;
    min-height: 400px;
}

/* Левая часть */
.judge-modal__info {
    flex: 1.5;
    padding: 40px 120px 40px 40px;
}

.judge-modal__name {
    color: #000066;
    font-size: 28px;
    margin-bottom: 10px;
}

.judge-modal__cert-box {
    margin: 20px 0;
}

.judge-modal__cert-item {
    background: #f4f6f9;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.judge-modal__badge-level {
    background: #0F6A44;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.history-item {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.history-dot {
    width: 10px; height: 10px;
    background: #0F6A44;
    border-radius: 50%;
    margin-top: 5px;
}

/* Правая часть */
.judge-modal__visual {
    flex: 1;
    background: #0F6A44;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    position: relative;
    padding-top: 30px;
}

.judge-modal__photo-circle {
    width: 200px;
    height: 200px;
    background: #fff;
    border-radius: 50%;
    padding: 5px;
    position: absolute;
    left: -100px; /* Сдвиг круга на стык сторон */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.judge-modal__photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.block-coollaps .flex-item .item-images .item {
    height: 540px;
    overflow: hidden;
    border-radius: 10px;
}
.block-coollaps .flex-item .item-images img {
  height: 100%;
  object-fit: cover;
}
.slider-fade .slick-arrow {
  width: 50px;
  height: 50px;
  background-image: url(../img/news-prev-icon.svg);
  background-repeat: no-repeat;
  font-size: 0;
  position: absolute;
  left: 32px;
  transition: 0.5s;
  top: 250px;
  z-index: 1;
}
.slider-fade .slick-next {
  transform: rotate(180deg);
  left: auto;
  right: 32px;
}
.call-center-block {
    background: #FAFFFA;
    border-radius: 20px;
    margin-bottom: 80px;
    padding: 108px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.call-center-block p {
  color: #1A1A1A;
  font-size: 24px;
  line-height: 100%;
  margin: 0;
  font-weight: 500;
      width: 800px;
}
.call-center-block .flex-link-s {
    justify-content: end;
}
section.section-call-center {
    margin-top: -60px;
    position: relative;
    z-index: 2;
}
.cards-grid.three-coll .empty-state {
  display: none;
  width: 100%;
  padding: 0;
}









/* Главный контейнер всей секции */
.u-banner-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    margin-bottom: 200px;
}

/* -----------------------------------------------------------
    1. СЛАЙДЕР ДЛЯ КАРТИНКИ (На заднем плане)
----------------------------------------------------------- */
.u-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.u-bg-item {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Ограничивающий контейнер для зеленой плашки */
.u-banner-wrapper .container {
    position: absolute;
    bottom: 40px; /* Прижимаем к низу */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    box-sizing: border-box;
    pointer-events: none; /* Клик по пустому месту проходит сквозь контейнер */
}

/* -----------------------------------------------------------
    2. ЗЕЛЕНАЯ ПЛАШКА СЛАЙДЕРА ТЕКСТА
----------------------------------------------------------- */
.u-slider-box {
    position: relative;
    background-color: #0B6643;
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    padding: 40px 240px 40px 40px; /* Оставляем 240px справа для зоны кнопок и линии */
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    margin-bottom: -100px;
}

/* Текстовые слайды */
.u-slide-item {
    outline: none;
}

.u-slide-item .u-title h1 {
    color: #ffffff;
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.u-slide-item .u-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* -----------------------------------------------------------
    3. БЛОК УПРАВЛЕНИЯ (Растянут на всю плашку для линии)
----------------------------------------------------------- */
.u-slider-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    pointer-events: none; /* Разрешаем выделять текст под блоком */
    z-index: 30;
}

/* ТВОИ ПОДОГНАННЫЕ СТИЛИ КНОПОК (НЕ МЕНЯЛИСЬ) */
.u-arrow {
    position: absolute;
    background-color: #ffffff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 0;
    pointer-events: auto; /* Возвращаем кликабельность кнопкам */
}

.u-arrow-left {
    top: 40px;
    right: 140px;
}

.u-arrow-right {
    bottom: 40px;
    right: 60px;
}

/* Стрелочки внутри кнопок */
.u-arrow::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #0B6643;
    border-right: 2px solid #0B6643;
}

.u-arrow-left::after { transform: rotate(-135deg); margin-left: 2px; }
.u-arrow-right::after { transform: rotate(45deg); margin-right: 2px; }

/* ИДЕАЛЬНАЯ СТАБИЛЬНАЯ SVG ЛИНИЯ */
.u-timer-line {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.u-timer-line path {
    /* Точная длина новой длинной траектории */
    stroke-dasharray: 1070;
    stroke-dashoffset: 980;
}

/* Класс запуска анимации */
.u-slider-box.u-playing .u-timer-line path {
    animation: u_fillTimer 5s linear forwards;
}

@keyframes u_fillTimer {
    from {
        stroke-dashoffset: 980;
    }
    to {
        stroke-dashoffset: 0;
    }
}
.content-news-pages .flex-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
}
.content-news-pages .item-images {
  width: 49%;
}
.content-news-pages .item-images img {
  width: 100%;
  object-fit: cover;
  height: 550px;
}
.content-news-pages .item-content {
  width: 49%;
}
section.content-news-pages {
  margin-bottom: 60px;
}
.content-news-pages .item-content h3 {
  font-weight: bold;
  color: #1A1A1A;
  font-size: 36px;
  margin: 0;
  line-height: 46px;
}
.content-news-pages .flex-item:not(:has(.item-images)) .item-content {
    width: 100%;
}
.filters-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  align-items: center;
  margin-top: 60px;
}

.custom-select-wrapper {
  position: relative;
  min-width: 140px;
}

.custom-select {
  width: 100%;
  padding: 0 36px 0 16px;
  font-size: 18px;
  color: #000000;
  background: #ffffff;
  border: none;
  border-radius: 20px;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  outline: none;
}

.custom-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-25%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000000;
  pointer-events: none;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-input {
  padding: 10px 16px;
  font-size: 14px;
  border: none;
  border-radius: 20px;
  width: 160px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.05);
  outline: none;
  color: #000000;
}

.search-input::placeholder {
  color: #8e8e8e;
}

.search-submit-btn {
  background-color: #00a2e8;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 162, 232, 0.3);
  padding: 0;
}

.search-submit-btn svg {
  width: 18px;
  height: 18px;
}
.table-card-box {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 1px 5px rgba(0, 0, 0, 0.05);
  width: 100%;
  margin-bottom: 20px;
}

.table-card-header {
  background-color: #281e6b;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.table-card-flag {
  width: 60px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.table-card-country {
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.table-card-row {
  display: flex;
  padding: 18px 24px;
  align-items: center;
}

.table-card-col-name {
  flex: 2;
  padding-left: 0%;
  text-align: center;
  font-size: 22px;
  color: #000;
}

.table-card-col-year {
  flex: 1;
  text-align: center;
  padding-right: 10%;
  font-size: 22px;
  color: #000;
}

.table-card-th {
  background: #ffffff;
  border-bottom: 1px solid #f2f2f2;
  font-size: 14px;
  font-weight: bold;
  color: #000000;
  letter-spacing: 0.5px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.table-card-body {
  background-color: #f9f9f9;
  padding-bottom: 8px;
}

.table-card-tr {
  font-size: 15px;
  color: #000000;
  font-weight: 400;
}

@media (max-width: 600px) {
  .filters-row {
    flex-direction: column;
    align-items: stretch;
  }
  .custom-select-wrapper,
  .search-input-wrapper,
  .search-input {
    width: 100%;
  }
  .search-input {
    flex: 1;
  }
  .table-card-col-name {
    padding-left: 5%;
  }
  .table-card-col-year {
    padding-right: 5%;
  }
}
.menu-drown ul li a {
    font-weight: 600;
    color: #333333;
    transition: 0.3s;
}
.menu-drown ul li a:hover {
    color: #0a7d4f;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.domla-banner-section {
    width: 100%;
    padding: 100px 0 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.domla-banner {
    background-color: #52AE30;
    border-radius: 32px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    min-height: 420px;
}

.domla-content {
    max-width: 590px;
    z-index: 2;
    position: relative;
}

.domla-title {
    font-size: 44px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    line-height: 1.12;
    letter-spacing: -0.8px;
}

.domla-description {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.55;
    margin: 0 0 35px 0;
}
.domla-apps {
    display: flex;
    align-items: center;
    gap: 14px;
}

.store-btn {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
    line-height: 0;
}

.store-btn:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.store-btn img {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
}
.domla-visual {
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 480px;
    width: 100%;
    right: 10px;
    top: 0;
    bottom: 0;
}

.domla-visual img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 992px) {
    .domla-banner {
        padding: 40px 30px;
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
    }

    .domla-content {
        max-width: 100%;
    }

    .domla-visual {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        margin-top: 35px;
        align-self: center;
        justify-content: center;
        max-width: 100%;
        width: 100%;
    }

    .domla-visual img {
        max-width: 380px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .domla-banner-section {
        padding: 30px 0 0;
    }

    .domla-banner {
        padding: 28px 20px;
        border-radius: 24px;
    }

    .domla-title {
        font-size: 26px;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .domla-description {
        font-size: 13.5px;
        line-height: 1.5;
        margin-bottom: 24px;
    }

    .domla-apps {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 10px;
    }

    .store-btn {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .store-btn img {
        height: 42px;
    }

    .domla-visual {
        margin-top: 25px;
    }

    .domla-visual img {
        max-width: 260px;
    }
}
