
/* gallery */
.gallery-inner {
  & .gallery-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--Green, #193026);

    & .gallery-title {
      padding-top: 8px;
      padding-bottom: 8px;
      padding-left: 40px;
      color: var(--Black, #141414);
      font-family: var(--title-font);
      font-size: 32px;
      font-style: normal;
      font-weight: 400;
      line-height: 40px;
      /* 125% */
      @media(max-width: 576px) {
        font-size: 24px;
        line-height: 133%;
        padding-left: 16px;
      }
    }

    & .gallery-arrows {
      display: flex;
      & .gallery-arrow {
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--Green, #193026);
        border-bottom: none;
        border-top: none;
        border-right: none;
      }
    }
  }
  & .gallery-slider {
    & .splide__slide {
      height: 720px;
      width: 100%;
      & img {
        object-fit: cover;
        width: 100%;
        height: 100%;
      }
    }
  }
}

/* gallery end */