.gtBox {
  margin-top: 100px;
  position: relative;
}
.gtBox .textBox {
  border-radius: 15px;
  background-color: var(--dark);
  width: calc(50% - 120px);
  padding: 100px 60px;
  border: 1px solid transparent;
}
.gtBox .textBox .text {
  margin: 25px 0 35px;
}
.gtBox .textBox .text p {
  color: var(--ltext);
  line-height: 2;
}
.gtBox .textBox .text * + * {
  margin-top: 15px;
}
.gtBox .galleryGrid {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  width: calc(50% - 40px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  align-self: stretch;
}
.gtBox .galleryGrid .grid-item {
  border-radius: 15px;
}
.gtBox .galleryGrid .grid-item {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.gtBox .galleryGrid .grid-item:nth-child(1) {
  grid-column: 1/3;
  grid-row: 1;
}
.gtBox .galleryGrid .grid-item:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}
.gtBox .galleryGrid .grid-item:nth-child(3) {
  grid-column: 4;
  grid-row: 1;
}
.gtBox .galleryGrid .grid-item:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}
.gtBox .galleryGrid .grid-item:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}
.gtBox .galleryGrid .grid-item:nth-child(6) {
  grid-column: 3/5;
  grid-row: 2;
}
.gtBox .testimonials {
  max-width: 697px;
  position: relative;
  background-color: var(--main-color);
  padding: 120px 60px 60px;
}
.gtBox .testimonials > * {
  flex: auto;
}
.gtBox .testimonials h4 {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--dark);
}
.gtBox .testimonials h3 {
  font-size: 56px;
  margin-top: -5px;
  font-weight: 900;
  color: var(--dark);
}
.gtBox .testimonials h3 span, .gtBox .testimonials h3 strong {
  color: var(--white);
}
.gtBox .testimonials .list {
  margin-top: 20px;
}
.gtBox .testimonials .list .text p {
  font-size: 16px;
  line-height: 33px;
  color: var(--dark);
}
.gtBox .testimonials .list .from:before {
  content: "";
  margin: 26px 0;
  background-color: #e5a215;
  height: 4px;
  width: 24px;
  display: block;
}
.gtBox .testimonials .list .from .author {
  font-weight: 700;
  color: var(--dark);
  font-size: 21px;
  text-transform: uppercase;
}
.gtBox .testimonials .list .from .desc {
  margin-top: 5px;
  font-size: 16px;
  color: var(--white);
  line-height: 20px;
}
.gtBox .testimonials .arrows {
  position: absolute;
  bottom: 60px;
  right: 60px;
  gap: 20px;
}
.gtBox .testimonials .arrows button {
  height: 46px;
  background: transparent;
  width: 46px;
  border: 1px solid var(--umain-color);
  display: inline-flex;
  font-size: 23px;
  color: var(--white);
  justify-content: center;
  align-items: center;
}
.gtBox .testimonials .arrows button:hover {
  border-color: var(--dark);
}

@media (max-width: 1200px) {
  .gtBox .galleryGrid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
  .gtBox .galleryGrid .grid-item:nth-child(1) {
    grid-column: 1/3;
    grid-row: 1;
  }
  .gtBox .galleryGrid .grid-item:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
  }
  .gtBox .galleryGrid .grid-item:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }
  .gtBox .galleryGrid .grid-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }
  .gtBox .galleryGrid .grid-item:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
  }
  .gtBox .galleryGrid .grid-item:nth-child(6) {
    grid-column: 1/4;
    grid-row: 3;
  }
}
@media (max-width: 992px) {
  .gtBox {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .gtBox .galleryGrid {
    height: 40svh;
    position: relative;
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    margin-top: 20px;
    left: 20px;
    width: calc(100% - 40px);
  }
  .gtBox .galleryGrid .grid-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .gtBox .galleryGrid .grid-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .gtBox .galleryGrid .grid-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }
  .gtBox .galleryGrid .grid-item:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
  }
  .gtBox .galleryGrid .grid-item:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
  }
  .gtBox .galleryGrid .grid-item:nth-child(6) {
    grid-column: 3;
    grid-row: 2;
  }
  .gtBox .textBox {
    width: auto;
  }
}
@media (max-width: 768px) {
  .gtBox .header h4 {
    font-size: 24px;
  }
  .gtBox .header h3 {
    font-size: 43px;
    line-height: 1.3em;
  }
  .gtBox .testimonials {
    padding-top: 70px;
  }
}
@media (max-width: 578px) {
  .gtBox .galleryGrid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-template-rows: repeat(3, 1fr);
  }
  .gtBox .galleryGrid .grid-item:nth-child(1) {
    grid-column: auto;
    grid-row: 1;
  }
  .gtBox .galleryGrid .grid-item:nth-child(2) {
    grid-column: auto;
    grid-row: 1;
  }
  .gtBox .galleryGrid .grid-item:nth-child(3) {
    grid-column: auto;
    grid-row: 2;
  }
  .gtBox .galleryGrid .grid-item:nth-child(4) {
    grid-column: auto;
    grid-row: 2;
  }
  .gtBox .galleryGrid .grid-item:nth-child(5) {
    grid-column: auto;
    grid-row: 3;
  }
  .gtBox .galleryGrid .grid-item:nth-child(6) {
    grid-column: auto;
    grid-row: 3;
  }
  .gtBox .testimonials {
    padding: 70px 12px;
  }
  .gtBox .testimonials .arrows {
    right: 12px;
    gap: 15px;
    bottom: 70px;
  }
  .gtBox .testimonials .arrows button {
    height: 34px;
    width: 34px;
    font-size: 15px;
  }
  .gtBox .header h4 {
    font-size: 22px;
  }
  .gtBox .header h3 {
    font-size: 35px;
  }
}/*# sourceMappingURL=aboutus.css.map */