@media screen and (min-width: 768px) {
  .nopadd-ltf {
    padding-left: 0;
  }
  .nopadd-rth {
    padding-right: 0;
  }
  .nopadd {
    padding-left: 0;
    padding-right: 0;
  }
}
.process-sec {
  overflow: hidden;
}

.working-process {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.working-process .process-item {
  border: 1px solid #efefef;
  flex-basis: 24%;
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 15px;
  transition: all 0.5s ease-in-out;
}
.working-process .process-item .icon-box {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 0 16px rgba(54, 186, 254, 0.1);
}
.working-process .process-item .icon-box i {
  color: #000;
  font-size: 30px;
  transition: all 0.5s ease-in-out;
}
.working-process .process-item:hover {
  box-shadow: 0 0 30px rgba(54, 186, 254, 0.1);
}
.working-process .process-item:hover .icon-box {
  background-color: #7c49dd;
}
.working-process .process-item:hover .icon-box i {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .working-process .process-item {
    flex-basis: 47%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 575px) {
  .working-process .process-item {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.working-process .border-icon {
  color: #ddd;
  position: absolute;
  top: -8px;
  left: -8px;
  transform: rotate(40deg);
}
@media screen and (max-width: 991px) {
  .working-process .border-icon {
    display: none;
  }
}
.working-process .border-icon-2 {
  color: #ddd;
  position: absolute;
  top: -8px;
  right: -38px;
  transform: rotate(-50deg);
}
@media screen and (max-width: 991px) {
  .working-process .border-icon-2 {
    display: none;
  }
}
.working-process svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 991px) {
  .working-process svg {
    display: none;
  }
}
.working-process.v2 .process-item {
  position: relative;
  color: #fff;
  flex-basis: 24%;
  margin: 0 auto;
  border: none;
  background-color: #7c49dd;
  border-right: 1px solid #efefef;
}
.working-process.v2 .process-item:nth-of-type(4) {
  border: none;
}
.working-process.v2 .process-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  background-color: #7c49dd;
  transition: all 0.3s;
  z-index: -1;
}
.working-process.v2 .process-item:hover {
  box-shadow: none;
}
.working-process.v2 .process-item:hover::after {
  height: 100%;
}
.working-process.v2 .process-item:hover .icon-box {
  background-color: #fff;
  z-index: 1;
}
.working-process.v2 .process-item:hover .icon-box i {
  color: #000;
}
@media screen and (max-width: 991px) {
  .working-process.v2 .process-item {
    flex-basis: 47%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 575px) {
  .working-process.v2 .process-item {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.working-process.v3 .process-item {
  background-color: transparent !important;
  color: #000;
  flex-basis: 25%;
  transition: all 0.3s;
  border: none;
  box-shadow: -10px 0px 30px 0 rgba(199, 199, 199, 0.3);
}
.working-process.v3 .process-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  background-color: #7c49dd;
  transition: all 0.3s;
  z-index: -1;
}
.working-process.v3 .process-item:hover {
  color: #fff;
  box-shadow: -10px 0px 30px 0 rgba(199, 199, 199, 0.3);
}