body {
    font-family: "Century Gothic", 'Lato', sans-serif;
}

a {
  text-decoration: none;

}
&:hover a {
    color: black;
  }
.et-hero-tabs,
.et-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    background: #eee;
    text-align: center;
    padding: 0 2em;
    h1 {
        font-size: 2rem;
        margin: 0;
        letter-spacing: 1rem;
    }
    h3 {
        font-size: 1rem;
        letter-spacing: 0.3rem;
        opacity: 0.6;
    }
}

.et-hero-tabs-container {
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background: #fff;
    z-index: 10;
    &--top {
        position: fixed;
        top: 0;
    }
}

.et-hero-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    color: #000;
    letter-spacing: 0.1rem;
    transition: all 0.5s ease;
    font-size: 0.8rem;
    &:hover {
      color:white;
      background: rgba(172,172,177,0.8);
      transition: all 0.5s ease;
    }
}

.et-hero-tab-slider {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 6px;
    background: #66B1F1;
    transition: left 0.3s ease;
}

@media (min-width: 800px) {
  .et-hero-tabs,
  .et-slide {
    h1 {
        font-size: 3rem;
    }
    h3 {
        font-size: 1rem;
    }
  }
  .et-hero-tab {
    font-size: 1rem;
  }
}

.wrapper1 {
    transform: translateY(50px);
    transition: transform 0.5s, opacity 0.5s;
    opacity: 0;
  animation: ani 3.5s forwards;
}
.wrapper2 {
    transform: translateY(55px);
    transition: transform 0.9s, opacity 0.9s;
    opacity: 0;
  animation: ani 3.9s forwards;
}
.wrapper3 {
    transform: translateY(60px);
    transition: transform 1.2s, opacity 1.2s;
    opacity: 0;
  animation: ani 4.2s forwards;
}



.social-icons {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 0;
}
.social-icons>li {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.social-icons a {

  position: relative;
  background-color: #eee;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: background-color .3s ease-in-out;
  width: 50%;

  border-radius: .25rem;
}
.social-icons a:hover {
  background-color: #e0e0e0;
}
.social-icons a::before {
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  left: -1.65rem;

  background: transparent no-repeat center center;
  background-size: 100% 100%;
}
.social-icons .social-icon-twitter::before {
  background-image: url(/static/img/icons8-discord-96.png);
}
.social-icons .social-icon-email::before {
  background-image: url(/static/img/icons8-новый-пост-96.png);
}
.social-icons .social-icon-vk::before {
     display: inline-block;
  background-image: url(/static/img/icons8-vk.png);
}
.social-icons .social-icon-telegram::before {
  background-image: url(/static/img/icons8-telegram-app-96.png);
}


.scroll-top {
  position: fixed;        /* Фиксируем кнопку к экрану */
  bottom: 20px;          /* Отступ от нижнего края */
  right: 20px;           /* Отступ от правого края */
  display: none;         /* Скрываем кнопку по умолчанию */
  background-color: gray; /* Цвет фона */
  color: white;          /* Цвет текста */
  border: none;            /* Убираем рамку */
  padding: 10px 10px;      /* Отступы внутри кнопки */
  border-radius: 5px;     /* Округлые углы */
  cursor: pointer;       /* Курсор в виде указателя */
  opacity: 0.7;
/* Непрозрачность (для плавного появления) */
  transition: opacity 0.3s ease-in-out; /* Анимация */
  z-index: 1000;


}

.scroll-top:hover {
  opacity: 0.5;             /* Полная прозрачность при наведении */
}

.scroll-top i {
  margin-right: 0px;      /* Отступ от текста */
}

.scroll-top.show {
  display: block;

}
