.main-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  padding: 20px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-title {
  width: 156px;
}

.menu-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-svg {
  stroke: #593ab1;
}

.page-nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 154px;
}

.page-nav-link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  color: #e9ebfa;
  padding-bottom: 12px;
  display: block;
  width: 154px;
  background-image: url(../img/scroll-bottom.png);
  background-repeat: no-repeat;
  background-position: bottom;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.page-nav-link:hover {
  opacity: 1;
}

@media screen and (min-width: 1436px) {
  .main-section {
    padding: 0;
    padding-top: 48px;
  }

  .header-container {
    justify-content: center;
  }

  .menu-btn {
    display: none;
  }
}

/* modal  */

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  padding-top: 150px;
  padding-bottom: 70px;
  padding-left: 20px;
  background: linear-gradient(
    302deg,
    rgba(3, 5, 18, 0.98) 0%,
    rgba(5, 11, 45, 0.98) 100%
  );
  z-index: 8;

  transform: translateY(-100%);
  transition: transform 1s ease;
}

/* popup */

.page-popup {
  position: fixed;
  z-index: 10;
  bottom: 20px;
  border-radius: 7px;
  padding: 20px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 5px 15px 20px 0 rgba(0, 0, 0, 0.25);
  background: linear-gradient(180deg, #060016 0%, #100530 100%);

  transition: transform 0.4s ease;
}

.popup-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
  margin-bottom: 14px;

  a {
    transition: color;
    color: #6e7191;
    text-decoration: underline;
    text-decoration-skip-ink: none;
  }

  a:hover {
    color: #fff;
  }
}

.popup-btn {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
  border: 1px solid #8c5af2;
  border-radius: 8px;
  padding: 10px;
  display: block;
  width: 72px;
  text-align: center;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.popup-btn:hover {
  color: #6e7191;
  background-color: #fff;
}

.popup-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media screen and (min-width: 1436px) {
  .page-popup {
    padding: 20px 88px;
  }

  .popup-text {
    font-size: 16px;
    margin: 0;
  }

  .popup-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 128px;
  }

  .popup-wrap {
    flex-shrink: 0;
  }
}

/* hero  */

.dashboard {
  padding-top: 144px;
  padding-bottom: 130px;
  background-image: url(../img/home-banner.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.page-nav {
  display: none;
}

.home-animation {
  position: absolute;
  top: 0;
  right: 0;
  max-width: max-content;
  width: 600px;
  pointer-events: none;
  opacity: 0.2;
  transition: transform 3s ease-out;
}

.page-hero-title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 76px;
  line-height: 100%;
  text-align: center;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.89) 64.18%,
    rgba(255, 255, 255, 0.12) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 64px;
}

.page-hero-link-wrap {
  display: flex;
  justify-content: center;
  gap: 19px;
}

.page-hero-link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 187%;
  color: #fff;
  text-align: center;

  display: block;
  width: calc((100% - 19px) / 2);
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  transition: background-image 0.3s ease;
}

.page-hero-link:hover {
  background: linear-gradient(180deg, #714ade 0%, #172993 100%),
    rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 1436px) {
  .dashboard {
    padding-top: 223px;
    padding-bottom: 178px;
  }

  .home-container {
    position: relative;
  }

  .home-animation {
    max-width: 100%;
    width: 1500px;
  }

  .page-hero-title {
    font-size: 130px;
    max-width: 999px;
    margin: 0 auto;
    margin-bottom: 64px;
  }

  .page-hero-link {
    width: 185px;
  }

  .page-nav {
    display: block;
    position: absolute;
    left: 96px;
    top: 40%;
    transform: translateY(-50%);
  }

  .page-nav-link {
    padding: 65px 20px;
    background-image: url(../img/scroll-left.png);
    background-position: top left;
  }

  .page-nav-list {
    gap: 0;
  }
}

/* who-list */

.who-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.who-item {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding-bottom: 47px;

  img {
    width: 100%;
  }

  h5 {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 162%;
    color: #e9ebfa;
    padding: 0 16px;
    padding-top: 16px;
    margin-bottom: 32px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 187%;
    padding: 0 16px;

    color: rgba(255, 255, 255, 0.48);
  }
}

.who-item2 {
  img {
    display: none;
  }
}

.who-animation {
  .who-list {
    .who-item1 {
      img {
        display: none;
      }
    }

    .who-item2 {
      img {
        display: block;
      }
    }
  }
}

@media screen and (min-width: 1436px) {
  #who {
    position: relative;
  }
  .who-list {
    flex-direction: row;
    align-items: flex-end;
    gap: 52px;
  }

  .who-item {
    width: calc((100% - 52px) / 2);

    h5 {
      font-size: 24px;
      padding: 0 44px;
      padding-top: 24px;
      margin-bottom: 44px;
    }

    p {
      padding: 0 44px;
      font-size: 16px;
    }
  }

  .who-title-wrapper {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(26px);
    width: 443px;
  }

  .who-animation {
    .who-title-wrapper {
      transform: translateX(-614px);
    }

    .who-list {
      .who-item1 {
        img {
          display: none;
        }
      }

      .who-item2 {
        img {
          display: block;
        }
      }
    }
  }
}

/* team */

#team {
  background-image: url(../img/team.jpg);
  background-position: center;
  background-size: cover;
}

.team-swiper {
  width: 100%;
  position: relative;
}

.team-item {
  width: 303px;
  max-width: 100%;
  transition: transform 0.6s ease;
  position: relative;
  transform-origin: center center;

  div {
    border: 1.13px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 20px;
    backdrop-filter: blur(67.94318389892578px);
    background: rgba(255, 255, 255, 0.05);
    position: absolute;
    bottom: 16px;
    left: 50%;
    width: calc(100% - 32px);
    transform: translateX(-50%);
  }

  p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 12px;
    line-height: 133%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 30px;
    padding: 6px 32px;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  opacity: 0.5;
  transition: border-color 0.25s ease;
}

.btn:hover {
  opacity: 1;
}

.btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 36px;
}

.team-right {
  transform: scaleX(-1);
}

@media screen and (min-width: 1436px) {
  .team-title-wrapper {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-bottom: 60px;

    .title {
      margin: 0;
    }

    .text {
      max-width: 443px;
    }
  }
}

/* services-wrapper */

.services-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 40px;
}

.services-item {
  img {
    width: 100%;
  }

  .services-1-desc,
  .services-2-desc {
    display: none;
  }

  h5 {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #e9ebfa;
    margin-bottom: 24px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: #b0b0b0;
    margin-bottom: 24px;
  }
}

.services-item1 {
  position: relative;

  div {
    position: absolute;
    bottom: 36px;
    left: 50%;
    width: calc(100% - 32px);
    transform: translateX(-50%);
    border: 1.13px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 24px 16px;
    backdrop-filter: blur(67.94318389892578px);
    background: rgba(255, 255, 255, 0.05);
  }

  h5,
  p {
    color: #fff;
  }
}

@media screen and (min-width: 768px) {
  .services-wrapper {
    flex-direction: row;
    margin-top: 60px;
  }

  .services-item {
    width: calc((100% - 60px) / 2);
  }
}

@media screen and (min-width: 1436px) {
  .services-item {
    h5 {
      font-size: 24px;
    }

    p {
      font-size: 16px;
    }

    .services-1-desc,
    .services-2-desc {
      display: block;
    }

    .services-1,
    .services-2 {
      display: none;
    }
  }

  .services-title-wrap {
    display: flex;
    justify-content: space-between;

    .text {
      max-width: 586px;
      text-align: end;
      margin: 0;
    }

    .title {
      margin: 0;
    }
  }
}

/* testimonials */

#testimonials {
  background-image: url(../img/bg.png);
  background-position: top;
}

.testimonials-item {
  border: 0.99px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 20px 16px;
  backdrop-filter: blur(59.61914825439453px);
  background: linear-gradient(
    341deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  width: 335px;
  min-height: 457px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  p {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 150%;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.63);

    span {
      display: block;
      font-weight: 700;
      color: var(--683bf2);
    }
  }

  h5 {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #fff;
  }

  img {
    width: 100%;
  }
}

.testimonials-next {
  transform: scaleX(-1);
}

.swiper-left-cover {
  display: none;
}

.swiper-right-cover {
  display: none;
}

@media screen and (min-width: 1436px) {
  #testimonials {
    background-size: contain;
  }
  .testimonials-swiper {
    display: none;
  }
  .testimonials-btn-wrap {
    display: none;
  }

  .swiper-left-cover {
    display: flex;
    align-items: center;
    gap: 44px;
    margin-top: 60px;
  }

  .swiper-right-cover {
    display: flex;
    align-items: center;
    gap: 44px;
    margin-top: 36px;
  }

  .testimonials-swiper-right-next {
    transform: scaleX(-1);
    flex-shrink: 0;
  }

  .testimonials-item {
    border-radius: 24px;
    padding: 32px;
    width: 616px;
    flex-direction: row;
    gap: 30px;
    min-height: 260px;

    img {
      width: auto;
    }

    div {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    h5 {
      font-size: 24px;
    }
  }
}

/* services */

#services {
  padding-top: 100px;
}

.services-hero-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: #0c0c0c;
  margin-bottom: 32px;
}

.services-hero-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 178%;
  color: #191d25;
  margin-bottom: 32px;
}

.services-image {
  width: 100%;
}

.services-image-desctop {
  display: none;
}

@media screen and (min-width: 1436px) {
  #services {
    padding-top: 180px;
  }

  .services-image {
    display: none;
  }

  .services-image-desctop {
    display: block;
    width: 100%;
  }

  .services-hero-title {
    font-size: 40px;
  }

  .services-hero-title {
    max-width: 1070px;
  }
}

/* consultation */

.consultation-text {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: var(--683bf2);
  margin-bottom: 28px;
}

.forw-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#consultation-form {
  border: 1.13px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(67.94318389892578px);
  background: rgba(113, 74, 222, 0.05);

  display: flex;
  flex-direction: column;
  gap: 10px;

  input,
  textarea,
  button {
    border: 1px solid var(--683bf2);
    border-radius: 30px;
    padding: 12px 16px;
    width: 100%;
    background: none;
    resize: none;
    outline: none;
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 12px;
    line-height: 133%;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    transition: background-color 0.3s ease;
  }

  button:hover,
  button:focus {
    background: var(--683bf2);
  }

  input::placeholder,
  textarea::placeholder {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 12px;
    line-height: 133%;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
  }
}

.modal-form {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #222221;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-form.show {
  opacity: 1;
}

@media screen and (min-width: 1436px) {
  .consultation-text {
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 28px;
  }

  .forw-row {
    display: flex;
    flex-direction: row;
  }

  #consultation-form {
    width: 1104px;
    margin: 0 auto;

    input,
    textarea,
    button {
      width: calc((100% - 30px) / 4);
    }
  }
}

/* cases */

#cases {
  background-image: url(../img/cases.jpg);
  background-size: cover;
  padding-top: 144px;
}

.cases-item {
  img {
    width: 100%;
    margin-bottom: 28px;
  }

  span {
    display: block;
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 32px;
    line-height: 125%;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.4) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
  }

  .cases-list {
    border-radius: 30px;
    padding: 36px;
    background: rgba(255, 255, 255, 0.03);
    margin-top: 28px;
  }

  ul {
    padding-left: 20px;
    list-style: disc;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.48);
  }

  h5 {
    font-family: var(--font-family);
    font-weight: 800;
    color: var(--683bf2);
    font-size: 16px;
    line-height: 150%;
    padding-left: 20px;
  }
}

.cases-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cases-next {
  transform: scaleX(-1);
  flex-shrink: 0;
}

.cases-pagination {
  text-align: center;
}

.swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--683bf2);
}

@media screen and (min-width: 1436px) {
  #cases {
    padding-top: 163px;
  }

  .cases-container {
    position: relative;
    padding-right: 80px;
  }

  .cases-swiper {
    width: 1100px;
    margin: 0;
    margin-left: auto;
  }

  .cases-item {
    display: flex;
    gap: 32px;

    img {
      width: auto;
      margin: 0;
      flex-shrink: 0;
    }
  }

  .cases-slider-nav {
    margin-top: 50px;
  }
}

/* advantages */

#advantages {
  padding-top: 156px;
  background-image: url(../img/advantages.png);
  background-size: cover;
}

.advantages-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 28px;

  li {
    border-radius: 15px;
    padding: 20px 16px;
    padding-bottom: 48px;
    position: relative;
    background: #fff;
  }

  p {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: #1a1a1a;
    margin-bottom: 24px;
  }

  span {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #74787c;
  }

  img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(65%) rotate(90deg);
  }
}

@media screen and (min-width: 1436px) {
  #advantages {
    padding-top: 163px;
  }

  .advantages-container {
    padding-right: 52px;
  }

  .advantages-title-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 120px;

    .title {
      margin: 0;
    }

    .text {
      width: 580px;
      text-align: end;
    }
  }
  .advantages-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-right: 69px;
    gap: 20px 60px;
    margin-top: 60px;

    li {
      width: 480px;
      min-height: 220px;
      padding: 24px;
      padding-right: 48px;
    }

    p {
      font-size: 24px;
      margin-bottom: 40px;
    }

    img {
      bottom: auto;
      left: auto;
      right: 0;
      top: 50%;
      transform: translateX(70%) translateY(-50%);
    }
  }
}

/* strengths */

#strengths {
  background-image: url(../img/Our\ Strengths.jpg);
  background-size: cover;
}

.strengths-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.strengths-item {
  border: 1.13px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  overflow: hidden;
  padding: 28px 16px;
  backdrop-filter: blur(67.94318389892578px);
  background: rgba(255, 255, 255, 0.05);

  h5 {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #fff;
    margin-bottom: 20px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.63);
    margin-bottom: 16px;
  }

  ul {
    padding-left: 20px;
    list-style: disc;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.63);
  }
}

@media screen and (min-width: 768px) {
  .strengths-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .strengths-item,
  .strengths-image {
    width: calc((100% - 24px) / 2);
  }
}

@media screen and (min-width: 1436px) {
  .strengths-list {
    gap: 58px;
    margin-top: 60px;
  }

  .strengths-item {
    width: calc((100% - 116px) / 3);
    border-radius: 32px;
    padding: 40px 32px;

    h5 {
      font-size: 24px;
    }
  }

  .strengths-image {
    width: calc((100% - 116px) / 3);
  }
}

/* faq */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  width: 100%;
  border-radius: 18px;
  padding: 24px 12px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.06);
  background: #060019;
}

.faq-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #fff;
  transform: rotate(90deg);
  transition: transform 0.4s ease, background-color 0.3s ease;
}

.faq-svg {
  fill: none;
  stroke: var(--683bf2);
}

.faq-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.faq-title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 156%;
  color: #fff;
}

.faq-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: #fff;
  margin-top: 20px;
}

@media screen and (min-width: 1436px) {
  .faq-list {
    width: 1152px;
    margin: 0 auto;
  }

  .faq-item {
    border-radius: 18px;
    padding: 36px 48px;
  }

  .faq-title {
    font-size: 24px;
  }
}

/* contact */

#contact {
  padding-top: 156px;

  .contact-form {
    backdrop-filter: none;
    padding: 0;
    background: none;
    margin-top: 28px;
    border: none;
    flex-direction: column;
    gap: 16px;
    display: flex;

    label {
      font-family: var(--font-family);
      font-weight: 400;
      font-size: 16px;
      line-height: 150%;
      color: #fff;
    }

    button {
      font-family: var(--font-family);
      font-weight: 500;
      font-size: 16px;
      line-height: 150%;
      text-align: center;
      color: #fff;
      transition: opacity 0.3s ease;
      display: block;
      border: 1px solid var(--683bf2);
      border-radius: 10px;
      padding: 12px 40px;
      opacity: 0.8;
      text-align: center;
      background: linear-gradient(180deg, #714ade 0%, #172993 100%),
        rgba(0, 0, 0, 0.2);
    }

    button:hover {
      opacity: 1;
    }

    textarea {
      height: 132px;
      border-radius: 12px;
      text-align: start;
    }

    input {
      text-align: start;
      border-radius: 12px;
    }
  }
}

.contact-image {
  margin: 0 auto;
  border-radius: 32px;

  margin-top: 28px;
  box-shadow: -4px 11px 137px 0 rgba(113, 74, 222, 0.8);
}

@media screen and (min-width: 1436px) {
  #contact {
    padding-top: 163px;

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
      background-color: none;
      background: none;

      label {
        display: flex;
        flex-direction: column;
        gap: 8px;
      }

      input {
        width: 263px;
      }

      textarea {
        width: 558px;
      }

      .forw-row {
        gap: 32px;
      }
    }
  }

  .contact-container {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    padding-right: 80px;
  }

  .contact-image {
    flex-shrink: 0;
    margin: 0;
  }

  .contact-wrapper {
    width: 558px;
  }
}

/* footer */

.footer {
  padding: 52px 0;
  background: #050111;
}

.footer-logo {
  width: 128px;
  margin: 0 auto;
  margin-bottom: 24px;
}

.footer-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 187%;
  color: #e9ebfa;

  div {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--683bf2);
  }

  a {
    transition: color 0.3s ease;
  }

  a:hover {
    color: var(--683bf2);
  }
}

.footer-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  margin-bottom: 20px;

  p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: #e9ebfa;
  }

  div {
    display: flex;
    gap: 13px;
  }

  a {
    display: block;
    width: 55px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  a:hover {
    opacity: 1;
    transform: scale(1.05);
  }
}

.footer-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--683bf2);
}

@media screen and (min-width: 1436px) {
  .footer-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .footer-logo {
    width: 110px;
    margin: 0;
  }
  .footer-list {
    margin: 0;
    margin-left: 353px;
  }

  .footer-mail {
    margin: 0;
    gap: 28px;
    margin-left: auto;

    p {
      font-size: 16px;
    }
  }
}

/* loader */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(94, 95, 147, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #ccc;
  border-top-color: var(--683bf2);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* scroll */

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--683bf2);
  cursor: pointer;
  z-index: 7;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;

  img {
    width: 40px;
  }
}

#scrollTopBtn.show {
  opacity: 0.5;
  transform: translateY(0);
  pointer-events: auto;
}

#scrollTopBtn:hover {
  opacity: 1;
}

/* ********************* */

.hidden {
  display: none;
}

.menu-transform {
  transform: translateY(0);
}

.click {
  transform: rotate(180deg);
  background-color: var(--683bf2);

  svg {
    stroke: #fff;
  }
}

.popup-click {
  transform: translateY(130%) translateX(-50%);
}

.overflow {
  overflow: hidden;
}
