@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: 60px 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: #fff;
}
@media (min-width: 1200px) {
  .about {
    padding: 100px 0;
  }
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
@media (min-width: 1200px) {
  .about__wrapper {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}
@media (min-width: 1560px) {
  .about__wrapper {
    gap: 80px;
  }
}
@media (min-width: 1200px) {
  .about__left {
    flex: 0 0 60%;
    max-width: 60%;
  }
}
.about__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
@media (min-width: 1200px) {
  .about__photos {
    gap: 20px;
  }
}
.about__photo {
  border-radius: 44px;
  overflow: hidden;
}
.about__photo--1 {
  grid-column: 1/2;
  grid-row: 1/2;
}
.about__photo--2 {
  grid-column: 2/3;
  grid-row: 1/3;
}
.about__photo--3 {
  grid-column: 1/2;
  grid-row: 2/3;
}
.about__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 1200px) {
  .about__right {
    flex: 1;
  }
}
.about__toptext {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #E5097F;
  margin-bottom: 12px;
}
.about__header-wrap {
  position: relative;
  margin-bottom: 24px;
}
.about__header {
  position: relative;
  z-index: 1;
}
.about__header h1, .about__header h2, .about__header h3, .about__header h4, .about__header h5, .about__header h6, .about__header p {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
}
.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 {
  color: #E5097F;
}
@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: 5.5rem;
  }
}
@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__bg-text {
  position: absolute;
  top: -40%;
  left: 0;
  font-family: "DM Sans", sans-serif;
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  color: #F0F0F0;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}
@media (min-width: 1200px) {
  .about__bg-text {
    font-size: 7.5rem;
  }
}
@media (min-width: 1560px) {
  .about__bg-text {
    font-size: 9rem;
  }
}
.about__desc {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #555;
  margin-bottom: 32px;
}
.about__desc p {
  margin: 0 0 12px 0;
}
.about__desc p:last-child {
  margin-bottom: 0;
}
.about__button-wrap {
  margin-top: 8px;
}
.about__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 48px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  border-radius: 0 0 0 20px;
  cursor: pointer;
  transition: background-size 0.45s ease, color 0.3s ease, transform 0.2s ease;
  width: fit-content;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #E5097F, #E31E24);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  color: #fff !important;
  border: 2px solid #E5097F;
}
.about__button:hover {
  background-size: 100% 100%, 100% 100%;
  color: #E31E24 !important;
  transform: translateY(-2px);
  text-decoration: none;
}
.about__button:active {
  transform: translateY(0);
}
@media (min-width: 1200px) {
  .about__button {
    font-size: 16px;
    padding: 10px 52px;
  }
}
@media (min-width: 1560px) {
  .about__button {
    font-size: 18px;
    padding: 12px 60px;
  }
}