/* =========================================
   RESET
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f5f6f8;
  line-height: 1.6;
}


/* =========================================
   ABOUT SECTION
========================================= */

.about-section {
  width: 100%;
  padding: 70px 40px;
  background: #f8f9fa;
}

.about-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}


/* =========================================
   TOP CONTENT
========================================= */

.about-top {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 50px;
}


/* =========================================
   IMAGE
========================================= */

.about-image {
  width: 50%;
  flex: 0 0 50%;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit:fill;

  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
}


/* =========================================
   RIGHT CONTENT
========================================= */

.about-side-content {
  width: 50%;
  flex: 0 0 50%;
  padding-top: 0;
}

.about-side-content h2 {
  margin: 0 0 25px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
}

.about-side-content p {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.75;
  color: #444;
}


/* =========================================
   FULL WIDTH CONTENT
========================================= */

.about-full-content {
  width: 100%;
  margin-top: 35px;
}

.about-full-content p {
  width: 100%;
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.75;
  color: #444;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .about-section {
    padding: 55px 25px;
  }

  .about-top {
    gap: 30px;
  }

  .about-image img {
    height: 450px;
  }

  .about-side-content h2 {
    font-size: 32px;
  }

  .about-side-content p,
  .about-full-content p {
    font-size: 16px;
    line-height: 1.7;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .about-section {
    padding: 45px 20px;
  }

  .about-top {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .about-image {
    width: 100%;
    flex: none;
  }

  .about-image img {
    width: 100%;
    height: 320px;
    border-radius: 12px;
  }

  .about-side-content {
    width: 100%;
    flex: none;
  }

  .about-side-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .about-side-content p,
  .about-full-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .about-full-content {
    margin-top: 30px;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .about-section {
    padding: 35px 15px;
  }

  .about-image img {
    height: 250px;
  }

  .about-side-content h2 {
    font-size: 25px;
  }

  .about-side-content p,
  .about-full-content p {
    font-size: 15px;
    line-height: 1.65;
  }
}



/* =========================================
   NAVBAR OFFSET
========================================= */

.about-section {
}