.banner-grid {
  display: grid;
  justify-items: center;
  width: 100%;
  position: relative;
}
.banner-content {
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.banner-content a,
.banner-content a img {
  width: 100%;
}
.banner-content a {
  display: none;
}
.banner-content a.active {
  display: inherit;
}
.banner-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.bannerBtn {
  padding: 0;
  border: none;
  cursor: pointer;
  height: 22px;
  width: 22px;
  background-color: #b4b4b4;
  transition: 0.3s;
  border-radius: 30px;
  border: 2px solid #000;
}
.bannerBtn.active {
  background-color: #fc0202;
}
.bannerBtn:not(.active):hover {
  background-color: #111111;
}
.bannerBtn:not(.active) {
  animation: bannerBtn 1.3s infinite;
}

@keyframes bannerBtn {
  50% {
    transform: scale(1.15);
  }
}

@media only screen and (max-width: 440px) {
  .bannerBtn {
    height: 17px;
    width: 17px;
  }
  .banner-btns {
    bottom: 5px;
  }
}

.banner-sec {
  margin-top: 50px;
}
.banner-sec-grid {
  display: flex;
  justify-content: center;
  gap: 15px 0;
  flex-wrap: wrap;
}
.banner-sec-grid a {
  max-width: 600px;
}
.banner-sec-grid a:hover {
  box-shadow: 0 3px 0 #fc0202;
}
