.header-section {
  margin-top: 100px;
}
.header-section .text-box .heading {
  max-width: 500px;
}
.header-section .text-box .heading .blue-text {
  font-style: italic;
  color: var(--two);
}
.header-section .text-box .button-box {
  display: flex;
  gap: 5px;
}
.header-section .img {
  width: 100%;
}

.clients-section {
  margin-top: 100px;
}
.clients-section .clients-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0;
  list-style: none;
  display: flex;
}
.clients-section .clients-list li img {
  width: 100%;
}

.who-we-are-section {
  background-color: var(--one);
  margin-top: 100px;
  padding: 80px 0;
}
.who-we-are-section .img-box {
  position: relative;
  width: 500px;
  height: 500px;
}
.who-we-are-section .img-box .dots {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  animation: rotate 30s linear infinite;
}
.who-we-are-section .img-box .img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.services-section {
  margin-top: 70px;
}
.services-section .text-box {
  text-align: left;
  margin-bottom: 50px;
}
.services-section .service-box {
  background-color: #f5f5f5;
  padding: 60px 120px;
  text-align: center;
  border-radius: 20px;
}
.services-section .box-1 {
  background-color: var(--two);
}
.services-section .box-1 .heading,
.services-section .box-1 .text {
  color: white;
}
.services-section .box-2 {
  background-color: var(--three);
}
.services-section .box-2 .heading,
.services-section .box-2 .text {
  color: var(--one);
}
.services-section .button-box {
  margin-top: 50px;
}

.cta-section {
  margin-top: 100px;
  margin-bottom: 100px;
}
.cta-section .box {
  background-color: var(--one);
  padding: 80px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cta-section .box .text-box .heading {
  font-size: 42px;
}
.cta-section .box .button-box {
  min-width: 200px;
}

@media (max-width: 1200px) {
  .header-section {
    text-align: center;
  }
  .header-section .text-box {
    text-align: center;
  }
  .header-section .text-box .heading {
    font-size: 35px;
    max-width: 100%;
  }
  .header-section .button-box {
    justify-content: center;
  }
  .header-section .img {
    width: 80%;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .header-section {
    margin-top: 50px;
  }
}
@media (max-width: 400px) {
  .header-section .button-box {
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 1200px) {
  .clients-section .clients-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .clients-section {
    margin-top: 50px;
  }
  .clients-section .clients-list li img {
    width: 112px;
  }
}

@media (max-width: 1200px) {
  .who-we-are-section .img-box {
    margin: auto;
    width: 400px;
    height: 400px;
  }
  .who-we-are-section .img-box .dots {
    width: 100%;
  }
  .who-we-are-section .img-box .img {
    width: 71px;
  }
  .who-we-are-section .text-box {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .who-we-are-section {
    margin-top: 50px;
    padding: 50px 0;
  }
  .who-we-are-section .img-box {
    width: 300px;
    height: 300px;
  }
  .who-we-are-section .img-box .img {
    width: 50px;
  }
}

@media (max-width: 1400px) {
  .services-section .service-box {
    min-height: 350px;
  }
}
@media (max-width: 1200px) {
  .services-section .service-box {
    padding: 50px;
  }
  .services-section .text-box {
    text-align: center;
  }
  .services-section .button-box {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .services-section {
    margin-top: 50px;
  }
  .services-section .text-box {
    margin-bottom: 20px;
  }
  .services-section .service-box {
    min-height: auto;
    margin-top: 15px;
  }
  .services-section .button-box {
    margin-top: 20px;
  }
}

@media (max-width: 991px) {
  .cta-section .box {
    padding: 50px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .cta-section .box .text-box {
    text-align: center;
  }
  .cta-section .box .button-box {
    min-width: auto;
  }
}
@media (max-width: 767px) {
  .cta-section {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
/*# sourceMappingURL=home.css.map */