@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* Шапка */
.site-header {
    width: 100%;
    height: 100px;
    background: white;
}

/* Контейнер */
.header-container {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Меню */
.site-header .kw-link{
    font-family: "Nunito", sans-serif !important;
    margin: 0 15px !important;
    text-decoration: none !important;
    color: #86c46e !important;
    font-size: 20px !important;
    font-weight: 300 !important;
}

/* Левое меню */
.nav-left {
    display: flex;
}

/* Правое меню */
.nav-right {
    display: flex;
}

/* ЛОГО в центре */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    width: 220px;
    height: auto;
}

.skiptranslate {
    display: none !important;
}

.goog-tooltip {
    display: none !important;
}
.goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important; 
    box-shadow: none !important;
}

.VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q{
  background-color: transparent !important; /* Убирает фоновый цвет */
  box-shadow: none !important; /* Убирает тени */
  text-decoration: none !important; /* Убирает подчеркивание */
}

body {
    top: 0px !important; 
}

.language {
    position: relative;
    top: -3px;
    left: 10px;
    display: flex;
    z-index:99999999;
    background-color: #86c46e;
    padding: 5px 20px;
    border-radius: 10px;
}

.ru-language, .en-language, .divider-language{
    font-family: "Nunito", sans-serif;
    color: white;
    font-weight: bold;
}

.divider-language{
    margin-left: 5px;
    margin-right: 5px;
}

.ru-language, .en-language{
    cursor: pointer;
}

.ru-language:hover, .en-language:hover{
    transform: scale(1.05);
}

.burger {
    margin-right: 20px;
  position: relative;
  width: 40px;
  height: 30px;
  background: transparent;
  cursor: pointer;
  display: block;
}

.burger input {
  display: none;
}

.burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #86c46e;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
}

.burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}

.burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-100%);
}

.burger input:checked ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}

.burger input:checked ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}

.burger input:checked ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 28px;
  left: 5px;
}

/* Скрываем мобильную навигацию по умолчанию */
.mobile-menu {
    display: none;
}

.mobile-menu.menu-open {
    display: flex; /* показываем */
}

/* Бургер по умолчанию скрыт на больших экранах */
.header-mobile {
    display: none;
    width: 100%;
    max-width: 1200px;
    height: 50px;
    margin: 0 auto;
}

/* Mobile */
@media (max-width: 1024px) {

  .site-header{
    height: 80px;
  }

  /* Показываем header-mobile (бургер и мобильное меню) */
  .header-mobile {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  /* Скрываем desktop header */
  .header-container {
    display: none;
  }

  /* Меню (скрыто по умолчанию) */
  .mobile-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 18px 0;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 999998;
  }

  .mobile-logo {
    width: 260px;
    height: auto;
    margin-bottom: 6px;
  }

  /* Стили ссылок — переиспользуем ваш класс kw-link */
  .mobile-menu .kw-link{
    font-family: "Nunito", sans-serif;
    margin: 6px 0;
    text-decoration: none;
    color: #86c46e;
    font-size: 20px;
    font-weight: 300;
  }

  .mobile-language {
    margin-top: 8px;
    background-color: #86c46e;
    padding: 6px 16px;
    border-radius: 8px;
  }

  .language{
    top: 0px;
    left: 0px;
  }
}

@media (max-width: 320px){
  .burger input:checked ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 22px;
  left: 5px;
}
  .burger{
    width: 30px;
    height: 20px;
  }
}