@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap");
* {
  margin: 0;
  border: 0;
  padding: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  font-family: "Unbounded", sans-serif;
  background: #FFF;
}

.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #FFF;
}

.main {
  flex: 1 1 auto;
}

[class*=__container] {
  max-width: 1230px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  scroll-margin-top: 100px;
}

[class*=__text] {
  color: #1F1F1F;
  font-size: 14px;
  font-weight: 400;
}

.title {
  color: #FFF;
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 700;
}

.h2 {
  color: #FFF;
  font-size: 24px;
  font-weight: 800;
  line-height: 110%;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-block;
  border-radius: 60px;
  background: linear-gradient(180deg, #175CCA 0%, #8C40FF 100%);
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  padding: 26px 70px;
}

.btn-border {
  display: inline-block;
  border-radius: 60px;
  border: 1px solid #1F1F1F;
  color: #1F1F1F;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  padding: 26px 70px;
}

.black {
  color: #1F1F1F !important;
}

.white {
  color: #fff !important;
}

.light-green {
  color: #00FF6C !important;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #FFF;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
}
@media (max-width: 767px) {
  .header__content {
    align-items: flex-start;
    flex-direction: column;
  }
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1F1F1F;
  font-size: 22px;
  font-weight: 700;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.header__menu a {
  color: #1F1F1F;
  font-size: 14px;
  font-weight: 400;
}

.footer {
  background: #1F1F1F;
  padding: 20px 0;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFF;
  font-size: 22px;
  font-weight: 700;
}
.footer__menu {
  display: flex;
  gap: 20px;
}
.footer__menu a {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .footer__menu {
    flex-direction: column;
  }
}
.footer__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .footer__row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer__column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__name {
  color: #8C40FF;
  font-size: 18px;
  font-weight: 700;
}
.footer__text {
  color: #FFF;
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.footer__links a {
  display: inline-block;
}
.footer__txt {
  color: rgba(255, 255, 255, 0.6);
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  padding: 20px;
  max-width: 800px;
  width: 100%;
  border-radius: 22px;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  .cookies {
    padding: 20px;
  }
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookies__icon {
  margin: 0 auto;
}
.cookies__title {
  color: #1F1F1F;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
}
.cookies__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookies__btns {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #19222D;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.popup__content {
  border-radius: 22px;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  padding: 20px;
}
.popup__title {
  color: #0A0A0A;
  font-size: 26px;
  font-weight: 700;
}
.popup__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  flex-direction: column;
}
.popup__accept {
  width: 100%;
}
.popup__exit {
  width: 100%;
}

.hero {
  margin: 68px 0 0;
  background: linear-gradient(180deg, #175CCA 0%, #8C40FF 100%);
}
.hero_privacy {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .hero {
    margin: 105px 0 0;
  }
}
@media (max-width: 575px) {
  .hero {
    margin: 144px 0 0;
  }
}
.hero__content {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .hero__content {
    flex-direction: column-reverse;
    padding: 50px 0 0;
  }
}
.hero__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.hero__text {
  color: #fff;
}
@media (max-width: 575px) {
  .hero__img {
    width: -moz-fit-content;
    width: fit-content;
  }
  .hero__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.about {
  margin: 80px 0;
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.about__card {
  border-radius: 26px;
  border: 3px solid #175CCA;
  background: linear-gradient(180deg, rgba(23, 92, 202, 0.15) 0%, rgba(140, 64, 255, 0.15) 100%);
  padding: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow: hidden;
}
.about__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 20px;
  gap: 20px;
  flex-wrap: wrap;
}
.about__text {
  text-align: center;
  max-width: 305px;
}
.about__label {
  border-radius: 50%;
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  background: #8C40FF;
}
.about__label p {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 110%;
}
.about__link {
  flex-shrink: 0;
}
.about__txt {
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  padding: 18px 20px;
  background: #8C40FF;
}

.info {
  background: #8C40FF;
  padding: 60px 0;
}
.info_sub {
  padding: 80px 0;
  background: #fff;
}
.info__content {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 991px) {
  .info__content {
    flex-direction: column;
    gap: 30px;
  }
}
.info__title {
  color: #8C40FF;
}
.info__text b {
  font-size: 18px;
}

.contact {
  padding: 30px 0 80px;
}
.contact__content {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .contact__content {
    flex-direction: column;
  }
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.contact__inp {
  border-radius: 60px;
  background: rgba(31, 31, 31, 0.05);
  padding: 24px 20px;
  color: rgba(31, 31, 31, 0.6);
  font-size: 14px;
  font-weight: 400;
}
.contact__inp::-moz-placeholder {
  color: rgba(31, 31, 31, 0.6);
}
.contact__inp::placeholder {
  color: rgba(31, 31, 31, 0.6);
}
.contact__btn {
  margin-top: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 575px) {
  .contact__img {
    width: -moz-fit-content;
    width: fit-content;
  }
  .contact__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.privacy {
  margin: 30px 0 80px;
}