/* banner */
.banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.banner_block {
  background: #eaecf1;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.banner_link {
  text-decoration: none;
  height: 191px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 20px;
}

.banner_text {
  width: 190px;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #b5bccf;
  text-align: center;
}

@media (max-width: 1024px) {
  .banner_link {
    height: 160px;
    gap: 30px;
  }

  .banner_text {
    font-size: 22px;
    width: 170px;
  }

  .banner {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .banner {
    flex-direction: column;
    gap: 15px;
  }

  .banner_block {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .banner_link {
    height: 140px;
    gap: 20px;
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .banner_text {
    width: 100%;
    font-size: 20px;
    margin-top: 10px;
  }

  .banner_link img {
    max-width: 80px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .banner_link {
    height: 120px;
    gap: 15px;
    padding: 10px;
  }

  .banner_text {
    font-size: 18px;
  }

  .banner_link img {
    max-width: 60px;
  }

  .banner {
    gap: 10px;
  }
}

@media (max-width: 360px) {
  .banner_link {
    height: 110px;
  }

  .banner_text {
    font-size: 16px;
  }

  .banner_link img {
    max-width: 50px;
  }
}
