.pt-120 {
 padding: 80px 0;
}

.pt-120 .col-lg-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 16.5%;
    max-width: 16.5%;
}



@media only screen and (max-width: 900px) {
 .pt-120 {
 padding: 40px 0;
}

}


/*----------------------------------
    SECTION TITLE 
    -----------------------------------*/
.section-title-wrap {
  position: relative;
  margin-bottom: 40px;
}

 

.section-title-wrap .section-title {
  display: inline-block;
  position: relative;
  margin: 5px 0 40px;
  text-transform: capitalize;
 
  /* font-size: calc(1.525rem + 3.3vw); */
}

.section-title-wrap .section-title {
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
  }
.section-title-wrap .section-title span {
   
    line-height: 1;
    font-weight: 700;
  }

@media only screen and (max-width: 1280px) {
 .section-title-wrap .section-title {
    font-size: 36px;
    line-height: 1;
    font-weight: 700;
  }

}

@media only screen and (max-width: 980px) {
 .section-title-wrap .section-title {
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
  }
.pt-120 .col-lg-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 33.3%;
    max-width: 33.3%;
}

}


@media only screen and (max-width: 680px) {
 .section-title-wrap .section-title {
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
  }
.pt-120 .col-lg-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
}
}

.section-title-wrap .section-title::before,
.section-title-wrap .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 20px;
  height: 8px;
  border-radius: 4px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  background-color: var(--color-primary);
  -webkit-animation: animate 6s linear infinite;
  animation: animate 6s linear infinite;
}
.section-title-wrap .section-title::before {
  right: 50%;
  margin-right: 4px;
}
.section-title-wrap .section-title::after {
  left: 50%;
  margin-left: 4px;
}
.section-title-wrap p {
  /* display: inline-block; */
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
 
}

@-webkit-keyframes animate {
  0% {
    width: 20px;
  }
  25% {
    width: 50px;
  }
  50% {
    width: 50px;
  }
  75% {
    width: 100px;
  }
  100% {
    width: 100px;
  }
}

@keyframes animate {
  0% {
    width: 20px;
  }
  25% {
    width: 50px;
  }
  50% {
    width: 50px;
  }
  75% {
    width: 100px;
  }
  100% {
    width: 100px;
  }
}

/*-------------------------------
  SERVICES
  -------------------------------*/
.maha-service-wrap {
  position: relative;
}

.maha-service-wrap .service-box {
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) {
  .maha-service-wrap .service-box {
    margin-bottom: 0;
  }
}
.maha-service-wrap .service-box .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 220px;
  width: 220px;
  margin: auto;
  overflow: hidden;
  position: relative;
  border: 6px solid var(--color-primary);
  border-radius: 100%;
}
.maha-service-wrap .service-box h5 {
  margin-top: 25px;
  text-transform: uppercase;
  font-size: 20px;
  font-family: var(--title-font-family);
}
.maha-service-wrap .service-box a {
  color: #243a48;
}
.maha-service-wrap .service-box a:hover {
  color: var(--color-second);
}
.maha-service-wrap .service-box p {
  display: inline-block;
  margin-bottom: 15px;
  max-width: 500px;
}
.maha-service-wrap .service-box:hover .spin {
  border: 0;
}
.maha-service-wrap .service-box:hover .spin::before {
  border-bottom-color: var(--color-second);
  border-right-color: var(--color-second);
  border-top-color: var(--color-second);
  -webkit-transition: border-top-color 0.15s linear,
    border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear,
    border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}
.maha-service-wrap .service-box:hover .spin::after {
  border-left-width: 6px;
  border-right-width: 6px;
  border-top: 6px solid var(--color-second);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
  transition: border-left-width 0s linear 0.35s,
    -webkit-transform 0.4s linear 0s;
  -webkit-transition: border-left-width 0s linear 0.35s,
    -webkit-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s,
    -webkit-transform 0.4s linear 0s;
}

.maha-service-wrap .service-box:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  text-indent: 0;
  /* margin-right: 6px; */
  visibility: visible;
  -webkit-transition: visibility 0.4s ease, margin-right 0.3s ease-out,
    text-indent 0.4s ease-out, color 0.4s ease, opacity 0.4s ease;
  transition: visibility 0.4s ease, margin-right 0.3s ease-out,
    text-indent 0.4s ease-out, color 0.4s ease, opacity 0.4s ease;
}

.maha-service-wrap .spin::before,
.maha-service-wrap .spin::after {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  content: "";
}
.maha-service-wrap .spin::before {
  border: 6px solid transparent;
  z-index: 20;
}
.maha-service-wrap .spin::after {
  border: 0 solid transparent;
}

.maha-service-wrap .circle {
  border-radius: 100%;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  -webkit-box-shadow: none;
  box-shadow: none;
}
.maha-service-wrap .circle::before,
.maha-service-wrap .circle::after {
  border-radius: 100%;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
}
