/* =========================================
   ABOUT US
========================================= */

.About_us {
  position: relative;
  padding: 80px 0 100px;
  background: #faf9f1;
  overflow: hidden;
}

.About_us::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #e7e4c8;
  opacity: 0.35;
}

.About_us::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -150px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: #e7e4c8;
  opacity: 0.3;
}

.About_us .custom_container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 25px;
}

/* =========================================
   MAIN ABOUT AREA
========================================= */

.About_us .about_main {
  display: grid;
  grid-template-columns: 43% 57%;
  align-items: center;
  gap: 70px;
}

/* =========================================
   IMAGE
========================================= */

.About_us .about_image_section {
  position: relative;
}

.About_us .about_image_wrapper {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
  border-radius: 0 70px 0 70px;
  box-shadow: 20px 20px 0 #e4dfbc;
}

.About_us .about_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.About_us .about_image_wrapper:hover .about_img {
  transform: scale(1.05);
}

.About_us .image_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(30, 27, 4, 0.45) 100%
  );
}

/* =========================================
   HERITAGE BADGE
========================================= */

.About_us .heritage_badge {
  position: absolute;
  left: -35px;
  bottom: 40px;

  width: 130px;
  height: 130px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: #756d16;
  color: #ffffff;

  border-radius: 50%;
  border: 8px solid #faf9f1;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.About_us .badge_number {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.About_us .badge_text {
  margin-top: 7px;
  text-align: center;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 1.5px;
}

/* =========================================
   CONTENT
========================================= */

.About_us .about_content_section {
  padding-right: 30px;
}

.About_us .about_small_title {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 15px;

  color: #756d16;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
}

.About_us .about_small_title::before {
  content: "";
  width: 35px;
  height: 2px;
  background: #756d16;
}

/* =========================================
   HEADING ORNAMENT
========================================= */

.About_us .heading_line {
  display: flex;
  align-items: center;
  gap: 10px;

  width: 120px;
  margin: 20px 0 25px;
}

.About_us .heading_line span {
  width: 40px;
  height: 1px;
  background: #756d16;
}

.About_us .heading_line {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 120px;
  /* margin: 20px 0 25px; */
  /* text-align: center; */
  /* display: flex; */
  /* justify-content: center; */
  margin: 0 auto;
}
.About_us .about_button {
  margin-top: 25px;
  /* margin: 0 auto; */
  align-items: center;
  justify-content: center;
  display: flex;
}
.About_us .about_button svg {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.About_us .about_button:hover svg {
  transform: translateX(5px);
}

/* =========================================
   STATS
========================================= */

.About_us .about_stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  margin-top: 75px;

  background: #ffffff;

  border-radius: 18px;

  box-shadow: 0 15px 45px rgba(64, 58, 11, 0.1);

  overflow: hidden;
}

/* =========================================
   STAT CARD
========================================= */

.About_us .stat_card {
  position: relative;

  display: flex;
  align-items: center;

  height: 100%;
  padding: 25px 30px;

  border-right: 1px solid #e5e1c9;

  transition: all 0.3s ease;
}

.About_us .stat_card:last-child {
  border-right: 0;
}

.About_us .stat_card:hover {
  background: #756d16;
}

.About_us .stat_icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 45px;
  min-width: 45px;
  height: 45px;

  margin-right: 18px;

  border: 1px solid #756d16;
  border-radius: 50%;

  color: #756d16;

  font-size: 12px;
  font-weight: 700;

  transition: all 0.3s ease;
}

.About_us .stat_content h3 {
  margin: 0 0 4px;

  color: #756d16;

  font-family: "Playfair Display", serif;
  font-size: 40px;
  line-height: 1;
  font-weight: 800;

  transition: all 0.3s ease;
}

.About_us .stat_content p {
  margin: 0;

  color: #4a4a4a;

  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.5px;

  transition: all 0.3s ease;
}

/* =========================================
   STAT HOVER
========================================= */

.About_us .stat_card:hover .stat_icon {
  border-color: #ffffff;
  color: #ffffff;
}

.About_us .stat_card:hover .stat_content h3 {
  color: #ffffff;
}

.About_us .stat_card:hover .stat_content p {
  color: #ffffff;
}

/* =========================================
   LARGE LAPTOP
========================================= */

@media (max-width: 1199px) {
  .About_us {
    padding: 65px 0 80px;
  }

  .About_us .about_main {
    gap: 45px;
  }

  .About_us .about_image_wrapper {
    height: 480px;
  }

  .About_us .about_content_section p {
    font-size: 15px;
  }

  .About_us .stat_card {
    padding: 22px 18px;
  }

  .About_us .stat_icon {
    width: 38px;
    min-width: 38px;
    height: 38px;
    margin-right: 12px;
  }

  .About_us .stat_content h3 {
    font-size: 34px;
  }

  .About_us .stat_content p {
    font-size: 11px;
  }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
  .About_us {
    padding: 55px 0 70px;
  }

  .About_us .about_main {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .About_us .about_image_wrapper {
    height: 500px;
    max-width: 650px;
    margin: 0 auto;
  }

  .About_us .about_content_section {
    padding-right: 0;
  }

  .About_us .about_content_section p {
    max-width: 100%;
  }

  .About_us .about_stats {
    margin-top: 50px;
    grid-template-columns: repeat(2, 1fr);
  }

  .About_us .stat_card:nth-child(2) {
    border-right: 0;
  }

  .About_us .stat_card:nth-child(1),
  .About_us .stat_card:nth-child(2) {
    border-bottom: 1px solid #e5e1c9;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {
  .About_us {
    padding: 45px 0 55px;
  }

  .About_us .custom_container {
    padding: 0 15px;
  }

  .About_us .about_main {
    gap: 35px;
  }

  .About_us .about_image_wrapper {
    height: 360px;
    border-radius: 0 45px 0 45px;
    box-shadow: 12px 12px 0 #e4dfbc;
  }

  .About_us .heritage_badge {
    left: -10px;
    bottom: 25px;

    width: 95px;
    height: 95px;

    border-width: 5px;
  }

  .About_us .badge_number {
    font-size: 22px;
  }

  .About_us .badge_text {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .About_us .about_small_title {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .About_us .about_small_title::before {
    width: 22px;
  }

  .About_us .heading_line {
    margin: 15px 0 20px;
  }

  .About_us .about_content_section p {
    font-size: 14px;
    line-height: 1.65;
    text-align: left;
  }

  .About_us .about_button {
    margin-top: 20px;
  }

  .About_us .about_stats {
    grid-template-columns: 1fr;
    margin-top: 40px;
    border-radius: 12px;
  }

  .About_us .stat_card {
    min-height: 110px;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid #e5e1c9;
  }

  .About_us .stat_card:last-child {
    border-bottom: 0;
  }

  .About_us .stat_card:nth-child(2) {
    border-bottom: 1px solid #e5e1c9;
  }

  .About_us .stat_content h3 {
    font-size: 32px;
  }

  .About_us .stat_content p {
    font-size: 11px;
  }
}
