.forms_title h1{
    font-family: "Big Shoulders Text", serif;
    font-size: 45px;
    text-transform: uppercase;
    text-align: center;
    color: #001371;
    margin-bottom: 15px;
    text-align: center;
    margin-top: 50px;
    font-weight: 900;
}

.gallery_all {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr !important;
    padding: 0 8%;
    gap: 30px;

  }
  
  .gallery {
    width: 100%;
    height: 300px;
    margin-top: 50px;
    border: 2px solid #fff;
    background-color: #001371;
  }
  
  .gallery img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  @media only screen and (max-width: 1110px) {
    .gallery_all{
      display: grid;
      grid-template-columns: 1fr 1fr  !important;
    }
  }

  @media only screen and (max-width: 510px) {
    .gallery_all{
      display: grid;
      grid-template-columns: 1fr   !important;
    }
  }