html {
  min-height: 100vh;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #0a0a0a;
  font-family: 'Montserrat', sans-serif;
  color: white;
  overflow-y: none;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* Chrome, Safari, Edge */
body::-webkit-scrollbar {
  display: none;
}

.scroll-container {
  height: calc(var(--vh, 1vh) * 100);
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}


.scroll-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0%;
  background: linear-gradient(90deg, #a48fff, #ffffff);
  box-shadow: 0 0 8px rgba(164, 143, 255, 0.4);
  z-index: 1;
  border-radius: 0 4px 4px 0;
  transition: width 0.15s ease-out;
}



.navbar {
  width: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
  animation: fadeIn 1.5s ease-out;
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(120deg, #ffffff, #a48fff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  background-size: 200% auto;
  background-position: -100% center;
  animation: shineText 4s infinite ease-in-out;
}

@keyframes shineText {
  0% {
      background-position: -100% center;
  }
  50% {
      background-position: 100% center;
  }
  100% {
      background-position: 100% center;
  }
}



.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-left: 40px;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.nav-glow:hover {
  color: #ffffff;
  text-shadow: 0 0 12px #a48fff;
}

.nav-links a.nav-glow::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #a48fff, #ffffff);
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.nav-links a.nav-glow:hover::after {
  transform: scaleX(1);
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}





.wd-subnav {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 25px 0;
    position: sticky;
    top: 72px;
    z-index: 98;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
  
.wd-tab {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

.wd-tab:hover {
  color: white;
}

.wd-tab::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #a48fff, #ffffff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.wd-tab:hover::after,
.wd-tab.active::after {
  transform: scaleX(1);
}

.wd-section {
  display: none;
}


.nav-links a.nav-glow.active::after {
  transform: scaleX(1);
}












/* Вкладка ABOUT */
.hero {
  text-align: center;
  padding: 100px 20px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, #a48fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  font-weight: 300;
}


.dynamic-text {
  margin-top: 40px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: #a48fff;
  height: 40px;
  overflow: hidden;
  position: relative;
}

.dynamic-text .word {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  animation: wordCycle 10s infinite;
  text-align: center;
}

.dynamic-text .word:nth-child(1) { animation-delay: 0s; }
.dynamic-text .word:nth-child(2) { animation-delay: 2s; }
.dynamic-text .word:nth-child(3) { animation-delay: 4s; }
.dynamic-text .word:nth-child(4) { animation-delay: 6s; }
.dynamic-text .word:nth-child(5) { animation-delay: 8s; }

@keyframes wordCycle {
  0% { opacity: 0; transform: translateY(10px); }
  10% { opacity: 1; transform: translateY(0); }
  20% { opacity: 1; }
  30% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 0; }
}


  










/* Вкладка портфолио */
.works-section {
  padding: 60px 5%;
  text-align: center;
}

.works-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  background: linear-gradient(120deg, #ffffff, #a48fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  justify-items: center;
}

.work-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.work-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.work-info {
  padding: 20px;
  text-align: left;
}

.visit-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.visit-btn:hover {
  background: white;
  color: black;
  box-shadow: 0 0 10px white;
}



/* КАРТОЧКИ */
.project-card-wrapper {
    width: 100%;
    height: 100%;
    max-width: 700px;
    animation: fade-in-up 0.8s forwards ease-out;
    will-change: transform;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
    box-shadow: 0 0 0 transparent;
    --mouse-x: 50%;
    --mouse-y: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.project-card:hover {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.project-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #ff00cc, #3333ff, #00ffee);
    border-radius: 22px;
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.project-card:hover::before {
    opacity: 0.6;
    animation: glowPulse 3s infinite ease-in-out;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(
        circle at var(--mouse-x) var(--mouse-y),
        rgba(255, 255, 255, 0.249),
        transparent 80%
    );
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 2;
}


.project-card:hover::after {
    opacity: 1;
}



@keyframes glowPulse {
    0%, 100% { filter: blur(10px); opacity: 0.6; }
    50% { filter: blur(18px); opacity: 0.9; }
}


.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.project-info {
    padding: 20px;
    text-align: left;
}

.project-info h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.project-info p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 20px;
}

.project-btn {
    text-decoration: none;
    color: white;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ffffff0d, #ffffff05);
    padding: 10px 25px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease-in-out;
    display: inline-block;
    font-size: 0.9rem;
}

.project-btn:hover {
    background: white;
    color: black;
    box-shadow: 0 0 10px white;
}

/* Анимация появления */
@keyframes fade-in-up {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}












/* Вкладка КАЛЬКУЛЯТОР */
.calculator-section {
  padding: 80px 5%;
  text-align: center;
}

.calculator-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.calculator-section p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  margin-bottom: 30px;
}


.calc-block {
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: left;
}

.calc-row {
  margin-bottom: 30px;
}

.calc-block label {
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
  color: #ffffff;
}


/* Выбор типа сайта */
.custom-select {
  position: relative;
  user-select: none;
  width: 100%;
  font-size: 1rem;
  z-index: 10;
}

.select-trigger {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  color: white;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(164, 143, 255, 0.3);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.select-trigger::after {
  content: "▼";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: #a48fff;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.select-trigger.open::after {
  transform: translateY(-50%) rotate(180deg);
}

.options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  margin-top: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.25s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}


.option {
  padding: 14px 20px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.options.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}


.option:hover {
  background: rgba(164, 143, 255, 0.07);
  color: #a48fff;
}

.option.active {
  background: linear-gradient(90deg, #a48fff1a, transparent);
  color: #a48fff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}



/* Выбор опций */
.calc-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 15px;
}

.checkbox-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  font-weight: 500;
  color: white;
  cursor: pointer;
  transition: all 0.25s ease;
  overflow: hidden;
  transition: border 0.3s ease, background 0.5s ease;
}

.checkbox-wrapper:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(164, 143, 255, 0.1);
}

.checkbox-wrapper input {
  display: none;
}

.custom-checkbox {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  margin-right: 12px;
  position: relative;
  transition: all 0.2s ease;
}

.checkbox-wrapper input:checked + .custom-checkbox {
  background: #a48fff;
  border-color: #a48fff;
  box-shadow: 0 0 10px rgba(164, 143, 255, 0.4);
}

.checkbox-wrapper input:checked + .custom-checkbox::after {
  display: none;
}

.checkbox-wrapper:has(input:checked) {
  border: 1px solid transparent;
  background: linear-gradient(#0a0a0a, #0a0a0a) padding-box,
              linear-gradient(120deg, #a48fff, #ffffff, #a48fff) border-box;
  background-size: 200% 200%;
  background-position: center;
}

@keyframes borderPulse {
  0% {
    background-position: 0% 50%;
    opacity: 0.3;
  }
  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
  100% {
    background-position: 200% 50%;
    opacity: 0.3;
  }
}

.feature-title {
  flex-grow: 1;
}

.feature-price {
  margin-left: auto;
  font-weight: 600;
  background: linear-gradient(135deg, #a48fff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* Смена валюты */
.currency-toggle-combined {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 30px 0;
}

.currency-label {
  font-size: 1rem;
  font-weight: 500;
  color: white;
}

.currency-switch {
  position: relative;
  display: flex;
  background: #111;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  width: 110px;
  height: 42px;
}

.currency-option {
  flex: 1;
  text-align: center;
  z-index: 2;
  line-height: 42px;
  font-weight: 600;
  cursor: pointer;
  color: white;
  transition: color 0.3s ease;
  user-select: none;
}

.currency-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 50%;
  height: 38px;
  background: linear-gradient(135deg, #a48fff, #866fff);
  border-radius: 14px;
  z-index: 1;
  transition: left 0.3s ease;
  box-shadow: 0 0 12px rgba(164, 143, 255, 0.4);
}


/* Вывод результата */
.calc-result {
  margin-top: 30px;
  text-align: center;
}

.calc-result hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.calc-result .total {
  font-size: 1.2rem;
  font-weight: 600;
  color: #a48fff;
}



.tg-request-wrap {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.tg-request-btn {
  position: relative;
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.85rem;
  font-weight: 100;
  border-radius: 40px;
  background: linear-gradient(135deg, #a48fff, #ffffff);
  color: #0a0a0a;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 12px rgba(164, 143, 255, 0.2);
  z-index: 1;
}

.tg-request-btn::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, #a48fff, #ffffff, #a48fff);
  transform: translateX(-100%);
  transition: transform 0.4s ease-out;
  z-index: 0;
}

.tg-request-btn:hover::before {
  transform: translateX(0);
}

.tg-request-btn span {
  position: relative;
  z-index: 2;
}



.contact-btn {
  padding: 12px 30px;
  font-weight: 500;
  background: linear-gradient(135deg, #a48fff, #ffffff);
  color: black;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.contact-btn:hover {
  transform: scale(1.05);
}

@keyframes shineText {
  0% {
    background-position: -100% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 100% center;
  }
}







/* FOOTER */
.footer {
  /* margin-top: 120px; */
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 5% 30px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
  position: relative;
  margin-top: auto;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;/* важно: центрируем всё по вертикали */
  padding: 0 20px;
  min-height: 120px; /* немного увеличим высоту */
  position: relative;
}


.footer-left .footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: white;
  background: linear-gradient(120deg, #ffffff, #a48fff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  background-position: -100% center;
  animation: shineText 6s infinite ease-in-out;
}

.footer-slogan {
  margin: 10px 0 10px;
  line-height: 1; /* Жестко задаём */
  color: rgba(255, 255, 255, 0.4);
}



.footer-lang-switch {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  width: 120px;
  height: 44px; /* немного выше, чтоб встало на один уровень с текстом слева */
  box-sizing: border-box;
}


.lang-option {
  flex: 1;
  text-align: center;
  font-weight: 600;
  z-index: 2;
  line-height: 44px; /* чтобы текст был по центру */
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.3s ease;
  user-select: none;
}

.lang-option.active {
  color: #0a0a0a;
}

.lang-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 50%;
  height: 40px;
  background: linear-gradient(135deg, #a48fff, #866fff);
  border-radius: 10px;
  z-index: 1;
  transition: left 0.3s ease;
  box-shadow: 0 0 10px rgba(164, 143, 255, 0.4);
}


.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
}











/* Кнопка-гамбургер */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

/* Анимация крестика */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-close {
  display: none;
  font-size: 2rem;
  color: white;
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 1001;
  cursor: pointer;
}

@keyframes fadeInLink {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}




@media (max-width: 768px) {


  /* НАВ-БАР */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 8, 12, 0.96);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
    z-index: 1000;
    gap: 20px;
    padding-bottom: 60px;
  }


  .nav-links.show {
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    opacity: 0;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0;
    margin: 5px 0;
  }


  .nav-links a:nth-child(1) { animation-delay: 0.2s; }
  .nav-links a:nth-child(2) { animation-delay: 0.4s; }
  .nav-links a:nth-child(3) { animation-delay: 0.6s; }
  .nav-links a:nth-child(4) { animation-delay: 0.8s; }

  .nav-links a:hover {
    color: #a48fff;
    text-shadow: 0 0 10px #a48fff;
  }

  .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #a48fff, #ffffff);
    box-shadow: 0 0 6px rgba(164, 143, 255, 0.6);
  }


  .nav-close {
    display: block;
    position: fixed;
    top: 20px;
    right: 24px;
    font-size: 2.5rem;
    color: white;
    z-index: 1001;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .nav-close:hover {
    transform: rotate(90deg);
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    width: 24px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }



  .wd-subnav {
    padding: 15px 0;
    justify-content: space-evenly;
    gap: unset;
  }

  .wd-tab {
    font-size: 0.9rem;
  }


  /* ПОРТФОЛИО */

  .works-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }






  /* ФУТЕР */
  .footer-container {
    padding: 0 10px;
  }

  .footer-left .footer-logo {
    font-size: 1.4rem;
  }


  .footer-lang-switch {
    width: 100px;
    height: 44px;
  }

  .lang-option {
    font-size: 0.75rem;
  }

  .lang-slider {
    top: 1px;
    /* width: 49%;
    height: 38px; */
  }


  .footer-slogan{
    font-size: 0.8rem;
    max-width: 200px;
  }

  .footer-bottom {
    font-size: 0.65rem;
    margin-top: 20px;
  }

}

