.main-section {
  position: fixed;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  border-radius: 12px;
  padding: 16px 20px;
  background: #fff;
}

.cor__header__ex__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cor__header__ex__title {
  width: 136px;
}

.page-nav {
  display: none;
}

.menu-svg {
  fill: none;
  stroke: #161616;
}

.cor__page__nav__ex__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}

.cor__page__nav__ex__link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #161616;
  transition: color 0.3s ease;
}

.cor__page__nav__ex__link:hover,
.page-cor__hero__ex__link:focus {
  color: #c48afe;
}

.active-link {
  position: relative;
  display: inline-block; /* или block */
}

.active-link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 80px;
  background-image: url(../img/fover-mobile.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.cor__page__nav__ex__link:hover {
  border-color: #343434;
}

@media screen and (min-width: 1436px) {
  .main-section {
    top: 40px;
    padding: 20px 40px;
  }

  .cor__header__ex__title {
    width: 224px;
  }

  .cor__page__nav__ex__link:hover,
  .page-cor__hero__ex__link:focus {
    color: #ffce00;
  }

  .active-link::after {
    background-image: url(../img/hover.png);
  }

  .page-nav {
    display: block;
  }

  .menu-btn {
    display: none;
  }
}

/* modal  */

.menu {
  position: fixed;
  overflow: hidden;
  top: 108px;
  left: 0;
  width: 100%;
  border-radius: 12px;
  padding: 80px 40px;
  z-index: 8;
  background-color: var(--style);
  transform: translateX(100%);
  transition: transform 2s ease;
}

.menu-nav-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 42px;
}

.madal-hand {
  position: absolute;
  bottom: -20px;
  right: -15px;
  transform-origin: 100% 100%;
  animation: handWaveModal 3.2s ease-in-out infinite;
  will-change: transform;
  z-index: -1;
}

.modal-star-1 {
  top: 40px;
  left: 50%;
  position: absolute;
  width: 80px;
  z-index: -1;
}

.modal-star-2 {
  top: 40%;
  right: 30px;
  position: absolute;
  width: 60px;
  z-index: -1;
}

@keyframes handWaveModal {
  0% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cor__who__ex__left {
    animation: none;
  }
}

/* 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: #fff;
  transition: transform 0.4s ease;
}

.cor__popup__ex__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #161616;
  margin-bottom: 14px;

  a {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #6e7191;
  }
}

.cor__popup__ex__btn {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  color: #161616;

  border: 1px solid #8c5af2;
  border-radius: 8px;
  padding: 10px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.cor__popup__ex__btn:hover {
  background: #c48afe;
}

.cor__popup__ex__wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
}

@media screen and (min-width: 1436px) {
  .page-popup {
    padding: 20px 88px;
  }

  .cor__popup__ex__text {
    font-size: 14px;

    margin: 0;
  }

  .cor__popup__ex__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
  }

  .cor__popup__ex__wrap {
    flex-shrink: 0;
  }
}

/* hero  */

.dashboard {
  padding-top: 105px;
  background: #f0e8f8;
}

.home-container {
  position: relative;
}

.page-cor__hero__ex__star {
  position: absolute;
  top: 150px;
  right: 0;
  width: 100px;
  z-index: -1;
}

.page-cor__hero__ex__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 76px;
  line-height: 105%;
  color: #161616;
  margin-bottom: 16px;
}

.page-cor__hero__ex__desctop {
  background-image: url(../img/desctop/1.png);
  background-position: center;
  background-size: contain;
  height: 254px;
  background-repeat: no-repeat;
  margin-bottom: 56px;
}

.desctop2 {
  background-image: url(../img/desctop/2.png);
}

.desctop3 {
  background-image: url(../img/desctop/3.png);
}

.desctop4 {
  background-image: url(../img/desctop/4.png);
}

.page-cor__hero__ex__link {
  display: block;
  width: 335px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #fff;
  transition: background-color 0.3s ease;
  img {
    transform: scale(1.03);
  }
}

.page-cor__hero__ex__link:hover {
  background-color: #c48afe;
}

@media screen and (min-width: 768px) {
  .page-cor__hero__ex__desctop {
    height: 324px;
  }
}

@media screen and (min-width: 1436px) {
  .dashboard {
    padding-top: 174px;
  }

  .page-cor__hero__ex__star {
    top: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
  }

  .page-cor__hero__ex__desctop {
    width: 540px;
    height: 416px;
    position: absolute;
    top: 0;
    right: 80px;
  }

  .page-cor__hero__ex__title {
    font-size: 160px;
    max-width: 917px;
    margin-bottom: 52px;
  }

  .page-cor__hero__ex__link {
    width: 378px;
  }
}

/* who */

.cor__who__ex__list {
  display: flex;
  flex-direction: column;
  gap: 20px;

  li {
    display: flex;
    align-items: center;
    gap: 20px;

    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 156%;
    color: #161616;
  }

  img {
    width: 53px;
    flex-shrink: 0;
  }
}

.cor__who__ex__item-2 {
  margin-left: 20px;
}

.cor__who__ex__item-3 {
  margin-left: 40px;
}

.cor__who__ex__left {
  position: absolute;
  width: 80px;
  top: 50%;
  left: -20px;
  transform-origin: 0% 100%;
  animation: handWave 3.8s ease-in-out infinite;
  will-change: transform;
}

/* Плавное покачивание: чуть по часовой и обратно */
@keyframes handWave {
  0% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}

/* (необязательно) Учитываем системные настройки */
@media (prefers-reduced-motion: reduce) {
  .cor__who__ex__left {
    animation: none;
  }
}

.cor__who__ex__right {
  top: 140px;
  right: -45px;
  width: 114px;
  position: absolute;
  animation: handMoveX 2.5s ease-in-out infinite;
  will-change: transform;
}

@keyframes handMoveX {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-15px);
  } /* немного влево */
  100% {
    transform: translateX(0);
  }
}

@media screen and (min-width: 768px) {
  .cor__who__ex__list {
    width: 550px;
    margin: 0 auto;
  }

  .cor__who__ex__item-2 {
    margin-left: 40px;
  }

  .cor__who__ex__item-3 {
    margin-left: 60px;
  }
}

@media screen and (min-width: 1436px) {
  .cor__who__ex__list {
    width: 770px;
    gap: 28px;

    li {
      gap: 28px;
      font-size: 24px;
    }

    img {
      width: 107px;
    }
  }
  .cor__who__ex__item-2 {
    margin-left: 60px;
  }

  .cor__who__ex__item-3 {
    margin-left: 120px;
  }

  .cor__who__ex__left {
    width: auto;
    left: -110px;
    animation: handWave 5.8s ease-in-out infinite;
  }

  .cor__who__ex__right {
    width: auto;
  }
}

/* problems */

.cor__problems__ex__swiper {
  padding: 20px 0;
}

.cor__problems__ex__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;

  p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 156%;
    text-align: center;
    color: #161616;
    margin-bottom: 4px;
  }

  span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #161616;
  }
}

.paper1 {
  background-image: url(../img/paper/1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 335px;
  max-width: 100%;
  min-height: 290px;
  padding: 26px;
  padding-top: 88px;
  transform-origin: top center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.text1 {
  transform: rotate(-3deg);
}

.paper2 {
  background-image: url(../img/paper/2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 289px;
  max-width: 100%;
  min-height: 362px;
  cursor: pointer;

  padding: 50px;
  padding-top: 96px;
  transform-origin: top center;
  transition: transform 0.3s ease;
}

.text2 {
  transform: rotate(4deg);
}

.paper3 {
  background-image: url(../img/paper/1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 335px;
  max-width: 100%;
  cursor: pointer;

  min-height: 331px;
  padding: 32px;
  padding-top: 98px;
  transform-origin: top center;
  transition: transform 0.3s ease;
}

.text3 {
  transform: rotate(-3deg);
}

.paper1:hover {
  animation: paperSwing 1.8s ease-in-out infinite;
}

.paper2:hover {
  animation: paperSwing 1.8s ease-in-out infinite;
}

.paper3:hover {
  animation: paperSwing 1.8s ease-in-out infinite;
}

@keyframes paperSwing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}

.pagination {
  text-align: center;
  margin-top: 48px;
}

.swiper-pagination-bullet {
  display: inline-block;
  width: 25px;
  height: 22px;
  background-image: url(../img/bullet.png);
  background-position: center;
  background-size: contain;
  border: none;
  background-color: transparent;
  opacity: 1;
  transition: background-image 0.2s ease;
}

.swiper-pagination-bullet-active {
  background-image: url(../img/active.png);
}

.swiper-btn {
  svg {
    fill: #fff;
    width: 96px;
    height: 116px;
  }
}

.swiper-btn:hover {
  svg {
    fill: #9645e8;
  }
}

.btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.cor__problems__ex__left {
  transform: scaleX(-1);
}

@media screen and (min-width: 1436px) {
  .cor__problems__ex__title {
    max-width: 424px;
    text-align: start;
  }
  .cor__problems__ex__container {
    position: relative;
  }

  .cor__problems__ex__btn-wrap {
    position: absolute;
    gap: 57px;
    top: 0;
    right: 80px;
    margin: 0;
  }

  .cor__problems__ex__item {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
  }

  .swiper-btn {
    svg {
      width: 177px;
    }
  }
}

/* case  */

#case {
  padding-bottom: 282px;

  p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    color: #161616;
    margin-bottom: 16px;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #161616;
  }
}

.lamp {
  margin: 0 auto;
  animation: cloudFade 5s ease-in-out infinite;
}

.girl {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
}

.case-left {
  transform: scaleX(-1);
}

.case-btn-wrap {
  .swiper-btn {
    svg {
      fill: #9645e8;
    }
  }
}

@media screen and (min-width: 1436px) {
  .case-content {
    display: flex;
    align-items: center;
    gap: 100px;
    margin-bottom: 28px;
  }

  #case {
    padding-bottom: 100px;

    p {
      font-size: 24px;
    }

    span {
      font-size: 18px;
    }
  }

  .lamp {
    margin: 0;
    flex-shrink: 0;
  }

  .case-content2 {
    width: 830px;
    margin: 0;
    margin-left: auto;
  }

  .girl {
    left: 90px;
    transform: translateX(0);
    width: auto;
  }
}

/* map */

.map {
  margin: 0 auto;
  margin-bottom: 20px;
}

.cor__map__ex__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;

  li {
    width: calc((100% - 12px) / 2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 15px;
    background-image: url(../img/city.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  img {
    width: 17px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    text-align: center;
    color: #2b2f3b;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    text-align: center;
    color: #73798c;
  }
}

@media screen and (min-width: 768px) {
  .cor__map__ex__list {
    gap: 16px;
    li {
      width: calc((100% - 32px) / 3);
      padding: 19px;
      gap: 8px;
    }

    img {
      width: 20px;
    }

    p {
      font-size: 16px;
    }

    span {
      font-size: 12px;
    }
  }
}

@media screen and (min-width: 1436px) {
  .cor__map__ex__list {
    li {
      width: calc((100% - 80px) / 6);
    }
  }
}

/* ***** page 2 **** */

/* services */

#services {
  padding-top: 132px;
  padding-bottom: 168px;
  background-image: url(../img/boy.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 133px;

  .title {
    text-align: start;
  }
}

.cor__services__ex__container {
  position: relative;
}

.cloud {
  position: absolute;
  top: -40px;
  right: 10px;
  width: 120px;
  opacity: 0;
  animation: cloudFade 5s ease-in-out infinite;
}

@keyframes cloudFade {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  } /* появляется */
  75% {
    opacity: 1;
  } /* держится */
  100% {
    opacity: 0;
  } /* исчезает */
}

.cor__services__ex__list {
  display: flex;
  flex-direction: column;
  gap: 24px;

  li {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: #161616;
    margin-bottom: 16px;
  }

  span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #161616;
  }
}

@media screen and (min-width: 1436px) {
  #services {
    padding-top: 174px;
    padding-bottom: 100px;
    background-size: auto;

    .title {
      text-align: center;
    }
  }

  .cloud {
    width: auto;
  }

  .cor__services__ex__list {
    gap: 24px 64px;
    flex-wrap: wrap;
    justify-content: center;
    height: 520px;

    li {
      width: 517px;
    }

    p {
      font-size: 20px;
    }

    span {
      font-size: 16px;
    }
  }
}

/* how */

.cor__how__ex__left {
  position: absolute;
  top: 60px;
  width: 140px;
  left: -50px;
  z-index: -1;
  animation: handMoveX 2.5s ease-in-out infinite;
  will-change: transform;
}

@keyframes handMoveX {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(15px);
  } /* немного влево */
  100% {
    transform: translateX(0);
  }
}

.cor__how__ex__right {
  position: absolute;
  bottom: 196px;
  width: 90px;
  right: -30px;
  z-index: -1;
  transform-origin: bottom right;
  animation: handWaveHow 3.8s ease-in-out infinite;
  will-change: transform;
}

@keyframes handWaveHow {
  0% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}

.cor__how__ex__list {
  display: flex;
  flex-direction: column;
  gap: 32px;

  li {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 20px;
    line-height: 140%;
    color: #161616;
  }

  span {
    font-weight: 700;
  }
}

@media screen and (min-width: 1436px) {
  .cor__how__ex__list {
    gap: 40px 80px;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;

    li {
      width: 444px;
    }

    p {
      font-size: 20px;
    }
  }

  .cor__how__ex__item1 {
    transform: translateX(-80px);
  }

  .cor__how__ex__item2 {
    transform: translateX(80px);
  }

  .cor__how__ex__left {
    width: auto;
    left: -100px;
  }

  .cor__how__ex__right {
    width: auto;
    right: -90px;
  }
}

/* startup  */

#startup {
  background-image: url(../img/start-bg.jpg);
  background-position: center;
  background-size: cover;
}

.cor__startup__ex__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;

  div {
    width: 335px;
    max-width: 100%;
    min-height: 230px;
    padding: 50px;
    background-image: url(../img/pack.png);
    background-position: center;
    background-size: contain;
  }

  p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 156%;
    text-align: center;
    color: #161616;
    margin-bottom: 12px;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #161616;
  }
}

@media screen and (min-width: 1436px) {
  .cor__startup__ex__list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0 214px;

    div {
      width: 491px;
      min-height: 338px;
      padding: 80px;
    }

    p {
      font-size: 24px;
      margin-bottom: 24px;
    }

    span {
      font-size: 18px;
    }
  }
}

/* page 3  */

/* team  */

#team {
  padding-top: 132px;
}

.cor__team__ex__swiper {
  padding: 20px 0;
}

.cor__team__ex__item {
  padding: 22px;
  padding-top: 48px;
  position: relative;
  transform-origin: top center;
  cursor: pointer;
  transition: transform 0.3s ease;

  p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    line-height: 143%;
    text-align: center;
    color: #161616;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    text-align: center;
    color: #161616;
  }
}

.cor__team__ex__item:hover {
  animation: paperSwing 1.8s ease-in-out infinite;
}

.cor__team__ex__slide {
  position: absolute;
  top: 0;
  top: 0;
  width: 310px;
  height: 100%;
}

.avatar {
  width: 280px;
  margin: 0 auto;
  transform: translateX(10px);
}

@media screen and (min-width: 1436px) {
  #team {
    padding-top: 200px;
  }

  .cor__team__ex__slide {
    width: auto;
  }
  .avatar {
    width: auto;
  }

  .cor__team__ex__item {
    p,
    span {
      font-size: 18px;
    }
  }
}

/* why */

#why {
  background-image: url(../img/why-bg.jpg);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.cor__why__ex__right {
  top: 200px;
  right: -45px;
  width: 320px;
  position: absolute;
  animation: handMoveX 2.5s ease-in-out infinite;
  will-change: transform;
}

.cor__why__ex__list {
  position: relative;
  padding: 67px 30px;
  margin-top: 150px;

  img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #161616;
  }
}

@media screen and (min-width: 768px) {
  .cor__why__ex__list {
    width: 580px;
    margin: 0 auto;
    margin-top: 150px;

    padding: 97px 60px;
  }

  .cor__why__ex__right {
    top: 100px;
  }
}

@media screen and (min-width: 1436px) {
  .cor__why__ex__list {
    width: 580px;
    margin: 0;

    li {
      font-size: 16px;
    }
  }

  .cor__why__ex__right {
    top: 300px;
    width: auto;
  }
}

/* contact */

#contact {
  padding-bottom: 124px;
  position: relative;
  overflow: hidden;
}

.form-hand {
  position: absolute;
  left: 40%;
  bottom: -40px;
  width: 106px;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.form-sent {
  transform: translateY(0);
}

.contact-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 28px;
  line-height: 129%;
  text-align: center;
  color: #161616;
  margin-bottom: 40px;

  a {
    display: block;
    text-align: center;
    font-weight: 700;
  }

  a:hover {
    text-decoration: underline;
  }
}

.forw-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#consultation-form {
  width: 290px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;

  input,
  textarea {
    padding: 24px;
    width: 100%;
    border: none;
    resize: none;
    outline: none;
    background-image: url(../img/field.png);
    background-size: contain;
    background-repeat: no-repeat;
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    color: #161616;
    transition: background-color 0.3s ease;
  }

  button {
    background: #a245ff;
  }

  button:hover,
  button:focus {
    background: #a245ff;
  }

  input::placeholder,
  textarea::placeholder {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    color: #161616;
  }
}

.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) {
  .contact-text {
    font-size: 40px;
    margin-bottom: 40px;
  }

  #consultation-form {
    width: 1096px;
    flex-direction: row;
    gap: 12px;

    input,
    textarea,
    button {
      width: calc((100% - 36px) / 4);
      margin: 0;
    }
  }

  .form-hand {
    width: auto;
    left: 0;
    bottom: -50px;
  }
}

/* footer */

.footer {
  padding: 44px 0;
  background: #a245ff;
  position: relative;
  overflow: hidden;
}

.footer-mail {
  position: absolute;
  bottom: 7px;
  left: 20px;
  width: 66px;
}

.footer-hand {
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 126px;
}

.cor__footer__ex__logo {
  width: 224px;
  margin: 0 auto;
  margin-bottom: 12px;
}

.cor__footer__ex__text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
}

.cor__footer__ex__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 24px;

  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #fff;

  a {
    transition: color 0.3s ease;
  }

  a:hover {
    color: #ffce00;
  }
}

.cor__footer__ex__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;

  p {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #fff;
  }

  svg {
    stroke: white;
    transition: stroke 0.3s ease;
  }

  a:hover {
    svg {
      stroke: #ffce00;
    }
  }
}

@media screen and (min-width: 1436px) {
  .footer {
    padding: 44px 0;
  }

  .cor__footer__ex__logo {
    width: 224px;
    margin: 0;
    margin-bottom: 12px;
  }

  .cor__footer__ex__text {
    font-size: 16px;
    text-align: start;
    margin: 0;
  }

  .footer-mail {
    bottom: 7px;
    left: 50%;
    width: auto;
    transform: translateX(-150px);
  }

  .footer-hand {
    bottom: -10px;
    right: auto;
    left: 50%;
    width: auto;
    transform: translateX(50px);
  }

  .cor__footer__ex__text {
    margin-bottom: 32px;
  }

  .cor__footer__ex__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-content {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .cor__footer__ex__list {
    margin: 0;
  }
}

/* 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 #ffce00;
  border-top-color: #9645e8;
  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%;
  border: 1px solid #9645e8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 7;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#scrollTopBtn.show {
  opacity: 0.5;
  transform: translateY(0);
  pointer-events: auto;
}

#scrollTopBtn:hover {
  opacity: 1;
}

/* ********************* */

.hidden {
  display: none;
}

.menu-transform {
  transform: translateX(0);
}

.click {
  background-image: url(../img/minus.png);
  transform: rotate(180deg);
}

.cor__popup__ex__click {
  transform: translateY(130%) translateX(-50%);
}

.overflow {
  overflow: hidden;
}
