/* [project]/src/components/AboutUs/aboutUs.css [app-client] (css) */
.about-us-page {
  color: var(--primary-color);
  background: var(--primary-background-color);
  font-family: Montserrat, sans-serif;
  overflow-x: hidden;
}

.about-us-video-modal {
  z-index: 9999;
  background: #000000f2;
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: .3s aboutUsFadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

@keyframes aboutUsFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.about-us-video-content {
  background: #000;
  border-radius: 12px;
  width: 100%;
  max-width: 1200px;
  animation: .3s aboutUsSlideUp;
  position: relative;
  overflow: hidden;
}

@keyframes aboutUsSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-us-video-close {
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: transform .3s;
  display: flex;
  position: absolute;
  top: -50px;
  right: 0;
}

.about-us-video-close:hover {
  transform: rotate(90deg);
}

.about-us-video-wrapper {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}

.about-us-video-wrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.about-us-hero {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.about-us-hero-backgrounds {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.about-us-hero-bg {
  opacity: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  transition: opacity 1.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.about-us-bg-active {
  opacity: 1;
}

.about-us-hero-overlay {
  z-index: 2;
  background: linear-gradient(#0009, #0006);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.about-us-hero-container {
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  position: relative;
}

.about-us-hero-content {
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}

.about-us-hero-title {
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 2px 2px 10px #00000080;
  margin-bottom: 40px;
  font-size: 72px;
  font-weight: 700;
  animation: .8s aboutUsFadeInUp;
}

.about-us-hero-text {
  text-shadow: 1px 1px 5px #00000080;
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 1.8;
  animation: 1s aboutUsFadeInUp;
}

@keyframes aboutUsFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-us-hero-video {
  cursor: pointer;
  margin-top: 40px;
  transition: transform .3s;
  animation: 1.2s aboutUsFadeInUp;
  display: inline-block;
  position: relative;
}

.about-us-hero-video:hover {
  transform: scale(1.05);
}

.about-us-hero-video-thumb {
  object-fit: cover;
  border: 4px solid #ffffff4d;
  border-radius: 12px;
  width: 400px;
  height: 250px;
  box-shadow: 0 10px 40px #00000080;
}

.about-us-hero-play {
  background: #ffffffe6;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 15px #0000004d;
}

.about-us-hero-play svg {
  color: #000;
  margin-left: 4px;
}

.about-us-hero-video:hover .about-us-hero-play {
  background: #36daef;
  transform: translate(-50%, -50%)scale(1.1);
}

.about-us-hero-video:hover .about-us-hero-play svg {
  color: #fff;
}

.about-us-hero-video-text {
  white-space: nowrap;
  text-shadow: 1px 1px 5px #00000080;
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
}

.about-us-hero-indicators {
  z-index: 4;
  gap: 12px;
  display: flex;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.about-us-hero-indicator {
  cursor: pointer;
  background: #fff6;
  border: none;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  padding: 0;
  transition: all .3s;
}

.about-us-hero-indicator:hover {
  background: #fff9;
}

.about-us-indicator-active {
  background: #36daef;
  border-radius: 6px;
  width: 40px;
}

.about-us-heritage {
  background: var(--primary-background-color);
  padding: 100px 20px;
}

.about-us-heritage-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-us-heritage-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.about-us-heritage-title {
  color: var(--primary-color);
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

.about-us-heritage-text {
  color: var(--primary-color);
  opacity: .85;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.about-us-heritage-stats {
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
  display: grid;
}

.about-us-stat {
  text-align: center;
  background: var(--secondary-background-color);
  border-radius: 12px;
  padding: 30px 20px;
  transition: all .3s;
  box-shadow: 0 2px 10px #0000000d;
}

.about-us-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px #36daef33;
}

.about-us-stat-number {
  color: #36daef;
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 700;
}

.about-us-stat-label {
  color: var(--primary-color);
  opacity: .8;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.about-us-collage {
  background: var(--secondary-background-color);
  padding: 100px 20px;
}

.about-us-collage-container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-us-collage-title {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 60px;
  font-size: 48px;
  font-weight: 700;
}

.about-us-collage-grid {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
  display: grid;
}

.about-us-collage-item {
  border-radius: 12px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px #0000001a;
}

.about-us-collage-item:hover {
  z-index: 2;
  transform: scale(1.02);
  box-shadow: 0 8px 30px #36daef4d;
}

.about-us-collage-large {
  grid-area: span 2 / span 2;
}

.about-us-collage-wide {
  grid-column: span 2;
}

.about-us-collage-tall {
  grid-row: span 2;
}

.about-us-collage-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .5s;
}

.about-us-collage-item:hover .about-us-collage-img {
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .about-us-hero-title {
    font-size: 56px;
  }

  .about-us-heritage-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-us-collage-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 768px) {
  .about-us-hero-title {
    font-size: 42px;
  }

  .about-us-hero-text {
    font-size: 16px;
  }

  .about-us-hero-video-thumb {
    width: 300px;
    height: 200px;
  }

  .about-us-hero-play {
    width: 60px;
    height: 60px;
  }

  .about-us-heritage-title, .about-us-collage-title {
    font-size: 36px;
  }

  .about-us-heritage-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-us-stat-number {
    font-size: 36px;
  }

  .about-us-collage-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 15px;
  }

  .about-us-collage-large, .about-us-collage-wide {
    grid-column: span 2;
  }

  .about-us-collage-tall {
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .about-us-hero {
    min-height: 90vh;
  }

  .about-us-hero-container {
    padding: 60px 15px;
  }

  .about-us-hero-title {
    margin-bottom: 25px;
    font-size: 32px;
  }

  .about-us-hero-text {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .about-us-hero-video-thumb {
    width: 100%;
    max-width: 280px;
    height: 180px;
  }

  .about-us-hero-play {
    width: 50px;
    height: 50px;
  }

  .about-us-hero-play svg {
    width: 24px;
    height: 24px;
  }

  .about-us-hero-indicators {
    bottom: 20px;
  }

  .about-us-hero-indicator {
    width: 8px;
    height: 8px;
  }

  .about-us-indicator-active {
    width: 30px;
  }

  .about-us-heritage {
    padding: 60px 15px;
  }

  .about-us-heritage-title, .about-us-collage-title {
    margin-bottom: 30px;
    font-size: 28px;
  }

  .about-us-heritage-text {
    font-size: 14px;
  }

  .about-us-heritage-stats {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 40px;
  }

  .about-us-stat {
    padding: 20px 15px;
  }

  .about-us-stat-number {
    font-size: 32px;
  }

  .about-us-stat-label {
    font-size: 12px;
  }

  .about-us-collage {
    padding: 60px 15px;
  }

  .about-us-collage-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
    gap: 12px;
  }

  .about-us-collage-large, .about-us-collage-wide, .about-us-collage-tall {
    grid-area: span 1 / span 1;
  }

  .about-us-video-close {
    top: -40px;
    right: -5px;
  }
}

@media (max-width: 360px) {
  .about-us-hero-title {
    font-size: 28px;
  }

  .about-us-hero-video-thumb {
    max-width: 240px;
    height: 150px;
  }
}

[data-theme="dark"] .about-us-stat {
  box-shadow: 0 2px 10px #0000004d;
}

[data-theme="dark"] .about-us-collage-item {
  box-shadow: 0 4px 15px #0000004d;
}

/*# sourceMappingURL=src_components_AboutUs_aboutUs_5e38c67f.css.map*/