/* #region HEADER */
.header {
  position: relative;
  z-index: 100;
  padding-block: 18px;
  background: #131740;
  box-shadow: 0 10px 15px 0 rgba(25, 25, 25, 0.1);
}

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

.header__logo {
  position: relative;
  z-index: 102;
}

.header__menu {
  display: flex;
  justify-content: space-between;
  gap: 45px;
  flex-basis: 60%;
}

.header__list {
  display: flex;
  align-items: center;
  gap: 45px;

  a {
    display: flex;
    padding-block: 21px;
    font-size: 14px;
    letter-spacing: 1.96px;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 700;
    transition: color 0.3s;

    &.active {
      color: #ff06b7;
    }

    &:hover {
      color: #ff06b7;
    }
  }
}

.header__burger {
  display: none;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  background: #ff06b7;
  cursor: pointer;
  position: relative;
  z-index: 101;
  transition: background-color 0.3s;

  span {
    display: block;
    width: 14px;
    height: 2px;
    background-color: #fff;
    position: relative;
    transition: all 0.3s;
  }

  &::before,
  &::after {
    content: "";
    position: absolute;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s;
  }

  &::before {
    top: 35%;
  }
  &::after {
    bottom: 33%;
  }

  &.active {
    background-color: transparent;

    span {
      transform: scale(0);
      background-color: #ff06b7;
    }

    &::before,
    &::after {
      width: 20px;
      height: 3px;
      background-color: #ff06b7;
    }

    &::before {
      top: 63%;
      left: 42%;
      rotate: 45deg;
    }

    &::after {
      top: 36%;
      left: 46%;
      rotate: -45deg;
    }
  }

  &:hover {
    background-color: #fff;

    &::before,
    &::after,
    span {
      background-color: #131740;
    }
  }
}

.header__social {
  display: none;
}

@media (width <= 1200px) {
  .header {
    padding-block: 30px;
  }

  .header__burger {
    display: flex;
  }

  .header__menu {
    position: fixed;
    top: 0;
    right: 0;
    gap: 30px;
    width: 100%;
    height: 100dvh;
    padding-top: 112px;
    background: #131740;
    flex-direction: column;
    justify-content: flex-start;
    transform: translateX(100%);
    transition: transform 0.3s;
    z-index: 100;
    overflow-y: auto;

    &.active {
      transform: translateX(0);
    }
  }

  .header__nav {
    width: 100%;
  }

  .header__list {
    flex-direction: column;
    gap: 0;

    li {
      width: 100%;
    }

    a {
      padding: 10px 25px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);

      &:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }
    }
  }

  .header__btn {
    margin-inline: auto;
    padding: 16px 45px;
  }

  .header__social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    a {
      display: flex;
      width: 40px;
      height: 40px;
      justify-content: center;
      align-items: center;
      border-radius: 3px;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: border-color 0.3s, background-color 0.3s;

      &:hover {
        border-color: #ff06b7;
        background-color: #ff06b7;
      }
    }
  }
}

@media (width <= 768px) {
}

/* #endregion Header */

/* #region FOOTER */
.footer {
  padding-top: 110px;
  background: #131740;
  border-top: 1px solid #ff06b7;
}
.footer__content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 30px;
}
.footer__bottom {
  padding-block: 30px;
  border-top: 1px solid #ff06b7;
  text-align: center;
  font-size: 15px;
}

.footer__content-logo {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 440px;
}
.footer__content-menu {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  max-width: 190px;

  h4 {
    color: #ff06b7;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.9px;
    text-transform: uppercase;
  }
}

.footer__content-menu-list {
  display: flex;
  flex-direction: column;
  gap: 15px;

  a {
    line-height: 1.3;
    transition: color 0.3s;

    &:hover {
      color: #ff06b7;
    }
  }
}

@media (width <= 1200px) {
  .footer {
    padding-top: 100px;
  }
  .footer__content-logo {
    max-width: 100%;
  }
  .footer__content-menu {
    max-width: 240px;
  }
}

@media (width <= 768px) {
  .footer__content {
    gap: 20px;
  }
}

/* #endregion FOOTER */
