.banner1 {
  width: 100%;
  margin-top: 95px;
  margin-bottom: 50px;
}

.container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
 
  gap: 20px;
  justify-content: center;
  margin: 0 auto;
  
  margin-bottom: 50px;
}

.img-container {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 10px;
}

.image-style {
  width: 300px;
  border-radius: 5px;
}

.span-container {
  display: flex;
  justify-content: flex;
  gap: 10px;
  margin-top: 10px;
}

.span {
  padding: 10px 0;
  text-align: center;
  font-size: 24px;
  white-space: nowrap;
}

span:hover {
  text-decoration: solid;
}

.arrow-container {
  margin-top: 8px;
  margin-bottom: 10px;
  order: 1;
  margin-top: 15px;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 16px;
  gap: 10px;
}

.arrow-container p {
  margin: 0;
  line-height: 1;
}

.arrow-container:hover {
  color: rgb(30, 227, 174);
}

@media (max-width: 600px) {
  .banner1 {
    margin-top: 72px;
    margin-bottom: 50px;
  }

  .container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 5px;
    justify-items: center;
    flex: 1;
    margin: 0 10px;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .img-container {
    width: 100%;
    max-width: 400px;
    flex-direction: column;
    justify-content: center;
    display: flex;
    align-items: center;
    position: relative;
  }

  .span-container {
    order: -1;
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
  }
}
