* {
  box-sizing: border-box;
  /*outline: 2px solid rgba(255, 0, 0, 0.35);*/
}
html {
  font-size: 62.5%;
  scrollbar-gutter: stable;
}
body {
  margin: 0;
  padding: 0;
  background-color: rgba(255, 255, 255, 1);
  color: white;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden; /* <=== ВАЖНО */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px 12px 30px;
  background: #f0f0f0;
  position: relative;
  background: linear-gradient(4deg,rgba(255, 202, 79, 1) 6%, rgba(255, 213, 3, 1) 20%, rgba(207, 186, 0, 1) 38%, rgba(74, 126, 247, 1) 50%, rgba(36, 87, 255, 1) 60%, rgba(14, 55, 237, 1) 73%, rgba(0, 41, 224, 1) 83%, rgba(0, 32, 176, 1) 92%, rgba(0, 20, 110, 1) 98%);
}

.logo-img {
  height: 35px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: -3px -3px 15px rgba(0, 147, 253, 0.75), 
               5px 5px 20px rgba(0, 147, 253, 0.75);
}

.burger-menu {
  display: none;
  flex-direction: column;
  /*cursor: pointer;*/
  gap: 5px;
  z-index: 1001;
}

.burger-menu .bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  transition: 0.3s;
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navbar-menu .menu .menu-link {
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
}
.navbar-menu .menu .menu-link:hover {
  color: #FFDA00;
  padding-bottom: 3px;
  border-bottom: 2px solid #FFF;
}
/* = = = = = =/  S C R O L L  /= = = = = = */
#scrollToTopBtn {
  display: none;
  position: fixed;
  width: 38px;
  height: 38px;
  bottom: 12px;
  right: 12px;
  padding: 3px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  opacity: 0.8;
  transition: 0.5s all;
}
.scroll {
  width: 28px;
  height: 28px;
  color: #FFF;
} 

/* = = =  FOOTER = = = */
.footer {
  width: 100%;
  padding: 20px 0;
  text-align: center;
  background: linear-gradient(5deg,rgba(255, 202, 79, 1) 6%, rgba(255, 213, 3, 1) 20%, rgba(207, 186, 0, 1) 38%, rgba(74, 126, 247, 1) 50%, rgba(36, 87, 255, 1) 60%, rgba(14, 55, 237, 1) 73%, rgba(0, 41, 224, 1) 83%, rgba(0, 32, 176, 1) 92%, rgba(0, 20, 110, 1) 98%);
}
.footer-link {
  text-decoration: none;
  color: #fff;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.list-inline {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-inline-item {
  display: inline-block;
  font-size: 18px;
  margin-right: 10px;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
}
.list-inline-item .footer-link:hover {
  color: #FFDA00;
  padding-bottom: 3px;
  border-bottom: 2px solid #fff;
}

.footer-list__item .icon_img {
  background: #eee;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: 30%;
  margin: 0 10px;
  box-shadow: -3px -3px 10px rgba(255, 255, 255, 0.3), 
              5px 5px 15px rgba(0, 0, 0, 0.80);
}
.footer-list__item .icon_img:hover {
  background: #B8B8B8;
}
.text-muted {
  color: #111;
  font-size: 12px;
  margin-bottom: 10px;
}

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

.page-link {
    display: block;
    margin: 0 8px;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: 500;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-shadow: -3px -3px 15px rgba(255, 255, 255, 0.2), 
               5px 5px 15px rgba(0, 0, 0, 0.75);
    transition: background-color 0.3s;
}

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

@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }
  .navbar-menu .menu .menu-link {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px;
    color: #FDFAFA;
  }
  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    text-align: center;
    padding: 30px 0 50px 0;
    background: rgba(63, 104, 244, 0.8); 
    flex-direction: column;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    z-index: 10;
  }
  .navbar-menu .menu .menu-link:hover {
    color: #FFDA00;
    padding-left: 20px;
    padding-right: 20px;
    border-right: 30px solid #FFDA00;
    border-left: 30px solid #FFDA00;
    border-radius: 50%;
    border-bottom: none;
  }
  .navbar-menu.active {
    max-height: 500px;
    opacity: 1;
  }

  .burger-menu.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger-menu.active .bar:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

@media screen and (max-width: 480px) {
  .navbar {
    padding: 10px 20px 12px 20px; 
  } 
  .navbar-menu {
    position: absolute;
    background: rgba(63, 104, 244, 0.8);
  }
  
  .footer__block {
    width: 100%;
    padding: 30px 20px 12px 20px;
  }
  .footer__item {
    width: 320px;
    font-size: 14px;
  }
  .footer__copyright {
    font-size: 12px;
  }
  .stroka {
    font-size: 16px;
  }
  .page-link {
    font-size: 14px;
  }
}