@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
}

body.noscroll {
  overflow: hidden;
}

.bold {
  font-weight: 600;
}

a {
  text-decoration: none;
}

.text {
  color: var(--neutral-dark, #333);
  /* body large */
  font-family: "Albert Sans";
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 28.6px */
  max-width: 658px;
  width: 100%;
}

.title {
  color: var(--neutral-black, #000);
  /* H2 */
  font-family: "Albert Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 90%; /* 36px */
  letter-spacing: -1.2px;
  text-transform: uppercase;
}

.button {
  margin: 15px 0 10px 0;
  border-radius: 6px;
  border: none;
  background: #1751FF;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 #1751FF;
  padding: 14px 32px;
  color: #FFF;
  font-family: "Onest";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 400ms ease;
}
@media screen and (max-width: 480px) {
  .button {
    margin-bottom: 25px;
  }
}

.button:hover {
  background: #FFF;
  color: #22206D;
}

.button svg path {
  transition: all 400ms ease;
}

.button:hover svg path {
  stroke: #22206D;
}

.anim-show {
  transform: translate(0px, 120%);
  opacity: 0;
  transition: all 1000ms ease 0s;
}

.anim-show.-active, .-active .anim-show {
  opacity: 1;
  transform: translate(0px, 0px);
}

.anim-items {
  overflow: hidden;
}

*, *::after, *::before {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.container {
  width: 100%;
  max-width: 1440px; /* раніше могло бути 1440px — зменшено для кращої адаптивності */
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 48px);
  padding-right: clamp(20px, 5vw, 48px);
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .container {
    max-width: 480px;
    padding: 0px 16px;
  }
}

.header {
  position: fixed;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: 90%;
  padding: 30px 0px;
  border-radius: 200px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  /* Card */
  -webkit-backdrop-filter: blur(12.5px);
          backdrop-filter: blur(12.5px);
}
@media screen and (max-width: 480px) {
  .header {
    padding: 24px 0 16px 0;
    border: none;
    top: 15px;
  }
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.header-logo-mobile {
  display: none;
}
@media screen and (max-width: 480px) {
  .header-logo-mobile {
    display: block;
  }
}

.header-logo {
  margin-right: 60px;
}
@media screen and (max-width: 480px) {
  .header-logo {
    display: none;
  }
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(8px, 2vw, 24px);
}

.header-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media screen and (max-width: 480px) {
  .margin {
    margin-bottom: 20px;
  }
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  border-radius: 14px;
  background: #FFF;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 #FFF;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
  z-index: 10;
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  pointer-events: none;
  /* анімація */
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
}
@media screen and (max-width: 480px) {
  .dropdown-menu {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .dropdown-menu {
    position: static; /* всередині бургер-меню */
    box-shadow: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transform: none;
    transition: opacity 0.3s ease, max-height 0.3s ease;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .header-dropdown.active .dropdown-menu {
    opacity: 1;
    max-height: 300px;
    visibility: visible;
    padding: unset;
    gap: 24px;
  }
}
.dropdown-menu a {
  color: #8786A4;
  text-decoration: none;
  transition: color 300ms ease;
  font-family: "Onest";
}

.dropdown-menu a:hover {
  color: #030059;
}

/* Активне меню */
.header-dropdown.active .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

/* Плавне обертання стрілки */
.arrow {
  margin-left: 6px;
  transition: transform 500ms ease;
}

.header-dropdown.active .arrow {
  transform: rotate(-180deg);
}

.header-link {
  position: relative;
  background: none;
  border: none;
  color: #8786A4;
  font-family: "Onest";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  text-decoration: none;
  cursor: pointer;
  transition: all 400ms ease-in-out;
}
@media screen and (max-width: 480px) {
  .header-link {
    font-size: 28px;
  }
}

.header-link:hover {
  color: #030059;
}

.header-link svg path {
  transition: all 400ms ease-in-out;
}

.header-link:hover svg path {
  fill: #030059;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-button-contact {
  text-decoration: none;
  color: #8786A4;
  font-family: "Onest";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  transition: color 400ms ease;
}
@media screen and (max-width: 480px) {
  .header-button-contact {
    display: none;
  }
}

.header-mobile-contact {
  display: none;
}
@media screen and (max-width: 480px) {
  .header-mobile-contact {
    display: block;
    color: #8786A4;
    font-family: "Onest";
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
  }
}

.header-button-contact:hover {
  color: #030059;
}

.header-button {
  position: relative;
  color: #030059;
  font-family: "Onest";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  background: none;
  cursor: pointer;
  padding: 7px 32px;
  z-index: 1;
  border-radius: 6px;
  border: 1px solid #030059;
  transition: ease-in-out 300ms all;
}

.header-button:hover {
  color: #fff;
  background: #030059;
}

.header-button svg path {
  transition: ease-in-out 300ms all;
}

.header-button:hover svg path {
  stroke: #fff;
}

.language-btn {
  background: none;
  border-radius: 6px;
  border: 1px solid #3E76C1;
  padding: 7px 10px;
  color: #3E76C1;
  font-family: 'Onest';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 600ms ease;
}

.language-btn svg path {
  transition: all 300ms ease-in-out;
}

.language-btn:hover svg path {
  fill: #fff;
}

.language-selector {
  position: relative;
  display: inline-block;
}

.language-menu {
  color: #8786A4;
font-family: Onest;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 24px; /* 150% */
transition: all 600ms ease-in-out;
}

.language-menu:hover {
  color: #3E76C1 !important;
}

.language-btn:hover {
  background-color: #3E76C1;
  color: #FFF;
}

body.menu-open {
  overflow: hidden;
}

.burger {
  display: none;
}

.burger-close {
  display: none;
}

@media screen and (max-width: 480px) {
  .header-inner {
    position: relative;
    justify-content: space-between;
  }
  .burger {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    background: none;
    cursor: pointer;
  }
  .burger-close {
    display: flex;
    position: absolute;
    top: 26px;
    right: 24px;
    background: none;
    width: 38px;
    height: 38px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1002;
  }
  .header-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: unset;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    border-radius: 26px;
    border: 1px solid rgba(227, 230, 254, 0.3);
    background: rgba(255, 255, 255, 0.9);
    /* Card */
    -webkit-backdrop-filter: blur(12.5px);
            backdrop-filter: blur(12.5px);
    z-index: 1000;
    padding-top: 50px;
    transition: all 0.3s ease;
  }
  .open {
    display: flex !important;
  }
  .header-link {
    margin: 0 0 32px 0;
    text-decoration: none;
    color: #8786A4;
  }
  .header-buttons {
    display: none;
  }
}
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Вікно */
.popup {
  border-radius: 24px;
  border: 1px solid #FFF;
  background: #E9F3F8;
  box-shadow: 0 4px 20px 0 #A5C9EB, 0 4px 6px 0 rgba(0, 0, 0, 0.2);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: 80%;
  position: relative;
  -webkit-animation: fadeIn 0.3s ease;
          animation: fadeIn 0.3s ease;
}
@media screen and (max-width: 480px) {
  .popup {
    padding: 16px;
    width: 90%;
  }
}

.popup-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 150px;
}

@media screen and (max-width: 480px) {
  .popup-img-big {
    display: none;
  }
}

.popup-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.popup-context {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.popup h3 {
  background: radial-gradient(62.54% 126.95% at 50% 0%, #181768 0%, #3E76C1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* H1 */
  font-family: "Onest";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 46px; /* 143.75% */
  margin-bottom: 25px;
}

/* Форма */
.popup-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  width: 100%;
  margin: 0 0 16px 0;
}
@media screen and (max-width: 480px) {
  .popup-form {
    width: 100%;
  }
}

.popup-form-inputs {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .popup-form-inputs {
    flex-direction: column;
    gap: 16px;
  }
}

.popup-form input {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(62, 118, 193, 0.1);
  padding: 11px 16px;
  color: rgba(34, 32, 109, 0.5);
  font-family: "Onest";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
  outline: none;
  width: 100%;
  resize: none;
}
@media screen and (max-width: 480px) {
  .popup-form input {
    width: 100% !important;
  }
}

.popup-form input:focus {
  color: #000; /* наприклад, синій під час введення */
}

.popup-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(62, 118, 193, 0.1);
  padding: 11px 16px;
  color: rgba(34, 32, 109, 0.5);
  font-family: "Onest";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
  outline: none;
  width: 100%;
  resize: none;
}
@media screen and (max-width: 480px) {
  .popup-form textarea {
    height: 50px;
  }
}

.popup-form textarea:focus {
  color: #000; /* наприклад, синій під час введення */
}

/* Кнопка */
.popup-form button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #FFF;
  font-family: "Onest";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none;
  border-radius: 6px;
  background: #1751FF;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 #1751FF;
  width: 100%;
  padding: 14px;
  cursor: pointer;
  transition: all 300ms linear;
}
@media screen and (max-width: 480px) {
  .popup-form button {
    width: 100%;
  }
}

.popup-form button:hover {
  color: #1751FF;
  background: #fff;
}

.popup-form button svg path {
  transition: all 300ms linear;
}

.popup-form button:hover svg path {
  stroke: #1751FF;
}

/* Закрити */
.close-popup {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 32px;
  cursor: pointer;
  color: #5C5A5B;
}

/* Показати */
.popup-overlay.active {
  display: flex;
}

@-webkit-keyframes fadeIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.message-popup-title {
  color: var(--primary-300, #3C3232);
  text-align: center;
  font-family: "Open Sans";
  font-size: clamp(30px, 2vw, 36px);
  font-style: normal;
  font-weight: 700;
  line-height: 1; /* 36px */
  text-transform: uppercase;
  margin-bottom: 48px;
  z-index: 10;
}

.message-popup-text {
  color: var(--primary-200, #4C4648);
  text-align: center;
  /* h2-medium */
  font-family: "Nunito Sans";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 33px */
  z-index: 10;
}

.message-bg {
  position: absolute;
  bottom: 90px;
  left: 0;
  width: 100%;
}

/* контейнер */
.chk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font: 500 14px/1.5 "Inter", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color: #2E3554;
}

/* ховаємо нативний чекбокс, але лишаємо його фокусним для доступності */
.chk__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/* візуальна коробка */
.chk__box {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1.5px #96A5FF;
  background: #fff;
  position: relative;
  transition: box-shadow 0.18s ease, background 0.18s ease, transform 0.12s ease;
}
@media screen and (max-width: 480px) {
  .chk__box {
    width: 20px;
    height: 20px;
  }
}

/* галочка (псевдоелемент) */
.chk__box::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 6px;
  border: 2px solid #fff;
  border-top: 0; /* прибираємо верхню лінію */
  border-right: 0; /* прибираємо праву лінію */
  transform: rotate(-45deg) scale(0.6);
  opacity: 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
@media screen and (max-width: 480px) {
  .chk__box::after {
    top: -2px;
  }
}

.chk__input:checked + .chk__box::after {
  opacity: 1;
  transform: rotate(-45deg) scale(1);
}

/* стан :checked — синя заливка та видима галочка */
.chk__input:checked + .chk__box {
  background: #5F86FF; /* базовий синій */
  box-shadow: none;
}

/* hover/active */
.chk:hover .chk__box {
  transform: translateY(-0.5px);
}

.chk:active .chk__box {
  transform: translateY(0);
}

/* клавіатурний фокус */
.chk__input:focus-visible + .chk__box {
  outline: 2px solid #7DA2FF;
  outline-offset: 2px;
}

/* disabled */
.chk__input:disabled + .chk__box {
  background: #f0f2f7;
  box-shadow: inset 0 0 0 1.5px #cfd5e6;
}

.chk__input:disabled ~ .chk__label {
  color: #9aa3bd;
  cursor: not-allowed;
}

@media screen and (max-width: 480px) {
  .chk__label {
    color: #22206D;
    font-family: "Onest";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    max-width: 275px;
    width: 100%;
  }
}

.hero {
  margin-top: 110px;
  position: relative;
  display: flex;
  justify-content: center; /* по центру горизонтально */
  align-items: center; /* по центру вертикально */
  min-height: 100vh; /* висота секції (регулюй під макет) */
}
@media screen and (max-width: 480px) {
  .hero {
    min-height: 70vh;
  }
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  border-radius: 26px;
  border: 1px solid rgba(227, 230, 254, 0.3);
  background: rgba(255, 255, 255, 0.7);
  padding: 63px 45px 120px 45px;
  /* Card */
  -webkit-backdrop-filter: blur(12.5px);
          backdrop-filter: blur(12.5px);
}
@media screen and (max-width: 480px) {
  .hero-inner {
    flex-direction: column;
    padding: 24px 20px 40px 20px;
  }
}

.title-mobile {
  display: none;
}
@media screen and (max-width: 480px) {
  .title-mobile {
    display: block;
    font-size: 46px;
    line-height: 60px; /* 130.435% */
    background: radial-gradient(62.54% 126.95% at 50% 0%, #181768 0%, #3E76C1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 500;
  }
}

.hero-title {
  max-width: 940px;
  width: 100%;
  background: radial-gradient(62.54% 126.95% at 50% 0%, #181768 0%, #3E76C1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-family: "Manrope";
  font-size: 74px;
  font-style: normal;
  font-weight: 500;
  line-height: 91px; /* 122.973% */
}
@media screen and (max-width: 480px) {
  .hero-title {
    display: none;
  }
}

.hero-text {
  color: #22206D;
  font-family: "Onest";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
  max-width: 408px;
  width: 100%;
  margin-top: 43px;
}

.hero-inner-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
}

.hero-button {
  border-radius: 6px;
  border: none;
  background: #1751FF;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 #1751FF;
  padding: 14px 32px;
  color: #FFF;
  font-family: "Onest";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 400ms ease;
}
@media screen and (max-width: 480px) {
  .hero-button {
    width: 100%;
    margin-top: 32px !important;
    justify-content: center;
  }
}

.hero-button:hover {
  background: #FFF;
  color: #22206D;
}

.hero-button svg path {
  transition: all 400ms ease;
}

.hero-button:hover svg path {
  stroke: #22206D;
}

@media screen and (max-width: 480px) {
  .hero-inner-img {
    display: none;
  }
}

.hero-img-mobile {
  display: none;
}
@media screen and (max-width: 480px) {
  .hero-img-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
  }
}

.about {
  margin-top: 100px;
}
@media screen and (max-width: 480px) {
  .about {
    margin-top: 50px;
  }
}

.about-suptext {
  font-family: "Onest";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 140% */
  background: radial-gradient(62.54% 126.95% at 50% 0%, rgba(3, 0, 89, 0.8) 0%, rgba(3, 0, 89, 0.49) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about-title {
  font-family: "Onest";
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 84px; /* 140% */
  background: radial-gradient(62.54% 126.95% at 50% 0%, #181768 0%, #3E76C1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 20px 0 60px 0;
  max-width: 1071px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .about-title {
    font-size: 38px;
    line-height: normal;
  }
}

.about-inner {
  border-radius: 24px;
  border: 1px solid #FFF;
  background: #E9F3F8;
  box-shadow: 0 4px 60px 0 #A5C9EB, 0 4px 6px 0 rgba(0, 0, 0, 0.2);
  padding: 45px;
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(30px, 3vw, 77px);
}
@media screen and (max-width: 480px) {
  .about-inner {
    flex-direction: column;
  }
}

.about-inner-title {
  font-family: "Onest";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 46px; /* 143.75% */
  background: radial-gradient(62.54% 126.95% at 50% 0%, #181768 0%, #3E76C1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 478px;
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .about-inner-title {
    font-size: 22px;
    line-height: normal;
  }
}

.about-center {
  color: #22206D;
  font-family: "Onest";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
  max-width: 292px;
  width: 100%;
}

.about-end {
  color: #22206D;
  font-family: "Onest";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
  max-width: 292px;
  width: 100%;
}

@media screen and (max-width: 480px) {
  .about-btn-mobile {
    width: 100%;
    justify-content: center;
  }
}

.why {
  margin-top: 80px;
}

.why-context {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.why-suptitle {
  text-align: right;
  font-family: "Onest";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 140% */
  background: radial-gradient(62.54% 126.95% at 50% 0%, rgba(3, 0, 89, 0.8) 0%, rgba(3, 0, 89, 0.49) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-title {
  text-align: right;
  font-family: "Onest";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 52px; /* 130% */
  background: radial-gradient(62.54% 126.95% at 50% 0%, #181768 0%, #3E76C1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 972px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .why-title {
    font-size: 30px;
    line-height: normal;
  }
}

.why-img {
  margin-right: 65%;
  margin-top: -20px;
}

.why-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 34px 0 50px 0;
}
@media screen and (max-width: 480px) {
  .why-list {
    flex-direction: column;
    gap: 17px;
  }
}

.why-item {
  border-radius: 15.795px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: linear-gradient(270deg, #F9FBFF 0%, #E9F0FF 100%);
  -webkit-backdrop-filter: blur(104.6999969482px);
          backdrop-filter: blur(104.6999969482px);
  padding: 45px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 400ms ease;
}
@media screen and (max-width: 480px) {
  .why-item {
    border: 1px solid #1751FF;
  }
}

.why-item:hover {
  border: 1px solid #1751FF;
}

.why-icon {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: #FFF;
  -webkit-backdrop-filter: blur(12.2051286697px);
          backdrop-filter: blur(12.2051286697px);
  padding: 7px 5px 6px 8px;
}

.why-item-title {
  font-family: "Onest";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 140% */
  background: radial-gradient(62.54% 126.95% at 50% 0%, #181768 0%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 20px 0 25px 0;
}

.why-item-text {
  color: #22206D;
  font-family: "Onest";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 175% */
  max-width: 360px;
  width: 100%;
}

.why-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.values {
  margin-top: 160px;
}

.values-suptext {
  font-family: "Onest";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 140% */
  background: radial-gradient(62.54% 126.95% at 50% 0%, rgba(3, 0, 89, 0.8) 0%, rgba(3, 0, 89, 0.49) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.values-title {
  font-family: "Onest";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 52px; /* 130% */
  background: radial-gradient(62.54% 126.95% at 50% 0%, #181768 0%, #3E76C1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 808px;
  width: 100%;
  margin: 20px 0 48px 0;
}
@media screen and (max-width: 480px) {
  .values-title {
    font-size: 30px;
    line-height: normal;
  }
}

.values-context {
  display: flex;
  align-items: stretch;
  gap: 60px;
}
@media screen and (max-width: 480px) {
  .values-context {
    flex-direction: column;
    gap: 25px;
  }
}

.values-text {
  color: #22206D;
  font-family: "Onest";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 175% */
  max-width: 504px;
  width: 100%;
}

.equip {
  margin-top: 160px;
  position: relative;
}

.equip-context {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.equip-suptitle {
  text-align: center;
  font-family: "Onest";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 140% */
  background: radial-gradient(62.54% 126.95% at 50% 0%, rgba(3, 0, 89, 0.8) 0%, rgba(3, 0, 89, 0.49) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.equip-title {
  text-align: center;
  font-family: "Onest";
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 84px; /* 140% */
  background: radial-gradient(62.54% 126.95% at 50% 0%, #181768 0%, #3E76C1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 900px;
  width: 100%;
  margin-bottom: 88px;
}
@media screen and (max-width: 480px) {
  .equip-title {
    font-size: 30px;
    line-height: normal;
  }
}

.equip-list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
}
@media screen and (max-width: 480px) {
  .equip-list {
    flex-direction: column;
  }
}

.equip-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%); /* центрує фон */
  z-index: -1;
  width: 100%;
  max-width: 1600px; /* обмежує зростання фону */
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  .equip-bg {
    display: none;
  }
}

.equip-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  border-radius: 15.795px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  -webkit-backdrop-filter: blur(125px);
          backdrop-filter: blur(125px);
  padding: 30px;
  min-height: 500px;
  width: 50%;
  transition: all 400ms ease-in-out;
}
@media screen and (max-width: 480px) {
  .equip-item {
    width: 100%;
    border: 1px solid #1751FF;
  }
}

.equip-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(270deg, #F9FBFF 0%, #E9F0FF 100%);
  transition: opacity 0.5s ease-in-out;
  border-radius: inherit;
}

/* при hover білий фон “накладається” плавно */
.equip-item:hover::before {
  opacity: 0;
}

.equip-item:hover {
  border-color: #1751FF;
  background: #FFF;
}

.equip-wrapper {
  display: flex;
  justify-content: end;
  align-items: flex-end;
}

.equip-button {
  border-radius: 6px;
  border: 1px solid rgba(23, 81, 255, 0.5);
  display: flex;
  padding: 7px 21px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #1751FF;
  font-family: "Onest";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  transition: all 400ms ease;
}

.equip-button:hover {
  background: #1751FF;
  color: #fff;
}

.equip-button svg path {
  transition: all 400ms ease;
}

.equip-button svg rect {
  transition: all 400ms ease;
}

.equip-button:hover svg path {
  fill: #fff;
}

.equip-button:hover svg rect {
  fill: #1751FF;
}

.equip-item-img {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  margin: auto;
  pointer-events: none;
}

.equip-item-title {
  font-family: "Onest";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 140% */
  background: radial-gradient(62.54% 126.95% at 50% 0%, #181768 0%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.equip-item-text {
  color: #466D92;
  font-family: "Onest";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
}

.team {
  margin-top: 160px;
}

.team-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.team-arrow {
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .team-arrow {
    display: none;
  }
}

.team-text {
  font-family: "Onest";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 140% */
  background: radial-gradient(62.54% 126.95% at 50% 0%, rgba(3, 0, 89, 0.8) 0%, rgba(3, 0, 89, 0.49) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team-title {
  font-family: "Onest";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 52px; /* 130% */
  background: radial-gradient(62.54% 126.95% at 50% 0%, #181768 0%, #3E76C1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 20px 0 48px 0;
}
@media screen and (max-width: 480px) {
  .team-title {
    font-size: 30px;
    line-height: normal;
  }
}

.team-block {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 40px;
}
@media screen and (max-width: 480px) {
  .team-block {
    flex-direction: column;
  }
}

.team-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 53%;
}
@media screen and (max-width: 480px) {
  .team-right {
    flex-direction: column;
    width: 100%;
    gap: 25px;
    margin-top: 25px;
  }
}

.team-item {
  border-radius: 24px;
  border: 1px solid #FFF;
  background: #E9F3F8;
  box-shadow: 0 4px 28.5px 0 #A5C9EB, 0 4px 6px 0 rgba(0, 0, 0, 0.2);
  padding: 38px;
}
@media screen and (max-width: 480px) {
  .team-item {
    background: none;
    box-shadow: unset;
    border: none;
    padding: unset;
  }
}

.team-item-text {
  color: #22206D;
  font-family: "Onest";
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 35px; /* 159.091% */
}
@media screen and (max-width: 480px) {
  .team-item-text {
    color: #22206D;
    font-family: "Onest";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 162.5% */
  }
}

@media screen and (max-width: 480px) {
  .kick {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .team-img {
    display: none;
  }
}

.team-img-mobile {
  display: none;
}
@media screen and (max-width: 480px) {
  .team-img-mobile {
    display: block;
    width: 100%;
  }
}

.team-btn-mobile {
  display: none;
}
@media screen and (max-width: 480px) {
  .team-btn-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.partner {
  margin-top: 160px;
  background: #0534BF;
  padding: 88px 0;
}
@media screen and (max-width: 480px) {
  .partner {
    padding: 66px 0;
  }
}

.partner-inner {
  display: flex;
  justify-content: center;
  gap: 100px;
}
@media screen and (max-width: 480px) {
  .partner-inner {
    flex-direction: column;
  }
}

.partner-text {
  color: #FFF;
  font-family: "Onest";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.partner-bigtext {
  color: #FFF;
  font-family: "Onest";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  max-width: 492px;
  width: 100%;
  margin-bottom: 12px;
}
@media screen and (max-width: 480px) {
  .partner-bigtext {
    font-size: 38px;
    margin-bottom: unset;
  }
}

.img-wrapper {
  display: flex;
  justify-content: end;
  align-items: flex-end;
}

.partner-right-text {
  color: #FFF;
  font-family: "Onest";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 177.778% */
  margin-bottom: 35px;
  max-width: 495px;
}

.partner-button {
  display: inline-flex;
  padding: 16px 28px 16px 40px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  border: 2px solid #FFF;
  background: linear-gradient(180deg, #EBEBEB 0%, #FFF 100%);
  box-shadow: 0 -2px 2px 0 rgba(255, 255, 255, 0.16), 0 2px 1px 0 rgba(0, 0, 0, 0.06), 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  color: #202020;
  font-family: "Onest";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .partner-button {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .partner-arrow {
    display: none;
  }
}

.partner-arrow-mobile {
  display: none;
}
@media screen and (max-width: 480px) {
  .partner-arrow-mobile {
    display: block;
    margin-right: 50px;
  }
}

.logo {
  margin-top: 75px;
  max-width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .logo {
    margin-top: 10px;
  }
}

.logo-div {
  display: flex;
  align-items: center;
  width: 320%;
  -webkit-animation: logo 10s linear infinite;
          animation: logo 10s linear infinite;
}
@media screen and (max-width: 480px) {
  .logo-div {
    width: 310%;
    -webkit-animation: logo 6s linear infinite;
            animation: logo 6s linear infinite;
  }
}

.logo h2 {
  white-space: nowrap;
  width: 100%;
  color: #1751FF;
  text-align: center;
  font-family: "Onest";
  font-size: 161px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  margin-right: 35px;
}
@media screen and (max-width: 480px) {
  .logo h2 {
    font-size: 100px;
  }
}

.logo img {
  margin-right: 45px;
}
@media screen and (max-width: 480px) {
  .logo img {
    margin-right: 20px;
    width: 60px;
    height: 60px;
  }
}

@-webkit-keyframes logo {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes logo {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.contact {
  margin-top: 160px;
}

.contact-inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .contact-inner {
    flex-direction: column;
  }
}

.contact-suptext {
  font-family: "Onest";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 140% */
  background: radial-gradient(62.54% 126.95% at 50% 0%, rgba(3, 0, 89, 0.8) 0%, rgba(3, 0, 89, 0.49) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-title {
  font-family: "Onest";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 66px; /* 132% */
  background: radial-gradient(62.54% 126.95% at 50% 0%, #181768 0%, #3E76C1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 952px;
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .contact-title {
    font-size: 30px;
    line-height: normal;
    margin-top: 20px;
  }
}

.contact-adress {
  color: rgba(34, 32, 109, 0.8);
  font-family: "Onest";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 81px; /* 253.125% */
}
@media screen and (max-width: 480px) {
  .contact-adress {
    font-size: 22px;
    line-height: 1.9;
  }
}

@media screen and (max-width: 480px) {
  .contact-arrow-img {
    display: none;
  }
}

.contact-arrow-mobile {
  display: none;
}
@media screen and (max-width: 480px) {
  .contact-arrow-mobile {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .contact-arrow {
    display: flex;
    justify-content: end;
    margin-top: -40px;
    margin-right: 60px;
  }
}

/* базове блокування скролу, коли попап відкритий */
body.modal-open {
  overflow: hidden;
}

/* контейнер модалки */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

/* фон-оверлей */
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 26, 58, 0.35);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

/* вміст */
.modal__dialog {
  position: relative;
  width: 50%;
  border-radius: 24px;
  border: 1px solid #FFF;
  background: #E9F3F8;
  box-shadow: 0 4px 20px 0 #A5C9EB, 0 4px 6px 0 rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 30px;
  transform: translateY(10px) scale(0.98);
  transition: transform 0.25s ease, opacity 0.25s ease;
  color: #0d2a4a;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .modal__dialog {
    width: 90%;
  }
}

/* показ */
.modal[aria-hidden=false] {
  opacity: 1;
  pointer-events: auto;
}

.modal[aria-hidden=false] .modal__dialog {
  transform: translateY(0) scale(1);
}

/* шапка */
.modal__title {
  background: radial-gradient(62.54% 126.95% at 50% 0%, #181768 0%, #3E76C1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Onest";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 46px; /* 143.75% */
  margin-bottom: 34px;
}

.modal__close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

/* арт */
.modal__art {
  display: grid;
  place-items: center;
  margin-bottom: 8px;
}

/* поля */
.modal form {
  width: 50%;
}
@media screen and (max-width: 480px) {
  .modal form {
    width: 100%;
  }
}

.field {
  display: block;
  margin-bottom: 12px;
}

.field input {
  width: 100%;
  border: 0;
  padding: 11px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(62, 118, 193, 0.1);
  color: rgba(34, 32, 109, 0.5);
  font-family: "Onest";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
  outline: none;
}

.field input::-moz-placeholder {
  color: rgba(34, 32, 109, 0.5);
  font-family: "Onest";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
}

.field input:-ms-input-placeholder {
  color: rgba(34, 32, 109, 0.5);
  font-family: "Onest";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
}

.field input::placeholder {
  color: rgba(34, 32, 109, 0.5);
  font-family: "Onest";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
}

/* кнопка */
.btn {
  border: 0;
  border-radius: 12px;
  margin-top: 6px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFF;
  font-family: "Onest";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  margin-top: 25px;
  background: #1751FF;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 #1751FF;
  transition: transform 0.12s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px);
  filter: saturate(1.5);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(67, 108, 255, 0.35);
}

.btn .arrow {
  font-weight: 700;
}

/* підказки */
.form__hint {
  margin: 10px 0 0;
  min-height: 18px;
  font-size: 13px;
  color: #2d5fbf;
}

.form__hint.error {
  color: #c93838;
}

.form__hint.success {
  color: #178a55;
}

.btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer {
  padding-top: 160px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .footer {
    padding-top: 46px;
  }
}

.footer-bg {
  position: absolute;
  top: -250px;
  left: 0;
  width: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  .footer-bg {
    display: none;
  }
}

.footer-bg-mobile {
  display: none;
}
@media screen and (max-width: 480px) {
  .footer-bg-mobile {
    display: block;
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    z-index: -1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.footer-inner {
  border-radius: 25px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.5);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 63px;
}
@media screen and (max-width: 480px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 100px;
    margin-bottom: 20px;
  }
}

.footer-col {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 480px) {
  .footer-col {
    width: 100%;
    align-items: center;
  }
}

.footer-context {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .footer-context {
    flex-direction: column;
    gap: 15px;
    max-width: 251px;
  }
}

.adress {
  color: rgba(34, 32, 109, 0.8);
  font-family: "Onest";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
  max-width: 340px;
}
@media screen and (max-width: 480px) {
  .adress {
    text-align: center;
  }
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 43px;
}
@media screen and (max-width: 480px) {
  .footer-content {
    align-items: center;
    justify-content: center;
  }
}

.small-text {
  text-align: right;
  font-family: "Onest";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 46px; /* 230% */
  background: radial-gradient(62.54% 126.95% at 50% 0%, #181768 0%, #3E76C1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 480px) {
  .small-text {
    text-align: center;
    line-height: normal;
  }
}

.footer-text {
  background: radial-gradient(62.54% 126.95% at 50% 0%, #181768 0%, #3E76C1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Onest";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 46px;
  text-align: end;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .footer-text {
    text-align: center;
  }
}

.copyright {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: rgba(34, 32, 109, 0.6);
  font-family: "Onest";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 185.714% */
}/*# sourceMappingURL=main.css.map */