* {
  box-shadow: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: rgb(9,9,121);
  background: linear-gradient(80deg, rgba(9,9,121,1) 13%, rgba(146,57,226,1) 38%, rgba(175,34,238,1) 67%, rgba(19,0,255,1) 92%);
}
        /*  Баннер  */
.banner {
    position: relative;
    max-width: 1200px;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
.banner .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
.blok {
  font-family: Arial, sans-serif;
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            height: 100%;
            margin: 0;
            padding: 30px;
            background-color: transparent;
}
.card {
            background-color: #fff;
            border-radius: 18px;
            border: 2px solid #888;
            width: 260px;
            text-align: center;
            overflow: hidden;
            margin: 10px;
        }
.card img {
            width: 130px;
            height: auto;
            margin-top: 20px;
}
.card-title {
    font-size: 28px;
    margin: 10px;
    margin-bottom: 40px;
}

          /*  Неонавая Заставка  */
.container {
  background: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: transparent;
}
.animate-charster {
  text-transform: capitalize;
  background-image: linear-gradient(-225deg,
     #231557 0%,
     #44107a 29%,
     #ff1361 67%,
     #fff800 100%
 );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 3s linear infinite;
  display: inline-block;
  font-size: 36px;
  margin: 0 auto;
 }

 @keyframes textclip {
  to {
     background-position: 200% center;
   }
 } 
 
.bord {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 20px 0;
  margin: 0 auto;
}
.block-text {
  width: 600px;
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
  border: 2px solid #888;
}
.block-text .bl-text {
  text-align: center;
  font-size: 30px;
  margin-bottom: 10px;
}
.block-text .bl-input {
  font-size: 18px;
  line-height: 1.3;
  padding: 10px;
  margin-top: 0;
  margin-bottom: 20px;
}

             /*  Нижние Меню  */
.bottom-menu {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #333;
  display: flex;
  justify-content: space-around;
  padding: 3px 0;
  margin: 0 auto;
}
.bottom-menu a {
  color: white;
  text-decoration: none;
  text-align: center;
  padding: 10px;
  flex: 1;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.bottom-menu a .icon {
  font-size: 24px;
  margin-bottom: 7px;
  transition: all 0.3s ease;
}
.bottom-menu a:hover .icon {
  color: gold;
  transform: scale(1.2);
}
.bottom-menu a .icon::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.3s ease;
}
.bottom-menu a:hover .icon::before {
  background-color: rgba(255, 255, 255, 0.3);
}

           /*  Кнопки 1,2,3,4,5 */
.pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.page-link {
    display: block;
    margin: 0 5px;
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.page-link:hover {
    background-color: #00B330;
}

/* = = = = = =/  S C R O L L  /= = = = = = */
#scrollToTopBtn {
  display: none;
  position: fixed;
  width: 34px;
  height: 34px;
  bottom: 88px;
  right: 10px;
  padding: 5px;
  border-radius: 50%;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  opacity: 0.8;
  transition: 0.5s all;
}
.scroll {
  width: 22px;
  height: 22px;
  color: #fff;
}

#scrollToTopBtn:hover {
  opacity: 1;
}


        /* Адаптация для планшетов */
    @media (max-width: 768px) {
      .banner {
        height: auto;
      }
      
      .block-text {
        width: 80%;
        padding: 15px;
      }
      .block-text .bl-text {
        font-size: 28px;
        margin-bottom: 10px;
      }
      .block-text .bl-input {
        font-size: 16px;
        margin-bottom: 10px;
      }
            
      .blok {
        flex-direction: column;
        height: auto;
        padding: 20px;
      }
      .card {
        width: 80%;
      }
      .bottom-menu a {
        font-size: 12px;
      }
      .bottom-menu a .icon {
        font-size: 24px;
      }
    }

        /* Адаптация для телефонов */
    @media (max-width: 480px) {
          
      .banner {
        height: auto;
      }
      
      .block-text {
        width: 90%;
        padding: 10px;
      }
      .block-text .bl-text {
        font-size: 20px;
        margin-bottom: 10px;
      }
      .block-text .bl-input {
        font-size: 14px;
        margin-bottom: 10px;
      }
      
      .card {
        width: 100%;
        margin: 10px 0;
      }
      .card-title {
        font-size: 20px;
      }
      .card-text {
        font-size: 14px;
      }
      
      .bottom-menu {
        align-items: center;
      }
      .bottom-menu a {
        padding: 15px 0;
        border-top: 1px solid #444;
        width: 100%;
        box-sizing: border-box;
      }
      .bottom-menu a:first-child {
        border-top: none;
      }
    }