/* hero */

.hero-content {
  background-image: url("../images/about-us/hero.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 650px;
  max-height: 100vh;
}

.about-hero-title {
  max-width: 55%;
  margin-bottom: 32px;
}
.contact-desc {
  max-width: 55%;
}

h1 {
  font-size: var(--font-size-4xl);
  color: #ffff;
}

.contact-desc {
  font-size: var(--font-size-xl);
  color: #ffff;
}

/* ================= WHY ================= */
.why {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}
.why::before {
  content: "";
  position: absolute;
  top: 0;
  width: 180px;
  height: 180px;
  background: url("../images/about-us/Shape-1.svg") no-repeat;
  background-size: contain;
}

.why::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 180px;
  height: 170px;
  background: url("../images/about-us/Shape-2.svg") no-repeat;
  background-size: contain;
}

/* Keep decorative corners correct in both directions */
html[dir="rtl"] .why::before {
  left: -25px;
  right: auto;
}

html[dir="rtl"] .why::after {
  right: -25px;
  left: auto;
}

html[dir="ltr"] .why::before {
  right: -25px;
  left: auto;
}

html[dir="ltr"] .why::after {
  left: -25px;
  right: auto;
}

.why-content {
  height: 500px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.why-text {
  width: 42rem;
  max-width: 45rem;
}

.phone-mock {
  width: 18%!important;
  height: 100%;
  padding-top: 75px;
}

html[dir="ltr"] .phone-mock {
  padding-right: 75px;
  padding-left: unset;
}

html[dir="rtl"] .phone-mock {
  padding-left: 75px;
  padding-right: unset;
}

.why-text p,
.experience-text span {
  font-size: var(--font-size-xl);
  color: var(--natural-Txt);
  width: 600px;
  margin-bottom: 0;
}

.why-text span:nth-child(1) {
  font-size: var(--font-size-3xl);
}
.why-text span:nth-child(2) {
  font-size: var(--font-size-2xl);
}

/* ================= FEATURES ================= */
.features {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.features p {
  color: var(--natural-Txt);
  font-size: var(--font-size-xl);
  max-width: 230px;
}

.feature-card {
  padding: 175px 30px;
  border-radius: 200px;
  width: 380px;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.feature-card:nth-child(1) {
  background: #fdf7f4;
}

.feature-card:nth-child(2) {
  background: #fbf3ee;
}

.feature-card:nth-child(3) {
  background: #faeee6;
}

/* ================= EXPERIENCE ================= */
.experience {
  padding: 56px 24px 40px;
  border-radius: 88px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fdf7f4 0%, #faeee6 100%);
}

.experience::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 350px;
  height: 250px;
  background: url("../images/about-us/Oval.svg") no-repeat;
  background-size: contain;
}

.experience h4 {
  padding-bottom: 56px;
  max-width: 700px;
  font-size: var(--font-size-xl);
  margin: auto;
  z-index: 111;
  position: relative;
}

.experience h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: 32px;
}
.experience-img img {
  width: 320px;
  border-radius: 12px;
}

.experience-text li {
  list-style: none;
  margin-bottom: 14px;
  border-radius: 16px;
  background-color: #fff;
  padding: 16px 24px;
  gap: 16px;
  display: flex;
  align-items: center;
  font-size: var(--font-size-2xl);
}
