.main-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  padding: 20px 0;
  background: #f8d724;
}

.header-title {
  display: flex;
  align-items: center;
  gap: 9px;

  img {
    width: 57px;
  }

  span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 25px;
    color: #060606;
  }
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-nav {
  display: none;
}

.page-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.page-nav-link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: #060606;
}

.page-nav-link:hover {
  text-decoration: underline;
}

.menu-btn {
  border: 1px solid #060606;
  border-radius: 100px;
  padding: 8px 12px;
  background: #fff;

  svg {
    stroke: #060606;
    fill: none;
    transition: stroke 0.3s ease;
  }
}

.menu-btn:hover,
.menu-btn:focus {
  svg {
    stroke: #ecd036;
  }
}

.subscribe-link {
  display: none;
}

@media screen and (min-width: 1436px) {
  .page-nav {
    display: block;
  }

  .subscribe-link {
    display: block;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 156%;
    color: #060606;

    border: 1px solid #060606;
    border-radius: 100px;
    padding: 16px 40px;
    background: #fff;
  }

  .subscribe-link:hover {
    text-decoration: underline;
  }

  .menu-btn {
    display: none;
  }
}

/* modal  */

.menu {
  position: fixed;
  top: 0;
  left: 50%;
  padding: 40px;
  padding-top: 120px;
  z-index: 8;
  transform: translateX(150%);
  transition: transform 1s ease;
  background: #ffea77;
}

.menu-nav-list {
  flex-direction: column;
  align-items: flex-start;
}

.menu-subscribe {
  display: block;
  border: 1px solid #060606;
  border-radius: 100px;
  padding: 16px 40px;
  background: #fff;
}

/* popup */

.page-popup {
  position: fixed;
  z-index: 10;
  bottom: 20px;
  left: 50%;
  border-radius: 20px;
  padding: 32px 48px;
  transform: translateX(-50%);

  transition: transform 0.4s ease;
  box-shadow: 5px 15px 20px 0 rgba(0, 0, 0, 0.25);
  background: #0c0c0c;
}

.popup-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #fff;
  margin-bottom: 32px;

  a {
    text-decoration-skip-ink: none;
    color: #4a3aff;
  }

  a:hover {
    text-decoration: underline;
  }
}

.popup-btn {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #fff;

  display: block;
  border: 1px solid #ecd036;
  border-radius: 56px;
  padding: 18px 28px;
  box-shadow: 0 4px 8px 0 rgba(74, 58, 255, 0.08);
  background: #120704;
  text-align: center;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.popup-btn:hover {
  background: #ecd036;
  color: rgba(6, 6, 6, 0.8);
}

.popup-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 1436px) {
  .page-popup {
    padding: 45px 108px;
  }

  .popup-text {
    font-size: 18px;
    margin: 0;
    text-align: start;
  }

  .popup-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
  }

  .popup-wrap {
    flex-direction: row;
    flex-shrink: 0;
  }

  .popup-btn {
    font-size: 18px;
    padding: 16px 60px;
  }
}

/* hero  */

.dashboard {
  padding-top: 116px;
  background: #ecd036;
}

.home-container {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 50px;
  line-height: 112%;
  text-transform: uppercase;
  color: #060606;
  margin-bottom: 16px;
}

.hero-content {
  position: relative;
}

.hero-slide {
  border-radius: 12px;
  width: 100%;
  border-radius: 12px;
  height: 438px;
  background-position: center;
  background-size: cover;
}

.page-hero-link-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: normal;
  gap: 12px;
  padding: 24px;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
}

.page-hero-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 100px;
  padding: 12px 56px;
  backdrop-filter: blur(12px);
  background: linear-gradient(
    135deg,
    rgba(159, 159, 159, 0.6) 0%,
    rgba(159, 159, 159, 0.2) 100%
  );
  transition: background-color 0.3s ease, background-image 0.3s ease;

  p {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    text-align: center;
    transition: color 0.3s ease;
  }

  div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #ecd036;
    border-radius: 50%;
  }

  svg {
    stroke: white;
    transform-origin: 50% 50%;
    transition: transform 0.3s ease, stroke 0.3s ease;
  }
}

.page-hero-link:hover,
.page-hero-link:focus {
  background-color: #060606;
  background-image: none;

  svg {
    stroke: #000;
    transform: rotate(45deg);
  }
}

.hero-description {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px;

  div {
    backdrop-filter: blur(12px);
    background: linear-gradient(
      135deg,
      rgba(159, 159, 159, 0.6) 0%,
      rgba(159, 159, 159, 0.2) 100%
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 20px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
  }

  svg {
    flex-shrink: 0;
  }
}

.pagination {
  text-align: center;
  margin-top: 16px;
}

.swiper-pagination-bullet {
  background: #060606;
  opacity: 1;
  border-radius: 4px;
  width: 10px;
  height: 8px;
}

.swiper-pagination-bullet-active {
  background: #fff;
  width: 40px;
}

@media screen and (min-width: 768px) {
  .page-hero-link-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }

  .hero-description {
    div {
      width: 522px;
    }
  }
}

@media screen and (min-width: 1436px) {
  .dashboard {
    padding-top: 126px;
  }

  .page-hero-title {
    font-size: 72px;
    margin-bottom: 28px;
  }

  .hero-description {
    padding: 20px;

    div {
      padding: 20px;
    }

    p {
      font-size: 24px;
    }
  }

  .page-hero-link {
    p {
      font-size: 20px;
    }
  }
}

/* news  */

.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-item {
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  border: 2px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.news-item:hover,
.news-item:focus {
  border-color: #ecd036;
  box-shadow: 5px 5px 4px #ecd036;
}

.article-img {
  width: 100%;
  border-radius: 12px;
}

.article-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  text-transform: uppercase;
  color: #060606;
  margin-top: 24px;
  margin-bottom: 8px;
}

.article-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #434343;
  margin-bottom: 20px;
}

.article-date {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  color: #7d7d7d;
}

@media screen and (min-width: 768px) {
  .news-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .news-item {
    width: calc((100% - 24px) / 2);
  }
}

@media screen and (min-width: 1436px) {
  .news-list {
    gap: 32px;
  }

  .news-item {
    width: calc((100% - 64px) / 3);
  }
}

/* matches */

#matches {
  background: #fff;
}

.matches-description {
  margin-bottom: 32px;

  img {
    width: 40px;
    margin-bottom: 32px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #060606;
  }
}

.matches-item {
  border-radius: 12px;
  padding: 20px;
  background: #ecd036;
  border: 2px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.matches-item:hover,
.matches-item:focus {
  border-color: #000;

  .article-btn {
    background: #fff;
  }
}

.article-btn {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #060606;
  border-radius: 100px;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.5);
  display: block;
  width: fit-content;
  margin-left: auto;
  transition: background-color 0.3s ease;
}

.swiper-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 32px;

  .pagination {
    margin: 0;
    width: fit-content;
    margin: 0;
  }

  .swiper-pagination-bullet-active {
    background: #ecd036;
  }
}

.swiper-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #060606;
  border-radius: 50%;
  flex-shrink: 0;

  svg {
    fill: none;
    stroke: #ecd036;
    transition: stroke 0.3s ease;
  }
}

.swiper-btn:hover,
.swiper-btn:focus {
  svg {
    stroke: #fff;
  }
}

.matches-left {
  transform: rotate(-90deg);
}

.matches-right {
  transform: rotate(90deg);
}

@media screen and (min-width: 1436px) {
  .matches-title-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 200px;
    margin-bottom: 60px;

    .title {
      margin: 0;
    }

    .matches-description {
      margin: 0;

      img {
        width: 48px;
        margin-bottom: 32px;
      }

      p {
        font-size: 18px;
      }
    }
  }
}

/* analysis */

#analysis {
  background: #ecd036;
}

.analysis-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.analysis-item {
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px 0 rgba(99, 99, 99, 0.2);
  background: #fff;
}

.analysis-header {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  justify-content: space-between;

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    color: rgba(6, 6, 6, 0.8);
  }

  div {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    text-transform: capitalize;
    text-align: center;
    color: #060606;
  }
  img {
    width: 16px;
    animation: blink 1.2s ease-in-out infinite;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}

.analysis-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);

  ul {
    display: flex;
    flex-direction: column;
    gap: 10px;

    li {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    img {
      width: 30px;
      flex-shrink: 0;
    }

    p {
      font-family: var(--font-family);
      font-weight: 400;
      font-size: 16px;
      line-height: 150%;
      color: rgba(6, 6, 6, 0.8);
    }
  }

  div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding-left: 20px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);

    p {
      font-family: var(--font-family);
      font-weight: 400;
      font-size: 12px;
      line-height: 117%;
      letter-spacing: 0.02em;
      text-transform: capitalize;
      text-align: center;
      color: #a6a9b8;
    }

    span {
      font-family: var(--font-family);
      font-weight: 600;
      font-size: 16px;
      line-height: 150%;
      text-align: center;
      color: rgba(6, 6, 6, 0.8);
    }
  }
}

.analysis-footer {
  padding-top: 16px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 117%;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: rgba(6, 6, 6, 0.8);
}

.analysis-slider-wrapper {
  position: relative;
}

.analysis-slide {
  width: 100%;

  img {
    width: 100%;
  }
}

.analysis-bar {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;

  h2 {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 24px;
    line-height: 133%;
    text-transform: capitalize;
    text-align: center;
    color: #fff;
  }

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-transform: capitalize;
    text-align: center;
    color: #fff;
    margin-bottom: 16px;
  }

  a {
    display: block;
    padding: 12px;
    border-radius: 8px;
    width: fit-content;
    margin: 0 auto;
    background: #f6423a;
    margin-bottom: 24px;
    transition: background-color 0.3s ease;
  }

  a:hover {
    background: #e73026;
  }

  .swiper-pagination-bullet {
    background-color: #fff;
  }

  .swiper-pagination-bullet-active {
    background-color: #ecd036;
  }
}

.analysis-left {
  transform: rotate(-90deg);
}

.analysis-right {
  transform: rotate(90deg);
}

@media screen and (min-width: 768px) {
  .analysis-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .analysis-item {
    width: calc((100% - 16px) / 2);
  }
}

@media screen and (min-width: 1436px) {
  .analysis-flex {
    display: flex;
    gap: 44px;
  }

  .analysis-slider-wrapper {
    width: 468px;
    flex-shrink: 0;
  }

  .analysis-list {
    width: 100%;
    gap: 24px;
    margin: 0;
  }

  .analysis-item {
    width: calc((100% - 24px) / 2);
  }

  .analysis-bar {
    h2 {
      font-size: 27px;
    }

    p {
      font-size: 18px;
    }

    a {
    }
  }
}

/* interviews  */

.interviews-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  text-align: center;
  color: #060606;
  margin-bottom: 40px;
}

.article-arrow {
  display: flex;
  width: fit-content;
  margin-left: auto;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #060606;
  border-radius: 100px;
  padding: 10px 20px;
  background: #ecd036;

  div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;

    svg {
      stroke: #060606;
      transform-origin: center;
      transition: stroke 0.3s ease;
    }
  }
}

@media screen and (min-width: 768px) {
}

@media screen and (min-width: 1436px) {
  #interviews {
    .title {
      text-align: center;
    }
  }

  .interviews-text {
    font-size: 18px;
    margin-bottom: 60px;
  }
}

/* rankings  */

#rankings {
  background: #fff;
}

.rankings-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.rankings-flex1 {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.rankings-link {
  width: fit-content;
  margin: 0 auto;
  background: #060606;
}

.rankings-video {
  width: 100%;
  border-radius: 12px;
  background-image: url(../img/rankings/video.png);
  background-position: center;
  background-size: cover;
  height: 432px;
  position: relative;

  p {
    display: block;
    width: fit-content;
    border-radius: 12px;
    padding: 16px 21px;
    backdrop-filter: blur(12px);
    background: linear-gradient(
      135deg,
      rgba(159, 159, 159, 0.6) 0%,
      rgba(159, 159, 159, 0.2) 100%
    );
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 156%;
    color: #fff;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
  }

  a {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: block;
    padding: 12px;
    border-radius: 8px;
    width: fit-content;
    background: #f6423a;
    transition: background-color 0.3s ease;
  }

  a:hover {
    background: #e73026;
  }
}

.rankings-flex2 {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.rankings-title {
  display: flex;
  flex-direction: column;
  gap: 24px;

  img {
    width: 100%;
  }

  p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 156%;
    text-transform: uppercase;
    color: #060606;
  }
}

.rankings-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media screen and (min-width: 768px) {
  .rankings-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;

    div {
      width: calc((100% - 12px) / 2);
    }
  }
}

@media screen and (min-width: 1436px) {
  .rankings-container {
    gap: 48px;
  }

  .rankings-flex1 {
    display: flex;
    flex-direction: row;
    gap: 55px;
  }

  .rankings-flex2 {
    display: flex;
    flex-direction: row;
    gap: 55px;
  }

  .rankings-video {
    width: 840px;
    flex-shrink: 0;
  }

  .rankings-list {
    width: 708px;
    flex-shrink: 0;
  }

  .rankings-title {
    p {
      font-size: 20px;
    }
  }
}

/* editors  */

#editors {
  background: #ecd036;
}

.editors-item {
  background-color: #fff;
}

.editors-left {
  transform: rotate(-90deg);
}

.editors-right {
  transform: rotate(90deg);
}

.editors-pagination {
  .swiper-pagination-bullet-active {
    background: #fff;
  }
}

/* subscribe  */

#subscribe {
  background: #fff;
}

.subscribe-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;

  h3 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 156%;
    text-transform: uppercase;
    color: #060606;
  }

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: #060606;
  }
}

.form-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;

  input,
  textarea {
    border: 1px solid #060606;
    border-radius: 100px;
    padding: 12px 28px;
    resize: none;
    outline: none;
    width: 100%;
    background-color: transparent;

    font-family: var(--font-family);
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    color: #060606;
    transition: background-color 0.3s ease;
  }

  button {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #060606;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    border-radius: 100px;
    padding: 12px;
    background: #ecd036;
    width: 100%;

    div {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #fff;
      border-radius: 50%;
      width: 36px;
      height: 36px;
    }

    svg {
      transition: transform 0.3s ease;
      transform: rotate(-45deg);
    }
  }

  button:hover,
  button:focus {
    svg {
      transform: rotate(0);
    }
  }

  input::placeholder,
  textarea::placeholder {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    color: #060606;
  }
}

@media screen and (min-width: 1436px) {
  .subscribe-text {
    flex-direction: row;
    justify-content: space-between;
    gap: 435px;
    margin-bottom: 48px;

    h3 {
      font-size: 20px;
    }

    p {
      font-size: 24px;
      flex-shrink: 0;
    }
  }

  .form {
    flex-direction: row;
    gap: 28px;
  }
}

/* contact */

.contact-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  text-align: center;
  color: #060606;
  margin-bottom: 40px;
}

.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.contact-img {
  width: 100%;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;

  li {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    text-transform: uppercase;
    color: #000;
  }

  a,
  span {
    font-weight: 400;
  }

  a:hover,
  a:focus {
    text-decoration: underline;
  }
}

@media screen and (min-width: 1436px) {
  #contact {
    .title {
      text-align: center;
    }
  }

  .contact-text {
    font-size: 18px;
    margin-bottom: 60px;
  }

  .contact-form-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 56px;
  }

  #contact-form {
    flex-direction: column;
    gap: 20px;
  }

  .contact-img {
    width: 670px;
    flex-shrink: 0;
    margin: 0;
  }

  .contact-list {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* footer */

.footer {
  padding: 40px 0;
  background: #ecd036;
}

.footer-logo {
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 20px;
}

.footer-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;

  font-family: var(--font-family);
  font-weight: 200;
  font-size: 12px;
  line-height: 133%;
  text-align: center;
  color: #000;

  a:hover {
    text-decoration: underline;
  }
}

.social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;

  a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    border: 1px solid rgba(13, 22, 21, 0.16);
    background-color: rgba(247, 247, 247, 0.3);
  }
}

.footer-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #000;
  margin-bottom: 20px;
}

.footer-text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 12px;
  line-height: 133%;
  text-align: center;
  color: #000;
}

@media screen and (min-width: 1436px) {
  .footer {
    padding: 45px 0;
  }

  .footer-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
  }

  .footer-logo {
    margin: 0;
  }

  .footer-list {
    gap: 28px;
    font-size: 18px;
    margin: 0;
  }

  .social-list {
    gap: 20px;
    margin: 0;
  }

  .footer-desc {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .footer-text {
    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: #ecd036;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* scroll */

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  border: 1px solid #060606;
  color: #060606;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  z-index: 7;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease box-shadow 0.4s ease;

  svg {
    stroke: #060606;
    fill: none;
  }
}

#scrollTopBtn:hover,
#scrollTopBtn:focus {
  box-shadow: 0 4px 22px 3px #060606;
}

#scrollTopBtn.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ********************* */

.hidden {
  display: none;
}

.menu-transform {
  transform: translateX(-50%);
}

.click {
  transform: rotate(135deg);
}

.popup-click {
  transform: translateY(130%) translateX(-50%);
}

.overflow {
  overflow: hidden;
}
