@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
.about {
  padding: 40px 0;
  position: relative;
  z-index: 2;
  overflow: visible;
  background-color: #000;
  color: #fff;
}
.about h1, .about h2, .about h3, .about h4, .about h5, .about h6 {
  font-family: "Bebas Neue", sans-serif !important;
}
.about p, .about a, .about li {
  font-family: "Roboto", sans-serif !important;
}
@media (min-width: 1200px) {
  .about {
    padding: 100px 0;
  }
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
}
@media (min-width: 1200px) {
  .about__wrapper {
    flex-direction: row;
    align-items: center;
    gap: 70px;
  }
}
@media (min-width: 1560px) {
  .about__wrapper {
    gap: 90px;
  }
}
.about__left {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .about__left {
    flex: 1;
  }
}
.about__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.about__label-line {
  display: block;
  width: 40px;
  height: 3px;
  background-color: #CC1010;
  flex-shrink: 0;
}
.about__label-text {
  font-family: "Pathway Gothic One", sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  opacity: 0.7;
}
.about__header {
  padding-bottom: 28px;
  font-family: "Bebas Neue", sans-serif;
}
.about__header h1, .about__header h2, .about__header h3, .about__header h4, .about__header h5, .about__header h6, .about__header p {
  margin: 0;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}
.about__header h1 span, .about__header h2 span, .about__header h3 span, .about__header h4 span, .about__header h5 span, .about__header h6 span, .about__header p span {
  display: block;
  color: #CC1010;
  font-size: 8rem;
  line-height: 0.9;
  margin-top: -4px;
}
@media (max-width: 767px) {
  .about__header h1, .about__header h2, .about__header h3, .about__header h4, .about__header h5, .about__header h6, .about__header p {
    font-size: 3rem;
  }
  .about__header h1 span, .about__header h2 span, .about__header h3 span, .about__header h4 span, .about__header h5 span, .about__header h6 span, .about__header p span {
    font-size: 6rem;
  }
}
@media (min-width: 1200px) {
  .about__header h1, .about__header h2, .about__header h3, .about__header h4, .about__header h5, .about__header h6, .about__header p {
    font-size: 5rem;
  }
  .about__header h1 span, .about__header h2 span, .about__header h3 span, .about__header h4 span, .about__header h5 span, .about__header h6 span, .about__header p span {
    font-size: 10rem;
  }
}
@media (min-width: 1560px) {
  .about__header h1, .about__header h2, .about__header h3, .about__header h4, .about__header h5, .about__header h6, .about__header p {
    font-size: 6rem;
  }
  .about__header h1 span, .about__header h2 span, .about__header h3 span, .about__header h4 span, .about__header h5 span, .about__header h6 span, .about__header p span {
    font-size: 12rem;
  }
}
.about__desc {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: #ffffff !important;
  margin-bottom: 40px;
}
.about__desc p, .about__desc span, .about__desc a {
  color: #ffffff !important;
  margin: 0 0 12px 0;
}
.about__desc p:last-child, .about__desc span:last-child, .about__desc a:last-child {
  margin-bottom: 0;
}
.about__stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.about__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about__stat-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5.5rem;
  font-weight: 700;
  color: #CC1010;
  line-height: 1;
}
.about__stat-label {
  font-family: "Pathway Gothic One", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff !important;
}
.about__right {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  .about__right {
    flex: 1;
  }
}
.about__cards {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 460px;
}
@media (min-width: 1560px) {
  .about__cards {
    height: 520px;
  }
}
.about__cards:hover .about__card--back {
  transform: rotate(-14deg) translateX(-70px) translateY(10px);
}
.about__cards:hover .about__card--front {
  transform: rotate(8deg) translateX(50px) translateY(-10px);
}
.about__card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about__card--back {
  transform: rotate(-6deg) translateX(-20px);
  z-index: 1;
  filter: brightness(0.7);
}
.about__card--front {
  transform: rotate(3deg);
  z-index: 2;
}
.about__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__card-placeholder {
  width: 100%;
  height: 100%;
  background-color: #222;
}
.about__badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background-color: #CC1010;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  border-radius: 5px;
  padding: 8px 18px;
  line-height: 1;
}
.about__badge-est {
  font-family: "Pathway Gothic One", sans-serif !important;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.about__badge-year {
  font-family: "Bebas Neue", sans-serif !important;
  font-size: 2rem;
  font-weight: 700;
}
.about__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Angel Wish", cursive;
  font-size: 30vw;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}