
button.ss2_burger,
button.ss2_header-more {
  font-family: inherit;
  border: none;
  cursor: pointer;
}

.ss2_site-footer {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);

  padding: clamp(40px, 6vw, 80px) 0 24px;
}

.ss2_site-footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(32px, 6vw, 80px);
}

.ss2_footer-brand {
  max-width: 340px;
}

.ss2_footer-logo {
  width: 160px;
  margin-bottom: 18px;
}

.ss2_footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #5a5a5a;
  margin-bottom: 22px;
}

.ss2_footer-socials {
  display: flex;
  gap: 20px;
  margin-top: 18px;
}

.ss2_footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: none;
  border-radius: 0;

  opacity: 1;
  transform: none;

  transition: transform 0.2s ease;
}

.ss2_footer-socials a:hover {
  transform: translateY(-3px);
}

.ss2_footer-socials img {
  width: 26px;
  height: 26px;
  display: block;
}

.ss2_footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
}

.ss2_footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #6f6c9e;
  margin-bottom: 14px;
}

.ss2_footer-col a,
.ss2_footer-col span {
  display: block;
  font-size: 14px;
  color: #121722;
  opacity: 0.85;
  margin-bottom: 10px;
  text-decoration: none;
}

.ss2_footer-col a:hover {
  opacity: 1;
  color: #6f6c9e;
}

.ss2_footer-bottom {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);

  text-align: center;
  font-size: 13px;
  color: #8a8a8a;
}

@media (max-width: 520px) {

  .ss2_footer-nav {
    grid-template-columns: 1fr;
  }

  .ss2_footer-logo {
    width: 140px;
  }

  .ss2_footer-socials a {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 900px) {
  .ss2_site-footer__inner {
    grid-template-columns: 1fr;
  }

  .ss2_footer-brand {
    max-width: none;
  }

  .ss2_footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ss2_header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 56px;
  background: #6f6c9e;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 12px;
  z-index: 1000;
  box-sizing: border-box;
}

.ss2_header > .ss2_burger {
  justify-self: start;
}

.ss2_header > .ss2_icons {
  justify-self: end;
}

.ss2_burger {
  width: 22px;
  height: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.ss2_burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.ss2_logo-link {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ss2_logo {
  height: 80%;
  width: auto;
  max-width: 250px;        
  max-height: 100%;        
  object-fit: contain;
  display: block;
}

.ss2_icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.ss2_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}

.ss2_icon:link,
.ss2_icon:visited {
  color: inherit;
}

.ss2_icon img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

.ss2_header-side {
  display: flex;
  align-items: center;
}

.ss2_header-side--left {
  justify-content: flex-start;
}

.ss2_header-side--right {
  justify-content: flex-end;
  position: relative;
  gap: 8px;
}

.ss2_header-more {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition:
    background 0.2s ease,
    transform 0.15s ease;
}

.ss2_header-more__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #ffffff;
  display: block;
}

.ss2_header-more__dot + .ss2_header-more__dot {
  margin-left: 3px;
}

.ss2_header-more:is(:hover, :focus-visible) {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.ss2_header-more.ss2_is-active {
  background: rgba(255, 255, 255, 0.24);
}

.ss2_header-more-menu {
  position: absolute;
  top: 100%;
  right: 12px;
  margin-top: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  z-index: 1100;
}

.ss2_header-more-menu .ss2_icon {
  width: 40px;
  height: 40px;
}

.ss2_header-more-menu .ss2_icon img {
  width: 22px;
  height: 22px;
  filter: none;
}

.ss2_header-more-menu.ss2_is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ss2_header {
  transform: translateZ(0);
}

.ss2_icon img,
.ss2_logo {
  transform: translateZ(0);
  backface-visibility: hidden;
}

@media (min-width: 480px) {
  .ss2_header {
    height: 60px;
    padding: 0 20px;
  }
  .ss2_logo {
    height: 84%;
  }
  .ss2_burger {
    width: 24px;
    height: 16px;
  }
  .ss2_icon {
    width: 36px;
    height: 36px;
  }
  .ss2_icon img {
    width: 22px;
    height: 22px;
  }
}

@media (min-width: 768px) {
  .ss2_header {
    height: 68px;
    padding: 0 32px;
  }
  .ss2_logo {
    height: 88%;
  }
  .ss2_icons {
    gap: 14px;
  }
  .ss2_icon {
    width: 40px;
    height: 40px;
  }
  .ss2_icon img {
    width: 24px;
    height: 24px;
  }
  .ss2_burger {
    width: 26px;
    height: 18px;
  }

  .ss2_header-side--right .ss2_icons--desktop {
    display: flex;
  }

  .ss2_header-more {
    display: none;
  }

  .ss2_header-more-menu {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .ss2_header-side--right .ss2_icons--desktop {
    display: none;
  }

  .ss2_header-more {
    display: inline-flex;
  }
}

@media (min-width: 1200px) {

  .ss2_logo {
    height: 100%;
  }

  .ss2_header {
    height: 84px;
    padding: 0 56px;
  }
}

@media (min-width: 375px) {
  .ss2_header {
    height: 60px;
    padding: 0 16px;
  }

  .ss2_logo-link {
    height: 100%;
  }
  .ss2_logo {
    height: 70%;
  }
}

@media (min-width: 600px) {
  .ss2_header {
    height: 68px;
    padding: 0 32px;
  }
  .ss2_icons {
    gap: 14px;
  }
  .ss2_icon {
    width: 36px;
    height: 36px;
  }
  .ss2_icon img {
    width: 22px;
    height: 22px;
  }
  .ss2_burger {
    width: 24px;
    height: 16px;
  }
  .ss2_logo-link,
  .ss2_logo {
    height: 95%;
  }
}

@media (min-width: 900px) {
  .ss2_header {
    height: 76px;
    padding: 0 40px;
  }
  .ss2_icon {
    width: 40px;
    height: 40px;
  }
  .ss2_icon img {
    width: 24px;
    height: 24px;
  }
  .ss2_burger {
    width: 26px;
    height: 18px;
  }
  .ss2_logo-link,
  .ss2_logo {
    height: 100%;
  }
}

@media (max-width: 375px) {
  .ss2_logo {
    height: 90%;
    max-width: 160px;
  }
}







.ss2_menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 999;
}

.ss2_menu-overlay.ss2_open {
  opacity: 1;
  pointer-events: auto;
}

.ss2_mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: clamp(320px, 90vw, 680px);
  height: 100vh;
  background: #f4f4f4;
  overflow-y: auto;
  transition: 0.4s cubic-bezier(0.4, 0.2, 0.2, 1);
  z-index: 1000;
}

.ss2_mobile-menu.ss2_open {
  left: 0;
}

.ss2_menu-close {
  position: absolute;
  top: 20px;
  left: 16px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.ss2_menu-content {
  padding: 68px 16px calc(32px + env(safe-area-inset-bottom));
}

.ss2_menu-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.ss2_menu-tab {
  padding: 6px 12px;
  border: 1px solid #6f6bb1;
  background: transparent;
  color: #6f6bb1;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

.ss2_menu-tab.ss2_active {
  background: #6f6bb1;
  color: #fff;
}

.ss2_menu-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.ss2_menu-col a {
  display: block;
  margin-bottom: 14px;
  font-size: 15px;
  color: #121722;
}

.ss2_menu-links a {
  display: block;
  margin-bottom: 14px;
  font-size: 15px;
  color: #121722;
  text-transform: uppercase;
}

.ss2_menu-links .ss2_menu-links_gray {
    color: #959595;
}

.ss2_menu-divider {
  height: 2px;
  background: #6f6bb1;
  margin: 24px 0;
}

.ss2_menu-divider.empty-divider {
  background: initial;
  margin: 20px 0;
}

.ss2_menu-contact span {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #444;
}

.ss2_menu-email {
  display: block;
font-size: clamp(13px, 1.4vw, 15px);
  color: #6f6bb1;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.ss2_menu-socials {
  display: flex;
  gap: 12px; 
  margin-top: 10px;
}

.ss2_menu-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ss2_menu-socials img {
  width: 26px;  
  height: 26px;
  filter: none;  
  transition: 0.2s ease;
}


.ss2_menu-socials a:hover img {
  transform: scale(1.08);
}

.ss2_menu-panel {
  display: none;
  animation: ss2_fadeIn 0.25s ease;
}
.ss2_menu-panel.ss2_active {
  display: block;
}

@keyframes ss2_fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 480px) {
  .ss2_menu-content {
    padding: 60px 20px 108px !important;
  }
  .ss2_menu-col a,
  .ss2_menu-links a {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .ss2_menu-content {
    padding: 70px 30px 40px;
  }
  .ss2_menu-tabs {
    gap: 8px;
    margin-bottom: 32px;
  }
  .ss2_menu-tab {
    font-size: 16px;
    padding: 8px 16px;
  }
  .ss2_menu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .ss2_menu-col a,
  .ss2_menu-links a {
    font-size: 18px;
    margin-bottom: 18px;
  }
  .ss2_menu-divider {
    margin: 32px 0;
  }
}

@media (min-width: 600px) {
  .ss2_menu-content {
    padding: 70px 24px 40px;
  }

  .ss2_menu-tabs {
    gap: 8px;
    margin-bottom: 32px;
  }

  .ss2_menu-tab {
    padding: 8px 18px;
    font-size: 16px;
  }

  .ss2_menu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .ss2_menu-col a {
    font-size: 17px;
    margin-bottom: 16px;
  }

  .ss2_menu-links a {
    font-size: 17px;
    margin-bottom: 16px;
  }

  .ss2_menu-divider {
    margin: 32px 0;
  }
}

@media (min-width: 900px) {
  .ss2_menu-content {
    padding: 80px 30px 40px;
  }

  .ss2_menu-col a {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .ss2_menu-links a {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .ss2_menu-contact a {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .ss2_menu-contact {
    margin-bottom: calc(90px + env(safe-area-inset-bottom));
  }
}

