.borel-regular {
  font-family: "Borel", cursive;
  font-weight: 400;
  font-style: normal;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  min-height: 100vh;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  font-family: "Helvetica", "Arial", sans-serif;
  transition: all 0.3s ease;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 7rem;
  padding: 1rem 0;
}

.header img.logo {
  height: 7rem;
  padding-left: 4rem;
}

.header #menus {
  display: none;
  font-size: 3rem;
  padding-right: 4rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  width: 95%;
  background-color: #ffffff;
}

.mobile-nav ul.nav-links {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 0;
  padding: 1rem 0;
  border-top: 1px solid #ccc;
}

.mobile-nav ul.nav-links li a {
  text-decoration: none;
  color: rgb(14, 14, 14);
  font-size: 1.1rem;
  font-weight: 500;
}
nav ul.nav-links li:hover {
  transform: translateY(-3px);
  transition: all 0.3s ease;
}
nav ul.nav-links li:hover a {
  font-weight: bolder;
  transition: all 0.3s ease;
}

.header nav {
  padding-right: 4rem;
}
.header nav ul.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.header nav ul li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 1.1rem;
}

.hero-section {
  display: flex;
  align-items: center;
  width: 100%;
  height: calc(100vh - 9rem);
  box-sizing: border-box;
  position: relative;
}

.hero-section .hero-content,
.hero-section .hero-image-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  box-sizing: border-box;
  width: 50%;
  height: 100%;
}

.hero-section .hero-content {
  /* background: linear-gradient(
    0deg,
    hsla(298, 68%, 90%, 1) 0%,
    hsla(30, 82%, 91%, 1) 100%
  ); */
  background: url("./Assets/martin-martz-UlxfzEEN3HU-unsplash.jpg");
  background-size: cover;
  color: white;
}

.hero-section .hero-content .hero-content-subDiv {
  padding: 1rem;
  padding-left: 4rem;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  /* background-color: red; */
}
.hero-section .hero-content .hero-content-subDiv h1 {
  font-family: Borel;
  font-size: 5rem;
  line-height: 5rem;
  margin: 0;
}

.hero-section .hero-content .hero-content-subDiv p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  padding: 0.25rem 0;
  height: 2rem;
  margin: 0;
}

.hero-section .hero-content .hero-content-subDiv p .services-slides-container {
  display: inline-flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  overflow: hidden;
  height: 2rem;
  width: fit-content;
  position: relative;
}
.hero-section
  .hero-content
  .hero-content-subDiv
  p
  .services-slides-container
  .services-slides {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 0;
  margin: 0;
  color: rgb(255, 255, 255);
  font-weight: bolder;
  width: fit-content;
  transition: all 2s ease;
}
.hero-section
  .hero-content
  .hero-content-subDiv
  p
  .services-slides-container
  .services-slides
  .slide-cards {
  padding: 0.25rem 0.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
}

.hero-section .hero-content .hero-content-subDiv a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: black;
  margin-top: 3rem;
  font-weight: bold;
}
.hero-section .hero-content .hero-content-subDiv a span:nth-child(1):hover {
  background-color: #f0f0f0;
  color: black;
  cursor: pointer;
  transition: all 0.3s ease;
} 
.hero-section .hero-content .hero-content-subDiv a span:nth-child(2) {
background-color: #fff;
  border: 2px solid #ffffff;
  border-radius: 5rem;
  padding: 0.5rem;
}
.hero-section .hero-content .hero-content-subDiv a span:nth-child(1) {
  border-radius: 5rem;
  font-size: 1.2rem;
  padding: 0.8rem 1rem;
  background-color: none;
  color: white;
  border: 2px solid #ffffff;
  box-sizing: border-box;
}

.hero-section
  .hero-content
  .hero-content-subDiv
  a
  span.material-symbols-outlined {
  vertical-align: middle;
  margin-left: 0.5rem;
  font-size: 2rem;
}

.hero-section .hero-image-container img.hero-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* ABOUT US PAGE */

.about-section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  justify-content: start;
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  margin: 0;
  padding: 3rem 0;
  overflow: hidden;
  /* background: url("./Assets/martin-martz-UlxfzEEN3HU-unsplash.jpg"); */
  background-size: cover;
}
.about-section .testimony {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: fit-content;
  width: fit-content;
}

.about-section .about-content-pic {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 35rem;
  height: 35rem;
}
.about-section .about-content-pic .about-us-title {
  display: flex;
  align-items: end;
  justify-content: center;
  box-sizing: border-box;
  width: 10%;
  height: 100%;
  position: relative;
  background-color: rgb(83, 40, 255);
}
.about-section .about-content-pic .about-us-title h2 {
  color: white;
  font-size: 2rem;
  /* text-transform: uppercase; */
  writing-mode: sideways-lr;
  padding: 2rem 0;
}

.about-section .about-content-pic .about-image-container {
  width: 90%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.about-section .about-content-pic .about-image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  object-position: 60%;
}

.about-section .about-content-pic .about-image-container .owner-name-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: rgb(83, 40, 255);
  color: rgb(255, 255, 255);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 1rem;
  z-index: 2;
}
.about-section .about-content-pic .about-image-container .owner-name-tag h3 {
  margin: 0;
  padding: 0;
}
.about-section .about-content-pic .about-image-container .owner-name-tag p {
  margin: 0;
  padding: 0.5rem 0 0 0;
  font-size: 0.8rem;
}

.about-section .about-content-text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  box-sizing: border-box;
  width: 30rem;
  height: 35rem;
  padding: 2rem;
  position: relative;
  background: #ebebeb67;
  color: rgb(0, 0, 0);
  position: relative;
}

.about-section .about-content-text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url("./Assets/martin-martz-UlxfzEEN3HU-unsplash.jpg"); */
  /* background-size: cover; */
  opacity: 0.3;
  z-index: -1;
}

.about-section .about-content-text h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 5rem;
  margin: 0;
  align-self: center;
  position: absolute;
  top: -1rem;
}

.about-section .about-content-text p {
  margin-top: 4rem;
  font-size: 0.9rem;
}
.about-section .about-content-text .social-media-links-owner {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  margin-top: 1rem;
}
.about-section .about-content-text .social-media-links-owner a svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: rgb(48, 48, 48);
  transition: all 0.3s ease;
}

.about-section .about-content-text .numuz-logo-outlined {
  /* filter:invert() */
  height: 5rem;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 2rem;
}

.about-section .aboutus-counter-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  height: fit-content;
  width: 65rem;
  margin-top: 5rem;
}
.about-section .aboutus-counter-section > h1 {
  font-family: Helvetica;
  font-size: 2rem;
  margin: 0;
  width: 100%;
  text-align: center;
  font-weight: 100;
}
.about-section .aboutus-counter-section .counter-section {
  display: flex;
  flex-wrap: wrap;
  height: fit-content;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.about-section .aboutus-counter-section .counter-section .counter-con {
  height: 12rem;
  width: 12rem;
  background-color: rgb(83, 40, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
}
.about-section .aboutus-counter-section .counter-section .counter-con .counter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
}
.about-section
  .aboutus-counter-section
  .counter-section
  .counter-con
  .counter
  span {
  font-size: 3rem;
  font-weight: bolder;
}
.about-section
  .aboutus-counter-section
  .counter-section
  .counter-con
  .counter
  h2 {
  margin: 0;
  padding: 0;
  font-size: 3rem;
  font-weight: normal;
}
.about-section
  .aboutus-counter-section
  .counter-section
  .counter-con
  .counter
  h4 {
  margin: 0;
  padding: 0;
  font-size: 0.6rem;
  font-weight: lighter;
}

/* OUR SERVICES  */
.services-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  margin: 0;
  /* background: linear-gradient(
    0deg,
    hsla(298, 68%, 90%, 1) 0%,
    hsla(30, 82%, 91%, 1) 100%
  ); */
  background: linear-gradient(
    0deg,
    rgb(255, 255, 255) 0%,
    rgb(46, 7, 243) 100%
  );
}

.services-section .our-services-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 10rem;
  padding: 2rem 4rem;
  box-sizing: border-box;
  margin-bottom: 2rem;
  background-color: white;
}

.services-section .our-services-card img {
  height: 5rem;
  margin-right: 1rem;
}

.services-section .services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /* grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr)); */
  /* grid-template-rows: 2rem 1fr 1fr 2rem; */
  width: calc(20rem * 3 + 4rem);
  height: 95%;
  padding: 2rem;
  gap: 2rem;
}

.services-section .services-grid .service-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  box-sizing: border-box;
  padding: 1rem;
  background-color: white;
  transition: transform 0.3s ease;
  width: 20rem;
}

.services-section .services-grid .service-cards:hover {
  transform: scale(1.05);
  /* width: 40rem; */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.services-section .services-grid .service-cards .service-card-pic-section {
  width: 100%;
  height: 18rem;
  overflow: hidden;
  position: relative;
}

.services-section
  .services-grid
  .service-cards
  .service-card-pic-section
  .gradient-overlay {
  width: 100%;
  height: 100%;
  background: #ffffff;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  z-index: 2;
  position: absolute;
}

.services-section .services-grid .service-cards .service-card-pic-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.services-section .services-grid .service-cards .service-card-pic-section h2 {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: rgb(34, 34, 34);
  font-size: 1.25rem;
  z-index: 3;
  margin: 0;
  padding: 0;
  font-family: "Google Sans Code";
  font-weight: 300;
  font-style: italic;
}

.services-section .services-grid .service-cards .service-card-details {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  margin-top: 1rem;
  height: 12rem;
}

.service-card-details > p {
  font-size: 0.9rem;
  line-height: 1.3rem;
  color: rgb(80, 80, 80);
  margin: 0;
  border-left: 2px solid #f70e0e;
  padding-left: 1rem;
}

.service-card-details .price-and-contact {
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
  width: 100%;
  /* height: 5rem; */
  margin-top: 1rem;
  /* border-top: 0.5px solid #000; */
  padding-top: 0.8rem;
}

.service-card-details .price-and-contact span {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.service-card-details .price-and-contact span p {
  font-size: 0.7rem;
  margin: 0;
  color: rgb(80, 80, 80);
}

.service-card-details .price-and-contact span h3 {
  font-size: 1rem;
  margin: 0;
  margin-top: 0.25rem;
  color: rgb(0, 0, 0);
  display: flex;
  flex-direction: row;
  align-items: end;
  font-weight: normal;
  background-color: #f7f7f7;
  padding: 0.5rem;
  border-radius: 5px;
}
.service-card-details .price-and-contact span h3 > span {
  line-height: 1.5rem;
  padding: 0 0.25rem;
  font-size: 1.5rem;
  color: rgb(226, 52, 52);
  font-weight: bolder;
}

.service-card-details .price-and-contact a {
  margin: 0;
  padding: 0;
  height: 2rem;
}
.service-card-details .price-and-contact a img {
  margin: 0;
  height: 2rem;
}

/* GALLERY SECTION */
.gallery-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 65rem;
  height: 40rem;
  margin: 5vh 0;
  background-color: green;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.gallery-section .gallery-title {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background-color: rgb(0, 0, 0);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  box-sizing: border-box;
  padding: 0.5rem;
}

.gallery-section .gallery-title span h1 {
  margin: 0;
  font-size: 1.5rem;
  color: rgb(255, 255, 255);
  font-weight: lighter;
}
.gallery-section .gallery-title span p {
  margin: 0;
  font-size: 0.8rem;
  color: rgb(255, 255, 255);
  font-weight: lighter;
}
.gallery-section .gallery-title img {
  height: 2rem;
  padding: 0;
  margin-right: 0.5rem;
  filter: invert();
}

.gallery-section .gallery-top-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: start;
  overflow: hidden;
}

.gallery-section .gallery-container {
  height: 100%;
  width: fit-content;
  display: flex;
  position: absolute;
  transition: all 01s ease;
  /* align-items: start;
    justify-content: start; */
}

.gallery-section .gallery-container .img-con {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 90vw;
}
.gallery-section .gallery-container .img-con img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: grayscale(100); */
}

.gallery-section .gallery-progress-bar {
  height: 0.6rem;
  width: fit-content;
  background-color: rgb(205, 201, 201);
  position: absolute;
  z-index: 2;
  bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.5rem;
  padding: 0.3rem 0.5rem;
  border-radius: 5rem;
}
.gallery-section .gallery-progress-bar div.bar {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 5rem;
  padding: 0;
  margin: 0;
  background-color: rgb(92, 92, 92);
}

/* SOCIAL MEDIA POSTS */
.social-media-posts-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  width: 65rem;
  min-height: 20rem;
  box-sizing: border-box;
  margin: 0;
  padding: 3rem 0 2rem 0;
  /* background-color: red; */
  gap: 1rem;
  overflow-x: scroll;
}
.social-media-posts-section .instagram-media,
.social-media-posts-section .tiktok-embed {
  margin: 0;
  padding: 0;
  border: none;
  width: 20rem !important;
  height: 28rem !important;
}

/* FOOTER */
.footer-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: fit-content;
  box-sizing: border-box;
  background-color: #252525;
  color: white;
  font-size: 0.9rem;
}

.footer-section > img {
  width: 5rem;
  height: auto;
  background-color: none;
  margin-right: auto;
  margin-left: 5%;
  padding: 1rem 0;
}

.footer-section .footer-content {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  width: 90%;
  height: 100%;
  padding: 1rem 0;
  box-sizing: border-box;
  position: relative;
}

.footer-section .footer-content .footer-about {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  height: 100%;
}

.footer-section .footer-content .footer-about p {
  margin: 0;
  padding: 0;
}

.footer-section .footer-content .footer-contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 0.25rem;
}

.footer-section .footer-content .footer-about .footer-contact p {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.3rem;
}

.footer-section .footer-content .social-media-links-numuz {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  margin-top: 1rem;
}

.footer-section .footer-content .social-media-links-numuz h2 {
  margin: 0;
  padding: 0;
  font-size: 1rem;
}

.footer-section .footer-content .social-media-links-numuz .social-media-links {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  background-color: #3c3c3c;
  padding: 0.5rem 1rem;
  border-radius: 5rem;
}
.footer-section .footer-content .social-media-links-numuz h2 {
  margin: 0;
  padding: 0.8rem 0;
}
.footer-section .footer-content .social-media-links-numuz svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: white;
  transition: all 0.3s ease;
}

.footer-section .footer-content .social-media-links-numuz svg:hover {
  fill: #99c7fa;
  transform: scale(1.2);
  transition: all 0.3s ease;
}

.footer-section .footer-content .footer-quicklinks {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}

.footer-section .footer-content .footer-quicklinks ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.footer-section .footer-content .footer-quicklinks ul li {
  list-style: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: white;
}

.footer-section .footer-content .footer-quicklinks ul li a {
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.footer-section .footer-content .maps iframe {
  width: 25rem;
  height: 15rem;
  border: none;
  border-radius: 5px;
}

/* DEVELOPER SECTION */
.developer-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3rem;
  background-color: #ffffff;
  color: rgb(40, 40, 40);
  font-size: 0.8rem;
  gap: 1rem;
}
.developer-section p {
  margin: 0;
  padding: 0;
}
.developer-section img {
  height: 1rem;
}

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

/* FIRST BREAK POINT */
@media (max-width: 1120px) {
  /* ABOUT US SECTION */
  .gallery-section {
    width: 90%;
    height: 30rem;
  }

  .social-media-posts-section {
    width: 90%;
    height: fit-content;
    padding: 2rem 0 1rem 0;
  }

  .about-section {
    width: 100%;
  }
  .about-section .testimony {
    width: 100%;
    height: 35rem;
  }

  .about-section .about-content-pic {
    width: 55%;
    height: 100%;
  }
  .about-section .about-content-text {
    width: 45%;
    height: 100%;
  }

  /* SERVICES SECTION */
  .services-section .services-grid {
    width: calc(20rem * 2 + 2rem);
    grid-template-columns: 1fr 1fr;
  }
  .services-section .our-services-card {
    height: 8rem;
    margin-bottom: 2rem;
  }
}

/* Tablets (≤ 1024px) */
@media (max-width: 1024px) {
  /* HEADER  */

  /* HERO SECTION */
  .hero-section .hero-content .hero-content-subDiv h1 {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }
  .hero-section .hero-content .hero-content-subDiv p {
    font-size: 1.2rem;
    line-height: 1.2rem;
  }

  /* HERO SECTION */
  .hero-section .hero-content .hero-content-subDiv {
    padding-left: 2rem;
    gap: 1rem;
  }
}

/* BETWEEN TABLET & MOBILE */
@media (max-width: 930px) {
  /* HEADER */
  .header {
    height: 5rem;
    width: 100%;
    padding: 2rem 0;
  }

  .header img.logo {
    padding-left: 2rem;
    height: 5rem;
  }

  .header nav {
    padding-right: 2rem;
  }

  /* ABOUT US SECTION */
  .about-section .testimony {
    flex-direction: column;
    height: fit-content;
    width: 100%;
  }

  .aboutus-counter-section {
    width: 100vw;
    height: fit-content;
    margin-bottom: 5rem;
  }
  .aboutus-counter-section > p {
    display: none;
  }
  .aboutus-counter-section .counter-section {
    width: 100vw;
    gap: 1rem;
    height: fit-content;
    bottom: 0rem;
  }

  .about-section .about-content-pic {
    width: 100%;
    height: 30rem;
    /* flex-direction: column; */
  }
  .about-section .about-content-text {
    width: 100%;
    height: fit-content;
    padding: 2rem;
  }
  .about-section .about-content-text p {
    padding: 2.5rem 0;
  }

  /* SOCIAL MEDIA POSTS */
  .social-media-posts-section {
    height: fit-content;
    padding: 0;
    /* gap: 0rem; */
  }
  .social-media-posts-section iframe {
    margin: 0;
    padding: 0;
  }

  /* FOOTER SECCTION */
  .footer-section {
    height: fit-content;
    padding: 2rem 0;
  }
  .footer-section .footer-content {
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 0;
  }
  .footer-section .footer-content .footer-about .footer-contact {
    align-items: center;
  }
  .footer-section .footer-content .footer-about .social-media-links-numuz {
    width: 100%;
    align-items: center;
  }
  .footer-section .footer-content .footer-quicklinks {
    display: none;
  }
  .footer-section .footer-content .maps {
    width: 100%;
  }
  .footer-section .footer-content .maps iframe {
    width: 100%;
    height: 15rem;
  }
  .footer-section > img {
    width: 10rem;
    height: auto;
    margin: 0;
    padding: 1rem 0;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  /* HEADER */
  .header {
    height: 5rem;
    width: 100%;
    padding: 1rem 0;
  }

  .header nav {
    display: none;
  }

  .header #menus {
    display: block;
    padding-right: 2rem;
    font-size: 2rem;
  }

  .mobile-nav ul.nav-links li a {
    font-size: 0.7rem;
  }

  /* HERO SECTION */
  .hero-section {
    flex-direction: column-reverse;
    height: fit-content;
  }

  .hero-section .hero-content {
    width: 100%;
    height: fit-content;
    align-items: center;
    justify-content: center;
  }
  .hero-section .hero-content .hero-content-subDiv {
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    padding-left: 0;
    margin: 3rem 0;
  }

  .hero-section .hero-image-container {
    height: 50vh;
    width: 100%;
    object-fit: cover;
  }

  /* SERVICES SECTION */
  .services-section .our-services-card {
    height: 6rem;
    padding: 0.5rem 2rem;
    margin-bottom: 0rem;
    background-color: #fff;
  }
  .services-section .our-services-card img {
    height: 4rem;
  }

  .services-section .services-grid {
    width: 95%;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 2rem 0;
  }

  .services-section .services-grid .service-cards {
    width: 100%;
    margin: 0 auto;
    align-self: center;
    justify-self: center;
    padding: 0.5rem;
    border-radius: 5px;
  }

  .services-section .services-grid .service-cards .service-card-pic-section {
    height: 10rem;
  }
  .services-section .services-grid .service-cards .service-card-pic-section h2 {
    font-size: 1rem;
    left: 0.5rem;
    bottom: 0.5rem;
  }
  .services-section .services-grid .service-cards .service-card-details {
    margin-top: 0.5rem;
    min-height: 8rem;
    height: fit-content;
  }
  .services-section .services-grid .service-cards .service-card-details p {
    font-size: 0.7rem;
    line-height: 0.9rem;
    padding-left: 0.5rem;
  }
  .services-section
    .services-grid
    .service-cards
    .service-card-details
    .price-and-contact {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
  }
  .services-section
    .services-grid
    .service-cards
    .service-card-details
    .price-and-contact
    p {
    font-size: 0.6rem;
    margin: 0;
    padding-left: 0rem;
  }
  .services-section
    .services-grid
    .service-cards
    .service-card-details
    .price-and-contact
    span
    h3 {
    font-size: 0.7rem;
    padding: 0.2rem;
  }
  .services-section
    .services-grid
    .service-cards
    .service-card-details
    .price-and-contact
    span
    h3
    > span {
    font-size: 1rem;
    line-height: 1rem;
  }
  .services-section
    .services-grid
    .service-cards
    .service-card-details
    .price-and-contact
    a {
    height: 1.5rem;
  }
  .services-section
    .services-grid
    .service-cards
    .service-card-details
    .price-and-contact
    a
    img {
    height: 1.5rem;
  }

  /* ABOUT US SECTION */
  .about-section .about-content-text img.numuz-logo-outlined {
    height: 4rem;
  }

  /* DEVELOPER SECTION */
  .developer-section {
    height: fit-content;
    flex-direction: column;
    font-size: 0.7rem;
    padding: 0.5rem;
    box-sizing: border-box;
  }

  .hero-section
    .hero-content
    .hero-content-subDiv
    p
    .services-slides-container
    .services-slides {
    align-items: center;
  }

  .hero-section .hero-content .hero-content-subDiv p {
    height: fit-content;
    flex-direction: column;
    gap: 1rem;
  }
}
