* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: "SF Bold", Helvetica, Arial, sans-serif;
}
.banner {
  background-image: url("../assets/pattern/Backgroundpattern.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: black;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f60000;
  color: white;
  column-gap: 10px;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 20px;
}

.banner-img img {
  width: 100%;
  height: 100%;
}
.banner-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
}
.banner-icon img {
  background-color: white;
  width: 30px;
  padding: 8px;
  border-radius: 50%;
}
/* start media query */
@media screen and (max-width: 1460px) {
  .banner-img img {
    width: 100%;
    max-width: 86%;
  }
  .buttons {
    padding: 8px 12px;
    font-size: 18px;
  }
  .banner-icon img {
    width: 26px;
    padding: 6px;
  }
}
@media screen and (max-width: 767px) {
  .banner-img img {
    width: 100%;
    max-width: 82%;
  }
  .buttons {
    padding: 6px 10px;
    font-size: 15px;
    border-radius: 5px;
  }
  .banner-icon img {
    width: 20px;
    padding: 5px;
  }
}
@media screen and (max-width: 480px) {
  .banner-img img {
    width: 100%;
    max-width: 96%;
  }
  .buttons {
    padding: 6px 8px;
    font-size: 14px;
    border-radius: 4px;
    column-gap: 8px;
    font-weight: 600;
  }
  .banner-icon img {
    width: 18px;
    padding: 4px;
  }
  .banner-icon {
    margin-top: 1.8rem;
  }
}
