.banner {
    width: 100%;
    margin-top: 2rem;
    display: grid;
    grid-gap: 1rem;
    margin: 0 auto;
  }
  @media (min-width: 600px) {
    .banner {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (min-width: 992px) {
    .banner {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  .banner__item {
    height: 400px;
    max-width: 600px;
    text-align: center;
    padding-left: 50px;
    padding-right: 50px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 1px 12px 18px rgba(0, 0, 0, 0.16);
    transition: 0.9s;
  }
  @media (min-width: 600px) {
    .banner__item {
      min-height: 220px;
    }
  }
  .banner__item:hover {
    background-position: 30%;
    transform: translateY(-0.5rem);
    box-shadow: 1px 12px 18px rgba(0, 0, 0, 0.24);
  }
  
  .hide {
    display: none;
  }
  
  .transition {
    opacity: 0;
    transition: 0.4s;
  }
  
  .transitioned {
    opacity: 1;
    transition: 0.4s;
  }

  .banner__text {
color: #fff;
text-align: justify;
  }

 .banner__text a{
    color: #0ff;
      }

.banner__img {
  margin-left: 20px;
  margin-right: 20px;
 }

 .banner__title {
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
   font-weight: bold;
 }