/* #region HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  margin-top: 40px;
  z-index: 10;
  transition: margin-top 0.4s ease;

  .container {
    max-width: 1035px;
    transition:
      max-width 0.4s ease,
      padding 0.4s ease;
  }

  &.menu-open {
    .header__burger {
      span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }

      span:nth-child(2) {
        opacity: 0;
      }

      span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }
    }
  }

  &.scrolled {
    margin-top: 0;
    .container {
      max-width: 100%;
      padding-inline: 0;
    }

    .header__inner {
      border-radius: 0;
      padding-inline: 20px;
    }
  }
}

.header__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  background: #fff;
  transition:
    border-radius 0.4s ease,
    padding 0.4s ease,
    background 0.4s ease;
}

.header__burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;

  span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: #000;
    transition: 0.3s;
  }
}

.header__nav {
  ul {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #676767;
    font-weight: 500;

    a {
      transition: color 0.3s;
      &:hover {
        color: var(--secondary);
      }
    }
  }
}

.header__user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__user-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  color: #505050;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.48px;
  border-radius: 12px;
  transition: all 0.3s;

  &:hover {
    border-radius: 0;
  }
}

.header__user-link--login {
  border: 1px solid #dcdcdc;
  background: #fff;

  &:hover {
    border-color: var(--secondary);
    color: var(--secondary);
  }
}

.header__user-link--register {
  color: white;
  background: #6b9fff;
  box-shadow: 0 2px 2px 0 rgba(83, 79, 235, 0.25);

  &:hover {
    background: var(--secondary);
    box-shadow: 0 2px 2px 0 rgba(0, 62, 179, 0.25);
  }
}

@media (width <= 1200px) {
  .header {
    margin-top: 54px;

    .container {
      padding-inline: 40px;
    }
  }
}

@media (width <= 768px) {
  .header {
    margin-top: 16px;
    .container {
      padding-inline: 25px;
    }
  }
  .header__burger {
    display: block;
  }

  .header__user {
    margin-left: auto;
  }

  .header__nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #dcdcdc;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s;

    ul {
      flex-direction: column;
      align-items: flex-start;

      li {
        width: 100%;

        a {
          display: block;
          width: 100%;
        }
      }
    }
  }

  .header.menu-open {
    .header__nav {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
  }
}

@media (width < 576px) {
  .header__user {
    width: 100%;
    order: 2;
    justify-content: center;
  }
}

/* #endregion Header */

/* #region HERO SECTION */
.hero {
  padding-top: 20px;

  .container {
    max-width: 1400px;
    padding-inline: 68px;
  }
}

.hero__bg {
  padding-block: 130px 150px;
  background-image: url(../img/hero-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 1400px;
  margin-inline: auto;
  height: 854px;
  border-radius: 20px;
}

.hero__inner {
  display: flex;
  gap: 64px;
}

.hero__content {
  max-width: 682px;
  margin-top: 18px;
  color: white;
  font-family: var(--font-family-secondary);

  h1 {
    margin-bottom: 20px;
  }

  h2 {
    margin-bottom: 20px;
    color: white;
    text-align: start;
    font-weight: 600;
    line-height: 1.3;
  }

  p {
    font-weight: 600;
    line-height: 1.44;

    &:first-of-type {
      margin-bottom: 14px;
    }
  }
}

.hero__form {
  display: flex;
  flex-shrink: 0;
  max-width: 435px;
  width: 100%;
  padding: 40px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 4px 11px 0 rgba(145, 145, 145, 0.25);

  .form-wrapper {
    width: 100%;
  }

  h2 {
    margin-bottom: 22px;
    font-family: var(--font-family-base);
    color: #274684;
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
  }
}

.hero__line {
  display: flex;
  gap: 18px;
  margin-top: -48px;
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  padding: 28px 68px 40px;
}

.hero__line-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--primary);
  font-family: var(--font-family-secondary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44;
  text-transform: uppercase;

  &:not(:last-child) {
    position: relative;
    padding-right: 18px;

    &::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 1px;
      height: 100%;
      background: linear-gradient(
        180deg,
        #d6e5fe 0%,
        #679aff 50%,
        #d5e5ff 100%
      );
    }
  }
}

@media (width < 1440px) {
  .hero {
    padding: 20px 20px 0 20px;

    .container {
      padding-inline: 20px;
    }
  }
  .hero__line {
    padding-inline: 20px;
  }
}

@media (width < 1200px) {
  .hero__inner {
    flex-direction: column;
    gap: 24px;
  }
  .hero__bg {
    background-image: url(../img/hero-bg-mob.webp);
    padding-block: 188px 0;
    height: auto;
  }

  .hero__content {
    margin-top: 0;
  }

  .hero__form {
    align-self: center;
  }

  .hero__line {
    justify-content: center;
    margin-top: 36px;
    padding-block: 34px;

    .hero__line-item {
      font-size: 16px;
    }
  }
}

@media (width < 768px) {
  .hero {
    padding: 0;
  }
  .hero__bg {
    padding-block: 166px 0;
    border-radius: 0;
  }
  .hero__inner {
    gap: 50px;
  }
  .hero__form {
    padding: 40px 20px;

    h2 {
      font-size: 25px;
    }
  }
  .hero__line {
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin-top: 50px;
    max-width: 220px;
    margin-inline: auto;
    background-color: transparent;

    .hero__line-item {
      position: relative;
      padding-right: 0;
      padding-bottom: 16px;

      &::after {
        content: '';
        position: absolute;
        top: unset;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(
          180deg,
          #d6e5fe 0%,
          #679aff 50%,
          #d5e5ff 100%
        );
      }
    }
  }
}

/* #endregion HERO SECTION */

/* #region HIGHLIGHTS SECTION */
.highlights {
  padding-block: 150px;
  position: relative;

  &::before,
  &::after {
    content: '';
    position: absolute;
    width: 518px;
    height: 505px;
    border-radius: 518px;
    background: #a2c3ff;
    filter: blur(120px);
    z-index: -1;
  }

  &::before {
    top: 10%;
    left: -30%;
  }

  &::after {
    bottom: 0;
    right: -30%;
  }
}

.highlights__inner {
  max-width: 914px;
  margin-inline: auto;

  h2 {
    margin-bottom: 80px;
  }
}

.highlights__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;

  li {
    display: flex;
    padding: 26px 70px;
    width: 100%;
    align-items: center;
    gap: 16px;
    border-radius: 10px;
    background: linear-gradient(90deg, #fff 0%, #caddff 50%, #fff 100%);
    font-family: var(--font-family-secondary);
    line-height: 1;

    &::before {
      content: '';
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      background: url('../img/icons/chevron.svg') center/contain no-repeat;
    }

    h4 {
      margin-right: auto;
      width: 100%;
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -0.4px;
    }

    p {
      letter-spacing: -0.36px;
      margin-right: 80px;
      width: 100%;
    }
  }
}

@media (width < 992px) {
  .highlights {
    padding-block: 120px;

    &::before,
    &::after {
      display: none;
    }
  }

  .highlights__inner {
    h2 {
      margin-bottom: 70px;
    }
  }

  .highlights__list {
    li {
      padding: 26px 45px 26px 70px;
      h4 {
        width: 80%;
      }
      p {
        margin-right: 0;
      }
    }
  }
}

@media (width < 768px) {
  .highlights {
    display: none;
  }
}
/* #endregion HIGHLIGHTS SECTION */

/* #region COINS SECTION */

.coins {
  padding-block: 0 150px;
}

.coins__slider {
  display: flex;
  padding: 27px 34px;
  gap: 80px;
  background: #a2c3ff;
  pointer-events: none;
  user-select: none;
}

.coins__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 80px;
  animation: coins-scroll 20s linear infinite;

  img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
  }
}

@keyframes coins-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (width < 1200px) {
  .coins {
    padding-block: 0 120px;
  }
}

@media (width < 768px) {
  .coins {
    padding-block: 100px;
  }
}
/* #endregion COINS SECTION */

/* #region STATS SECTION */
.stats {
  padding-bottom: 150px;
}
.stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 26px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background: #f9f9f9;
  max-width: 406px;
  width: 100%;

  span {
    font-size: 50px;
    font-weight: 600;
    background: linear-gradient(90deg, #6b9fff 0%, #534feb 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media (width < 1200px) {
  .stats {
    padding-bottom: 120px;
  }

  .stats__inner {
    flex-wrap: wrap;
  }
}

@media (width < 768px) {
  .stats {
    padding-bottom: 100px;
  }
  .stats__item {
    gap: 0;
    span {
      font-size: 40px;
    }
  }
}

/* #endregion STATS SECTION */

/* #region FEAT SECTION */
.feat {
  padding: 20px;
}
.feat__bg {
  background: url('../img/feat-bg.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  padding-block: 100px;
}

.feat__inner {
  h2 {
    margin-bottom: 80px;
  }
}
.feat__carousel {
  display: flex;
  align-items: center;
  gap: 30px;
}

.feat__nav {
  display: flex;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50%;
  background: #a7c5ff;
  cursor: pointer;
  transition:
    background 0.3s,
    translate 0.3s;

  svg {
    transition: color 0.3s;
  }

  &:hover {
    background: #6b9fff;
    color: white;
    translate: 0 -5px;
  }
}

.feat-slide {
  display: flex;
  align-items: flex-start;
  gap: 22px;

  img {
    width: 84px;
    height: 84px;
  }
}

.feat-slide__title {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 15px;
}

.feat__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;

  .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }

  .swiper-pagination-bullet-active {
    background: #003eb3;
  }
}

@media (width < 1024px) {
  .feat__bg {
    padding-block: 80px;
  }
  .feat__inner {
    h2 {
      margin-bottom: 50px;
    }
  }
  .feat__pagination {
    display: none;
  }
}

@media (width < 768px) {
  .feat {
    padding: 0;
  }
  .feat__bg {
    padding-block: 50px;
  }
  .feat__inner {
    h2 {
      margin-bottom: 40px;
    }
  }
  .feat__carousel {
    position: relative;
    padding-bottom: 80px;
  }
  .feat-slide {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .feat__nav {
    position: absolute;
    bottom: 0;
    z-index: 3;

    &.feat__nav--prev {
      left: 0;
    }

    &.feat__nav--next {
      right: 0;
    }
  }
}
/* #endregion FEAT SECTION */

/* #region BLOG SECTION */
.blog {
  position: relative;
  padding-block: 150px;

  &::before,
  &::after {
    content: '';
    position: absolute;
    width: 518px;
    height: 505px;
    border-radius: 518px;
    background: #a2c3ff;
    filter: blur(120px);
    z-index: -1;
  }

  &::before {
    top: 25%;
    left: -20%;
  }

  &::after {
    bottom: 20%;
    right: -20%;
  }
}

.blog__circle {
  position: absolute;
  bottom: 0;
  left: -20%;
  width: 518px;
  height: 505px;
  border-radius: 518px;
  background: #a2c3ff;
  filter: blur(120px);
  z-index: -1;
}

.blog__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.blog__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.blog__item {
  display: flex;
  align-items: center;

  img {
    z-index: 1;
  }
  &.blog__item--reverse {
    flex-direction: row-reverse;

    .blog__item-content {
      margin-left: 0;
      margin-right: -180px;
      padding-left: 42px;
      padding-right: 180px;
    }

    .blog__item-content-inner {
      padding-left: 0;
      padding-right: 50px;
    }
  }
}

.blog__item-content {
  border-radius: 20px;
  border: 1px solid #d6d6d6;
  background: #f9f9f9;
  padding: 54px 42px;
  padding-left: 180px;
  max-height: 440px;
  max-width: 780px;
  margin-left: -180px;
}

.blog__item-content-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 50px;
}

@media (width < 1200px) {
  .blog {
    padding-block: 120px;

    &::before,
    &::after,
    .blog__circle {
      display: none;
    }
  }

  .blog__inner {
    gap: 70px;
  }

  .blog__items {
    width: 100%;
  }

  .blog__item {
    flex-direction: column;
    width: 100%;

    &.blog__item--reverse {
      flex-direction: column;

      .blog__item-content {
        margin-right: 0;
        padding: 40px 36px;
      }

      .blog__item-content-inner {
        padding-right: 0;
      }
    }

    img {
      max-width: 704px;
      width: 100%;
    }
  }

  .blog__item-content {
    max-width: 612px;
    padding: 40px 36px;
    margin-left: 0;
    margin-top: -95px;
    z-index: 2;
  }

  .blog__item-content-inner {
    padding-left: 0;
  }
}

@media (width < 768px) {
  .blog {
    padding-block: 100px;
  }
  .blog__inner {
    gap: 40px;
  }
  .blog__items {
    gap: 30px;
  }
  .blog__item {
    &.blog__item--reverse {
      .blog__item-content {
        padding: 30px 20px;
      }
    }
  }
  .blog__item-content {
    padding: 30px 20px;
    max-height: 100%;
    font-size: 16px;

    h3 {
      font-size: 25px;
    }
  }
}

/* #endregion BLOG SECTION */

/* #region SPONSORS SECTION */

.sponsors {
  padding-bottom: 150px;
}

.sponsors__inner {
  border-radius: 25px;
  background: #a2c3ff;
  box-shadow: 0 4px 40px 0 #a2c3ff;
  padding: 60px 20px;

  h2 {
    font-family: var(--font-family-base);
    color: #0c0c0c;
    font-size: 25px;
    font-weight: 500;
  }
}

.sponsors__items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 25px;
}

@media (width < 1200px) {
  .sponsors {
    padding-bottom: 120px;
  }
}

@media (width < 768px) {
  .sponsors {
    padding-bottom: 100px;
  }
  .sponsors__inner {
    padding: 50px 20px;
  }
}
/* #endregion SPONSORS SECTION */

/* #region APART SECTION */
.apart {
  padding: 20px 20px 0 20px;
}

.apart__bg {
  background: url(../img/apart-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  padding-block: 100px;
}

.apart__inner {
  h2 {
    margin-bottom: 80px;
  }
}

.apart__items {
  display: flex;
  gap: 25px;
  margin-bottom: 70px;
}

.apart__item {
  display: flex;
  padding: 26px 20px;
  flex-direction: column;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background: #f9f9f9;
}

.apart__item-header {
  display: flex;
  gap: 10px;
  align-items: center;

  h4 {
    font-size: 22px;
    font-weight: 500;
  }
}

.apart__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 0 auto 92px auto;
  max-width: 928px;

  h3 {
    color: #003eb3;
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.5;
  }
}

.apart__list-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 26px;

  li {
    display: flex;
    gap: 10px;
    align-items: center;

    &::before {
      content: '';
      width: 32px;
      height: 32px;
      flex-shrink: 0;
      background: url(../img/icons/chevron-white.svg) center / contain no-repeat;
    }
  }
}

@media (width < 1024px) {
  .apart__bg {
    padding-block: 80px;
  }
  .apart__list {
    gap: 40px;
    margin-bottom: 50px;
  }
  .apart__items {
    flex-direction: column;
    margin-bottom: 60px;
  }
  .apart__list-items {
    grid-template-columns: repeat(2, 1fr);
    place-self: center;
  }
}

@media (width < 768px) {
  .apart {
    padding: 0;
  }

  .apart__bg {
    padding-block: 70px 0;
    background-position: top;
    background-size: 100% 72%;
  }

  .apart__inner {
    h2 {
      margin-bottom: 40px;
    }
  }

  .apart__list {
    margin-bottom: 0;
  }

  .apart__items {
    margin-bottom: 54px;
  }

  .apart__list-items {
    grid-template-columns: 1fr;
  }
}
/* #endregion APART SECTION */

/* #region REGISTRATION SECTION */
.registration {
  margin-top: -102px;
  padding-inline: 20px;
}

.registration__inner {
  display: flex;
  padding: 60px 40px;
  gap: 26px;
  border-radius: 25px;
  border: 1px solid #e0e0e0;
  background: #f9f9f9;
  box-shadow: 0 4px 11.1px 0 rgba(214, 214, 214, 0.25);
}

.registration__content-item {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.registration__content-item--sing {
  max-width: 518px;
}

.registration__content-item--lock {
  justify-content: flex-end;
}

.registration__content-item-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #003eb3;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.5;
}

@media (width < 1024px) {
  .registration {
    margin-top: -82px;
  }
  .registration__inner {
    flex-direction: column;
  }
  .registration__content-item--sing {
    max-width: 100%;
  }
}

@media (width < 768px) {
  .registration {
    margin-top: 0px;
    padding-top: 50px;
    padding-inline: 0;
  }
  .registration__inner {
    padding: 50px 20px;
  }
}
/* #endregion REGISTRATION SECTION */

/* #region FEEDBACK SECTION */
.feedback {
  position: relative;
  padding-block: 150px;

  &::before,
  &::after {
    content: '';
    position: absolute;
    width: 518px;
    height: 505px;
    border-radius: 518px;
    background: #a2c3ff;
    filter: blur(120px);
    z-index: -1;
  }

  &::before {
    top: 50%;
    left: -20%;
  }

  &::after {
    bottom: 30%;
    right: -20%;
  }
}

.feedback__inner {
  h2 {
    max-width: 882px;
    margin-inline: auto;
    margin-bottom: 80px;
    line-height: 1.4;
  }
}

.feedback__slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: stretch;
  padding: 25px 20px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background: #f9f9f9;

  p {
    color: #2d2d2d;
    margin-top: 10px;
    span {
      color: #274684;
    }
  }
}

.feedback__slide-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;

  h4 {
    color: #2d2d2d;
    font-size: 25px;
    font-weight: 500;
    overflow-wrap: anywhere;
  }

  img {
    width: 54px;
    height: 54px;
  }
}

.feedback__navs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  max-width: 200px;
  margin-inline: auto;
  margin-top: 30px;
}

.feedback__nav {
  display: flex;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50%;
  background: #a7c5ff;
  cursor: pointer;
  transition:
    background 0.3s,
    translate 0.3s;

  svg {
    transition: color 0.3s;
  }

  &:hover {
    background: #6b9fff;
    color: white;
    translate: 0 -5px;
  }
}

@media (width < 1200px) {
  .feedback {
    &::before,
    &::after {
      display: none;
    }
  }
}

@media (width < 1024px) {
  .feedback {
    padding-block: 120px;
  }

  .feedback__inner {
    h2 {
      margin-bottom: 70px;
    }
  }

  .feedback__navs {
    margin-top: 40px;
  }
}

@media (width < 768px) {
  .feedback {
    padding-block: 100px;
  }
  .feedback__inner {
    h2 {
      margin-bottom: 40px;
    }
  }
  .feedback__slide-header {
    h4 {
      font-size: 20px;
    }
  }
  .feedback__navs {
    max-width: 100%;
    margin-top: 26px;
  }
}
/* #endregion FEEDBACK SECTION */

/* #region FAQ SECTION */
.faq {
  position: relative;
  padding-bottom: 150px;

  &::before {
    content: '';
    position: absolute;
    top: 5%;
    right: -20%;
    width: 518px;
    height: 505px;
    border-radius: 518px;
    background: #a2c3ff;
    filter: blur(120px);
    z-index: -1;
  }
}

.faq__inner {
  h2 {
    margin-bottom: 80px;
    line-height: 1.4;
  }
}
.faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 834px;
  margin-inline: auto;
}

.faq__acordion-item {
  &[open] {
    summary {
      background: #6b9fff;

      svg {
        rotate: 180deg;
      }
    }
  }

  summary {
    display: flex;
    padding: 15px 30px;
    align-items: center;
    gap: 10px;
    border-radius: 15px;
    background: rgb(128, 171, 251);
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    justify-content: space-between;
    cursor: pointer;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    transition:
      background 0.3s,
      translate 0.3s;

    span {
      display: flex;
      width: 50px;
      height: 50px;
      flex-shrink: 0;
      justify-content: center;
      align-items: center;
      gap: 10px;
      border-radius: 50%;
      background: #a7c5ff;
      color: #003eb3;
      cursor: pointer;
      transition:
        background 0.3s,
        translate 0.3s;

      svg {
        transition:
          rotate 0.3s,
          color 0.3s;
      }
    }

    &:hover {
      background: #6b9fff;

      span {
        color: white;
      }
    }
  }

  p {
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    background: #f9f9f9;
    margin-top: 10px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

    a {
      text-decoration-line: underline;
      text-decoration-style: solid;
      text-decoration-skip-ink: auto;
      text-decoration-thickness: auto;
      text-underline-offset: auto;
      text-underline-position: from-font;
    }
  }
}

@media (width < 1200px) {
  .faq {
    &::before {
      display: none;
    }
  }
}

@media (width < 1024px) {
  .faq {
    padding-bottom: 120px;
  }
  .faq__inner {
    h2 {
      margin-bottom: 70px;
    }
  }
}

@media (width < 768px) {
  .faq {
    padding-bottom: 100px;
  }
  .faq__inner {
    h2 {
      margin-bottom: 40px;
    }
  }

  .faq__acordion-item {
    summary {
      font-size: 20px;
      padding: 15px 20px;
    }

    p {
      padding: 20px;
    }
  }
}
/* #endregion FAQ SECTION */

/* #region CONTACT SECTION */
.contact {
  padding: 20px 20px 0 20px;
}

.contact__bg {
  padding-block: 90px;
  background-image: url(../img/contact-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
}

.contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 45px;
  max-width: 435px;
  margin-inline: auto;
}

.contact__form {
  display: flex;
  flex-shrink: 0;
  max-width: 435px;
  width: 100%;
  padding: 40px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 4px 11px 0 rgba(145, 145, 145, 0.25);

  .form-wrapper {
    width: 100%;
  }

  h2 {
    margin-bottom: 22px;
    font-family: var(--font-family-base);
    color: #274684;
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
  }
}

@media (width < 768px) {
  .contact {
    padding: 0;
  }
  .contact__bg {
    padding-block: 70px;
  }
  .contact__inner {
    gap: 40px;
  }
  .contact__form {
    padding-inline: 20px;

    h2 {
      font-size: 25px;
    }
  }
}
/* #endregion CONTACT SECTION */

/* #region FOOTER */
.footer {
  padding-block: 60px 80px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 25px;
  padding-bottom: 36px;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 1px;
}
.footer__logo {
  display: flex;
  flex-direction: column;
  gap: 10px;

  a {
    display: flex;
    gap: 4px;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    background: linear-gradient(90deg, #534feb 0%, #2f2d85 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.footer__nav {
  ul {
    display: flex;
    gap: 30px;
    color: #003eb3;
    font-size: 20px;
    font-weight: 500;

    a:hover {
      text-decoration-line: underline;
      text-decoration-style: solid;
      text-decoration-skip-ink: auto;
      text-decoration-thickness: auto;
      text-underline-offset: auto;
      text-underline-position: from-font;
    }
  }
}

.footer__links {
  display: flex;
  gap: 30px;
  align-items: center;
  color: #b1b2b3;
  font-size: 16px;
  font-weight: 500;

  a {
    transition: color 0.3s;

    &:hover {
      color: #003eb3;
    }
  }
}

@media (width < 1024px) {
  .footer {
    padding-block: 60px 34px;
  }
  .footer__top {
    padding-bottom: 15px;
  }
}

@media (width < 768px) {
  .footer {
    padding-block: 60px 20px;
  }
  .footer__top {
    justify-content: center;
  }
  .footer__logo {
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .footer__nav {
    width: 100%;
    ul {
      flex-direction: column;
      align-items: center;
      width: 100%;
    }
  }

  .footer__links {
    flex-direction: column;
  }
}
/* #endregion FOOTER */
