body {
  overflow-x: hidden;
}


/* banner */

.banner-header {
	text-align: center;
	color: #000;
	margin-top: 50px;
}

.banner {
    width: 100%;
    margin-top: 2rem;
	margin-left: 100px;
    display: grid;
    grid-gap: 1rem;
  }
  @media (min-width: 600px) {
    .banner {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (min-width: 992px) {
    .banner {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  .banner__item {
    background: #fff;
    height: 350px;
    width: 318px;
    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;
	text-align: center;
  }
  .banner__item img {
    padding-left: 10px;
    padding-right: 10px;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
	
  }

  .banner__item p {
    padding-left: 10px;
    padding-right: 5px;
  }

  .banner__item p a {
    word-wrap: break-word;
    }

  @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;
  }


  .wp-block-button__link {
    margin-top: 10px;
  }


  .wp-block-heading  {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  p {
    padding-top: 15px;
  }


  marquee {
   
    margin: 20px 100px 0px 100px;
  }

  marquee a {
   
    margin-left: 10px;
  }

  footer {
	text-align: center;
	margin-top: 50px;
	margin-bottom: 10px;
  }

 