.main-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999999999999;
  padding: 20px 0;
  background: #1a1a1a;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-title {
  display: flex;
  align-items: center;
  gap: 5px;

  span {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    transition: color 0.4s ease;
  }
}

.header-title:hover,
.header-title:hover {
  span {
    color: #ffd119;
  }
}

.page-nav {
  display: none;
}

.menu-btn {
  display: block;
  padding: 8px 14px;
  border: 1px solid #ffd119;
  border-radius: 12px;

  svg {
    fill: none;
    stroke: #fff;
    transition: stroke 0.3s ease;
  }
}

.menu-btn:hover,
.menu-btn:focus {
  svg {
    stroke: #ffd119;
  }
}

.list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: #7e7e81;

  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 24px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.link:hover,
.link:focus {
  color: #ffd119;
  border-color: #ffd119;
}

.active-link {
  color: #fff;
  border-color: #333;
}

.header-subscribe {
  display: none;
}

@media screen and (min-width: 1436px) {
  .main-section {
    padding: 25px 0;
  }

  .header-subscribe {
    display: inline-block;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #fff;

    text-transform: capitalize;
    transition: color 0.3s ease;
    border: 1px solid #ffd119;
    border-radius: 12px;
    padding: 14px 20px;
  }

  .header-subscribe:hover,
  .header-subscribe:focus {
    color: #ffd119;
  }

  .header-title {
    span {
      font-size: 36px;
    }
  }

  .search-container {
    display: flex;
    align-items: center;
    gap: 48px;
  }

  .page-nav {
    display: block;
  }

  .menu-btn {
    display: none;
  }
}

/* modal  */

.menu {
  position: fixed;
  overflow: hidden;
  top: 110px;
  left: 50%;
  padding: 40px;
  z-index: 88888888;
  background: #1a1a1a;
  transform: translateX(-50%) translateY(-130%);
  transition: transform 2s ease;
}

.menu-nav-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.modal-subscribe {
  display: inline-block;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #fff;

  text-transform: capitalize;
  transition: color 0.3s ease;
  border: 1px solid #ffd119;
  border-radius: 12px;
  padding: 14px 20px;
}

.modal-subscribe:hover,
.modal-subscribe:focus {
  color: #ffd119;
}

/* popup */

.page-popup {
  position: fixed;
  z-index: 999999;
  bottom: 20px;
  border-radius: 10px;
  padding: 20px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, 0.18);
  background: #232536;
  transition: transform 0.4s ease;
}

.popup-text {
  font-family: var(--font3);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
  margin-bottom: 16px;

  span {
    font-weight: 400;
  }
}

.popup-btn {
  font-family: var(--font3);
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  color: #ffd050;

  border: 2px solid #ffd050;
  border-radius: 6px;
  padding: 12px 36px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.popup-btn:hover {
  background: #ffd050;
  color: #000;
}

.popup-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
}

@media screen and (min-width: 1436px) {
  .page-popup {
    padding: 30px 48px;
  }

  .popup-text {
    font-size: 14px;
    margin: 0;
  }

  .popup-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
  }

  .popup-wrap {
    gap: 38px;
    flex-shrink: 0;
  }
  .popup-btn {
    padding: 16px 48px;
  }
}

/* hero  */

.dashboard {
  padding-top: 90px;
}

.hero-wrap {
  border-radius: 12px;
  padding: 32px 12px;
  background-color: bisque;
  background-image: url(../images/bg.jpg);
  background-position: center;
  background-size: cover;
}

.page-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 56px;
  line-height: 107%;
  color: #232536;
  margin-bottom: 20px;
}

.page-hero-text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 156%;
  color: #232536;
  margin-bottom: 36px;
}

.page-link {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 133%;
  color: #232536;

  display: block;
  width: fit-content;
  margin: 0 auto;
  border-radius: 12px;
  padding: 16px 48px;
  background-color: #ffd050;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 24px;
}

.page-link:hover {
  box-shadow: 4px 4px 4px 4px #878686;
  transform: translateY(-2px);
}

.people {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;

  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #232536;
}

.hero-img {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-img1 {
  border-radius: 12px;
  background-image: url(../images/hero1.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 221px;
}

.hero-img2 {
  border-radius: 12px;
  background-image: url(../images/hero2.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 221px;
}

@media screen and (min-width: 768px) {
  .hero-img {
    flex-direction: row;
    align-items: center;
  }

  .hero-img1 {
    width: calc((100% - 20px) / 2);
    height: 300px;
  }

  .hero-img2 {
    width: calc((100% - 20px) / 2);
    height: 300px;
  }
}

@media screen and (min-width: 1436px) {
  .dashboard {
    padding-top: 143px;
  }

  .hero-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
  }

  .hero-img {
    width: 532px;
    flex-shrink: 0;
  }

  .hero-img1 {
    height: 468px;
  }

  .hero-img1 {
    height: 370px;
  }

  .page-title {
    font-size: 68px;
    margin-bottom: 32px;
  }

  .page-hero-text {
    font-size: 24px;
    margin-bottom: 60px;
  }

  .hero-link-wrap {
    display: flex;
    align-items: center;
    gap: 60px;
  }

  .page-link {
    margin: 0;
  }
  .people {
    margin: 0;
  }
}

/* about  */

.about-img {
  width: 100%;
  border-radius: 12px;
}

.about-wrap {
  transform: translateY(-10px);
  border-radius: 16px;
  padding: 32px 16px;
  background: #fff;

  .title {
    text-align: start;
  }
}

.about-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  text-transform: uppercase;
  color: #232536;
  margin-bottom: 24px;
}

.about-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #6d6e76;
}

@media screen and (min-width: 1436px) {
  .about-img {
    width: auto;
  }

  .about-container {
    position: relative;
  }

  .about-wrap {
    position: absolute;
    padding: 64px 80px;
    right: 0;
    top: 50%;
    width: 706px;
    transform: translateY(-50%);
  }
}

/* why  */

.why {
  background: #ebdcd2;
}

.news-list {
}

.news-item {
  border-radius: 12px;
  padding: 20px;
  border: 2px solid transparent;
  background: #fff;
  transition: border-color 0.3s ease;
  cursor: pointer;
}

.news-item:hover,
.news-item:focus {
  border-color: #ffd050;
}

.article-img {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 12px;
}

.article-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  color: #232536;
  margin-bottom: 16px;
}

.article-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: #6d6e76;
  margin-bottom: 16px;
}

.article-btn {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #232536;

  display: block;
  width: fit-content;
  border-radius: 12px;
  padding: 16px 48px;
  background: #ffd050;
  margin-left: auto;
}

.why-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.why-btn {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  text-align: center;
  color: #6d6e76;
  transition: color 0.3s ease;
}

.why-btn:hover,
.why-btn-focus {
  color: #000;
}

@media screen and (min-width: 768px) {
  .news-list {
  }

  .news-item {
  }
}

@media screen and (min-width: 1436px) {
  .why-btn-wrapper {
    display: none;
  }

  .news-list {
  }
  .news-item {
  }
}

/* what  */

.what-item {
  border-radius: 12px;
  padding: 20px 12px;
  background: #fff;

  img {
    width: 100%;
    margin-bottom: 24px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: #6d6e76;
    margin-bottom: 16px;

    span {
      color: #592ea9;
    }
  }

  h3 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: #232536;
    margin-bottom: 16px;
  }

  span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #6d6e76;
  }
}

.what-title {
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 114%;
  color: #232536;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  margin-top: 24px;

  a {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: #592ea9;
  }

  a:hover,
  a:focus {
    text-decoration: underline;
  }
}

.what-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.what-item-img {
  border-radius: 12px;
  width: 100%;
  height: 124px;
  background-position: center;
  background-size: cover;
  margin-top: 12px;
}

@media screen and (min-width: 768px) {
  .what-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;

    .what-item {
      width: calc((100% - 12px) / 2);
    }
  }
}

@media screen and (min-width: 1436px) {
  .what-flex {
    display: flex;
    gap: 32px;
  }

  .what-item {
    border-radius: 12px;
    padding: 20px;
    width: 668px;
    flex-shrink: 0;
  }

  .what-title {
    margin-top: 0;
  }

  .what-list {
    flex-direction: column;
    gap: 16px;

    .what-item {
      width: 100%;
      display: flex;
      justify-content: space-between;
      gap: 20px;
    }

    .what-item-img {
      width: 177px;
      flex-shrink: 0;
      margin: 0;
    }
  }
}

/* philosophy  */

.philosophy-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 28px;
  line-height: 114%;
  color: #232536;
}

@media screen and (min-width: 1436px) {
  .philosophy-text {
    font-size: 36px;
  }
}

/* subscribe  */

#subscribe {
  background-image: url(../images/subscribe.jpg);
  background-position: center;
  background-size: cover;
}

.subscribe-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 133%;
  letter-spacing: -0.06em;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}

.subscribe-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

#consultation-form {
  display: flex;
  flex-direction: column;
  gap: 24px;

  input,
  textarea {
    border: 1px solid #fff;
    border-radius: 12px;
    padding: 16px 24px;
    resize: none;
    outline: none;
    width: 100%;
    background-color: transparent;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    transition: background-color 0.3s ease;
  }

  button {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
    text-align: center;
    color: #232536;

    display: block;
    border-radius: 12px;
    padding: 16px;
    background: #ffd050;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
  }

  button:hover,
  button:focus {
    box-shadow: 4px 4px 4px 4px #878686;
    transform: translateY(-2px);
  }

  input::placeholder,
  textarea::placeholder {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
  }
}

.agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  #agree {
    border: 1px solid #908f9c;
    border-radius: 100px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    color: #fff;
  }

  a {
    color: #926cfc;
  }
  a:hover,
  a:focus {
    text-decoration: underline;
    text-decoration-skip-ink: none;
  }
}

.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: 768px) {
  #consultation-form {
    flex-direction: row;
    width: 680px;
    margin: 0 auto;

    button {
      width: fit-content;
      padding: 16px 48px;
    }
  }
}

@media screen and (min-width: 1436px) {
}

/* page 2  */

/* article  */

.articles {
  background: #ebdcd2;
}

.article-hero-wrap {
  background-image: url(../images/articles.jpg);
  background-position: center;
  padding-top: 120px;
  padding-bottom: 193px;
}

.article-hero-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 56px;
  line-height: 107%;
  color: #fff;
  margin-bottom: 20px;
}

.article-hero-text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 156%;
  color: #fff;
}

@media screen and (min-width: 1436px) {
  .article-hero-wrap {
    display: block;
  }
  .art-article-hero-title {
    font-size: 68px;
    margin-bottom: 32px;
  }

  .article-hero-text {
    font-size: 24px;
    max-width: 611px;
  }
}

/* all articles   */

.all-articles {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;

  button {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 133%;
    text-align: center;
    color: #6d6e76;
  }

  svg {
    stroke: #000;
    fill: none;
  }

  button:hover,
  button:focus {
    color: #000;
  }
}

.pg-prev {
  transform: rotate(-90deg);
}
.pg-next {
  transform: rotate(90deg);
}

@media screen and (min-width: 768px) {
  .all-articles {
    flex-direction: row;
    flex-wrap: wrap;

    li {
      width: calc((100% - 20px) / 2);
    }
  }
}

@media screen and (min-width: 1436px) {
  .all-articles {
    gap: 32px;

    li {
      width: calc((100% - 64px) / 3);
    }
  }
}

/* page 3  */

/* about  */

.about-us-container {
  position: relative;
}

.about-img {
  border-radius: 12px;
  width: 100%;
  height: 278px;

  background-image: url(../images/team.png);
  background-position: center;
  background-size: cover;
}

.about-us-wrapper {
  border-radius: 16px;
  padding: 32px 16px;
  background: #fff;
  transform: translateY(-30px);
}

.about-us-text {
  font-family: var(--font-family);
  font-size: 20px;
  line-height: 140%;
  font-weight: 500;
  color: #232536;

  span {
    color: #ffd119;
    font-weight: 700;
  }
}

@media screen and (min-width: 1436px) {
  .about-img {
    height: 444px;
  }

  .about-us-wrapper {
    width: 827px;
    position: absolute;
    transform: translateX(0) translateY(0);
    bottom: -56px;
    right: 136px;
  }
}

/* mission   */

.mission-list {
  border-radius: 12px;
  padding: 48px 12px;
  background: #ebdcd2;

  display: flex;
  flex-direction: column;
  gap: 32px;

  li {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  img {
    width: 100%;
    flex-shrink: 0;
  }

  p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: #232536;
    margin-bottom: 24px;
  }

  span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #6d6e76;
  }
}

@media screen and (min-width: 1436px) {
  .mission-list {
    gap: 48px;
    padding: 64px;

    li {
      flex-direction: row;
      gap: 64px;
    }

    .item2 {
      flex-direction: row-reverse;
    }

    img {
      width: auto;
    }

    p {
      font-size: 28px;
    }

    span {
      font-size: 16px;
    }
  }
}

/* about-head  */

.about-head {
  background-image: url(../images/banner.jpg);
  background-position: center;
  background-size: cover;

  p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 28px;
    line-height: 114%;
    letter-spacing: -0.07em;
    text-align: center;
    color: #fff;
  }
}

@media screen and (min-width: 1436px) {
  .about-head {
    p {
      font-size: 36px;
    }
  }
}

/* team  */

.team-list {
  display: flex;
  flex-direction: column;
  gap: 28px;

  li {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 12px;
    background: #fff;
    padding: 40px;
    cursor: pointer;
    transition: background-color 0.4s ease;
  }

  li:hover,
  li:focus {
    background: #ebdcd2;
  }

  p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 28px;
    line-height: 129%;
    letter-spacing: -0.04em;
    color: #232536;
    margin-bottom: 4px;
    margin-top: 20px;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    text-align: center;
    color: #6d6e76;
  }
}

@media screen and (min-width: 768px) {
  .team-list {
    flex-direction: row;
    flex-wrap: wrap;

    li {
      width: calc((100% - 28px) / 2);
    }
  }
}

@media screen and (min-width: 1436px) {
  .team-list {
    gap: 32px;

    li {
      width: calc((100% - 96px) / 4);
    }
  }
}

/* page 4  */

/* contact */

.contact {
  padding-top: 108px;
}

.contact-black {
  border-radius: 12px;
  padding: 48px 20px;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 20px;
}

.contact-wrap {
  h4 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #fff;
    opacity: 0.6;
    padding-bottom: 16px;
    border-bottom: 2px solid #ffd050;
    margin-bottom: 16px;
  }

  p {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 160%;
    color: #fff;
  }

  span {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: #fff;
    opacity: 0.6;
  }

  a {
    transition: color 0.3s ease;
  }

  a:hover,
  a:focus {
    color: #ffd050;
    text-decoration: underline;
  }
}

/* важно: у контейнера карты должна быть высота */
.map-frame {
  border-radius: 12px;
  overflow: hidden;
  height: 188px;
  width: 100%;
  margin-bottom: 20px;
}

.leaflet-container {
  background: #fff;
}

.contact-description {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 133%;
  text-align: center;
  color: #232536;
}

@media screen and (min-width: 1436px) {
  .contact {
    padding-top: 140px;
  }

  .contact-black {
    padding: 40px 150px;
    gap: 48px;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
  }

  .contact-wrap {
  }

  .map-frame {
    height: 516px;
    margin-bottom: 40px;
  }

  .contact-description {
    font-size: 32px;
  }
}

/* footer */

.footer {
  padding: 32px 0;
  background: #232536;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;

  span {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 36px;
    color: #fff;
    transition: color 0.3s ease;
  }
}

.footer-logo:hover,
.footer-logo:focus {
  span {
    color: #ffd050;
  }
}

.footer-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #ffd050;
  text-align: center;
  margin-bottom: 24px;
}

.footer-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;

  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;

  a {
    transition: color 0.3s ease;
  }

  a:hover {
    color: #ffd050;
  }
}

.footer-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #fff;
}

@media screen and (min-width: 1436px) {
  .footer-title-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .footer-logo {
    font-size: 36px;
    margin: 0;
  }

  .footer-title {
    font-size: 16px;
    margin: 0;
  }

  .footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .footer-list {
    margin: 0;
    gap: 17px;
  }

  .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;

  /* display: none; */
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #fff;
  border-top-color: #ffd050;
  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 #ffd050;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99999999999999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;

  svg {
    fill: none;
    stroke: #ffd050;
  }
}

#scrollTopBtn.show {
  opacity: 0.5;
  transform: translateY(0);
  pointer-events: auto;
}

#scrollTopBtn:hover {
  opacity: 1;
}

/* ********************* */

.hidden {
  display: none;
}

.menu-transform {
  transform: translateX(-50%) translateY(0);
}

.click {
  background-image: url(../img/minus.png);
  transform: rotate(180deg);
}

.popup-click {
  transform: translateY(130%) translateX(-50%);
}

.overflow {
  overflow: hidden;
}
