/* ===============================
   ATMS About Section
================================ */

.atms-about {
  width: 100%;
  background: #fdfff6;
  padding: 78px 20px 104px;
  font-family: "Geist", Arial, sans-serif;
  overflow: hidden;
}

.atms-about-container {
  width: 100%;
  max-width: 1178px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 555px 572px;
  align-items: center;
  gap: 60px;
}

/* ===============================
   About Content Typography
================================ */

.atms-about-content {
  color: #5e5e5e;
}

.atms-about-content h2 {
  margin: 0 0 40px;
  color: #5e5e5e;
  font-family: "Geist", Arial, sans-serif;
  font-size: 39px;
  font-weight: 600;
  line-height: 33px;
  letter-spacing: 0;
}

.atms-about-content p {
  margin: 0;
  max-width: 555px;
  color: #5e5e5e;
  font-family: "Geist", Arial, sans-serif;
  font-size: 19px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0;
}

/* ===============================
   About Image
================================ */

.atms-about-image-wrap {
  width: 572px;
  height: 555px;
  border-radius: 50px;
  overflow: hidden;
  background: #e8e8e8;
}

.atms-about-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: scale(1);
  transition:
    transform 1.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.6s ease;
  will-change: transform;
}

.atms-about-image-wrap:hover .atms-about-image {
  transform: scale(1.16);
  filter: brightness(1.04);
}

/* ===============================
   Laptop
================================ */

@media (max-width: 1366px) {
  .atms-about {
    padding: 70px 20px 88px;
  }

  .atms-about-container {
    max-width: 980px;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .atms-about-content h2 {
    font-size: 34px;
    line-height: 32px;
    margin-bottom: 34px;
  }

  .atms-about-content p {
    font-size: 16px;
    line-height: 26px;
  }

  .atms-about-image-wrap {
    width: 100%;
    height: 460px;
    border-radius: 42px;
  }
}

/* ===============================
   Tablet
================================ */

@media (max-width: 991px) {
  .atms-about {
    padding: 64px 24px 76px;
  }

  .atms-about-container {
    max-width: 720px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .atms-about-content {
    order: 1;
  }

  .atms-about-image-wrap {
    order: 2;
    width: 100%;
    height: 520px;
    border-radius: 40px;
  }

  .atms-about-content h2 {
    font-size: 34px;
    line-height: 34px;
    margin-bottom: 28px;
  }

  .atms-about-content p {
    max-width: 100%;
    font-size: 17px;
    line-height: 29px;
  }
}

/* ===============================
   Mobile
================================ */

@media (max-width: 767px) {
  .atms-about {
    padding: 56px 20px 64px;
  }

  .atms-about-container {
    gap: 34px;
  }

  .atms-about-content h2 {
    font-size: 30px;
    line-height: 32px;
    margin-bottom: 22px;
  }

  .atms-about-content p {
    font-size: 15px;
    line-height: 26px;
  }

  .atms-about-image-wrap {
    height: 390px;
    border-radius: 32px;
  }
}

/* ===============================
   Small Mobile
================================ */

@media (max-width: 480px) {
  .atms-about {
    padding: 48px 18px 56px;
  }

  .atms-about-content h2 {
    font-size: 28px;
    line-height: 30px;
  }

  .atms-about-content p {
    font-size: 14px;
    line-height: 24px;
  }

  .atms-about-image-wrap {
    height: 320px;
    border-radius: 26px;
  }
}