/* [project]/src/styles/aboutus/aboutus4.css [client] (css) */
.about-us4-section {
  color: #fff;
  background-color: #000;
  padding: 50px 0;
  overflow: hidden;
}

.about-us4-container {
  align-items: center;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
}

.about-us4-content {
  flex: 1.2;
}

.about-us4-section .title {
  color: #fff;
  max-width: 500px;
  margin-bottom: 25px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
}

.about-us4-section .title .text-secondary {
  color: #54b248;
}

.about-us4-section .desc {
  color: #fff;
  max-width: 500px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

.about-us4-gallery {
  flex: 1.8;
  gap: 15px;
  height: 450px;
  display: flex;
}

.main-image-wrapper {
  flex: 2;
}

.side-images-wrapper {
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 15px;
  display: flex;
}

.about-us4-img-main {
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
  height: 100%;
  box-shadow: 0 10px 30px #00000080;
}

.about-us4-img-side {
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  box-shadow: 0 10px 20px #0006;
}

.about-us4-img-side.img-top {
  width: 70%;
  height: 25%;
}

.about-us4-img-side.img-bottom {
  width: 100%;
  height: 45%;
}

@media (max-width: 1024px) {
  .about-us4-container {
    text-align: center;
    flex-direction: column;
    gap: 40px;
  }

  .about-us4-title {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 32px;
  }

  .about-us4-description {
    max-width: 100%;
  }

  .about-us4-gallery {
    width: 100%;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .about-us4-gallery {
    flex-direction: column;
    gap: 20px;
    height: auto;
  }

  .main-image-wrapper, .side-images-wrapper {
    flex: none;
    width: 100%;
  }

  .side-images-wrapper {
    flex-direction: row;
    align-items: stretch;
    gap: 15px;
    height: 200px;
  }

  .about-us4-img-side.img-top, .about-us4-img-side.img-bottom {
    width: calc(50% - 7.5px);
    height: 100%;
  }
}

@media (max-width: 480px) {
  .about-us4-gallery {
    gap: 10px;
  }

  .side-images-wrapper {
    gap: 10px;
    height: 150px;
  }

  .about-us4-img-side.img-top, .about-us4-img-side.img-bottom {
    width: calc(50% - 5px);
  }

  .about-us4-title {
    font-size: 28px;
  }
}

/*# sourceMappingURL=src_styles_aboutus_aboutus4_css_65f1660e._.single.css.map*/