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

.service-box {
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) {
  .service-box {
    margin-bottom: 0;
  }
}
.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 #1A449A;
  border-radius: 100%;
}
.service-box h5 {
  margin-top: 25px;
  text-transform: uppercase;
  color: #243a48;
  font-size: 32px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  word-break: break-word;
}
.service-box a {
  color: #243a48;
}
.service-box a:hover {
  color: #41b681;
}
.service-box p {
  display: inline-block;
  margin-bottom: 15px;
  max-width: 500px;
}
.service-box:hover .spin {
  border: 0;
}
.service-box:hover .spin::before {
  border-bottom-color: #41b681;
  border-right-color: #41b681;
  border-top-color: #41b681;
  -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;
}
.service-box:hover .spin::after {
  border-left-width: 6px;
  border-right-width: 6px;
  border-top: 6px solid #41b681;
  -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;
}

.read-more-wrap:hover .read-more-text,
.service-box:hover .read-more-wrap .read-more-text {
  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;
}

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

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

.pt-120 {
  padding-top: 60px;
}
@media only screen and (min-width: 992px) {
  .pt-120 {
    padding-top: 80px;
  }
}
@media only screen and (min-width: 1200px) {
  .pt-120 {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 1400px) {
  .pt-120 {
    padding-top: 120px;
  }
}

.pb-120 {
  padding-bottom: 60px;
}
@media only screen and (min-width: 992px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 1200px) {
  .pb-120 {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 1400px) {
  .pb-120 {
    padding-bottom: 120px;
  }
}

/*----------------------------------
  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;
  line-height: 1.4;
  font-size: calc(1.525rem + 3.3vw);
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  word-break: break-word;
  color: #243a48;
}
@media (min-width: 1200px) {
  .section-title-wrap .section-title {
    font-size: 4rem;
  }
}
.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: #1A449A;
  -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;
  max-width: 1200px;
  color: #233947;
  line-height: 1.5;
  font-family: "Ysabeau", sans-serif;
}

@-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;
  }
}

 @media screen and (max-width: 992px){
.service-box .box {
    height: 150px;
    width: 150px;
}
  }

 @media screen and (max-width: 768px){
.section-title-wrap .section-title {
    margin: 5px 0 20px;
    font-size: 30px;
}
.section-title-wrap p {
    font-size: 18px;
}

   .service-box .box {
    height: 110px;
    width: 110px;
}
   
   
.service-wrap .container .text-center .col-lg-3{
	width: 50% !important;
}

.service-box {
    margin-bottom: 40px;
}
.service-box h5 {
    margin-top: 15px;
    font-size: 18px;
}

  }



