/* =========================================================
   ABOUT SECTION
========================================================= */

.about_section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 110px 0 90px;
  /* background: #ffffff; */
  color: #111111;
}

/* =========================================================
   CONTAINER
========================================================= */

.about_section .about_container {
  width: 90%;
  max-width: 100%;
  margin: 0 auto;
}

/* =========================================================
   TOP ROW
========================================================= */

.about_section .about_top_row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.about_section .about_est {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 2px;
  color: #777777;
}

/* =========================================================
   MAIN
========================================================= */

.about_section .about_main {
  display: grid;
  grid-template-columns: 43% 57%;
  align-items: center;
  min-height: 650px;
}

/* =========================================================
   CONTENT
========================================================= */

.about_section .about_content {
  position: relative;
  z-index: 5;
  /* padding-right: 70px; */
}

/* =========================================================
   HEADING
========================================================= */

.about_section .about_heading_wrapper {
  margin-bottom: 35px;
}

.about_section .about_small_heading {
  display: block;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #777777;
}

.about_section .about_heading {
  max-width: 520px;
  margin: 0;
  font-size: clamp(45px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -3px;
  color: #111111;
}

.about_section .about_heading span {
  display: block;
  font-style: italic;
  font-weight: 300;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.about_section .about_description {
  max-width: 510px;
  margin: 0 0 35px;
  color: #666666;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.4px;
}

/* =========================================================
   ACTION
========================================================= */

.about_section .about_action {
  margin-bottom: 60px;
}

.about_section .about_learn_btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #111111;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.7px;
  transition: all 0.35s ease;
}

.about_section .about_btn_icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111111;
  border-radius: 50%;
  font-size: 12px;
  transition: all 0.35s ease;
}

.about_section .about_learn_btn:hover {
  color: #555555;
}

.about_section .about_learn_btn:hover .about_btn_icon {
  background: #111111;
  color: #ffffff;
  transform: rotate(45deg);
}

/* =========================================================
   STATS
========================================================= */

.about_section .about_stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 600px;
}

.about_section .about_stat {
  position: relative;
  padding: 0 25px 0 0;
  margin-right: 25px;
  border-right: 1px solid #dddddd;
  height: 100%;
}

.about_section .about_stat:nth-child(3) {
  border-right: none;
}

.about_section .about_stat:nth-child(n + 4) {
  margin-top: 35px;
}

.about_section .about_stat_number {
  margin-bottom: 6px;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -1px;
  color: #111111;
}

.about_section .about_stat_title {
  max-width: 120px;
  color: #777777;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =========================================================
   VISUAL
========================================================= */

.about_section .about_visual {
  position: relative;
  height: 100%;
}

/* =========================================================
   LARGE IMAGE
========================================================= */

.about_section .about_image {
  position: absolute;
  overflow: hidden;
}

.about_section .about_image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.about_section .about_image:hover img {
  transform: scale(1.06);
}

.about_section .about_image_large {
  top: 0;
  right: 0;
  width: 72%;
  height: 560px;
  z-index: 2;
}

.about_section .about_image_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 4%), rgba(0, 0, 0, 0.45));
}

/* =========================================================
   IMAGE CAPTION
========================================================= */

.about_section .about_image_caption {
  position: absolute;
  right: 30px;
  top: 30px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #ffffff;
  z-index: 3;
}

.about_section .about_image_caption span {
  font-size: 11px;
  letter-spacing: 1px;
}

.about_section .about_image_caption p {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 2px;
}

/* =========================================================
   SECONDARY IMAGE
========================================================= */

.about_section .about_image_small {
  left: 0;
  bottom: 0;
  width: 48%;
  height: 310px;
  z-index: 4;
  border: 12px solid #ffffff;
}

.about_section .about_image_small img {
  /* object-fit: cover; */
}

.about_section .about_image_small_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
}

/* =========================================================
   FLOATING BADGE
========================================================= */

.about_section .about_visual_badge {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  line-height: 1.6;
  letter-spacing: 1.5px;
  text-align: center;
  transition: transform 0.4s ease;
}

.about_section .about_visual_badge:hover {
  transform: rotate(-10deg) scale(1.05);
}

.about_section .about_badge_arrow {
  margin-bottom: 7px;
  font-size: 13px;
}

/* =========================================================
   BOTTOM
========================================================= */

.about_section .about_bottom {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 65px;
}

.about_section .about_bottom_line {
  width: 80px;
  height: 1px;
  background: #111111;
  opacity: 0.3;
}

.about_section .about_bottom span {
  font-size: 11px;
  letter-spacing: 2px;
  color: #777777;
}

.about_section .about_bottom_number {
  margin-left: auto;
}

/* =========================================================
   LAPTOP
========================================================= */

@media (min-width: 992px) and (max-width: 1199.98px) {
}

/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 991.98px) {
  .about_section {
    padding: 80px 0;
  }

  .about_section .about_main {
    grid-template-columns: 1fr;
  }

  .about_section .about_stat:nth-child(n + 4) {
    margin-top: 0;
  }

  .about_section .about_content {
    padding-right: 0;
    margin-bottom: 70px;
  }

  .about_section .about_heading {
    max-width: 700px;
  }

  .about_section .about_description {
    max-width: 650px;
  }

  .about_section .about_visual {
    height: 600px;
  }

  .about_section .about_image_large {
    width: 72%;
    height: 500px;
  }

  .about_section .about_image_small {
    width: 45%;
    height: 270px;
  }

  .about_section .about_stats {
    grid-template-columns: repeat(5, 1fr);
    max-width: 100%;
  }

  .about_section .about_stat:nth-child(3) {
    border-right: 1px solid #dddddd;
  }

  .about_section .about_stat_number {
    font-size: 26px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (min-width: 576px) and (max-width: 767px) {
  .about_section {
    padding: 70px 0;
  }

  .about_section .about_main {
    grid-template-columns: 1fr;
  }

  .about_section .about_container {
    width: 90%;
  }

  .about_section .about_top_row {
    margin-bottom: 45px;
  }

  .about_section .about_est {
    display: none;
  }

  .about_section .about_heading {
    font-size: 47px;
    letter-spacing: -2px;
    width: 100%;
    max-width: unset;
  }

  .about_section .about_description {
    font-size: 14px;
    line-height: 1.8;
  }

  .about_section .about_action {
    margin-bottom: 45px;
  }

  .about_section .about_stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }

  .about_section .about_stat {
    margin: 0 !important;
    padding-right: 15px;
    border-right: 1px solid #dddddd;
  }

  /* .about_section .about_stat:nth-child(even) {
    border-right: none;
  }

  .about_section .about_stat:nth-child(3) {
    border-right: 1px solid #dddddd;
  } */

  .about_section .about_stat_number {
    font-size: 26px;
  }

  .about_section .about_visual {
    height: 500px;
    margin-top: 30px;
  }

  .about_section .about_image_large {
    width: 82%;
    height: 380px;
  }

  .about_section .about_image_small {
    width: 58%;
    height: 220px;
    border-width: 8px;
  }

  .about_section .about_visual_badge {
    width: 95px;
    height: 95px;
    right: -10px;
    bottom: 30px;
  }

  .about_section .about_bottom {
    margin-top: 45px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (min-width: 0px) and (max-width: 575.98px) {
  .about_section {
    padding: 40px 0;
  }

  .about_section .about_heading {
    font-size: 39px;
  }

  .about_section .about_main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about_section .about_small_heading {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .about_section .about_stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
  }

  .about_section .about_stat:nth-child(n + 4) {
    margin-top: 12px;
  }

  .about_section .about_stat:nth-child(3) {
    border-right: 1px solid #dddddd;
  }

  .about_section .about_stat_number {
    font-size: 23px;
  }

  .about_section .about_stat_title {
    font-size: 9px;
  }

  .about_section .about_visual {
    height: 420px;
  }

  .about_section .about_image_large {
    width: 86%;
    height: 310px;
  }

  .about_section .about_image_small {
    width: 62%;
    height: 190px;
  }

  .about_section .about_visual_badge {
    width: 80px;
    height: 80px;
    font-size: 7px;
    right: 0;
    bottom: 50px;
  }

  .about_section .about_badge_arrow {
    font-size: 10px;
  }

  .about_section .about_bottom span {
    font-size: 7px;
  }
}
