@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-padding-top: 20px;
}

body {
  background: #F5F5F5;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  color: #000000;
  font-weight: normal;
}

img {
  width: 100%;
  pointer-events: none;
}

section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }  
}

h2 {
  word-wrap: break-word !important;
}

/* #region Container */
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 15px;
}

@media screen and (max-width: 992px) {
  .container {
    max-width: 720px;
  }
} 

@media screen and (max-width: 768px) {
  .container {
    max-width: 540px;
  }
} 
/* #endregion */

/* #region BANNER-BG */
.banner__bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner__bg[data-bg="home"] {
  background-image: url('../images/bg/main-bg.jpg');
}

.banner__bg[data-bg="robospark"] {
  background-image: url('../images/bg/robospark-bg.jpg');
}

.banner__bg[data-bg="alvexo"] {
  background-image: url('../images/bg/alvexo-bg.jpg');
}

.banner__bg[data-bg="trader-ai"] {
  background-image: url('../images/bg/trader-ai-bg.jpg');
}
/* #endregion */

/* #region HEADER */
.header {
  padding-top: 16px;
}

.header__wrapper {
  border-radius: 66px;
  border: 1px solid rgba(255, 255, 255, 0.29);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  -moz-backdrop-filter: blur(7px);
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
}

.header__wrapper_legal {
  border-radius: 66px;
  border: 1px solid rgba(0, 0, 0, 0.29);
  background: rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  -moz-backdrop-filter: blur(7px);
  margin-bottom: 16px;
}

.header__logo {
  max-width: 150px;
  width: 100%;
  transition: all .2s linear;
}

@media (hover: hover) {
  .header__logo:hover {
    scale: 1.03;
  }
}

@media (hover: none) {
  .header__logo:active {
    scale: 1.03;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 57px;
}

.header__nav a {
  color: #FFF;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all .2s linear;
}

.header__wrapper_legal .header__nav a {
  color: #000;
}

@media (hover: hover) {
  .header__nav a:hover {
    color: #ffde00;
  }

  .header__wrapper_legal .header__nav a:hover {
    color: #787878;
  }
}

@media (hover: none) {
  .header__nav a:active {
    color: #ffde00;
  }

  .header__wrapper_legal .header__nav a:active {
    color: #787878;
  }
}

.header__nav .active {
  color: #EAFF00;
  font-weight: 500;
}

.header__btns {
  display: flex;
  align-items: center;
  gap: 7px;
}

.header__btns a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  text-align: center;
  line-height: normal;
  max-width: 129px;
  width: 100%;
  padding: 15px 20px;
  border-radius: 43px;
  background: #FFF;
  text-wrap: nowrap;
  transition: all .2s linear;
}

@media (hover: hover) {
  .header__btns a:hover {
    background: #ffde00;
  }
}

@media (hover: none) {
  .header__btns a:active {
    background: #ffde00;
  }
}

.header__btns .active {
  background: #EAFF00;
}

/* Mobile Menu Styles */
.header__mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  gap: 4px;
  z-index: 1001;
}

.header__mobile-toggle span {
  width: 25px;
  height: 3px;
  background: #FFF;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header__wrapper_legal .header__mobile-toggle span {
  background: #000;
}

.header__mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.header__wrapper_legal .header__mobile-toggle.active span {
  background: #fff;
}

.header__mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.header__mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.header__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding-top: 150px;
  padding-bottom: 40px;
  overflow-y: scroll;
}

.header__mobile-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: transparent;
  z-index: 1001;
}

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

.header__mobile-menu .header__nav {
  flex-direction: column;
  gap: 30px;
}

.header__mobile-menu .header__nav a {
  font-size: 24px;
  font-weight: 500;
}

.header__mobile-menu .header__btns {
  flex-direction: column;
  gap: 20px;
}

.header__mobile-menu .header__btns a {
  max-width: 200px;
  font-size: 16px;
}

/* Media Queries */
@media (max-width: 992px) {
  .header__wrapper {
    padding: 12px 20px;
    border-radius: 50px;
    position: relative;
    z-index: 1002;
  }
  
  .header__logo {
    max-width: 120px;
  }
  
  .header__wrapper .header__nav,
  .header__wrapper .header__btns {
    display: none;
  }
  
  .header__mobile-toggle {
    display: flex;
    position: relative;
    z-index: 1002;
  }
}

@media (max-width: 768px) {
  .header {
    padding-top: 12px;
  }
  
  .header__wrapper {
    padding: 10px 16px;
    border-radius: 40px;
  }
  
  .header__logo {
    max-width: 100px;
  }
}

@media (max-width: 480px) {
  .header__wrapper {
    padding: 8px 12px;
    border-radius: 35px;
  }
  
  .header__logo {
    max-width: 80px;
  }
  
  .header__mobile-menu .header__nav a {
    font-size: 20px;
  }
  
  .header__mobile-menu .header__btns a {
    max-width: 180px;
    font-size: 14px;
    padding: 12px 16px;
  }
}
/* #endregion */

/* #region HERO */
.hero__wrapper {
  display: flex;
  flex-direction: column;
  gap: 42px;
  max-width: 872px;
  width: 100%;
}

.hero__wrapper h1 {
  color: #FFF;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 768px) {
  .hero__wrapper h1 {
    font-size: 38px;
  }
}


@media (max-width: 576px) {
  .hero__wrapper h1 {
    font-size: 32px;
  }
}

.hero__wrapper  p {
  color: rgba(255, 255, 255, 0.80);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 190%;
}
/* #endregion */

/* #region ABOUT */
.about__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .about__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.about__header h2 {
  color: #000;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  max-width: 847px;
  width: 100%;
}

@media (max-width: 768px) {
  .about__header h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .about__header h2 {
    font-size: 28px;
  }
}

.button {
  position: relative;
  background: #000;
  color: #EAFF00;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  border: none;
  padding: 12px 16px;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
  width: fit-content;
  min-width: 180px;
}

.arrow-wrapper {
  position: relative;
  width: 25px;
  height: 24px;
  overflow: hidden;
}

.arrow {
  position: absolute;
  left: 0;
  top: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.arrow-current {
  transform: translate(0, 0);
}

.arrow-next {
  transform: translate(-25px, 24px);
}

.button:hover .arrow-current {
  transform: translate(25px, -24px);
}

.button:hover .arrow-next {
  transform: translate(0, 0);
}

.about__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

@media (max-width: 992px) {
  .about__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

.about__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 477px;
  width: 100%;
}

@media (max-width: 992px) {
  .about__info {
    max-width: 100%;
  }
}

.about__info p {
  color: rgba(0, 0, 0, 0.80);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 190%;
}

.about__img {
  display: flex;
  align-items: stretch;
  gap: 30px;
  max-width: 610px;
  width: 100%;
}

@media (max-width: 992px) {
  .about__img {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about__img {
    flex-direction: column;
  }
}

.about__img img {
  border-radius: 20px;
}
/* #endregion */

/* #region INFO */
.info__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: space-between;
  gap: 60px;
}

@media (max-width: 992px) {
  .info__wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 40px;
  }
}

.info__img {
  display: flex;
  align-items: stretch;
  gap: 30px;
  max-width: 435px;
  width: 100%;
}

@media (max-width: 992px) {
  .info__img {
    margin: 0 auto;
  }
}

.info__img img {
  border-radius: 20px;
}

.info__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 625px;
  width: 100%;
}

@media (max-width: 992px) {
  .info__content {
    max-width: 100%;
  }
}

.info__content h2 {
  color: #000;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 44px;
}

@media (max-width: 768px) {
  .info__content h2 {
    font-size: 34px;
    margin-bottom: 14px;
  }
}

@media (max-width: 576px) {
  .info__content h2 {
    font-size: 28px;
  }
}

.info__content p {
  color: rgba(0, 0, 0, 0.80);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 190%;
}
/* #endregion */

/* #region PRIMARY */
.primary__wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
}

@media (max-width: 768px) {
  .primary__wrapper {
    gap: 40px;
  }
}

.primary__wrapper h2 {
  color: #000;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media (max-width: 768px) {
  .primary__wrapper h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .primary__wrapper h2 {
    font-size: 28px;
  }
}
/* #endregion */

/* #region LICENSES */
.licenses {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 992px) {
  .licenses {
    flex-direction: column;
  }
}

.licenses__box {
  width: calc((100% - 16px) / 2);
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.29);
  background: #FFF;
  padding: 32px;
}

@media (max-width: 992px) {
  .licenses__box {
    width: 100%;
    max-width: 100%;
  }
}

.licenses__img {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.29);
  width: 66px;
  height: 66px;
  min-width: 66px;
  min-height: 66px;
  object-fit: contain;
}

.licenses__img img {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  object-fit: contain;
}

.licenses__box p {
  color: #000;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.licenses__items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.licenses__items span {
  border-radius: 100px;
  background: #EAFF00;
  padding: 8px 16px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.intelligence {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.intelligence p {
  color: rgba(0, 0, 0, 0.80);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 190%;
}

.intelligence h4 {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
/* #endregion */

/* #region CASES */
.cases {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.case {
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.29);
  background: #FFF;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

@media (max-width: 992px) {
  .case {
    padding: 32px 24px;
  }
}

.case__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media (max-width: 390px) {
  .case__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@keyframes breathing {
  0%, 100% {
    box-shadow: 0 0 20px rgba(182, 204, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 25px rgba(182, 204, 0, 0.7);
  }
}

@keyframes pulsing-border {
  0%, 100% {
    border: 2px solid rgba(182, 204, 0, 0.3);
    box-shadow: 
      0 0 0 0px rgba(182, 204, 0, 0.4),
      0 0 0 0px rgba(182, 204, 0, 0.2);
  }
  50% {
    border: 2px solid rgba(182, 204, 0, 0.6);
    box-shadow: 
      0 0 0 10px rgba(182, 204, 0, 0.2),
      0 0 0 20px rgba(182, 204, 0, 0.1);
  }
}

.case__header a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 130px;
  width: 100%;
  text-align: center;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 11px 20px;
  border-radius: 43px;
  background: #EAFF00;
  text-decoration: none;
  border: 2px solid rgba(15, 99, 161, 0.3);
  animation: breathing 3s ease-in-out infinite, pulsing-border 2s ease-in-out infinite;
  transition: all .2s linear;
  cursor: pointer;
}

@media (max-width: 390px) {
  .case__header a {
    max-width: 100%;
  }
}

@media (hover: hover) {
  .case__header a:hover {
    background: #ffde00;
  }
}

@media (hover: none) {
  .case__header a:active {
    background: #ffde00;
  }
}

.case__logo {
  max-width: 160px;
  width: 100%;
}

.case__items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case__items span {
  border-radius: 100px;
  background: #EDEDED;
  padding: 8px 16px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
/* #endregion */

/* #region FOOTER */
.footer {
  background: #000;
  padding: 40px 0;
  gap: 120px;
}

.footer__wrapper {
  margin-bottom: 120px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

@media (max-width: 992px) {
  .footer__wrapper {
    flex-direction: column;
  }
}

.footer__logo {
  max-width: 150px;
  width: 100%;
  transition: all .2s linear;
}

@media (hover: hover) {
  .footer__logo:hover {
    scale: 1.03;
  }
}

@media (hover: none) {
  .footer__logo:active {
    scale: 1.03;
  }
}

.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 38px;
  max-width: fit-content;
}

.footer__menu h3 {
  color: #FFF;
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.footer__menu nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__menu nav a {
  color: rgba(255, 255, 255, 0.80);
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  transition: all .2s linear;
}

@media (hover: hover) {
  .footer__menu nav a:hover  {
    color: #EAFF00;
  }
}

@media (hover: none) {
  .footer__menu nav a:active  {
    color: #EAFF00;
  }
}

.contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contacts h3 {
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.contacts p {
  color: rgba(255, 255, 255, 0.80);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}


.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

.footer__bottom span {
  display: block;
  color: #FFF;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  min-width: 55px;
  min-height: 55px;
  border-radius: 27.546px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease; 
}

.footer__socials a svg path {
  transition: fill 0.3s ease;
}

.footer__socials a:hover svg path {
  fill: #EAFF00;
}

@media (hover: hover) {
  .footer__socials a:hover svg path {
    fill: #EAFF00;
  }
}

@media (hover: none) {
  .footer__socials a:active svg path {
    fill: #EAFF00;
  }
}
/* #endregion */

/* #region LEGAL */
.legal__wrapper h2 {
  color: #000;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 24px;
  word-wrap: break-word;
}


@media (max-width: 768px) {
  .legal__wrapper h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .legal__wrapper h2 {
    font-size: 28px;
  }
}

.legal__wrapper h3 {
  color: rgba(0, 0, 0, 0.80);
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 190%;
}

.legal__wrapper p {
  color: rgba(0, 0, 0, 0.80);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 190%;
}

.legal__wrapper ul {
  margin-left: 20px;
}

.legal__wrapper ul li {
  color: rgba(0, 0, 0, 0.80);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 190%;
  list-style: disc;
}
/* #endregion */

/* #region BOT */
.bot__wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
}

@media (max-width: 768px) {
  .bot__wrapper {
    gap: 40px;
  }  
}

.bot-info__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 992px) {
  .bot-info__wrapper {
    flex-direction: column;
  }
}

.bot-info {
  width: calc((100% - 16px) / 2);
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.29);
  background: #FFF;
  padding: 32px;
}

@media (max-width: 992px) {
  .bot-info {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 993px) {
  .bot-info__wrapper > .bot-info:only-child,
  .bot-info__wrapper > .bot-info:nth-last-child(1):nth-child(odd) {
    width: 100%;
  }
}

.bot-info h2 {
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media (max-width: 768px) {
  .bot-info h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .bot-info h2 {
    font-size: 28px;
  }
}

.bot-info p {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.bot-info ul {
  margin-left: 20px;
}

.bot-info ul li {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  list-style: disc;
}


.bot-intelligence {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.bot-intelligence h2 {
  color: #000;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media (max-width: 768px) {
  .bot-intelligence h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .bot-intelligence h2 {
    font-size: 28px;
  }
}

.bot-intelligence h3 {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.bot-intelligence ul {
  margin-left: 20px;
}

.bot-intelligence ul li {
  color: rgba(0, 0, 0, 0.80);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 190%;
  list-style: disc;
}

.bot-intelligence p {
  color: rgba(0, 0, 0, 0.80);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 190%;
}
/* #endregion */

/* #region REGISTRATION */
.registration {
  padding-top: 0;
}

.registration__wrapper {
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.29);
  background: #FFF;
  padding: 32px;
}

@media (max-width: 576px) {
  .registration__wrapper {
    padding: 32px 16px;
  }
}

.form h2 {
  color: #000;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  margin-bottom: 32px;
  
}

@media (max-width: 768px) {
  .form h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .form h2 {
    font-size: 24px;
  }
}

@media (max-width: 350px) {
  .form h2 {
    font-size: 22px;
  }
}

.form__filds {
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form input {
  border-radius: 100px;
  background: #EDEDED;
  padding: 8px 16px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: none;
  outline: none;
}

.form button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 11px 20px;
  border-radius: 43px;
  background: #EAFF00;
  text-decoration: none;
  border: 2px solid rgba(15, 99, 161, 0.3);
  animation: breathing 3s ease-in-out infinite, pulsing-border 2s ease-in-out infinite;
  transition: all .2s linear;
  cursor: pointer;
  margin-top: 20px;
  text-wrap: balance;
}

@media (hover: hover) {
  .form button:hover {
    background: #ffde00;
  }
}

@media (hover: none) {
  .form button:active {
    background: #ffde00;
  }
}
/* #endregion */
