.service-principle-container .service-principle-item .item-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.is-hidden {
  display: none !important;
}

.is-visible {
  display: block !important;
}

.is-invisible {
  visibility: hidden !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 990px) {
  .mobile-hidden {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .desktop-hidden {
    display: none !important;
  }
}

.service-principle-container {
  font-size: 16px;
  display: flex;
  width: 100%;
  height: 38.0208333333vw;
}
@media (max-width: 990px) {
  .service-principle-container {
    flex-direction: column;
    height: auto;
  }
}
.service-principle-container .service-principle-item {
  position: relative;
  flex: 1;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease;
  overflow: hidden;
}
@media (max-width: 990px) {
  .service-principle-container .service-principle-item {
    height: 194.6666666667vw;
  }
}
.service-principle-container .service-principle-item .item-index {
  position: absolute;
  top: 0;
  left: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 12.5em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.1);
}
.service-principle-container .service-principle-item .item-content {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 0 1.375em 5.375em 1.375em;
  box-sizing: border-box;
  text-align: center;
  transition: all 0.3s ease;
}
.service-principle-container .service-principle-item .item-content .item-title {
  color: white;
  font-size: 2em;
}
.service-principle-container .service-principle-item .item-content .item-subtitle {
  margin-top: 2.4375em;
  font-size: 1em;
  line-height: 1.5;
  display: none;
  transition: opacity 0.3s ease;
  color: white;
}
@media (max-width: 990px) {
  .service-principle-container .service-principle-item .item-content {
    text-align: left;
    background: linear-gradient(270deg, rgba(244, 174, 0, 0.9) 0%, rgba(216, 76, 33, 0.9) 100%);
    padding: 5.375em 1.375em 5.375em 1.375em;
    justify-content: center;
  }
  .service-principle-container .service-principle-item .item-content .item-subtitle {
    display: block;
  }
}
.service-principle-container .service-principle-item:hover .item-content {
  text-align: left;
  background: linear-gradient(270deg, rgba(244, 174, 0, 0.9) 0%, rgba(216, 76, 33, 0.9) 100%);
  justify-content: center;
}
.service-principle-container .service-principle-item:hover .item-content .item-subtitle {
  display: block;
}