/* Start custom CSS for html, class: .elementor-element-8aa43fe *//* =========================================================
   ABOUT US PAGE
   BRAND COLORS
   #800020 - Burgundy
   #F3E6D5 - Cream
   #FFF9F2 - Off White
   #D45060 - Rose
   ========================================================= */

.about-page {
  --about-burgundy: #800020;
  --about-cream: #F3E6D5;
  --about-offwhite: #FFF9F2;
  --about-rose: #D45060;
  --about-white: #ffffff;
  --about-dark: #2a1118;
  --about-text: #5f4b50;
  --about-light-border: rgba(128, 0, 32, 0.12);

  width: 100%;
  overflow: hidden;
  background: var(--about-offwhite);
  color: var(--about-dark);
  font-family: inherit;
}

.about-page *,
.about-page *::before,
.about-page *::after {
  box-sizing: border-box;
}

.about-container {
  width: min(1180px, 92%);
  margin: 0 auto;
}


/* =========================================================
   HERO SECTION
   ========================================================= */

.about-hero {
  position: relative;
  min-height: 520px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(212, 80, 96, 0.35),
      transparent 30%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(243, 230, 213, 0.12),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      #4c0014 0%,
      #800020 55%,
      #5c0018 100%
    );

  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;

  width: 420px;
  height: 420px;

  border: 1px solid rgba(243, 230, 213, 0.20);
  border-radius: 50%;

  right: -160px;
  top: -170px;
}

.about-hero::after {
  content: "";
  position: absolute;

  width: 300px;
  height: 300px;

  border: 1px solid rgba(212, 80, 96, 0.35);
  border-radius: 50%;

  left: -150px;
  bottom: -150px;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(48, 0, 14, 0.65),
      rgba(128, 0, 32, 0.15),
      rgba(48, 0, 14, 0.55)
    );
}

.about-hero-content {
  position: relative;
  z-index: 2;

  width: min(850px, 92%);
  margin: 0 auto;

  padding: 90px 0;

  text-align: center;
}

.about-tag,
.about-small-title {
  display: inline-block;

  margin-bottom: 16px;

  color: var(--about-rose);

  font-size: 13px;
  font-weight: 800;

  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-hero .about-tag {
  color: var(--about-cream);
}

.about-hero h1 {
  margin: 0 auto 22px;

  max-width: 850px;

  color: var(--about-white);

  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.08;

  font-weight: 800;
  letter-spacing: -1px;
}

.about-hero p {
  max-width: 720px;

  margin: 0 auto;

  color: rgba(255, 249, 242, 0.88);

  font-size: 18px;
  line-height: 1.8;
}


/* =========================================================
   INTRO SECTION
   ========================================================= */

.about-intro {
  padding: 105px 0;

  background: var(--about-offwhite);
}

.about-intro-grid {
  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 75px;

  align-items: center;
}

.about-intro-content h2,
.about-section-heading h2,
.about-why-heading h2,
.approach-content h2 {

  margin: 0 0 25px;

  font-size: clamp(32px, 4vw, 50px);

  line-height: 1.15;

  font-weight: 800;

  color: var(--about-burgundy);
}

.about-intro-content h2 span,
.about-why-heading h2 span,
.approach-content h2 span {
  color: var(--about-rose);
}

.about-intro-content p {
  margin: 0 0 18px;

  color: var(--about-text);

  font-size: 16px;
  line-height: 1.85;
}


/* =========================================================
   BUTTON
   ========================================================= */

.about-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  margin-top: 15px;

  padding: 15px 30px;

  background: var(--about-burgundy);

  color: #fff !important;

  border: 2px solid var(--about-burgundy);

  border-radius: 5px;

  text-decoration: none !important;

  font-size: 14px;
  font-weight: 800;

  letter-spacing: 0.5px;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.about-btn:hover {
  background: var(--about-rose);

  border-color: var(--about-rose);

  color: #fff !important;

  transform: translateY(-3px);
}


/* =========================================================
   INTRO CARD
   ========================================================= */

.about-intro-card {

  position: relative;

  padding: 48px;

  background:
    linear-gradient(
      145deg,
      #800020,
      #5c0018
    );

  color: #fff;

  border-radius: 12px;

  overflow: hidden;

  box-shadow:
    0 20px 55px rgba(128, 0, 32, 0.18);
}

.about-intro-card::before {
  content: "";

  position: absolute;

  width: 230px;
  height: 230px;

  right: -100px;
  top: -100px;

  border: 1px solid rgba(243, 230, 213, 0.25);

  border-radius: 50%;
}

.about-intro-card::after {
  content: "";

  position: absolute;

  width: 160px;
  height: 160px;

  left: -90px;
  bottom: -90px;

  border: 1px solid rgba(212, 80, 96, 0.35);

  border-radius: 50%;
}

.about-card-icon {
  position: relative;
  z-index: 2;

  width: 60px;
  height: 60px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  background: var(--about-cream);

  color: var(--about-burgundy);

  border-radius: 50%;

  font-size: 25px;
  font-weight: 800;
}

.about-intro-card h3 {
  position: relative;
  z-index: 2;

  margin: 0 0 15px;

  color: #fff;

  font-size: 27px;
  line-height: 1.3;
}

.about-intro-card > p {
  position: relative;
  z-index: 2;

  margin: 0;

  color: rgba(255, 249, 242, 0.78);

  font-size: 15px;

  line-height: 1.75;
}

.about-card-line {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 1px;

  margin: 30px 0;

  background: rgba(243, 230, 213, 0.22);
}

.about-stat-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 25px;
}

.about-stat-grid div {
  display: flex;

  flex-direction: column;

  gap: 5px;
}

.about-stat-grid strong {
  color: var(--about-cream);

  font-size: 25px;
}

.about-stat-grid span {
  color: rgba(255, 249, 242, 0.72);

  font-size: 13px;
}


/* =========================================================
   WHAT WE OFFER
   ========================================================= */

.about-offer {
  padding: 105px 0;

  background: var(--about-cream);
}

.about-section-heading {
  max-width: 720px;

  margin: 0 auto 60px;

  text-align: center;
}

.about-section-heading h2 {
  margin-bottom: 15px;
}

.about-section-heading p {
  margin: 0;

  color: var(--about-text);

  font-size: 16px;

  line-height: 1.8;
}

.about-offer-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 22px;
}

.about-offer-box {
  position: relative;

  min-height: 310px;

  padding: 35px 28px;

  background: var(--about-offwhite);

  border: 1px solid var(--about-light-border);

  border-radius: 8px;

  overflow: hidden;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.about-offer-box:hover {

  transform: translateY(-8px);

  border-color: var(--about-rose);

  box-shadow:
    0 18px 40px rgba(128, 0, 32, 0.12);
}

.offer-number {

  position: absolute;

  top: 12px;
  right: 18px;

  color: rgba(128, 0, 32, 0.08);

  font-size: 55px;

  font-weight: 900;

  transition: 0.3s ease;
}

.about-offer-box:hover .offer-number {
  color: rgba(212, 80, 96, 0.15);
}

.offer-icon {

  width: 58px;
  height: 58px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  background: var(--about-burgundy);

  color: var(--about-cream);

  border-radius: 50%;

  font-size: 22px;

  transition: 0.3s ease;
}

.about-offer-box:hover .offer-icon {
  background: var(--about-rose);

  transform: scale(1.08);
}

.about-offer-box h3 {

  position: relative;
  z-index: 2;

  margin: 0 0 13px;

  color: var(--about-burgundy);

  font-size: 21px;
  line-height: 1.3;
}

.about-offer-box p {

  position: relative;
  z-index: 2;

  margin: 0;

  color: var(--about-text);

  font-size: 14px;

  line-height: 1.75;
}


/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.about-why {

  padding: 105px 0;

  background:
    linear-gradient(
      135deg,
      #800020,
      #5d0018
    );

  color: #fff;
}

.about-why-grid {

  display: grid;

  grid-template-columns:
    0.85fr 1.15fr;

  gap: 80px;

  align-items: start;
}

.about-why-heading {

  position: sticky;

  top: 40px;
}

.about-why-heading h2 {
  color: #fff;
}

.about-why-heading .about-small-title {
  color: var(--about-cream);
}

.about-why-content {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 35px;
}

.why-item {

  display: flex;

  gap: 18px;

  padding-bottom: 30px;

  border-bottom:
    1px solid rgba(243, 230, 213, 0.18);
}

.why-icon {

  flex: 0 0 36px;

  width: 36px;
  height: 36px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: var(--about-cream);

  color: var(--about-burgundy);

  border-radius: 50%;

  font-weight: 900;
}

.why-item h3 {

  margin: 0 0 10px;

  color: #fff;

  font-size: 18px;
}

.why-item p {

  margin: 0;

  color: rgba(255, 249, 242, 0.72);

  font-size: 14px;

  line-height: 1.75;
}


/* =========================================================
   OUR APPROACH
   ========================================================= */

.about-approach {

  padding: 105px 0;

  background: var(--about-offwhite);
}

.about-approach-box {

  display: grid;

  grid-template-columns:
    1fr 350px;

  gap: 70px;

  align-items: center;

  padding: 65px;

  background: var(--about-cream);

  border-left:
    5px solid var(--about-burgundy);

  border-radius: 5px;
}

.approach-content p {

  margin: 0 0 17px;

  color: var(--about-text);

  line-height: 1.85;
}

.approach-highlight {

  padding: 42px;

  background: var(--about-burgundy);

  text-align: center;

  border-radius: 8px;

  box-shadow:
    0 15px 35px rgba(128, 0, 32, 0.15);
}

.highlight-symbol {

  width: 65px;
  height: 65px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin: 0 auto 20px;

  background: var(--about-cream);

  color: var(--about-burgundy);

  border-radius: 50%;

  font-size: 28px;
}

.approach-highlight h3 {

  margin: 0 0 12px;

  color: #fff;

  font-size: 25px;
}

.approach-highlight p {

  margin: 0;

  color: rgba(255, 249, 242, 0.72);

  font-size: 14px;

  line-height: 1.7;
}


/* =========================================================
   CTA SECTION
   ========================================================= */

.about-cta {

  position: relative;

  padding: 100px 0;

  background:
    radial-gradient(
      circle at 85% 50%,
      rgba(212, 80, 96, 0.32),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #4c0014,
      #800020
    );

  text-align: center;

  overflow: hidden;
}

.about-cta::before {

  content: "";

  position: absolute;

  width: 350px;
  height: 350px;

  border:
    1px solid rgba(243, 230, 213, 0.18);

  border-radius: 50%;

  right: -130px;
  bottom: -170px;
}

.about-cta-content {

  position: relative;
  z-index: 2;

  max-width: 800px;

  margin: auto;
}

.about-cta .about-small-title {
  color: var(--about-cream);
}

.about-cta h2 {

  margin: 0 0 18px;

  color: #fff;

  font-size:
    clamp(32px, 4vw, 52px);

  line-height: 1.15;
}

.about-cta p {

  max-width: 650px;

  margin: 0 auto;

  color: rgba(255, 249, 242, 0.78);

  font-size: 16px;

  line-height: 1.8;
}

.about-btn-light {

  background: var(--about-cream);

  border-color: var(--about-cream);

  color: var(--about-burgundy) !important;
}

.about-btn-light:hover {

  background: var(--about-rose);

  border-color: var(--about-rose);

  color: #fff !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .about-intro-grid,
  .about-why-grid,
  .about-approach-box {

    grid-template-columns: 1fr;

    gap: 45px;
  }

  .about-offer-grid {

    grid-template-columns:
      1fr 1fr;
  }

  .about-why-heading {

    position: static;
  }

  .about-approach-box {

    padding: 45px;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .about-hero {

    min-height: 480px;
  }

  .about-hero-content {

    padding: 65px 0;
  }

  .about-hero h1 {

    font-size: 38px;

    letter-spacing: -0.5px;
  }

  .about-hero p {

    font-size: 15px;

    line-height: 1.7;
  }

  .about-intro,
  .about-offer,
  .about-why,
  .about-approach {

    padding: 70px 0;
  }

  .about-intro-card {

    padding: 32px;
  }

  .about-offer-grid {

    grid-template-columns: 1fr;
  }

  .about-why-content {

    grid-template-columns: 1fr;

    gap: 25px;
  }

  .about-approach-box {

    padding: 30px;

    gap: 35px;
  }

  .about-cta {

    padding: 75px 0;
  }

  .about-cta h2 {

    font-size: 34px;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .about-container {

    width: 90%;
  }

  .about-hero h1 {

    font-size: 32px;
  }

  .about-intro-content h2,
  .about-section-heading h2,
  .about-why-heading h2,
  .approach-content h2 {

    font-size: 31px;
  }

  .about-intro-card {

    padding: 28px;
  }

  .about-stat-grid {

    gap: 18px;
  }

  .about-offer-box {

    min-height: auto;

    padding: 30px 25px;
  }

  .about-approach-box {

    padding: 25px;
  }

  .approach-highlight {

    padding: 32px 25px;
  }

  .about-btn {

    width: 100%;
  }
}/* End custom CSS */