

.services .service-item {
  padding: 40px;
  background: #fff;
  height:400px;
   border-radius: 5% !important;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important ;
  transition: 0.3s !important;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  /* color: var(--color-secondary); */
  color: #203f7d;
  font-size: 40px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}
.services .service-item .icon i:hover {
  color: #122f68;
}
.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f0f1f2;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -15px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #ebebed;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-primary);
}

.services .service-item:hover .icon:before {
  background: var(--color-primary);
}

.services .service-item:hover h3 {
  border-color: var(--color-primary);
}

#cards {
  border-radius: 5% !important;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important ;
  transition: 0.3s !important;
}

#cards:hover {
  transform: translate(0, -15px);
}
#cards .icon i:hover{
  color: #122f68;
}

.section-header {
  text-align: center;
  align-items: center !important;
  padding-bottom: 50px;
  /* margin-top: 100px; */
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #2e3135;
}

.section-header h2:before,
.section-header h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}

.section-header h2:before {
  margin: 0 15px 10px 0;
}

.section-header h2:after {
  margin: 0 0 10px 15px;
}

.section-header p {
  margin: 0 auto 0 auto;
}



@media (max-width: 768px) {
  .services {
    padding: 20px 15px !important;
    height: auto !important;
  }
  .section-header h2
  {
    font-size: 15px;
  }

  .services .service-item {
    padding: 20px;
    margin-bottom: 20px;
  }

  .services .service-item .icon {
    width: 40px;
    height: 40px;
    margin-bottom: 30px;
  }

  .services .service-item .icon i {
    font-size: 30px;
    line-height: 1.5;
  }

  .services .service-item h3 {
    font-size: 18px;
    padding-bottom: 6px;
  }

  .services .service-item p {
    font-size: 13px;
    line-height: 22px;
  }

  .services .service-item .readmore {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .services .service-item {
    padding: 15px;
  }

  .services .service-item .icon {
    width: 36px;
    height: 36px;
    margin-bottom: 20px;
  }

  .services .service-item .icon i {
    font-size: 26px;
  }

  .services .service-item h3 {
    font-size: 16px;
  }

  .services .service-item p,
  .services .service-item .readmore {
    font-size: 12px;
  }
}
