/* -------------------------------
            Sec - 1
------------------------------- */

.about-sec-1-hero {
  position: relative;

  min-height: 360px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: url("../images/sec-1-img-3.jpg") center center / cover no-repeat;
}

/* Overlay */

.about-sec-1-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));

  z-index: 1;
}

/* Content */

.about-sec-1-container {
  position: relative;
  z-index: 2;

  width: 100%;

  max-width: 1400px;

  padding: 0 24px;

  text-align: center;
}

.about-sec-1-title {
  font-family: var(--secondary-font);

  color: var(--white);

  font-size: clamp(2.25rem, 3vw, 3.5rem);

  line-height: 1.1;

  margin-bottom: 25px;
}

/* Breadcrumb */

.about-sec-1-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 18px;

  flex-wrap: wrap;
}

.about-sec-1-breadcrumb b {
  color: var(--primary);
}

.about-sec-1-breadcrumb a {
  color: var(--white);

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.about-sec-1-breadcrumb a:hover {
  color: var(--primary);
}

.about-sec-1-breadcrumb span {
  color: var(--white);
}

.about-sec-1-breadcrumb i {
  color: var(--primary);

  font-size: 14px;
}

.about-sec-1-current {
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 768px) {
  .about-sec-1-hero {
    min-height: 330px;
  }

  .about-sec-1-title {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .about-sec-1-hero {
    min-height: 260px;
  }

  .about-sec-1-title {
    font-size: 2.4rem;
  }

  .about-sec-1-breadcrumb {
    gap: 10px;
  }

  .about-sec-1-breadcrumb a,
  .about-sec-1-current {
    font-size: 14px;
  }
}




/* -------------------------------
            Sec - 2
------------------------------- */

.about-sec-2-about {
  padding: 100px 0;
  background: var(--white);
}

/* ==========================
   MAIN LAYOUT
========================== */

.about-sec-2-container {
  max-width: 1400px;
  margin: auto;

  padding: 0 24px;

  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 80px;

  align-items: center;
}

/* ==========================
   IMAGES
========================== */

.about-sec-2-images {
  position: relative;
}

.about-sec-2-img-large {
  border-radius: 18px;
  overflow: hidden;
}

.about-sec-2-img-large img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.about-sec-2-img-row {
  display: flex;
  gap: 18px;
  margin-top: 25px;
}

.about-sec-2-img-small {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
}

.about-sec-2-img-small img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.about-sec-2-img-overlap {
  margin-top: -110px;
}

.about-sec-2-img-overlap img {
  height: 311px;
  object-position: top;
}

/* ==========================
   CONTENT
========================== */

.about-sec-2-subtitle {
  display: inline-block;

  color: var(--primary);

  font-size: 20px;
  font-weight: 600;

  margin-bottom: 20px;
}

.about-sec-2-title {
  font-family: var(--secondary-font);

  font-size: clamp(2.5rem, 4vw, 4rem);

  line-height: 1.1;

  color: var(--black);

  margin-bottom: 30px;
}

.about-sec-2-description {
  color: #666;

  font-size: 17px;
  line-height: 1.9;

  margin-bottom: 35px;
}

/* ==========================
   FEATURES
========================== */

.about-sec-2-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 40px;

  margin-bottom: 40px;
}

.about-sec-2-feature {
  color: var(--text);

  font-size: 17px;
  font-weight: 500;
}

.about-sec-2-feature::before {
  content: "✓";

  color: var(--primary);

  font-weight: bold;

  margin-right: 12px;
}

/* ==========================
   BUTTON
========================== */

.about-sec-2-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  height: 60px;
  padding: 0 32px;

  background: var(--primary);

  color: var(--white);

  text-decoration: none;

  border-radius: 10px;

  font-weight: 600;

  transition: 0.3s;
}

.about-sec-2-btn:hover {
  background: var(--primary-dark);
}

.about-sec-2-btn svg {
  height: 16px;
  width: 16px;
  transition: all 0.6s ease;
}

.about-sec-2-btn:hover svg {
  transform: translateX(4px);
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1100px) {
  .about-sec-2-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-sec-2-images {
    max-width: 700px;
    margin: auto;
  }

  .about-sec-2-content {
    text-align: center;
  }

  .about-sec-2-features {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .about-sec-2-about {
    padding: 70px 0;
  }

  .about-sec-2-img-overlap {
    margin-top: 0;
  }

  .about-sec-2-img-row {
    flex-direction: column;
    display: none;
  }

  .about-sec-2-title {
    font-size: 2.4rem;
  }

  .about-sec-2-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 576px) {
  .about-sec-2-title {
    font-size: 2rem;
  }

  .about-sec-2-description {
    font-size: 15px;
  }

  .about-sec-2-btn {
    /* width: 100%; */
    justify-content: center;
  }
}




/* -------------------------------
            Sec - 3
------------------------------- */

.about-sec-3 {
}

.about-sec-3-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1fr 420px 420px;
  gap: 30px;
  align-items: stretch;
}

/* ==========================
   LEFT CONTENT
========================== */

.about-sec-3-about {
  padding-right: 40px;
}

.about-sec-3-title {
  font-family: var(--secondary-font);

  font-size: clamp(1.25rem, 2vw, 2.25rem);

  color: var(--black);

  margin-bottom: 20px;

  line-height: 1.2;
}

.about-sec-3-about p {
  color: #687686;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 14px;
}

.about-sec-3-about p:last-child {
  margin-bottom: 0;
}

/* ==========================
   CARDS
========================== */

.about-sec-3-card {
  background: var(--white);

  padding: 42px;

  border-radius: 16px;

  box-shadow: 0 10px 35px rgb(0 0 0 / 12%);

  transition: 0.3s ease;
}

.about-sec-3-card h3 {
  font-family: var(--secondary-font);

  font-size: 1.8rem;

  margin-bottom: 12px;

  color: var(--primary);
}

.about-sec-3-card p {
  color: #687686;

  font-size: 16px;
  line-height: 1.8;
}

/* Active Orange Card */

.about-sec-3-card-active {
  background: var(--primary);

  color: var(--white);
}

.about-sec-3-card-active h3 {
  color: var(--white);
}

.about-sec-3-card-active p {
  color: rgba(255, 255, 255, 0.95);
}

/* Hover */

.about-sec-3-card:hover {
  transform: translateY(-5px);
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1200px) {
  .about-sec-3-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .about-sec-3-about {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .about-sec-3-title {
    font-size: 1.5rem;
  }

  .about-sec-3-card {
    padding: 30px;
  }

  .about-sec-3-card h3 {
    font-size: 1.6rem;
  }

  .about-sec-3-about p,
  .about-sec-3-card p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .about-sec-3-container {
    padding: 0 20px;
  }

  .about-sec-3-card {
    padding: 25px;
  }
}



/* -------------------------------
            Sec - 4
------------------------------- */

.about-sec-4-choose {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

/* Background Block */

.about-sec-4-choose::before {
  content: "";

  position: absolute;

  left: 0;
  right: 0;

  top: 120px;
  bottom: 120px;

  background: rgba(0, 0, 0, 0.03);

  z-index: 1;
}

.about-sec-4-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

/* ==========================
   CONTENT
========================== */

.about-sec-4-content {
  max-width: 670px;
}

.about-sec-4-subtitle {
  display: inline-block;

  color: var(--primary);

  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.about-sec-4-title {
  font-family: var(--secondary-font);
  font-size: clamp(2.5rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 30px;
}

.about-sec-4-description {
  color: #5f6b7a;

  font-size: 18px;
  line-height: 1.9;

  margin-bottom: 40px;
}

/* ==========================
   BUTTON
========================== */

.about-sec-4-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  height: 62px;

  padding: 0 30px;

  background: var(--primary);

  color: var(--white);

  text-decoration: none;

  border-radius: 10px;

  font-weight: 600;

  transition: 0.3s ease;
}

.about-sec-4-btn:hover {
  background: var(--primary-dark);
}

.about-sec-4-btn svg {
  width: 16px;
  height: 16px;
  transition: all 0.6s ease;
}

.about-sec-4-btn:hover svg {
  transform: translateX(4px);
}

/* ==========================
   IMAGE
========================== */

.about-sec-4-image-wrapper {
  /* position: absolute;
  right: -110px;
  top: 0px; */
}

.about-sec-4-image {
  width: 100%;
  height: 560px;

  object-fit: cover;

  border-radius: 18px;

  display: block;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1200px) {
  .about-sec-4-container {
    grid-template-columns: 1fr;
    gap: 60px;

    display: flex;
    flex-direction: column-reverse;
  }

  .about-sec-4-content {
    max-width: 800px;
  }

  .about-sec-4-image-wrapper {
    max-width: 800px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-sec-4-choose {
    padding: 80px 0;
  }

  .about-sec-4-choose::before {
    background: transparent;
  }

  .about-sec-4-title {
    font-size: 2.8rem;
  }

  .about-sec-4-description {
    font-size: 16px;
  }

  .about-sec-4-image {
    height: 420px;
  }
}

@media (max-width: 576px) {
  .about-sec-4-container {
    padding: 0 20px;
  }

  .about-sec-4-title {
    font-size: 2.2rem;
  }

  .about-sec-4-image {
    height: 320px;
  }

  .about-sec-4-btn {
    /* width: 100%; */
    justify-content: center;
  }
}


/* -------------------------------
            Sec - 5
------------------------------- */

.about-sec-5 {
  padding: 0 0 90px;
}

.about-sec-5-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================
   HEADING
========================== */

.about-sec-5-heading {
  text-align: center;

  max-width: 800px;

  margin: 0 auto 40px;
}

.about-sec-5-subtitle {
  display: inline-block;

  color: var(--primary);

  font-size: 22px;
  font-weight: 600;

  margin-bottom: 20px;
}

.about-sec-5-title {
  font-family: var(--secondary-font);
  font-size: clamp(2.5rem, 4vw, 3rem);

  line-height: 1.1;

  color: var(--black);

  margin-bottom: 25px;
}

.about-sec-5-description {
  color: #687686;

  line-height: 1.8;
  margin-bottom: 14px;
}

/* ==========================
   GRID
========================== */

.about-sec-5-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ==========================
   CARD
========================== */

.about-sec-5-card {
  text-align: center;
}

.about-sec-5-image-wrapper {
  position: relative;

  overflow: hidden;

  border-radius: 18px;
}

.about-sec-5-image {
  width: 100%;
  height: 560px;

  object-fit: cover;

  display: block;

  transition: transform 0.7s ease;
}

.about-sec-5-card:hover .about-sec-5-image {
  /* transform: scale(1.08); */
}

/* Overlay */

.about-sec-5-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(rgb(240 138 0 / 15%), rgb(240 138 0 / 38%));

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;

  transition: 0.4s ease;
}

.about-sec-5-card:hover .about-sec-5-overlay {
  opacity: 1;
}

/* Social */

.about-sec-5-social {
  display: flex;
  gap: 15px;
}

.about-sec-5-social a {
  width: 50px;
  height: 50px;

  border-radius: 50%;

  background: var(--white);

  color: var(--primary);

  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s;
}

.about-sec-5-social a:hover {
  transform: translateY(-4px);
  background: var(--primary);
}

.about-sec-5-social a svg {
  width: 25px;
  height: 25px;
  fill: var(--primary);

  transition: 0.3s;
}

.about-sec-5-social a:hover svg {
  fill: var(--white);
}

/* Content */

.about-sec-5-content {
  padding-top: 25px;
}

.about-sec-5-name {
  font-family: var(--secondary-font);

  font-size: 2rem;

  color: var(--black);

  margin-bottom: 10px;
}

.about-sec-5-role {
  color: var(--primary);

  font-weight: 600;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1200px) {
  .about-sec-5-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-sec-5-card:last-child {
    grid-column: span 2;
    max-width: 500px;
    margin: auto;
  }
}

@media (max-width: 768px) {
  .about-sec-5 {
    padding: 0 0 60px;
  }

  .about-sec-5-grid {
    grid-template-columns: 1fr;
  }

  .about-sec-5-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .about-sec-5-image {
    height: 500px;
  }

  .about-sec-5-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 576px) {
  .about-sec-5-container {
    padding: 0 20px;
  }

  .about-sec-5-image {
    height: 420px;
  }

  .about-sec-5-title {
    font-size: 2rem;
  }

  .about-sec-5-description {
    font-size: 14px;
  }

  .about-sec-5-name {
    font-size: 1.6rem;
  }
}



/* -------------------------------
            Sec - 6
------------------------------- */

.about-sec-6-cta {
  position: relative;

  padding: 140px 0;

  margin: 40px 0;

  border-radius: 24px;

  overflow: hidden;

  max-width: 1400px;

  margin-left: auto;
  margin-right: auto;

  /* PARALLAX */

  background-image: url("../images/sec-8-img-1.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

/* Overlay */

.about-sec-6-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));

  z-index: 1;
}

.about-sec-6-container {
  position: relative;
  z-index: 2;

  max-width: 1000px;

  margin: 0 auto;

  padding: 0 30px;

  text-align: center;
}

/* ==========================
   CONTENT
========================== */

.about-sec-6-title {
  font-family: var(--secondary-font);

  color: var(--white);

  font-size: clamp(2.5rem, 3vw, 3rem);

  line-height: 1.15;

  margin-bottom: 28px;
}

.about-sec-6-description {
  color: rgba(255, 255, 255, 0.9);

  font-size: 18px;

  line-height: 1.9;

  max-width: 750px;

  margin: 0 auto 40px;
}

/* ==========================
   BUTTON
========================== */

.about-sec-6-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  height: 62px;

  padding: 0 32px;

  border-radius: 10px;

  background: var(--primary);

  color: var(--white);

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.about-sec-6-btn:hover {
  background: var(--primary-dark);
}

.about-sec-6-btn svg {
  width: 16px;
  height: 16px;
  transition: 0.3s;
}

.about-sec-6-btn:hover svg {
  transform: translateX(4px);
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {
  .about-sec-6-cta {
    margin: 30px 24px;
    padding: 100px 0;
  }
}

@media (max-width: 768px) {
  .about-sec-6-title {
    font-size: 2.4rem;
  }

  .about-sec-6-description {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .about-sec-6-cta {
    margin: 20px 20px;

    padding: 80px 0;

    border-radius: 18px;
  }

  .about-sec-6-title {
    font-size: 2rem;
  }

  .about-sec-6-btn {
    /* width: 100%; */
    justify-content: center;
  }
}
