* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  cursor: default;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

html,
body {
  width: 100%;
  height: 100%;
}

::-webkit-scrollbar {
  width: 5px;
  background: linear-gradient(lightgray, #4a5a6a);
}

::-webkit-scrollbar-track {
  width: 5px;
  background: linear-gradient(lightgray, #4a5a6a);
  border-radius: 6px;
  margin-block: 5px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(transparent, hsl(45, 80%, 55%));
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(transparent, hsl(30, 100%, 50%));
}

#main {
  position: relative;
}

.whatsappButton {
  position: fixed;
  bottom: 28%;
  padding: 10px;
  background-color: #29b95e;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  z-index: 9999;
}

.whatsappButton a {
  text-decoration: none;
  color: hsl(0, 0%, 98%);
  cursor: pointer;
}

.whatsappButton #fixed i {
  font-size: 45px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .whatsappButton {
    padding: 8px;
    bottom: 18%;
  }

  .whatsappButton #fixed i {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .whatsappButton {
    right: 2%;
    left: 2%;
    padding: 8px;
  }

  .whatsappButton #fixed i {
    font-size: 35px;
  }
}

@media (max-width: 480px) {
  .whatsappButton {
    bottom: 15%;
    right: 4%;
    left: 4%;
    padding: 6.5px;
  }

  .whatsappButton #fixed i {
    font-size: 30px;
  }
}

.page1 {
  /* hsla(44, 80%, 66%, 0.882) */
  width: 100%;
  min-height: 100vh;
  position: relative;
  /* background: #f6c955ec url("visuals/lpheader.png") center/cover no-repeat; */
  /* padding: 0 3%; */
  z-index: 20;
}

.bgSlider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: fadeAnimation 32s infinite;
  animation-timing-function: ease-in-out;
}

.slide1 {
  background-image: url('visuals/h1.jpeg');
  animation-delay: 0s;
}

.slide2 {
  background-image: url('visuals/h2.jpeg');
  animation-delay: 4s;
}

.slide3 {
  background-image: url('visuals/h3.png');
  animation-delay: 8s;
}

.slide4 {
  background-image: url('visuals/h4.png');
  animation-delay: 12s;
}

.slide5 {
  background-image: url('visuals/h5.jpeg');
  animation-delay: 16s;
}

.slide6 {
  background-image: url('visuals/h6.jpeg');
  animation-delay: 20s;
}

.slide7 {
  background-image: url('visuals/h7.jpeg');
  animation-delay: 24s;
}

.slide8 {
  background-image: url('visuals/h8.jpeg');
  animation-delay: 28s;
}

@keyframes fadeAnimation {
  0% {
    opacity: 0;
  }

  6.25% {
    opacity: 1;
  }

  18.75% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}


.page1 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.page1-content {
  position: relative;
  z-index: 2;
}

.page1 header {
  width: 100%;
  min-height: 150px;
  padding: 10px 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page1 .left {
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: start;
}

.page1 .logo img {
  width: 160px;
  height: 160px;
}

.page1 nav {
  width: 60%;
  margin: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page1 nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.25rem;
  gap: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.page1 nav a:hover {
  color: #f6c955;
}

.page1 .right button {
  padding: 8px;
  background: transparent;
  color: #d5d5d5;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.page1 .right button:hover {
  color: #f6c955ec;
}

.page1 .container {
  width: 100%;
  padding: 20px 3%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.page1 .content {
  position: absolute;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(0, 0%, 98%);
  padding: 1rem 1.2rem;
  margin-top: 2.5rem;
  line-height: 3rem;
  width: 50vw;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 1.5s ease forwards;
  opacity: 0;
  z-index: 5;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .page1 .left {
    width: 85%;
    align-items: center;
  }

  .page1 .logo img {
    margin-top: 10px;
    width: 120px;
    height: 120px;
  }

  .page1 nav {
    width: 100%;
    flex-wrap: wrap;
    margin: 0;
    gap: 0.5rem;
    justify-content: space-between;
  }

  .page1 nav a {
    font-size: 1rem;
  }

  .page1 .right button {
    font-size: 1.2rem;
  }

  .page1 .content {
    width: 70vw;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 2.5rem;
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page1 {
    height: 100vh;
    justify-content: space-between;
  }

  .page1 header {
    padding: 10px 0%;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .page1 .left {
    flex-direction: column;
    width: 80%;
    align-items: flex-start;
    gap: 1rem;
  }

  .page1 .left .logo img {
    width: 120px;
    height: 120px;
  }

  .page1 .right {
    padding: 10px 3%;
  }

  html[lang="ar"] .page1 .right button {
    margin-top: 80%;

  }

  html[lang="en"] .page1 .right button {
    margin-top: 50%;
    font-size: 1.25rem;
  }

  .page1 nav {
    flex-direction: column;
    width: 100%;
    margin: 0;
    font-size: 1rem;
    padding: 10px 5%;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .page1 .container {
    flex-direction: column;
    justify-content: center;
    min-height: 60vh;
    align-items: center;
    padding-top: 0rem;
  }

  .page1 .content {
    position: absolute;
    font-weight: 400;
    padding: 0 1.65rem;
    line-height: 1.8rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease forwards;
    opacity: 1;
    z-index: 5;
    font-size: 1.65rem;
  }
}

@media (max-width: 480px) {
  .page1 .logo img {
    margin-top: 10px;
    width: 90px;
    height: 90px;
  }

  html[lang="ar"] .page1 .right button {
    margin-top: 85%;

  }

  html[lang="en"] .page1 .right button {
    margin-top: 65%;
    font-size: 1rem;
  }

  .page1 nav a {
    font-size: 1rem;
  }

  .page1 .content {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.5rem;
    width: 100%;
    padding: 0 1rem;
    margin-bottom: 3rem;
  }
}

.page2 {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3%;
  background-color: hsl(0, 0%, 98%);
}

.page2 .top {
  text-align: center;
  margin: 40px 0;
}

.page2 .top h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #f6c955ec;
  margin-bottom: 8px;
}

.page2 .top p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #1b1b32;
  letter-spacing: 1.2px;
}

.page2 .bottom {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0;
  gap: 30px;
  justify-content: center;
}

.infocard {
  border: 1px solid rgba(246, 201, 85, 0.35);
  background: hsl(0, 0%, 97.5%);
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  flex: 1 1 320px;
  max-width: 380px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.infocard:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.infocard h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #f6c955ec;
  margin-bottom: 15px;
  border-bottom: 3px solid #f6c955ec;
  display: inline-block;
  padding-bottom: 5px;
}

.infocard p {
  font-size: 1rem;
  line-height: 1.65;
  color: #1b1b32;
}

@media (max-width: 1024px) {
  .page2 {
    padding: 0 30px;
  }

  .page2 .top h1 {
    font-size: 2.5rem;
  }

  .page2 .top p {
    font-size: 1.3rem;
  }

  .infocard {
    flex: 1 1 45%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page2 {
    padding: 0 20px;
  }

  .page2 .top h1 {
    font-size: 2.2rem;
  }

  .page2 .top p {
    font-size: 1.2rem;
  }

  .page2 .bottom {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .infocard {
    padding: 25px 20px;
    max-width: 100%;
  }

  .infocard h2 {
    font-size: 1.5rem;
  }

  .infocard p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .page2 {
    padding: 0 15px;
  }

  .page2 .top h1 {
    font-size: 1.8rem;
  }

  .page2 .top p {
    font-size: 1rem;
  }

  .infocard {
    padding: 20px 15px;
    border-radius: 8px;
  }

  .infocard h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    border-bottom-width: 2px;
  }

  .infocard p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

.page21 {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3%;
  background-color: hsl(0, 0%, 98%);
}

.page21 .top {
  text-align: center;
  margin: 40px 0;
}

.page21 .top h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #f6c955ec;
  margin-bottom: 10px;
}

.page21 .top p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #1b1b32;
  letter-spacing: 1.2px;
}

.page21 .bottom {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.service-card {
  /* background-color: hsl(240, 30%, 15%); */
  /* background-color: hsl(0, 0%, 98%); */
  /* background-color: hsl(30, 30%, 40%); */
  /* background: linear-gradient(to right, hsl(30, 80%, 20%), hsl(44, 80%, 66%), hsl(60, 80%, 70%)); */
  border: 1px solid rgba(246, 201, 85, 0.35);
  border-radius: 8px;
  padding: 20px;
  max-width: 360px;
  /* height: auto; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 320px;
  gap: 3vh;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  font-family: Arial, sans-serif;
}

.service-card i {
  font-size: 80px;
  color: hsl(44, 85%, 65%, 0.95);
  border: solid hsla(44, 80%, 66%, 0.9) 1px;
  padding: 10px;
  margin-bottom: 5px;
  border-radius: 5px;
  box-shadow: 0 3px 9px hsl(44, 80%, 66%);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.service-card .info-service {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.service-card .info-service h3 {
  width: 95%;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsla(44, 80%, 66%, 0.882);
  margin-bottom: 1rem;
}

.service-card .info-service i.ph-check-fat {
  width: 100%;
  color: #29b95e;
  font-size: 18px;
  border: solid 1px bisque;
  display: flex;
  align-items: center;
  box-shadow: none;
}

.service-card .info-service i.ph-check-fat p {
  font-size: 1rem;
  padding: 0 10px;
  color: #1b1b32;
}

@media (max-width: 1024px) {
  .page21 {
    padding: 0 30px;
  }

  .page21 .top h1 {
    font-size: 2.5rem;
  }

  .page21 .top p {
    font-size: 1.3rem;
  }

  .service-card {
    flex: 1 1 45%;
    max-width: 100%;
  }

  .service-card .info-service h3 {
    font-size: 1.4rem;
  }

  .service-card .info-service i.ph-check-fat p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .page21 {
    padding: 0 20px;
  }

  .page21 .top h1 {
    font-size: 2.2rem;
  }

  .page21 .top p {
    font-size: 1.2rem;
  }

  .page21 .bottom {
    flex-direction: column;
    gap: 25px;
    align-items: stretch;

  }

  .service-card {
    max-width: 100%;
    padding: 25px 20px;
  }

  .service-card i {
    font-size: 60px;
  }

  .service-card .info-service h3 {
    font-size: 1.3rem;
  }

  .service-card .info-service i.ph-check-fat p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .page21 {
    padding: 0 15px;
  }

  .page21 .top h1 {
    font-size: 1.8rem;
  }

  .page21 .top p {
    font-size: 1rem;
  }

  .service-card {
    padding: 20px 15px;
    border-radius: 6px;
  }

  .service-card i {
    font-size: 65px;
    padding: 8px;
  }

  .service-card .info-service h3 {
    font-size: 1.2rem;
  }

  .service-card .info-service i.ph-check-fat p {
    font-size: 0.85rem;
  }
}


.page3 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 5vh 3%;
  overflow: auto;
  display: flex;
  flex-direction: column;

}

.page3 h1 {
  color: hsla(44, 80%, 66%, 0.882);
  text-align: center;
  font-size: 2.5rem;
  padding-bottom: 1.5rem;
}

.page3 p {
  width: 60%;
  font-size: 1rem;
  font-weight: 500;
  padding-bottom: 3rem;
  margin: 0 auto;
  text-align: center;
  color: #1b1b32;
}

.page3 .swiper {
  position: relative;
  width: 100%;
  min-height: 80vh;
  padding: 20px;
}

.page3 .swiper .swiper-wrapper {
  padding-bottom: 12vh;
}

.page3 .swiper .swiper-wrapper .swiper-slide {
  font-size: 18px;
  height: 300px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 0;
  background-color: hsl(0, 0%, 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page3 .swiper .swiper-wrapper .swiper-slide .profile {
  position: relative;
  width: 95%;
  height: 25vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  overflow: hidden;
  border: hsl(0, 0%, 100%) 3px solid;
  border-radius: 10px;
}

.page3 .swiper .swiper-wrapper .swiper-slide .profile img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page3 .swiper .swiper-wrapper .swiper-slide .profile-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page3 .swiper .swiper-wrapper .swiper-slide .profile-content h3 {
  width: 100%;
  color: #1b1b32;
  font-size: 1.5rem;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 10px 15px;
}

.page3 .swiper .swiper-wrapper .swiper-slide .profile-content h5 {
  display: inline-block;
  font-size: 1.5rem;
  padding: 10px 15px;
}

.page3 .swiper .swiper-wrapper .swiper-slide .profile-content a {
  width: 100%;
  font-size: 2rem;
  color: #1b1b32;
  text-decoration: none;
  padding-left: 15px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.page3 .swiper .swiper-wrapper .swiper-slide .profile-content a i {
  color: rgba(200, 25, 25, 0.945);
  cursor: pointer;
  padding-right: 5px;
}

.page3 .swiper .swiper-wrapper .swiper-slide .profile-content span i {
  color: rgba(200, 25, 25, 0.945);
  cursor: pointer;
  padding-right: 5px;
}

.page3 .swiper .swiper-wrapper .swiper-slide .profile-content span {
  width: 100%;
  font-size: 1.5rem;
  padding: 5px;
  color: hsl(240, 30%, 15%);
  padding-left: 18px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.page3 .swiper .swiper-wrapper .swiper-slide .profile-content h4 {
  width: 100%;
  font-size: 1.2rem;
  color: #1b1b32;
  padding: 5px;
  padding-left: 18px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.page3 .swiper .swiper-wrapper .swiper-slide .profile-content p {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  font-size: 1.2rem;
  width: 100%;
  min-height: 280px;
  padding: 20px 30px;
  text-align: left;
}

.page3 .swiper .swiper-pagination {
  text-align: center;
}

.page3 .swiper .swiper-pagination-bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: hsla(44, 100%, 68%, 0.962);
  color: #1b1b32;
  font-weight: bolder;
  font-size: 14px;
  opacity: 0.5;
  margin: 0 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.page3 .swiper .swiper-pagination-bullet-active {
  background-color: hsla(44, 100%, 68%, 0.962);
  opacity: 1;
  transform: scale(1.1);
}

@media (min-width: 1200px) {
  .page3 {
    padding: 5vh 3%;
  }

  .page3 h1 {
    font-size: 2.8rem;
  }

  .page3 p {
    font-size: 1.2rem;
    width: 55%;
  }

  .page3 .swiper {
    padding: 20px;
  }

  .page3 .swiper .swiper-wrapper .swiper-slide {
    padding: 10px 0;
  }

  .page3 .swiper .swiper-wrapper .swiper-slide .profile {
    height: 25vh;
  }

  .page3 .swiper .swiper-wrapper .swiper-slide .profile-content p {
    font-size: 1.2rem;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .page3 {
    padding: 4vh 4%;
  }

  .page3 h1 {
    font-size: 2.3rem;
  }

  .page3 p {
    font-size: 1rem;
    width: 70%;
  }

  .page3 .swiper {
    padding: 15px;
  }

  .page3 .swiper .swiper-wrapper .swiper-slide .profile {
    height: 22vh;
  }

  .page3 .swiper .swiper-wrapper .swiper-slide .profile-content h3,
  .page3 .swiper .swiper-wrapper .swiper-slide .profile-content h5,
  .page3 .swiper .swiper-wrapper .swiper-slide .profile-content span,
  .page3 .swiper .swiper-wrapper .swiper-slide .profile-content h4 {
    font-size: 1.3rem;
  }

  .page3 .swiper .swiper-wrapper .swiper-slide .profile-content p {
    font-size: 1.1rem;
  }

  .page3 .swiper .swiper-pagination-bullet {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .page3 {
    padding: 3vh 5%;
  }

  .page3 h1 {
    font-size: 2rem;
  }

  .page3 p {
    font-size: 0.95rem;
    width: 90%;
  }

  .page3 .swiper {
    padding: 10px;
  }

  .page3 .swiper .swiper-wrapper .swiper-slide .profile {
    height: 20vh;
  }

  .page3 .swiper .swiper-wrapper .swiper-slide .profile-content h3,
  .page3 .swiper .swiper-wrapper .swiper-slide .profile-content h5,
  .page3 .swiper .swiper-wrapper .swiper-slide .profile-content span,
  .page3 .swiper .swiper-wrapper .swiper-slide .profile-content h4 {
    font-size: 1.2rem;
  }

  .page3 .swiper .swiper-wrapper .swiper-slide .profile-content p {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page3 .swiper .swiper-pagination-bullet {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .page3 {
    padding: 2.5vh 4%;
  }

  .page3 h1 {
    font-size: 1.6rem;
    padding-bottom: 1rem;
  }

  .page3 p {
    font-size: 0.9rem;
    width: 95%;
  }

  .page3 .swiper {
    padding: 10px 5px;
  }

  .page3 .swiper .swiper-wrapper .swiper-slide {
    padding: 8px 0;
  }

  .page3 .swiper .swiper-wrapper .swiper-slide .profile {
    height: 18vh;
  }

  .page3 .swiper .swiper-wrapper .swiper-slide .profile-content h3,
  .page3 .swiper .swiper-wrapper .swiper-slide .profile-content h5,
  .page3 .swiper .swiper-wrapper .swiper-slide .profile-content span,
  .page3 .swiper .swiper-wrapper .swiper-slide .profile-content h4 {
    font-size: 1rem;
  }

  .page3 .swiper .swiper-wrapper .swiper-slide .profile-content p {
    font-size: 0.95rem;
    padding: 15px;
  }

  .page3 .swiper .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    font-size: 10px;
    margin: 0 4px;
  }
}

.project-section {
  background-color: rgba(240, 225, 150, 0.35);
  width: 100%;
  min-height: 60vh;
  padding: 5vh 3%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.project-section .project-content h1 {
  color: rgba(238, 201, 99, 0.882);
  font-size: 2.8rem;
  padding-bottom: 1.5rem;
  text-align: center;
}

.project-section .project-content p {
  width: 60%;
  font-size: 1.2rem;
  font-weight: 500;
  padding-bottom: 3rem;
  margin: 0 auto;
  color: #1b1b32;
  text-align: center;
}

.project-section .projects-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  padding: 20px 0;
}

.project-section .project-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: hsl(43, 100%, 94.5%);
  border: 1px solid rgba(238, 201, 99, 0.15);
  box-shadow: 0 4px 8px rgba(238, 201, 99, 0.15);
  padding: 10px;
  border-radius: 10px;
}

.project-section .card {
  background-size: cover;
  background-position: center;
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.project-section .overlay {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  transition: all ease 0.5s;
}

.project-section .card-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 200px;
  width: 65%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: transform 0.4s ease;
}

.project-section .card:hover .card-logo {
  transform: translate(-50%, -50%) scale(1.35);
}

.project-section .card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1b1b32;
  text-align: center;
  margin: 2rem;
  text-shadow: 2px 4px 10px rgba(27, 27, 50, 0.35);
}

.project-section .card-button {
  background-color: #eec963e1;
  color: #1b1b32;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  margin-bottom: 0.5rem;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  width: fit-content;
}

.project-section .card-button:hover {
  background-color: #1b1b32;
  color: #eec963e1;
}

@media (max-width: 1024px) {
  .project-section .project-content h1 {
    font-size: 2.2rem;
  }

  .project-section .project-content p {
    width: 80%;
    font-size: 1.1rem;
  }

  .project-section .card-logo {
    max-width: 200px;
    width: 75%;
  }

  .project-section .card:hover .card-logo {
    transform: translate(-50%, -50%) scale(1.35);
  }

  .project-section .card-title {
    font-size: 1.85rem;
  }

  .project-section .card-button {
    font-size: 1.35rem;
    width: 50%;
    padding: 10px 0;
  }
}

@media (max-width: 768px) {
  .project-section .project-content h1 {
    font-size: 2rem;
  }

  .project-section .project-content p {
    width: 90%;
    font-size: 1rem;
  }

  .project-section .card-logo {
    max-width: 215px;
    width: 75%;
  }

  .project-section .card:hover .card-logo {
    transform: translate(-50%, -50%) scale(1.35);
  }

  .project-section .card-title {
    font-size: 1.75rem;
  }

  .project-section .card-button {
    font-size: 1.25rem;
    width: 50%;
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .project-section .project-content h1 {
    font-size: 1.6rem;
    padding-bottom: 1rem;
  }

  .project-section .project-content p {
    width: 95%;
    font-size: 0.95rem;
    padding-bottom: 2rem;
  }

  .project-section .card-logo {
    width: 100%;
    max-width: 250px;
  }

  .project-section .card:hover .card-logo {
    transform: translate(-50%, -50%) scale(1.5);
  }

  .project-section .card-title {
    font-size: 2.4rem;
  }

  .project-section .card-button {
    width: 50%;
    font-size: 1.5rem;
    padding: 10px 0;
  }
}


.achievement-section {
  background-color: hsl(43, 100%, 94.5%);
  width: 100%;
  min-height: 60vh;
  padding: 5vh 3%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.achievement-section .achievement-content h1 {
  color: #eec963e1;
  text-align: center;
  font-size: 2.8rem;
  padding-bottom: 1.5rem;
}

.achievement-section .achievement-content p {
  width: 60%;
  font-size: 1.2rem;
  font-weight: 500;
  padding-bottom: 3rem;
  margin: 0 auto;
  text-align: center;
  color: #1b1b32;
  ;
}

.achievement-section .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  padding: 20px 0;
}

.card {
  position: relative;
  background-size: cover;
  background-position: center;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.card:hover .card-logo {
  transform: translate(-50%, -50%) scale(1.5);
}

.card:hover .overlay {
  opacity: 0.2;
}

.overlay {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  transition: all ease 0.5s;
}

.card-logo {
  position: absolute;
  z-index: 3;
  max-width: 195px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

@media (min-width: 1200px) {
  .achievement-section {
    padding: 5vh 3%;
  }

  .achievement-section .achievement-content h1 {
    font-size: 2.8rem;
  }

  .achievement-section .achievement-content p {
    font-size: 1.2rem;
    width: 60%;
  }

  .achievement-section .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .achievement-section {
    padding: 4vh 4%;
  }

  .achievement-section .achievement-content h1 {
    font-size: 2.3rem;
  }

  .achievement-section .achievement-content p {
    font-size: 1.1rem;
    width: 75%;
  }

  .achievement-section .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-logo {
    max-width: 125px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .achievement-section {
    padding: 3vh 5%;
  }

  .achievement-section .achievement-content h1 {
    font-size: 2rem;
  }

  .achievement-section .achievement-content p {
    font-size: 1rem;
    width: 90%;
  }

  .achievement-section .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-logo {
    max-width: 135px;
  }
}

@media (max-width: 480px) {
  .achievement-section {
    padding: 2.5vh 5%;
  }

  .achievement-section .achievement-content h1 {
    font-size: 1.6rem;
    padding-bottom: 1rem;
  }

  .achievement-section .achievement-content p {
    font-size: 0.95rem;
    width: 95%;
    padding-bottom: 2rem;
  }

  .achievement-section .card-grid {
    grid-template-columns: 1fr;
  }

  .card-logo {
    max-width: 185px;
  }
}

.page4 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 3%;
  background-color: hsl(0, 0%, 98%);
}

.page4 .heading {
  text-align: center;
  margin: 40px 0;
}

.page4 .heading h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #f6c955ec;
  margin-bottom: 8px;
}

.page4 .heading p {
  color: #1b1b32;
  font-size: 1.2rem;
}

.page4 .diff-card-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5%;
}

.page4 .diff-cards {
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
  width: 100%;
  padding: 2rem 1rem;
  background-color: hsl(0, 0%, 100%);
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.page4 .diff-cards img {
  width: 50vw;
  height: 350px;
  border-radius: 10px;
}

.page4 .diff-cards .content {
  height: 350px;
  padding: 15px;
  object-fit: cover;
  object-position: center;
}

.page4 .diff-cards h2 {
  font-size: 2rem;
  color: hsla(44, 80%, 66%, 0.882);
  margin-bottom: 1rem;
}

.page4 .diff-cards p {
  color: #1b1b32;
  font-size: 1.25rem;
  line-height: 1.65rem;
  width: 85%;
}

@media (max-width: 1024px) {
  .page4 {
    padding: 5vh 4%;
  }

  .page4 .heading h2 {
    font-size: 2.4rem;
  }

  .page4 .heading p {
    font-size: 1.1rem;
    width: 90%;
    margin: 0 auto;
  }

  .page4 .diff-cards {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    gap: 1rem;
  }

  .page4 .redesign {
    flex-direction: column-reverse;
  }

  .page4 .diff-cards img {
    width: 95%;
    height: 35vh;
  }

  .page4 .diff-cards .content {
    height: auto;
    text-align: center;
    padding: 1rem 0;
  }

  .page4 .diff-cards p {
    width: 90%;
    margin: 0 auto;
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) and (min-width: 481px) {
  .page4 {
    padding: 5vh 5%;
  }

  .page4 .heading h2 {
    font-size: 2rem;
  }

  .page4 .heading p {
    font-size: 1rem;
    width: 100%;
  }

  .page4 .diff-cards {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .page4 .diff-cards img {
    width: 90%;
    height: 30vh;
  }

  .page4 .diff-cards .content {
    padding: 1rem 0;
    text-align: center;
  }

  .page4 .diff-cards h2 {
    font-size: 1.6rem;
  }

  .page4 .diff-cards p {
    font-size: 1rem;
    width: 95%;
  }

  .page4 .redesign {
    flex-direction: column-reverse;
  }
}

@media (max-width: 480px) {
  .page4 {
    padding: 5vh 6%;
  }

  .page4 .heading h2 {
    font-size: 1.8rem;
  }

  .page4 .heading p {
    font-size: 0.95rem;
  }

  .page4 .diff-cards {
    flex-direction: column;
    padding: 1rem;
  }

  .page4 .diff-cards img {
    width: 100%;
    height: 25vh;
  }

  .page4 .diff-cards h2 {
    font-size: 1.4rem;
  }

  .page4 .diff-cards p {
    font-size: 0.95rem;
    line-height: 1.4rem;
    width: 100%;
  }

  .page4 .redesign {
    flex-direction: column-reverse;
  }
}

.page5 {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 0 3%;
  background-color: #1b1b32;
  box-sizing: border-box;
}

.page5 .top {
  width: fit-content;
  font-size: 3rem;
  padding: 10px 40px;
  font-weight: bolder;
  color: hsla(44, 80%, 66%, 0.882);
  border-bottom: hsla(44, 80%, 66%, 0.882) solid 3.5px;
  margin-top: 1rem;
}

.page5 .bottom {
  width: 100%;
  flex: 1;
  display: flex;
  overflow: hidden;
  box-sizing: border-box;
}

.page5 .bottom .img-overlay {
  position: relative;
  width: 50%;
  min-height: 50vh;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page5 .bottom .img-overlay img,
.page5 .bottom .img-overlay .overlay {
  position: absolute;
  top: 5vh;
  left: 5vh;
  right: 5vh;
  width: 85%;
  height: 85%;
  border-radius: 10px;
}

.page5 .bottom .img-overlay img {
  z-index: 8;
}

.page5 .bottom .img-overlay .overlay {
  background-color: #000000;
  opacity: 0.5;
  z-index: 10;
  transition: all ease 0.8s;
}

.page5 .bottom .img-overlay .overlay:hover {
  opacity: 0.25;
}

.page5 .bottom form {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.page5 .bottom form input,
.page5 .bottom form textarea {
  max-width: 95%;
  color: #dedede;
  background-color: transparent;
  outline: none;
  border: none;
}

.page5 .bottom form input {
  padding: 8px 3px;
  font-size: 1.5rem;
  border-bottom: 2px solid #dedede;
}

.page5 .bottom form input:focus {
  color: white;
  border-bottom: 3px solid hsla(44, 80%, 66%, 0.882);
  font-weight: 400;
}

.page5 .bottom form textarea {
  height: 150px;
  padding: 8px 10px;
  font-size: 1.25rem;
  font-weight: 400;
  border: 2px solid #dedede;
}

.page5 .bottom form textarea:focus {
  border: 3px solid hsla(44, 80%, 66%, 0.882);
}

.page5 .bottom input::placeholder,
.page5 .bottom textarea::placeholder {
  color: #dedede;
  font-size: 1.8rem;
  opacity: 1;
}

.page5 .bottom form .form-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.page5 .bottom form button {
  width: 50%;
  padding: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: hsla(44, 80%, 66%, 0.882);
  border: hsla(44, 80%, 66%) 2px solid;
  background-color: transparent;
  transition: all ease 0.5s;
  cursor: pointer;
}

.page5 .bottom form button:hover {
  color: white;
  background-color: hsla(44, 80%, 66%, 0.882);
}

.page5 .bottom form .call-us {
  display: flex;
  align-items: center;
  gap: 8px;
  color: hsla(44, 80%, 66%, 0.882);
  font-size: 1rem;
  font-weight: 500;
}

.page5 .bottom form .call-us i.ph {
  font-size: 1.8rem;
  color: hsla(44, 80%, 66%);
  background-color: #1b1b32;
  border: solid 2px hsla(44, 80%, 66%);
  border-radius: 50%;
  padding: 5px;
  transition: all ease 0.5s;
}

.page5 .bottom form .call-us:hover i.ph {
  transform: scale(1.2);
}

.page5 .bottom form .call-us a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.page5 .bottom form .call-us a:hover {
  color: hsla(44, 80%, 66%, 0.882);
}

@media (max-width: 1024px) {
  .page5 .top {
    font-size: 2.5rem;
    padding: 8px 30px;
  }

  .page5 .bottom form {
    width: 50%;
    gap: 1.2rem;
  }

  .page5 .bottom form button {
    width: 60%;
    font-size: 1.15rem;
  }

  .page5 .bottom input::placeholder,
  .page5 .bottom textarea::placeholder {
    font-size: 1.65rem;
  }

  .page5 .bottom form input,
  .page5 .bottom form textarea {
    font-size: 1.4rem;
  }
}

@media (max-width: 767px) {
  .page5 {
    justify-content: center;
  }

  .page5 .top {
    font-size: 2.4rem;
    padding: 5px 25px;
    border-bottom: hsla(44, 80%, 66%, 0.882) solid 3px;
    margin-top: 0.35rem;
  }

  .page5 .bottom {
    flex-direction: column;
  }

  .page5 .bottom .img-overlay {
    position: relative;
    width: 100%;
    min-height: 32.5vh;
  }

  .page5 .bottom .img-overlay img,
  .page5 .bottom .img-overlay .overlay {
    position: absolute;
    top: 5%;
    left: 5%;
    right: 5%;
    width: 85%;
    height: 85%;
    min-height: 30vh;
  }

  .page5 .bottom form {
    width: 100%;
    gap: 1.2rem;
    margin-top: 0.8rem;
  }

  .page5 .bottom form input {
    padding: 5px 1.85px;
    font-size: 1.2rem;
    border-bottom: 2px solid #dedede;
  }

  .page5 .bottom form textarea {
    height: 120px;
    padding: 8px 10px;
    font-size: 1.2rem;
    font-weight: 400;
    border: 2px solid #dedede;
  }

  .page5 .bottom form textarea:focus {
    border: 3px solid hsla(44, 80%, 66%, 0.882);
  }

  .page5 .bottom input::placeholder,
  .page5 .bottom textarea::placeholder {
    font-size: 1.2rem;
  }

  .page5 .bottom form .form-actions {
    gap: 1.5rem;
  }

  .page5 .bottom form button {
    width: 50%;
    padding: 7.5px;
    font-size: 1.35rem;
  }

  .page5 .bottom form .call-us {
    gap: 8px;
    font-size: 1rem;
  }

  .page5 .bottom form .call-us i.ph {
    font-size: 1.5rem;
  }

}

@media (max-width: 480px) {

  .page5 .top {
    font-size: 2rem;
    padding: 5px 15px;
    margin-bottom: 0.5rem;
  }

  .page5 .bottom {
    flex-direction: column;
    overflow-y: auto;
  }

  page5 .bottom .img-overlay {
    position: relative;
    width: 100%;
    min-height: 30vh;
  }

  .page5 .bottom .img-overlay img,
  .page5 .bottom .img-overlay .overlay {
    position: absolute;
    top: 5%;
    left: 5%;
    right: 5%;
    width: 85%;
    height: 85%;
    min-height: 30vh;
  }

  .page5 .bottom form {
    width: 100%;
    gap: 1rem;
    margin-top: 0.5rem;
  }

  .page5 .bottom form input {
    padding: 5px 2px;
    font-size: 1rem;
    border-bottom: 2px solid #dedede;
  }

  .page5 .bottom form textarea {
    height: 95px;
    padding: 4px 5px;
    font-size: 1rem;
    font-weight: 400;
    border: 2px solid #dedede;
  }

  .page5 .bottom form textarea:focus {
    border: 3px solid hsla(44, 80%, 66%, 0.882);
  }

  .page5 .bottom input::placeholder,
  .page5 .bottom textarea::placeholder {
    font-size: 1rem;
  }

  .page5 .bottom form .form-actions {
    gap: 1.5rem;
  }

  .page5 .bottom form button {
    width: 100%;
    padding: 6.5px;
    font-size: 1.35rem;
  }

  .page5 .bottom form .form-actions {
    gap: 0.885rem;
  }

  .page5 .bottom form .call-us {
    gap: 8px;
    font-size: 1rem;
    margin-left: 0.5rem;
  }

  .page5 .bottom form .call-us i.ph {
    font-size: 1.2rem;
  }
}


footer {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: hsl(240, 30%, 15%);
  padding: 2rem 3%;
}

footer .footer-content {
  min-height: 15rem;
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
}

footer .footer-content h2 {
  color: #999999;
  text-transform: uppercase;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

footer .footer-content a {
  display: block;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  cursor: pointer;
  padding: 5px 0;
}

footer .footer-content a:hover {
  color: hsla(44, 80%, 66%, 0.882);
}

footer .footer-content .b0 p {
  font-size: 1.2rem;
  color: #999999;
  padding: 0 20px;
}

footer .footer-content .map-container {
  width: 35%;
}

footer .footer-content .b0 p a {
  padding-left: 20px;
}

footer .icons-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .icons-container .left .logo img {
  width: 180px;
  height: 180px;
  margin-top: 1.3rem;
}

footer .icons-container .right {
  width: 100%;
  margin-top: 0.93rem;
  display: flex;
  flex-direction: column;
}

footer .icons-container .right .social-media {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 1rem;
  margin: 1rem 0;
  border: transparent solid 1px;
  gap: 5%;
}

footer .icons-container .right .social-media a i {
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
  margin: 0 5px;
}

footer .icons-container .right a i:hover {
  transform: scale(1.65);
  color: hsla(44, 80%, 66%, 0.882);
}

footer .icons-container .right .social-media h2 {
  color: #999999;
  font-size: 1.5rem;
  border: transparent solid 5px;
}

footer .icons-container .right a {
  color: #999999;
  text-decoration: none;
}

footer .icons-container .right .reserved {
  border-top: hsla(44, 80%, 66%, 0.882) solid 5px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 1.2rem;
  gap: 10%;
}

footer .icons-container .right .reserved h2 {
  font-size: 1.25rem;
  color: #999999;
}

footer .icons-container .right .reserved a {
  font-size: 1.2rem;
  font-weight: bold;
  background-color: transparent;
  border: none;
  color: #999999;
  cursor: pointer;
  transition: all ease 0.5s;
}

footer .icons-container .right .reserved a:hover {
  color: hsla(44, 80%, 66%, 0.882);
}

@media (max-width: 1024px) and (min-width: 768px) {
  footer {
    padding: 10px 5%;
  }

  footer .footer-content {
    flex-direction: column;
    padding: 20px 0;
  }

  footer .footer-content h2 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  footer .footer-content a {
    font-size: 1rem;
    padding: 5px 0;
  }

  footer .footer-content .map-container {
    width: 80%;
    margin: 1rem 0;
  }

  footer .footer-content .b0 p {
    padding: 0 10px;
  }

  footer .icons-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5%;
  }

  footer .icons-container .left .logo img {
    width: 120px;
    height: 120px;
    margin-top: 0.35rem;
  }

  footer .icons-container .right {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }

  footer .icons-container .right .social-media {
    width: 100%;
    display: flex;
    justify-content: end;
    padding: 0;
    margin: 0;
    gap: 10%;
  }

  footer .icons-container .right .social-media h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  footer .icons-container .right .social-media a i {
    font-size: 1.5rem;
  }

  footer .icons-container .right .reserved {
    border-top: hsla(44, 80%, 66%, 0.882) solid 3.5px;
    display: flex;
    justify-content: end;
    align-items: center;
    padding-top: 0.8rem;
    gap: 12.5%;
    width: 100%;
  }

  footer .icons-container .right .reserved h2 {
    font-size: 1rem;
    color: #999999;
  }

  footer .icons-container .right .reserved a {
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: bold;
    background-color: transparent;
    border: none;
    color: #999999;
    cursor: pointer;
    transition: all ease 0.5s;
  }
}

@media (max-width: 767px) and (min-width: 481px) {
  footer {
    padding: 10px 5%;
  }

  footer .footer-content {
    flex-direction: column;
    padding: 20px 0;
  }

  footer .footer-content h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  footer .footer-content a {
    font-size: 1rem;
    padding: 5px 0;
  }

  footer .footer-content .map-container {
    width: 75%;
    margin: 1rem 0;
  }

  footer .icons-container {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  footer .icons-container .left .logo img {
    width: 250px;
    height: 180px;
    margin-bottom: 0;
  }

  footer .icons-container .right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  footer .icons-container .right .social-media {
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: end;
    margin: 0;
    padding: 5px 0;
    width: 100%;
    gap: 0;
  }

  footer .icons-container .right .social-media h2 {
    font-size: 1rem;
  }

  footer .icons-container .right .social-media a i {
    font-size: 1.3rem;
    margin: 0 5px;
  }

  footer .icons-container .right .reserved {
    width: 100%;
    padding: 0 6px;
    padding-top: 10px;
    border-top: hsla(44, 80%, 66%, 0.882) solid 1px;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 0;
  }

  footer .icons-container .right .reserved h2,
  footer .icons-container .right .reserved a {
    font-size: 0.85rem;
  }

  footer .icons-container .right .reserved a {
    padding: 0;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 10px 5%;
  }

  footer .footer-content {
    flex-direction: column;
    padding: 20px 0;
  }

  footer .footer-content h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  footer .footer-content a {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    padding-left: 10px;
  }

  footer .footer-content .map-container {
    width: 100%;
    margin: 1rem 0;
  }

  footer .icons-container {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  footer .icons-container .left .logo img {
    width: 250px;
    height: 180px;
  }

  footer .icons-container .right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  footer .icons-container .right .social-media {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: end;
    margin: 0;
    padding: 5px 0;
    width: 100%;
    gap: 0;
  }

  footer .icons-container .right .social-media h2 {
    font-size: 10px;
    text-align: center;
    margin: 0;
  }

  footer .icons-container .right .social-media a i {
    font-size: 15px;
    margin: 0 5px;
  }

  footer .icons-container .right .reserved {
    width: 100%;
    gap: 12px;
    padding-top: 8px;
    border-top: hsla(44, 80%, 66%, 0.882) solid 1px;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 0;
  }

  footer .icons-container .right .reserved h2,
  footer .icons-container .right .reserved a {
    font-size: 10px;
  }

  footer .icons-container .right .reserved a {
    padding: 0;
  }
}