/* [project]/src/styles/service/ServiceCloud.css [client] (css) */
.service-cloud {
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 65vh;
  min-height: 580px;
  display: flex;
  position: relative;
  overflow: hidden;
  padding: 0 20px !important;
}

.service-cloud-bg {
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 10s;
  position: absolute;
  inset: 0;
}

.service-cloud:hover .service-cloud-bg {
  transform: scale(1.1);
}

.service-cloud-content {
  z-index: 2;
  max-width: 1400px;
  padding: 0 20px;
  position: relative;
  transform: translateY(-40px);
}

.service-cloud-overline {
  letter-spacing: 2.5px;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 12px;
  animation: .8s ease-out fadeInDown;
  display: block;
}

.service-cloud-title {
  font-family: var(--font-heading);
  color: #fff;
  text-shadow: 0 4px 15px #0009;
  margin: 0 0 35px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  animation: .8s ease-out .2s both fadeInUp;
}

.service-cloud-subtitle {
  font-family: var(--font-body);
  color: #fff;
  max-width: 950px;
  margin: 0 auto 45px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  animation: .8s ease-out .4s both fadeInUp;
}

.service-cloud-btn-container {
  justify-content: center;
  animation: .8s ease-out .6s both fadeInUp;
  display: flex;
}

.service-cloud-btn {
  color: #54b248;
  font-weight: 500;
  font-size: var(--font-size-body);
  cursor: pointer;
  font-family: var(--font-body);
  background-color: #eaf6e5;
  border: 1.5px solid #54b248;
  border-radius: 50px;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  transition: all .2s;
  display: inline-flex;
  box-shadow: 0 4px 15px #54b24826;
}

.service-cloud-btn:hover {
  color: #fff;
  background-color: #54b248;
  transform: translateY(-2px);
}

.service-cloud-btn svg {
  transition: transform .3s;
}

.service-cloud-btn:hover svg {
  transform: translate(4px, -4px);
}

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

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

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

@media (max-width: 768px) {
  .service-cloud {
    height: auto;
    min-height: 450px;
    padding: 60px 0 !important;
  }

  .service-cloud-content {
    margin: 0 auto;
    transform: translateY(-40px);
  }

  .service-cloud-title {
    font-size: 32px;
  }

  .service-cloud-subtitle {
    margin-bottom: 30px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .service-cloud-title {
    font-size: 26px;
  }
}

/*# sourceMappingURL=src_styles_service_ServiceCloud_css_65f1660e._.single.css.map*/