/* Hero Slider */
.heroSlider-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 60vw;
  overflow: hidden;
}

.heroSlider {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  width: 100vw;
  overflow: hidden;
}

.headline {
  position: absolute;
  z-index: 20;
  text-align: left;
  color: rgba(255, 255, 255, 0.781);
  font-size: 0.9375rem;
  font-weight: 700;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

.headline-bg {
  position: absolute;
  z-index: 15;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slider input {
  display: none;
}

.slider {
  display: flex;
  position: relative;
  height: auto;
  width: 100vw;
}

.slides {
  display: flex;
  position: relative;
  height: auto;
  width: 100%;
  transition: margin-left 0.5s ease-in-out;
}

.slide {
  width: 100%;
  transition: margin-left 0.5s ease-in-out;
}

.slide img {
  width: 100vw;
  height: auto;
  object-fit: cover;
  position: relative;
}
/* Manual Slide Start */
.manual-navigation {
  display: flex;
  position: absolute;
  justify-content: center;
  height: auto;
  width: 100vw;
  margin-top: 60vw;
  gap: 0.5rem;
}

#radio1:checked ~ .slides {
  margin-left: 0;
}
#radio2:checked ~ .slides {
  margin-left: -100%;
}
#radio3:checked ~ .slides {
  margin-left: -200%;
}
#radio4:checked ~ .slides {
  margin-left: -300%;
}
#radio5:checked ~ .slides {
  margin-left: -400%;
}
#radio6:checked ~ .slides {
  margin-left: -500%;
}
#radio7:checked ~ .slides {
  margin-left: -600%;
}
/* Manual Slide End */
/* Auto Slide */
.auto-navigation {
  display: flex;
  position: absolute;
  justify-content: center;
  height: auto;
  width: 100vw;
  margin-top: 65vw;
  gap: 0.5rem;
}

.auto-navigation .auto-btn {
  border: 0.5vw solid #cdf1fd;
  padding: 0.8vw;
  height: 1vw;
  border-radius: 50%;
  cursor: pointer;
  z-index: 22;
  transition: 1s;
}

.auto-navigation div:not(:last-child) {
  gap: 0.5rem;
}

#radio1:checked ~ .auto-navigation .auto-btn1 {
  background-color: #0cbdea;
}

#radio2:checked ~ .auto-navigation .auto-btn2 {
  background-color: #0cbdea;
}

#radio3:checked ~ .auto-navigation .auto-btn3 {
  background-color: #0cbdea;
}

#radio4:checked ~ .auto-navigation .auto-btn4 {
  background-color: #0cbdea;
}

#radio5:checked ~ .auto-navigation .auto-btn5 {
  background-color: #0cbdea;
}

#radio6:checked ~ .auto-navigation .auto-btn6 {
  background-color: #0cbdea;
}

#radio7:checked ~ .auto-navigation .auto-btn7 {
  background-color: #0cbdea;
}

/* Auto Slide */
/* Hero Slider */
/* h1 */
h1 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #ffffff;
}
/* h1 */

/* About Us */
.aboutUs-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 0;
  padding-left: max(2rem);
  padding-right: max(2rem);
}

.aboutUs {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  background-color: #cdf1fd;
  padding: 2rem;
  max-width: 20.9375rem;
  border-radius: 1.25rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.4);
}

.aboutUs .aboutUs-title {
  display: flex;
  flex-direction: column;
  background-color: #0cbdea;
  padding: 0.519rem 0.8rem;
  border-radius: 3.125rem;
  width: 6.67rem;
  height: 2rem;
  align-items: center;
  margin-left: -0.9rem;
  margin-bottom: 1.25rem;
}

.aboutUs p {
  font-size: 0.75rem;
  line-height: 0.9375rem;
  font-weight: 400;
  text-align: justify;
}

.aboutUs em {
  font-style: italic;
}

.aboutUs span {
  font-weight: 700;
}
/* About Us */
/* Problem Solution */
.ps-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1.375rem;
}

.ps-wrap img {
  width: 100vw;
  height: 30.125rem;
  object-fit: cover;
}

.ps-bg-filter {
  position: absolute;
  height: 30.125rem;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ps {
  display: flex;
  justify-content: center;
}

.ps-title {
  display: flex;
  flex-direction: column;
  position: absolute;
  background-color: #0cbdea;
  padding: 0.519rem 0;
  border-radius: 3.125rem;
  width: 9.25rem;
  height: 2.125rem;
  align-items: center;
  margin-top: 0.625rem;
  z-index: 1;
}
/* Problem Solution */
/* Services */
.services-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1.375rem;
  margin-top: 5.4375rem;
}

.services-wrap img {
  width: 100vw;
  height: 30.125rem;
  object-fit: cover;
}

.services-bg-filter {
  position: absolute;
  height: 30.125rem;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services {
  display: flex;
  justify-content: center;
}

.services-title {
  display: flex;
  flex-direction: column;
  position: absolute;
  background-color: #0cbdea;
  padding: 0.519rem 0;
  border-radius: 3.125rem;
  width: 11.375rem;
  height: 2.125rem;
  align-items: center;
  margin-top: 0.625rem;
  z-index: 1;
}
/* Services */
/* Clients Start */
.clients-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 5.25rem;
}

.clients-title {
  display: flex;
  flex-direction: column;
  background-color: #0cbdea;
  padding: 0.519rem 0;
  border-radius: 3.125rem;
  width: 5.9375rem;
  height: 2.125rem;
  align-items: center;
  z-index: 1;
}

.clients-slider {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
  white-space: nowrap;
  pointer-events: auto;
  padding: 1.125rem 0 1.375rem 0;
}

.clients-wrap .clients-slider:hover .slider-track {
  animation-play-state: paused;
}

.clients-wrap .clients-slider .slider-track {
  display: inline-flex;
  animation: scroll 70s linear infinite;
}

.clients-slider .slider-track img {
  height: 5rem;
  width: auto;
  object-fit: contain;
  padding: 0 2rem;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Clients End */
/* Testimonials */
.testimonials-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5.25rem;
}

.testimonials-title {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #0cbdea;
  padding: 0.519rem 0;
  border-radius: 3.125rem;
  width: 6.375rem;
  height: 2.125rem;
  align-items: center;
  margin-bottom: 1.1875rem;
  z-index: 1;
}

.testimonials-slides img {
  width: 5.625rem;
  height: 5.625rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials-slides h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.testimonials-slides p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: #ffffff;
}

.testimonials-header {
  display: flex;
  background-color: #0bacd5;
  align-items: center;
  gap: 0.6875rem;
  width: 19.345rem;
  height: 6.83rem;
  border-radius: 1.5625rem 1.5625rem 0 0;
  padding: 0.625rem 0.875rem;
}

.testimonials-content {
  display: flex;
  width: 19.345rem;
  height: 14.9825rem;
  background-color: #0cbdea;
  border-radius: 0 0 1.5625rem 1.5625rem;
  padding: 2.125rem 1.5rem 1.25rem 2.125rem;
}

.testimonials-slides {
  display: flex;
  height: 25.125rem;
  width: 19.375rem;
  gap: 1rem;
  overflow: auto;
  scrollbar-color: #0cbdea #ffffff;
  scrollbar-width: thin;
}
/* Testimonials */

/* Special Offers */
.offers-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5.25rem;
}
.offers-title {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #0cbdea;
  padding: 0.519rem 0;
  border-radius: 3.125rem;
  width: 9.125rem;
  height: 2.125rem;
  align-items: center;
  margin-bottom: -2.75rem;
  z-index: 10;
}

.offers-slides img,
.services-slides img,
.ps-slides img {
  height: 24.203rem;
  width: 19.363rem;
  border-radius: 0.625rem;
}

.offers-slides,
.services-slides,
.ps-slides {
  display: flex;
  margin-top: 3.9375rem;
  height: 25.5rem;
  width: 20rem;
  gap: 1rem;
  overflow: auto;
  scrollbar-color: #0cbdea rgba(255, 255, 255, 0);
  scrollbar-width: thin;
  z-index: 1;
}

.services-bg,
.ps-bg {
  position: absolute;
}
/* Special Offers */

/* Gallery */
/* Thumbnails */
.gallery-slides img,
video {
  height: 5.9375rem;
  width: 8.895rem;
  cursor: pointer;
}
/* Thumbnails */
.gallery-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5.25rem;
}

.gallery-title {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #0cbdea;
  padding: 0.519rem 0;
  border-radius: 3.125rem;
  width: 6.3125rem;
  height: 2.125rem;
  align-items: center;
  margin-bottom: 1.1875rem;
  z-index: 1;
}

.gallery-slides-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gallery-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8125rem;
}

.gallery-nav span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #0cbdea;
  padding: 0.3125rem 0.75rem;
  border-radius: 2.5rem;
  height: 1.5rem;
  width: 4.125rem;
  text-align: center;
  align-items: center;
  cursor: pointer;
}

.slider-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.875rem;
  max-height: auto;
  width: 100%;
  gap: 0.5rem;
  align-items: flex-start;
  justify-content: center;
  padding: 0 2rem;
}

.slider-wrap img,
.slider-wrap video {
  flex: 0 1 calc(33.33% - 1rem);
  max-width: 100%;
  height: auto;
}

.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

.media-section {
  display: none;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.media-section.active {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 1;
  transform: translateX(0);
}

/* Gallery */

/* Footer */
/* Footer Text */
footer p {
  font-size: 0.625rem;
  font-weight: 400;
  color: #ffffff;
}

footer h3 {
  font-size: 0.625rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-copyright p {
  font-size: 0.625rem;
  font-weight: 700;
  color: #ffffff;
}
/* Footer Text */
/* Footer img */
.footer-social .footer-logo {
  width: 3.5265rem;
  height: 3.5265rem;
}

.footer-social img,
.footer-contact img,
.footer-contact-desktop img {
  height: 0.9375rem;
  width: 0.9375rem;
}
/* Footer img */
footer {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
  background-color: #0bacd5;
  gap: 1.25rem;
  width: 100vw;
  padding: 1.25rem 0.625rem 0.3125rem 0.625rem;
  justify-content: space-between;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex: 1 1 fit-content;
  /* align-items: flex-start; */
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  max-width: 11.5rem;
  gap: 0.625rem;
}

.footer-social .footer-social-content {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.footer-social .footer-social-content .ig {
  display: flex;
  gap: 0.159rem;
  align-items: center;
}

.footer-address {
  display: flex;
  flex-direction: column;
  max-width: 9.8125rem;
  gap: 0.25rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  max-width: 9.8125rem;
  gap: 0.25rem;
}

.mail1,
.mail2,
.phone {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 48rem) {
  .headline {
    font-size: 2.5rem;
  }

  .aboutUs {
    max-width: 50.875rem;
  }

  .aboutUs p {
    font-size: 2rem;
    line-height: 3.125rem;
  }
}

@media (min-width: 75rem) {
  /* h1 */
  h1 {
    font-size: 2.5rem;
  }
  /* h1 */

  /* about us */
  .aboutUs-wrap {
    padding: 9.25rem 0;
    padding-right: min(13.75rem, 10%);
    padding-left: min(13.75rem, 10%);
  }

  .aboutUs {
    padding: 5rem;
    gap: 1.5rem;
  }

  .aboutUs .aboutUs-title {
    padding: 1.5625rem 2.875rem;
    width: 20.8125rem;
    height: 6rem;
    margin-bottom: 1.8125rem;
    margin-left: -3.125rem;
  }

  /* about us */

  /* Problem Solution */
  .ps-wrap {
    padding: 0 8.1875rem;
  }

  .ps-wrap img {
    height: 56.3125rem;
  }

  .ps-bg-filter {
    height: 56.3125rem;
  }

  .ps-title {
    padding: 0.875rem 2.125rem;
    margin-top: 2.125rem;
    width: 29.5625rem;
    height: 4.625rem;
  }

  .offers-slides img,
  .services-slides img,
  .ps-slides img {
    height: 41rem;
    width: 32.8rem;
    border-radius: 0.625rem;
  }

  .offers-slides,
  .services-slides,
  .ps-slides {
    display: flex;
    margin-top: 10.1875rem;
    height: 42.5rem;
    width: 69.375rem;
    gap: 2rem;
  }
  /* Problem Solution */

  /* Services */
  .services-wrap {
    margin-top: 20rem;
    padding: 0 8.1875rem;
  }

  .services-bg img {
    height: 56.3125rem;
  }

  .services-bg-filter {
    height: 56.3125rem;
  }
  .services-title {
    padding: 0.875rem 0;
    border-radius: 2.5rem;
    width: 33.8125rem;
    height: 4.625rem;
    margin-top: 2.125rem;
  }

  /* Services */
  /* Clients */
  .clients-wrap {
    margin-top: 20rem;
  }

  .clients-title {
    padding: 0.875rem 0;
    border-radius: 2.5rem;
    width: 16.875rem;
    height: 4.625rem;
  }

  .clients-slider {
    padding: 3.5625rem 0;
  }

  .clients-slider .slider-track img {
    height: 6rem;
  }

  /* Clients */
  /* Testimonials */
  .testimonials-wrap {
    margin-top: 10rem;
  }

  .testimonials-title {
    padding: 0.875rem 0;
    border-radius: 2.5rem;
    width: 19.9375rem;
    height: 4.625rem;
    margin-bottom: 3.75rem;
  }

  .testimonials-slides img {
    width: 7.9375rem;
    height: 7.9375rem;
  }

  .testimonials-slides h2 {
    font-size: 2.5rem;
  }

  .testimonials-slides p {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }

  .testimonials-header {
    gap: 0.6875rem;
    width: 27.4375rem;
    height: 9.6875rem;
    padding: 0.875rem 1.25rem;
  }

  .testimonials-content {
    width: 27.4375rem;
    height: 21.25rem;
    padding: 2.125rem 1.5rem 1.25rem 2.125rem;
  }

  .testimonials-slides {
    height: 33.4375rem;
    width: 58.625rem;
    gap: 2.5rem;
  }
  /* Testimonials */
  /* Special Offers */
  .offers-wrap {
    margin-top: 20rem;
  }

  .offers-title {
    padding: 0.875rem 0;
    border-radius: 2.5rem;
    width: 20.625rem;
    height: 4.625rem;
    margin-bottom: -4.75rem;
  }
  /* Special Offers */
  /* Gallery */
  /* Thumbnails */
  .slider-wrap img {
    height: auto;
    width: 20rem;
  }

  .slider-wrap video {
    height: auto;
    width: 20rem;
  }
  /* Thumbnails */
  .gallery-wrap {
    margin-top: 10rem;
  }

  .gallery-title {
    padding: 0.875rem 0;
    border-radius: 2.5rem;
    width: 13.1875rem;
    height: 4.625rem;
    margin-bottom: 3.75rem;
  }

  .gallery-nav {
    gap: 2rem;
  }

  .gallery-nav span {
    font-size: 1.5rem;
    padding: 0.5rem 2.5rem;
    border-radius: 2.5rem;
    height: 2.8125rem;
    width: 10.3125rem;
  }

  .gallery-nav span:hover {
    background-color: #0bacd5;
  }

  .slider-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.875rem;
    max-height: auto;
    width: 100%;
    gap: 2rem;
    align-items: flex-start;
    justify-content: center;
    padding: 0 5rem;
  }

  .slider-wrap img,
  .slider-wrap video {
    flex: 0 1 calc(20% - 1rem);
    max-width: 100%;
    height: auto;
  }

  /* Gallery */
}
