*{
    margin: 0;
    padding: 0;
    font-family: "montserrat",sans-serif;
    box-sizing: border-box;
  }
  
  .gallery-section{
    width: 100%;
    padding: 30px 0 10px 0 !important;
    text-align: center;
  }
  
  .gallery-section h1 {
      font-family: "Wendy One", sans-serif;
      font-size: 36px;
      color: #2e2e2e;
      text-align: center;
      text-transform: capitalize;
      margin: 0 0 20px 0 !important;
  }
  
  .gallery-section span {
      font-family: "Cinzel", sans-serif;
      font-size: 26px;
      color: #522888;
      position: relative;
      top: -25px;
  }
  
  .inner-width{
      width: 100%;
      max-width: 1200px;
      margin: auto;
      padding: 0 20px;
  }
  
  .border{
      width: 180px;
      height: 4px;
      background: #333;
      margin: 60px auto;
  }
  
  .gallery-section .gallery{
    display: flex !important;
    flex-wrap: wrap-reverse;
    justify-content: center;
  }
  
  .gallery-section .image{
    flex: 25%;
    overflow: hidden;
    cursor: pointer;
  }
  
  .gallery-section .image img{
    width: 100% !important;
    height: 100% !important;
    transition: 0.4s;
  }
  
  .gallery-section .image:hover img{
    transform: scale(1.4) rotate(15deg);
  }
  
  @media screen and (max-width:960px) {
    .gallery-section .image{
      flex: 33.33%;
    }
  }
  
  @media screen and (max-width:768px) {
    .gallery-section .image{
      flex: 50%;
    }
  }
  
  @media screen and (max-width:480px) {
    .gallery-section .image{
      flex: 100%;
    }
  }