/* Mobile responsive */
@media (max-width: 768px) {
  #aboutSection {
    height: max-content;
    background-color: #f4f6fc;
    display: grid;
    place-items: center;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  /* .about-container > .left-content {
    grid-area: 2 / span 2;
    margin-left: 100px;
  } */

  .about-container > .left-content > h3 {
    color: #8e99a2;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
    font-size: 22px;
    font-weight: 600;
  }

  .about-container > .left-content > p {
    font-size: 12px;
    color: #8e99a2;
    width: 80%;
    font-family: "DM Sans", sans-serif;
    margin: auto;
    margin-bottom: 30px;
  }

  .about-container > .left-content > .services-btn {
    background-color: #8e99a2;
    color: #ffbde4;
    border: none;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: "DM Sans", sans-serif;
    transition: all ease-in-out 0.2s;
    text-decoration: none !important;
  }

  .about-container > .left-content > .services-btn:hover {
    background-color: #ffbde4;
    color: white;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  #aboutSection {
    height: max-content;
    background-color: #f4f6fc;
  }

  .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 2fr 100px;
  }

  .about-container > .left-content {
    grid-area: 2 / span 2;
    margin-left: 100px;
  }

  .about-container > .left-content > h3 {
    color: #8e99a2;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
    font-size: 32px;
    font-weight: 600;
  }

  .about-container > .left-content > p {
    font-size: 16px;
    color: #8e99a2;
    width: 90%;
    font-family: "DM Sans", sans-serif;
  }

  .about-container > .left-content > .services-btn {
    background-color: #8e99a2;
    color: #ffbde4;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: "DM Sans", sans-serif;
    transition: all ease-in-out 0.2s;
    text-decoration: none !important;
  }

  .about-container > .left-content > .services-btn:hover {
    background-color: #ffbde4;
    color: white;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  #aboutSection {
    height: max-content;
    background-color: #f4f6fc;
  }

  .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 2fr 100px;
  }

  .about-container > .left-content {
    grid-area: 2 / span 2;
    margin-left: 100px;
  }

  .about-container > .left-content > h3 {
    color: #8e99a2;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
    font-size: 28px;
    font-weight: 600;
  }

  .about-container > .left-content > p {
    font-size: 12px;
    color: #8e99a2;
    width: 90%;
    font-family: "DM Sans", sans-serif;
  }

  .about-container > .left-content > .services-btn {
    background-color: #8e99a2;
    color: #ffbde4;
    border: none;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: "DM Sans", sans-serif;
    transition: all ease-in-out 0.2s;
    text-decoration: none !important;
  }

  .about-container > .left-content > .services-btn:hover {
    background-color: #ffbde4;
    color: white;
  }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  #aboutSection {
    height: 100dvh;
    width: 100dvw;
    background-color: #f4f6fc;
  }

  .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 2fr 100px;
  }

  .about-container > .left-content {
    grid-area: 2 / span 2;
    margin-left: 100px;
  }

  .about-container > .left-content > h3 {
    color: #8e99a2;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
    font-size: 28px;
    font-weight: 600;
  }

  .about-container > .left-content > p {
    font-size: 14px;
    color: #8e99a2;
    width: 90%;
    font-family: "DM Sans", sans-serif;
  }

  .about-container > .left-content > .services-btn {
    background-color: #8e99a2;
    color: #ffbde4;
    border: none;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: "DM Sans", sans-serif;
    transition: all ease-in-out 0.2s;
    text-decoration: none !important;
  }

  .about-container > .left-content > .services-btn:hover {
    background-color: #ffbde4;
    color: white;
  }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  #aboutSection {
    height: 100dvh;
    background-color: #f4f6fc;
  }

  .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 2fr 100px;
  }

  .about-container > .left-content {
    grid-area: 2 / span 2;
    margin-left: 100px;
  }

  .about-container > .left-content > h3 {
    color: #8e99a2;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
    font-size: 32px;
    font-weight: 600;
  }

  .about-container > .left-content > p {
    font-size: 16px;
    color: #8e99a2;
    width: 90%;
    font-family: "DM Sans", sans-serif;
  }

  .about-container > .left-content > .services-btn {
    background-color: #8e99a2;
    color: #ffbde4;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: "DM Sans", sans-serif;
    transition: all ease-in-out 0.2s;
    text-decoration: none !important;
  }

  .about-container > .left-content > .services-btn:hover {
    background-color: #ffbde4;
    color: white;
  }
}

/* XXX-Large devices (larger desktops, 1920px and up) */
@media (min-width: 1920px) {
  #aboutSection {
    height: 80dvh;
    background-color: #f4f6fc;
  }

  .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 2fr 100px;
  }

  .about-container > .left-content {
    grid-area: 2 / span 2;
    margin-left: 100px;
  }

  .about-container > .left-content > h3 {
    color: #8e99a2;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
    font-size: 32px;
    font-weight: 600;
  }

  .about-container > .left-content > p {
    font-size: 16px;
    color: #8e99a2;
    width: 90%;
    font-family: "DM Sans", sans-serif;
  }

  .about-container > .left-content > .services-btn {
    background-color: #8e99a2;
    color: #ffbde4;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: "DM Sans", sans-serif;
    transition: all ease-in-out 0.2s;
    text-decoration: none !important;
  }

  .about-container > .left-content > .services-btn:hover {
    background-color: #ffbde4;
    color: white;
  }
}
