@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Regular.ttf') format('ttf');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Bold.ttf') format('ttf');
      
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-SemiBold.ttf') format('ttf');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Medium.ttf') format('ttf');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Regular.ttf') format('ttf');
  font-weight: 400;
  font-style: normal;
}

/* =========================
   RESET / BASE
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  color: #000;
}

h1,h2,h3,h4{
  font-weight: 400;
}

img {

  display: inline-block;
}

a {
  color: inherit;
}

/* =========================
   CONTAINER
========================= */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   TOP BAR
========================= */
.top-bar {
  background: #f3f3f3;
  font-size: 14px;
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 42px;
}

.top-bar__left {
  display: flex;
  align-items: center;
}

.lang-switch {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar__right a {
  text-decoration: none;
  display: flex;
  gap: 0px;
  font-family: "Lato";
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #432A19;
}

.socials {
  display: flex;
  gap: 20px;
  margin-left: 50px;
}

.socials a {
  text-decoration: none;
  font-family: "Lato";
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #432A19;
}
.top-header-phone::before,
.top-header-mail::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.top-header-phone::before {
  background-image: url('../img/phone-icon.svg');
}

.top-header-mail::before {
  background-image: url('../img/mail-icon.svg');
}

/* =========================
   HEADER MAIN
========================= */

.header-main__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 90px;
}

/* =========================
   LOGO
========================= */
.lang-switch{
  display: flex;
    gap: 10px;
}
.lang-switch span{
  font-family: "Lato", sans-serif;  
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #432A19;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}


.logo strong {
  font-weight: 700;
}

/* =========================
   NAVIGATION
========================= */
.nav {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #432A19;
}
/* стрелка */
.nav-item.has-submenu > a::after {
    content: '';
    width: 6px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-top: -4px;
    margin-left: 5px;
}

/* при hover — стрелка вверх */
.nav-item.has-submenu:hover > a::after {
  transform: rotate(-135deg);
}

/* =========================
   SUBMENU
========================= */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  flex-direction: column;
  min-width: 160px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 8px 0;
  z-index: 100;
}

.submenu li {
  list-style: none;
}

.submenu li a {
  display: flex;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #432A19;
  background: #F5F6F5;
}

.submenu li a:hover {
  background: #FDFCE9;
}
/* MOBILE MENU BASE */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 360px;
  height: 100%;
  background: #fff;
  padding: 24px 20px;
  display: none;
  flex-direction: column;
  z-index: 9999;
  overflow-y: auto;
  box-shadow: -2px 0 12px rgba(0,0,0,0.1);
}

/* CLOSE BUTTON */
.mobile-menu__close {
  position: absolute;
    top: 30px;
    right: 20px;
    background: none;
    border: none;
    font-size: 35px;
    cursor: pointer;
}

/* LANG */
.mobile-menu__lang {
  font-size: 14px;
  margin-bottom: 24px;
  display: flex;
    gap: 5px;
}

/* MENU LIST */
.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu__list > li {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 16px;
}

.mobile-menu__list a {
  text-decoration: none;
  color: #432A19;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* SUBMENU */
.has-submenu .mobile-submenu {
  list-style: none;
  padding-left: 16px;
  margin-top: 8px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  font-weight: 400;
  font-size: 14px;
  display: none;
}

.mobile-submenu li {
  margin-bottom: 8px;
}

/* Открытое состояние подменю */
  .mobile-submenu.open {
  max-height: 500px;
  opacity: 1;
  pointer-events: auto;
  display: flex;
  padding: 0px;
}

/* CONTACTS */
.mobile-menu__contacts {
  margin-top: 40px;
    margin-bottom: 0px;
    font-size: 18px;
    line-height: 1.4;
    color: #432A19;
}

.mobile-menu__contacts p {
  margin: 6px 0;
}

/* SOCIALS */
.mobile-menu__socials {
 display: flex;
    gap: 70px;
    margin-top: 30px;
    justify-content: flex-start;
}



/* SUBMENU ARROW */
.submenu-arrow {
  font-size: 22px;
}

/* SHOW MENU */
.mobile-menu.show {
  display: flex;
  animation: slideIn 0.3s ease forwards;
  padding-top: 40px;
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.header-mob-tel{
  font-size: 20px !important;
}

/*section hero*/

/* =========================
   HERO SECTION
========================= */

.hero-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px 0;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  border-radius: 28px;
}

/* контейнер */
.hero-container {
  display: flex;
  align-items: center;
  min-height: 420px;
  padding: 50px;
  border-radius: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.hero-img-mobile{
  display: none;
}
/* контент */
.hero-content {
  max-width: 520px;
  padding-bottom: 115px;
  padding-top: 60px;
}

.hero-title {
  color: #432A19;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  letter-spacing: 0px;
  text-transform: uppercase;
}

.hero-text {
  color: #636160;
  margin-bottom: 28px;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0px;
  max-width: 430px;
}

/* кнопки */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  height: 44px;
  padding: 0 22px;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.hero-btn--primary {
  background: #0F8E38;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: uppercase;
}
.hero-btn--primary:hover{
  background: #89BD23;
}

.hero-btn--secondary {
  background: #FFFFB2;
  color: #432A19;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: uppercase;
}
.hero-btn--secondary:hover{
   background: #FFFF5B;
}

/* stats */
.hero-stats {
  display: flex;
  justify-content: space-between;
  padding: 40px 10px;
}

.hero-stat {
  text-align: center;
  line-height: 3;
}

.hero-stat-value {
  color: #0F8E38;
  display: block;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0px;
  text-transform: uppercase;
}

.hero-stat-text {
  color: #432A19;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
}




/* ======================================================
   ABOUT US SECTION
====================================================== */
.about-us {
  width: 100%;
  padding: 80px 0 64px;
  padding-top: 30px;
  padding-bottom: 0px;
}

.about-us__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    
    gap: 50px;
}

/* ======================================================
   IMAGE
====================================================== */
.about-us__image {
  flex: 0 0 775px;
  border-radius: 24px;
  overflow: hidden;
}

.about-us__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ======================================================
   CONTENT
====================================================== */
.about-us__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-us__title {
  margin-bottom: 15px;
  
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #432A19;
}

.about-us__lead {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0px;
  color: #432A19;
}

.about-us__text {
  color: #636160;
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0px;
  max-width: 500px;
}

.about-us__btn {
  align-self: flex-start;
  padding: 16px 32px;
  background: #0F8E38;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.25s ease;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: uppercase;
}
#about-us__btn_mobile{
  display: none;
}

.about-us__btn:hover {
  background: #89BD23;
}
/* скрываем мобайл-блок на десктопе */
.about-us__values-mobile {
  display: none;
}
.values-mobile-slider{
   display: none;
}

/* ======================================================
   VALUES
====================================================== */
.about-us__values {
  max-width: 1400px;
    margin: 0px auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 5px;
    position: relative;
    top: -60px;
}

.about-us__value {
  flex: 1 1 200px;
  background: #fffbe8;
  border-radius: 20px;
  padding: 24px 16px 20px;
  text-align: center;
  color: #432A19;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  text-transform: uppercase;

}

/* ======================================================
   ICON
====================================================== */
.about-us__icon {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  color: #6b5a4a;
}

.about-us__icon img {
  display: block;
  width: 40px;
  height: 40px;
}

/* ======================================================
   APPEAR ANIMATION
====================================================== */
.about-us__animate {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.about-us__animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}



/* ======================================================
   directions section
====================================================== */
.directions {
  width: 100%;
  padding-bottom: 40px;
}

.directions__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ======================================================
   TITLE
====================================================== */
.directions__title {
  font-size: 32px;
  font-weight: 700;
  color: #3b2a1a;
  margin-bottom: 48px;
}

/* ======================================================
   LAYOUT (FLEX ONLY)
====================================================== */
.directions__grid {
  display: flex;
  gap: 24px;
}

.directions__column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ======================================================
   CARD
====================================================== */
.directions__card {
  position: relative;
  
  border-radius: 28px;
  padding: 32px;
  color: #ffffff;
  min-height: 260px;
  overflow: hidden;
}

/* large card */
.directions__card--big {
  flex: 0 0 435px;
    padding: 40px 32px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

/* decorative pattern imitation */


/* ======================================================
   CONTENT
====================================================== */
.directions__number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #f3ff9b;
  margin-bottom: 16px;
  position: relative;
}


.directions__card-title {
  margin-bottom: 10px;

color: #FFFFB2;
font-weight: 700;
font-size: 18px;
line-height: 100%;
letter-spacing: 0px;
text-transform: uppercase;

}

.directions__card-text {
  max-width: 400px;
font-weight: 400;
font-size: 18px;
line-height: 130%;
letter-spacing: 0px;
color: white;
}

/* ======================================================
   APPEAR ANIMATION
====================================================== */
.directions__animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.directions__animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/*section projects*/
.projects {
  width: 100%;
  padding: 80px 0 72px;
}

.projects__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

/* ===== TITLE ===== */
.projects__title {
  text-align: center;
  margin-bottom: 16px;
  color: #432A19;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0px;
  text-transform: uppercase;

}

.projects__subtitle {
  color: #636160;
  margin-bottom: 64px;
  font-weight: 700;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: center;

}

/* ===== LIST ===== */
.projects__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===== ITEM ===== */
.projects__item {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.projects__item--reverse {
  flex-direction: row-reverse;
}

/* ===== MEDIA ===== */
.projects__media {
  flex: 0 0 520px;
  border-radius: 24px;
  overflow: hidden;
}

.projects__media img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== CONTENT ===== */
.projects__content {
  flex: 1;
}

.projects__item-title {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #432A19;
}

.projects__item-period {
  color: #636160;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0px;

}

.projects__item-text {
  color: #432A19;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0px;

}

.projects__more {
  color: #0F8E38;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;

}

/* ===== FOOTER ===== */
.projects__footer {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.projects__all-btn {
  padding: 18px 36px;
  background: #0F8E38;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: uppercase;
  max-width: 240px;
  width: 100%;
  text-align: center;

}
.projects__all-btn:hover{
  background: #89BD23;
}
/* ===== ANIMATION ===== */
.projects__animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.projects__animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/*section news*/
.news {
  padding: 40px 0;
}

.news__title {
  margin-bottom: 48px;
  color: #432A19;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0px;
  text-transform: uppercase;

}

.news__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
}

.news__side {
  display: grid;
  gap: 32px;
}

/* CARD BASE */
.news-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.news-card__image {
  position: relative;
  overflow: hidden;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* BIG CARD IMAGE */
.news-card--big .news-card__image {
  height: 100%;
  min-height: 420px;
}

/* OVERLAY */
.news-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 128, 0, 0.75) 100%
  );
}

/* CONTENT */
.news-card__content {
  padding: 24px;
  padding-top: 10px;
}

.news-card--big .news-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  z-index: 2;
  padding: 30px;
}

.news-card__date {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  color: #432A19;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;

}

.news-card--big .news-card__date {
  background: rgba(255, 255, 255, 0.85);
}

.news-card__headline {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #432A19;
}

.news-card--big .news-card__headline {
  color: #FFFFB2;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0px;
  text-transform: uppercase;

}

.news-card__text {
  margin-bottom: 16px;
  color: #636160;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0px;

}

.news-card--big .news-card__text {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0px;
}

.news-card__link {
  color: #0F8E38;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;

}

.news-card--big .news-card__link {
  color: #FFFFB2;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;

}

/* FOOTER */
.news__footer {
  margin-top: 48px;
  text-align: center;
}

.news__button {
  display: inline-block;
  padding: 14px 36px;
  background: #0F8E38;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: uppercase;
  max-width: 240px;
  width: 100%;
  text-align: center;

}
.news__button:hover{
  background: #89BD23;
} 
/* === APPEAR ANIMATION === */
.news-card {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.news-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* небольшая задержка для каскада */
.news-card--big.is-visible {
  transition-delay: 0.1s;
}

.news-card--small:nth-child(1).is-visible {
  transition-delay: 0.2s;
}

.news-card--small:nth-child(2).is-visible {
  transition-delay: 0.35s;
}
.news-card--small{
  flex-direction: row;
}
/* SMALL CARD LAYOUT */
.news-card--small {
  flex-direction: row;
  align-items: stretch;
  position: relative;
}

/* IMAGE BLOCK */
.news-card--small .news-card__image {
  flex: 0 0 330px;
  height: auto;
  border-radius: 20px;
}

/* IMAGE */
.news-card--small .news-card__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.news-card--big .news-card__image img {
  height: 100%;
  object-fit: cover;
}
.news-card-mobile{
  display: none;
}
.news__link_one{
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*section partners*/
.partners {
  padding: 40px 0;
}

.partners__title {
  text-align: center;
  color: #432A19;
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  letter-spacing: 0px;
  text-align: center;
  text-transform: uppercase;

}

/* slider wrap */
.partners__slider-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* nav buttons */
.partners__nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #f3f3f3;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.partners__nav:hover {
  background: #e6e6e6;
}

/* slider */
.partners__slider {
  flex: 1;
  overflow: hidden;
}

/* slide */
.partners__slide {
  height: 110px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.partners__slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.partners__slide:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.partners__pagination {
  display: none;
}

/* === SIMPLE CTA === */
.cta-simple {
  padding: 40px 0;
}

.cta-simple__inner {
  background: #fbfbe6;
  border-radius: 32px;
  padding: 64px 24px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-simple__title {
  color: #432A19;
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0px;
  text-align: center;
  text-transform: uppercase;
}

.cta-simple__button {
  padding: 14px 40px;
  background: #0F8E38;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s ease;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: uppercase;
  max-width: 390px;
  width: 100%;
  text-align: center;
}

.cta-simple__button:hover {
  background: #89BD23;
}

/* === PARTNER FORM === */
.partner {
  padding: 20px 0;
  padding-bottom: 65px;
}

.partner__inner {
  background: #dcdde0;
  border-radius: 32px;
  padding: 48px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 0px;
}

/* LEFT */
.partner__content {
  max-width: 460px;
}

.partner__title {
  color: #432A19;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0px;
  text-align: center;
  text-transform: uppercase;

}

.partner__text {
  color: #636160;
  margin-bottom: 24px;
font-weight: 400;
font-size: 18px;
line-height: 150%;
letter-spacing: 0px;

}

/* FORM */
.partner__form {
  background: #0f8b3d;
  border-radius: 24px;
  padding: 24px;
  padding-bottom: 0px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.partner__form input,
.partner__form textarea {
  border: none;
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
width: 100%;
}

.partner__form textarea {
  resize: none;
  height: 100px;
}
.partner__form input{
  height: 50px;
}

.partner__submit {
  margin-top: 8px;
  padding: 17px;
  border-radius: 999px;
  border: none;
  background: #FFFFB2;
  cursor: pointer;
  transition: background 0.3s ease;

font-weight: 600;
font-size: 16px;
line-height: 100%;
letter-spacing: 0px;
vertical-align: middle;
text-transform: uppercase;

}

.partner__submit:hover {
  background: #FFFF5B;
}

/* RIGHT */
.partner__image {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-top: -40px;
  background-image: url('../img/partners-form-bg.webp');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  background-position-x: -130px;
  background-position-y: 70%;
}

.partner__image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === APPEAR BASE === */
.cta-simple--animate,
.partner--animate .partner__item {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

/* CTA visible */
.cta-simple--animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Partner items visible */
.partner--animate.is-visible .partner__item {
  opacity: 1;
  transform: translateY(0);
}

/* stagger */
.partner--animate .partner__item:nth-child(1) {
  transition-delay: 0.1s;
}

.partner--animate .partner__item:nth-child(2) {
  transition-delay: 0.3s;
}
.mobile_partner_img{
  display: none;
}
/* ================= FOOTER BASE ================= */
.footer {
  background: #F5F6F5;
  padding: 48px 0 24px;
  overflow: hidden;
}

.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-start;
}

/* BRAND */
.footer__brand {
  flex: 0 0 440px;
  margin-right: 50px;
}

.footer__logo {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* NAV */
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-right: 100px;
}

.footer__nav a {
  color: #432A19;
  text-decoration: none;
font-weight: 500;
font-size: 18px;
line-height: 100%;
letter-spacing: 0px;

}

.footer__nav a:hover {
  text-decoration: underline;
}

/* CONTACTS */
.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #4b2e1a;
    flex: 0 0 330px;
    margin-right: 0px;
    margin-left: 100px;
    text-align: right;
}
.footer__contacts p{
  margin: 0px;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: right;
  color: #432A19;
}
.footer__contacts a {
  color: #432A19;
  text-decoration: none;
}

.footer__contacts a:hover {
  text-decoration: underline;
}
.footer-tel{
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #432A19;
}
/* UP */
.footer__up {
  margin-left: auto;
  cursor: pointer;
}

/* BOTTOM */
.footer__bottom {
  max-width: 1400px;
  margin: 32px auto 0;
  padding: 16px 24px 0;
  border-top: 1px solid rgba(0,0,0,.08);
  display: flex;
  gap: 24px;
  align-items: center;
  color: #4b2e1a;
}
.footer__bottom p{
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #432A19;
}

.footer__policy {
  text-decoration: underline;
  color: #432A19;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  text-decoration-style: solid;
}

.footer__socials {
  margin-left: auto;
  display: flex;
  gap: 12px;
  margin-right: 50px;
}

.footer__socials a {
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  
}
.footer__socials_mobile{
  display: none;
}

/* ================= ANIMATION ================= */

.footer--animate {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity .8s ease, transform .8s ease;
}

.footer--animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   DESKTOP HOVER
========================= */
@media (max-width: 1366px) {
  .news-card--big.is-visible {
    transition-delay: 0.1s;
    height: 97%;
    
}
.partner__inner {
    padding-bottom: 20px;
}
.partner__image {
    margin-top: 0px;
}
}
@media (min-width: 1025px) {
  .has-submenu:hover .submenu {
    display: flex;
  }
}

/* =========================
   NEWS BUTTON STYLE
========================= */
.nav-list .nav-news > a {
  border: 1px solid #000;
  border-radius: 20px;
  padding: 6px 16px;
  
}

/* =========================
   BURGER
========================= */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 3px;
  background: #000;
}

/* =========================
   MOBILE MENU
========================= */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #e5e5e5;
}

.mobile-menu ul {
  list-style: none;
  padding: 0px;
  padding-top: 30px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu a {
  text-decoration: none;
  font-size: 16px;
}

/* =========================
   ADAPTIVE
========================= */

/* <= 1200 */
@media (max-width: 1200px) {
  .nav-list {
    gap: 20px;
  }
  .nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #432A19;
}
.hero-section {
  padding-top: 0px;
}
.hero-container {
    background-size: 100%;
    padding: 25px;
}
.hero-text {
    max-width: 380px;
    margin-bottom: 60px;
}
.hero-stats {
  padding-top: 0px;
}
.about-us__image {
    flex: 0 0 560px;
}
.about-us__values {
    top: 20px;
}
.directions__card {
    min-height: 325px;
    overflow: hidden;
}
.news-card--small {
    flex-direction: column;
}
.partner__image {
    flex: auto;
    margin-top: 60px;
    background-image: url(../img/partners-form-bg.webp);
    background-position-x: -80px;
    background-position-y: 80%;
}
.partner__image img {
    max-width: 120%;
}
.partner__title {
    font-size: 26px;
}
.partner__inner {
    padding-bottom: 60px;
}
.footer__brand {
    flex: 0 0 300px;
    margin-right: 50px;
}
.footer__nav {
   
    margin-right: 50px;
}
.footer__contacts {
    margin-right: 10px;
    margin-left: 0px;
}
}

/* <= 1024 */
@media (max-width: 1024px) {
  .nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-main__inner {
    min-height: 76px;
  }

  .hero-section {
    background-position: center bottom;
    background-size: cover;
  }

  .hero-container {
    min-height: auto;
    padding: 40px 20px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

   .about-us__container {
    flex-direction: column;
    padding: 0 40px;
    gap: 40px;
  }

  .about-us__image {
    flex: none;
    width: 100%;
    order: 2;
  }

  .about-us__values {
    padding: 0 40px;
    justify-content: center;
  }
  .directions__container {
    padding: 0 40px;
  }

  .directions__grid {
    flex-direction: column;
  }

  .directions__card--big {
    flex: none;
    min-height: 260px;
  }
  .projects__container {
    padding: 0 40px;
  }

  .projects__item,
  .projects__item--reverse {
    flex-direction: column;
  }

  .projects__media {
    width: 100%;
    flex: none;
  }
  .about-us__values {
    max-width: 1400px;
    margin: 0px auto;
    padding: 0 20px;
    display: inline-block;
    position: relative;
    top: 0px;
}
.about-us__value {
  display: inline-block;
  margin-top: 25px;
}
.about-us__text {
    max-width: 100%;
}
    .about-us__values {
        
        text-align: center;
    }
    .news__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .news-card__image img {
    height: 100%;
    object-fit: unset;
    width: 100%;
}
.news-card--big.is-visible {
    transition-delay: 0.1s;
    width: 75%;
    display: block;
    margin: 0px auto;
}
.news-card--small.is-visible {
    transition-delay: 0.2s;
    width: 75%;
    display: block;
    margin: 0px auto;
}
.partner__image { 
        margin-top: 140px;
    }
    .footer__brand {
        flex: 0 0 240px;
        margin-right: 40px;
    }
    .footer__nav {
        margin-right: 30px;
    }
    .projects__media img {
    width: 80%;
    margin: 0px auto;
}
}

/* <= 900 */
@media (max-width: 900px) {
  .top-bar__right {
    gap: 14px;
    font-size: 13px;
  }
  .news__grid {
    grid-template-columns: 1fr;
  }

  

  .news-card__overlay {
    display: none;
  }
  .partner__inner {
    flex-direction: column;
    text-align: center;
  }

  .partner__content {
    max-width: 100%;
  }

  .partner__form {
    align-items: stretch;
  }
  .footer__container {
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer__bottom {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer__socials {
    margin-left: 0;
  }
  .hero-container {
        background-size: 120%;
        padding: 20px;
    }
  .hero-title {
    font-size: 26px;
}
.hero-text {
        max-width: 285px;
        margin-bottom: 60px;
        font-size: 18px;
        text-align: left;
        margin-top: 30px;
    }
    .hero-content {
    padding-bottom: 35px;
    padding-top: 5px;
}
.hero-stats {
  padding-bottom: 0px;
}
    .partner__image {
        margin-top: -100px;
    }
    .footer__brand {
        flex: 0 0 180px;
        margin-right: 0px;
    }
    .footer__logo img{
      width: 90%;
    }
    .footer__nav {
        margin-right: 0px;
    }
    .footer__contacts{
      flex: 0 0 230px;
    }
        .footer__container {
        gap: 25px;
    }
      .footer__socials {
        margin-left: 50px;
        margin-right: 0px;
    }
}

/* <= 766 */
@media (max-width: 766px) {
  .top-bar {
    display: none;
  }

  .logo span {
    font-size: 12px;
  }

  .header-main{
    margin-top: 40px;
  }
  .header-main__inner {
    align-items: center;
}

  .container {
    padding: 0 16px;
  }
  .hero-container {
        background-image: none !important;
        padding: 0px;
        margin-top: 30px;
       
    }
    
  .hero-img-mobile{
  display: block;
  margin: 0px auto;
  border-radius: 16px;
}
.hero-content {
  text-align: unset;
}
   .hero-title {
    font-size: 20px;
    margin-top: 40px;
        margin-bottom: 0px;
  }
  .hero-actions {
    gap: 25px;
}
    .hero-text {
        max-width: 100%;
        margin-bottom: 30px;
        font-size: 18px;
        text-align: left;
        margin-top: 10px;
    }
    .hero-btn--primary, .hero-btn--secondary {
      max-width: 100%;
      width: 100%;
      justify-content: center;
      height: 52px;
    }
  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
    padding: 0px;
    justify-content: flex-start;
    margin-top: 30px;
  }

  .hero-stat {
    width: 28%;
    text-align: unset;
    line-height: 150%;
  }
  .hero-stat-value {
    font-size: 36px;
    margin-bottom: 10px;
}
  .hero-stat:nth-child(3){
    order: 4;
    width: 40%;
  }
  .hero-stat:nth-child(4){
    order: 5;
    width: 40%;
  }
   .about-us {
    padding: 30px 0;
  }
      .about-us__container {
        padding: 0 20px;
    }

  .about-us__title {
    font-size: 24px;
    margin-bottom: 0px;
  }

  .about-us__lead {
    font-size: 20px;
  }

  .about-us__text {
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .about-us__btn {
    padding: 14px 24px;
    display: none;
    max-width: 90%;
    text-align: center;
    margin: 0px auto;
    margin-top: -20px;
  }
  #about-us__btn_mobile{
    display: block;
  }
  
  .about-us__values {
    display: none; /* старый блок */
  }

  .about-us__values-mobile {
    display: block;
    bottom: 60px;
        padding: 0px 20px !important;
  }


/* slide layout */
.about-us__values-mobile .swiper-slide {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

/* pagination lines */
.about-us__values-pagination {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.about-us__values-pagination .swiper-pagination-bullet {
  width: 24px;
  height: 2px;
  border-radius: 0;
  background: #d9d9d9;
  opacity: 1;
}
.about-us__values-pagination .swiper-pagination-bullet-active {
  background: #000;
}
  
  .directions {
    padding: 0 0;
    padding-top: 0px;
  }
      .directions__container {
        padding: 0 20px;
    }

  .directions__title {
    font-size: 24px;
    margin: 0px auto;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
  }

  .directions__card {
    padding: 24px;
    min-height: 200px;
  }

  .directions__number {
    font-size: 40px;
  }

  .directions__card-title {
    font-size: 18px;
    line-height: 25px;
  }

  .directions__card-text {
    font-size: 18px;
  }
  .projects {
    padding: 48px 0;
  }
  .projects__container {
        padding: 0 20px;
    }
  .projects__title {
    font-size: 24px;
    text-align: left;
    line-height: 30px;
  }
  .projects__subtitle {
     text-align: left;
     line-height: 25px;
        font-weight: 500;
        margin-bottom: 20px;
  }
      .projects__media img {
        width: 100%;
        margin: 0px auto;
    }

  .projects__list {
    gap: 48px;
  }
  .projects__item {
    gap: 15px;
}
  .projects__item-title {
    font-size: 18px;
  }

  .projects__item-text {
    font-size: 18px;
  }
  .projects__footer {
    
    margin-top: 30px;
}
.news {
    padding: 40px 0;
    padding-top: 0px;
}
.news__title{
  font-size: 24px;
  margin-bottom: 25px;
}
.news-card-mobile{
  display: flex;
}
.news-card--big.is-visible{
  display: none;
}
.news-card--small.is-visible{
  width: 100%;
  text-align: left;
}
.news-card__content {
    padding: 3px;
    padding-top: 16px;
}

.partners {
    padding: 0px 0;
}
  .partners__title {
    font-size: 24px;
    text-align: left;
  }

  .partners__nav {
    display: none;
  }

  .partners__slide {
    height: 90px;
  }

  .cta-simple__title,
  .partner__title {
    font-size: 24px;
    padding: 0px 20px;
  }
  .partner__text {
     padding: 0px 20px;
  }

  .partner__inner {
    padding: 32px 2px;
    padding-bottom: 0px;
    padding-top: 0px;
    background: linear-gradient(353.51deg, rgba(211, 213, 221, 2) 5.8%, rgba(232, 233, 231, 2.45) 60.72%, rgba(254, 253, 242, 2.9) 72.44%);
  }
  .partners__nav { display: none; } /* кнопки скрываем */
  .partners__pagination { display: flex; justify-content: center; gap: 6px; margin-top: 16px; }

  /* стили черточек */
  .partners__pagination .swiper-pagination-bullet {
    width: 24px;
    height: 2px;
    border-radius: 0;
    background: #d9d9d9;
    opacity: 1;
  }

  .partners__pagination .swiper-pagination-bullet-active {
    background: #000;
  }
  .cta-simple{
    display: none;
  }
  .partner {
    padding-top: 40px;
}
.partner__image{
  display: none;
}
.mobile_partner_img{
  display: block;
  margin-top: -60px;
  background-position-x: -47px;
        background-position-y: 99%;
}
    .partner__image img {
        max-width: 100%;
    }
    .partner__form {
        margin-top: -38px;
    }

        .footer__container {
        display: block;
        text-align: center;
    }
    .footer__up {
      display: none;
    }
    .footer__nav {
       display: inline-block;
       vertical-align: top;
    }
    .footer__nav a {
      display: block;
      margin-bottom: 20px;
        text-align: left;
    }
    .footer__logo {
      display: block;
    }
        .footer__logo img {
        max-width: 240px;
        margin-bottom: 40px;
    }
    .footer__nav:first-of-type {
  margin-right: 70px;
}
    .footer__contacts {
        text-align: left;
        border-top: 1px solid rgba(0,0,0,.08);
        padding-top: 10px;
        max-width: 240px;
        margin: 0px auto;
    }
    .footer__contacts p {
      text-align: left;
    }
    .footer-tel {
    margin: 10px 0px;
}
.footer__bottom {
  display: block;
  text-align: center;
}
.footer__socials{
  display: none;
}
.footer__socials_mobile{
        display: flex;
        max-width: 100%;
        margin: 0px auto;
        margin-top: 20px;
        text-align: center;
        gap: 70px;
}
.values-mobile-slider{
   display: block;
}
.partner__form input, .partner__form textarea {
   max-width: 300px;
}
}
