
/* Section Title Styles */
.work-process-wrapper .sec-title--center {
  text-align: center;
  margin-bottom: 49px;
}

.work-process-wrapper .sec-title--center .sec-title__top {
  justify-content: center;
}

.work-process-wrapper .sec-title__top {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.work-process-wrapper .sec-title__top img {
  max-width: 100%;
  height: auto;
  animation: rotate 3s linear infinite;
}

.work-process-wrapper .sec-title__tagline {
  margin: 0;
  font-family: var(--primary_font);
  font-size: 16px;
  color: var(--secondary_color);
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .work-process-wrapper .sec-title__tagline {
    font-size: 14px;
  }
}

.work-process-wrapper .sec-title__title {
  margin: 0;
  font-size: 45px;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 1.222;
  color: var(--primary_color_font);
}

@media (max-width: 767px) {
  .work-process-wrapper .sec-title__title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .work-process-wrapper .sec-title__title {
    font-size: 35px;
  }
}

/* Animations */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

/* Section Space */
.work-process-wrapper .section-space-two {
  padding-top: 118px;
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .work-process-wrapper .section-space-two {
    padding-top: 96px;
    padding-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .work-process-wrapper .section-space-two {
    padding-top: 76px;
    padding-bottom: 80px;
  }
}

/* Work Process One Styles */
.work-process-wrapper .work-process-one {
  background-color: #ffffff;
  counter-reset: chooseNumber;
}

.work-process-wrapper .work-process-one__inner {
  position: relative;
}

.work-process-wrapper .work-process-one .sec-title {
  margin-bottom: 63px;
}

.work-process-wrapper .work-process-one .row {
  position: relative;
  z-index: 1;
}

.work-process-wrapper .work-process-one__item {
  text-align: center;
}

@media (min-width: 1200px) {
  .work-process-wrapper .work-process-one__item--reverse {
    margin-top: -7px;
    display: flex;
    flex-direction: column-reverse;
  }
}

@media (min-width: 1200px) {
  .work-process-wrapper .work-process-one__item--reverse .work-process-one__item__icon {
    margin: 22px auto 0;
  }
}

.work-process-wrapper .work-process-one__item__icon {
  position: relative;
  margin: 0 auto 22px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 50%;
  font-size: 40px;
  color: var(--secondary_color);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
  z-index: 1;
  transition: all 400ms ease;
}

.work-process-wrapper .work-process-one__item__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.work-process-wrapper .work-process-one__item__icon::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0.5);
  opacity: 0;
  background-color: var(--secondary_color);
  transition: transform 400ms ease, opacity 400ms ease;
}

.work-process-wrapper .work-process-one__item:hover .work-process-one__item__icon {
  color: #ffffff;
}

.work-process-wrapper .work-process-one__item:hover .work-process-one__item__icon::after {
  opacity: 1;
  transform: scale(1);
}

.work-process-wrapper .work-process-one__item__number {
  position: absolute;
  top: 0px;
  left: -6px;
}

.work-process-wrapper .work-process-one__item__number::after {
  content: counter(chooseNumber);
  counter-increment: chooseNumber;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  background-color: var(--primary_color);
  border-radius: 50%;
  z-index: 1;
  transition: all 500ms ease;
}

.work-process-wrapper .work-process-one__item__title {
  margin-bottom: 9px;
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.5;
  color: var(--primary_color_font);
}

.work-process-wrapper .work-process-one__item__text {
  margin: 0;
  font-weight: 400;
  line-height: 1.75;
  color: var(--secondary_color_font);
}

.work-process-wrapper .work-process-one__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1199px) {
  .work-process-wrapper .work-process-one__shape {
    display: none;
  }
}

/* Utility Classes */
.work-process-wrapper .gutter-y-40 {
  margin-top: -40px;
}

.work-process-wrapper .gutter-y-40 > * {
  margin-top: 40px;
}

