﻿#about-body {
  padding: 0 var(--gap-page) 0 var(--gap-page);
  z-index: 2;
}

#about-body #about-main-section {
  display: flex;
  height: calc(100vh - 76px);
  z-index: 2;
}

#about-body #about-we-section #about-we-gallery {
  grid-template-columns: 70% 30%;
}

#about-body #about-main-section #about-back-image {
    display: none;
}

#about-body .about-we-image {
  width: 100%;
  border-radius: var(--br-m);
  object-fit: cover;
}

#about-body .about-we-image.large {
    height: 100%;
}

#about-back {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  width: 50%;
  background-size: cover;
  background-position: center;
  border-radius: var(--br-m) 0 0 var(--br-m);
  z-index: 1;
}

@media (max-width: 890px) {
  #about-we-gallery, #about-we-gallery-center {
    grid-auto-flow: row !important;
    grid-template-columns: none !important;
  }
}

@media (max-width: 450px) {
    #about-back {
        display: none !important;
    }

    #about-body #about-main-section {
        height: initial !important;
        margin-top: var(--gap-m);
    }

    #about-body #about-main-section #about-back-image {
        display: block !important;
    }

    #about-body .about-we-image.large {
        height: initial !important;
    }
}