





















.container-15 .stat-cards {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: stretch;
  gap: 1.5em;
}

.container-15 .stat-card {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em;
  border-radius: 32px;
  box-shadow: 24px 7px 80px rgba(0, 0, 0, 0.07);
  animation: swing-in-top-fwd 2s 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes swing-in-top-fwd {
  0% {
    transform: rotateX(-100deg);
    transform-origin: top;
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    transform-origin: top;
    opacity: 1;
  }
}

.container-15 .stat-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--primary-opacity-color);
  border-radius: 32px;
  z-index: -1;
}

.container-15 .stat-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}


.container-15 .stat-card .title {
  color: var(--secondary-color);
  text-align: center;
  margin: 0;
}

.container-15 .stat-card .number {
  color: var(--white-color);
  font-weight: bold;
  font-size: 4em;
  text-align: center;
  margin: 0;
}

.fourth-section .big-card {
  display: flex;
  flex-direction: row;
  gap: 2em;

  margin-top: 3em;
  padding-block: 2em;
  border-radius: 64px;
  background-color: var(--card-color);
  box-shadow: 24px 7px 80px rgba(0, 0, 0, 0.07);
}

.fourth-section .big-card .text-content {
  flex: 1;
  padding-right: 2em;
}

.fourth-section .big-card .text-content h1 {
  color: var(--primary-color);
  margin-top: 0 !important;
}

.fourth-section .big-card .text-content p {
  color: var(--secondary-color);
}

.fourth-section .big-card .text-content .quote {
  color: var(--secondary-color);
  font-weight: bold;
}

.fourth-section .big-card .text-content .quote span {
  color: var(--primary-color);
}

.fourth-section .big-card .text-content .quote span.end {
  color: var(--secondary-color);
  font-size: 0.5em;
}

.fourth-section .big-card .text-content .subscribe-button {
  margin-top: 2em;
}
@media (hover: hover) and (pointer: fine) {
  .subscribe-button:hover {
    transform: scale(1.01) translateY(-0.05em);
  }
}

.subscribe-button {
  display: block;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 16px;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  padding-inline: 2em;
  padding-block: 0.5em;
  cursor: pointer;
  box-shadow: 24px 7px 80px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease;
  animation: fade-in-fwd 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
  text-decoration: none;
}

.fourth-section .big-card .image-container {
  flex: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  align-items: center;
}

.fourth-section .big-card .image-container .shape {
  grid-area: 1 / 1;
  width: 10em;
  height: 90%;
  background-color: var(--primary-color);
  border-radius: 144px;
  animation: scale-in-hor-center 0.5s 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes scale-in-hor-center {
  0% {
    transform: scaleX(0);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}



@media (max-width: 900px) {
  .fourth-section .cards-container {
    flex-direction: column;
  }

  .fourth-section .big-card {
    flex-direction: column-reverse;
  }

  .fourth-section .big-card .text-content {
    padding-inline: 2em;
  }
}

@media (max-width: 500px) {
  .fourth-section .cards-container {
    flex-direction: column;
  }

  .fourth-section .container {
    padding-inline: 1em;
  }
}

@media (max-width: 370px) {
  .fourth-section .cards-container .card .number {
    font-size: 3em;
  }
}

/* #endregion */
.animated-number {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  height: 1em;
  margin-bottom: 0.2em;
  font-family: Cairo;
  line-height: 1em;
  text-align: center;
  color: var(--white-color);
  font-weight: bold;
  font-size: 3em;
  overflow: hidden;
  animation: focus-in-expand-fwd 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.cycle {
  position: relative;
  width: 0.6em;
  display: block;
  float: left;
  top: 0%;
  transition:  top 0.7s ease-out;
}
  /* Add keyframe animations */
  /* #endregion */
@keyframes focus-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    transform: translateZ(-800px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    transform: translateZ(0);
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes fade-in-fwd {
  0% {
    transform: perspective(500px) translateZ(-80px);
    opacity: 0;
  }
  100% {
    transform: perspective(500px) translateZ(0);
    opacity: 1;
  }
}
@keyframes focus-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    transform: translateZ(-800px);
    filter: blur(12px);
    opacity: 0;
  }
}
/* #region ******************* Fifth section the testimonials ******************* */

.fifth-section {
  padding-bottom: 2em;
}

.fifth-section .container {
  padding-block: 1em;
  padding-inline: 2em;
  margin: auto;
  max-width: var(--max-width);
}

.fifth-section .title-container {
  margin-bottom: 4em;
}

.fifth-section .title-container .title {
  color: var(--secondary-color);
  font-weight: normal;
  text-align: center;
}

.fifth-section .title-container .sub-title {
  color: var(--primary-color);
  text-align: center;
}

.fifth-section .cards-container {
  display: flex;
  flex-direction: row;
  gap: 1.5em;
}

.fifth-section .cards-container .column {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.fifth-section .cards-container .card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  background-color: var(--primary-color);
  padding-inline: 1em;
  padding-block: 0.5em;
  box-shadow: 24px 7px 80px rgba(0, 0, 0, 0.07);
}

.fifth-section .cards-container .card .text-content {
  flex: 1;
  display: flex;
  align-items: center;
  color: var(--white-color);
}

.fifth-section .cards-container .card .text-footer {
  color: var(--white-color);
  font-weight: bold;
  border-top: solid 2px var(--white-color);
  padding-top: 0.5em;
  margin: 0;
}

.fifth-divider {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fifth-divider svg {
  width: 6em;
  height: 6em;
  fill: var(--card-color);
  animation: scale-in-ver-top 0.5s 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@media (max-width: 700px) {
  .fifth-section .container {
    padding-inline: 1em;
  }

  .fifth-section .cards-container {
    flex-direction: column;
  }
}

/* #endregion */

.icon-1 {
  filter: brightness(0) saturate(100%)
          invert(18%) sepia(88%) saturate(1900%)
          hue-rotate(190deg) brightness(95%) contrast(95%);
}
