.page-inner {
  flex-direction: column;
}

.services-header-section {
  position: relative;
  display: flex;

  width: 100%;

  padding-top: 60px;
  padding-bottom: 120px;
}

.services-header-section > div {
  flex: 1;
}

.services-header-section > .services-header-img {
  position: relative;
  display: flex;

  padding-top: 60px;
  padding-left: 15px;
}
.services-header-section > .services-header-img::before {
  content: '';
  position: relative;

  width: 100%;
  height: 265px;

  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;

  background-image: url('../img/pictures/services-01.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.services-header-section > .services-header-text-container {
  position: relative;
  display: flex;

  flex-direction: column;

  padding-top: 60px;
  padding-right: 15px;
  padding-left: 70px;
}

.services-header-section > .services-header-text-container > h3 {
  margin: 0;
  margin-bottom: 19px;

  line-height: 50px;
  font-weight: 800;
  font-size: 42px;

  color: #222;
}

.services-header-section > .services-header-text-container > p {
  margin: 0;

  line-height: 1.75;
  font-weight: 500;
  font-size: 16px;

  color: #72839a;
}

.services-list-container {
  position: relative;

  width: 100%;
}

.services-list {
  position: relative;
  display: flex;

  flex-wrap: wrap;

  width: 100%;
}

.services-list .services-list-item {
  position: relative;
  display: flex;

  flex-wrap: nowrap;

  width: calc(100% / 3);

  padding: 52px 47px 51px;

  line-height: 1.75;
  font-size: 16px;
  font-weight: 500;
  color: #72839a;
}

.services-list .services-list-item::before {
  content: '';
  position: absolute;
  z-index: -2;

  top: 0;
  left: 0;

  width: calc(100% - (1px * 2));
  height: 100%;

  border: 1px solid #e9f0fb;

  background-color: #f6fcff;

  -webkit-transition: all .3s linear 0ms;
  -khtml-transition: all .3s linear 0ms;
  -moz-transition: all .3s linear 0ms;
  -ms-transition: all .3s linear 0ms;
  -o-transition: all .3s linear 0ms;
  transition: all .3s linear 0ms;
}
.services-list .services-list-item:hover::before {
  opacity: 0;
}

.services-list .services-list-item::after {
  content: '';
  position: absolute;
  z-index: -1;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  opacity: 0;

  background-color: #00BCD4;
  background-image: url('../img/objects/bg-service.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  -webkit-transition: all .3s linear 0ms;
  -khtml-transition: all .3s linear 0ms;
  -moz-transition: all .3s linear 0ms;
  -ms-transition: all .3s linear 0ms;
  -o-transition: all .3s linear 0ms;
  transition: all .3s linear 0ms;
}
.services-list .services-list-item:hover::after {
  opacity: 1;
}

.services-list .services-list-item-count {
  position: relative;

  margin-bottom: 0;

  width: 60px;
  min-width: 60px;

  line-height: 1.3;
  font-size: 27px;
  font-weight: 800;

  color: #222;

  -webkit-transition: all .3s linear 0ms;
  -khtml-transition: all .3s linear 0ms;
  -moz-transition: all .3s linear 0ms;
  -ms-transition: all .3s linear 0ms;
  -o-transition: all .3s linear 0ms;
  transition: all .3s linear 0ms;
}

.services-list .services-list-item-title {
  margin: 0;
  margin-bottom: 36px;

  line-height: 1.3;

  font-size: 27px;
  font-weight: 800;

  color: #222;
}

.services-list .services-list-item-title a {
  color: inherit;

  -webkit-transition: all .3s linear 0ms;
  -khtml-transition: all .3s linear 0ms;
  -moz-transition: all .3s linear 0ms;
  -ms-transition: all .3s linear 0ms;
  -o-transition: all .3s linear 0ms;
  transition: all .3s linear 0ms;
}

.services-list .services-list-item-content {
  margin: 0;
  margin-bottom: 25px;

  -webkit-transition: all .3s linear 0ms;
  -khtml-transition: all .3s linear 0ms;
  -moz-transition: all .3s linear 0ms;
  -ms-transition: all .3s linear 0ms;
  -o-transition: all .3s linear 0ms;
  transition: all .3s linear 0ms;
}

.services-list .services-list-item-more a {
  position: relative;
  display: inline-block;

  padding-right: 40px;

  font-size: 18px;
  font-weight: 700;

  color: #00BCD4;

  -webkit-transition: all .3s linear 0ms;
  -khtml-transition: all .3s linear 0ms;
  -moz-transition: all .3s linear 0ms;
  -ms-transition: all .3s linear 0ms;
  -o-transition: all .3s linear 0ms;
  transition: all .3s linear 0ms;
}
.services-list .services-list-item-more a:hover {
  padding-right: 46px;
}

.services-list .services-list-item-more a i {
  position: absolute;

  right: 0;
  top: 50%;

  font-size: 34px;

  -webkit-transform: translate(0,-50%);
  -khtml-transform: translate(0,-50%);
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -o-transform: translate(0,-50%);
  transform: translate(0,-50%);
}

.services-list .services-list-item:hover .services-list-item-count,
.services-list .services-list-item:hover .services-list-item-title a,
.services-list .services-list-item:hover .services-list-item-content,
.services-list .services-list-item:hover .services-list-item-more a {
  color: #fff;
}

/*  */

.services-section-title {
  position: relative;
  display: flex;

  flex-direction: column;

  align-items: center;

  margin: 0 auto;

  width: 50%;

  padding: 0 30px;
  padding-top: 105px;
  padding-bottom: 86px;

  text-align: center;
}

.services-section-title > h3 {
  margin: 0;
  margin-bottom: 18px;

  line-height: 1.33333;
  font-size: 45px;
  font-weight: 800;
}

.services-section-title > p {
  margin: 0;

  line-height: 1.75;
  font-size: 16px;
  font-weight: 500;

  color: #72839a;
}

.services-processline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  position: relative;

  width: 100%;
}

.services-processline::before {
  content: '';
  position: absolute;
  z-index: -1;

  top: calc(68px / 2);
  left: 0;
  right: 0;

  margin: 0 auto;

  width: calc(100% - (25%));
  height: 4px;

  background-color: #d0e5fb;
}

.services-processline .procline-item {
  position: relative;
  display: flex;

  width: 100%;
  max-width: 25%;

  padding: 0 15px;
  padding-top: 122px;
}

.services-processline .procline-item-inner {
  margin-bottom: 30px;

  width: 100%;
  /* height: 257px; */

  padding: 47px 30px 41px;

  text-align: center;

  line-height: 1.75;
  font-size: 16px;
  font-weight: 500;

  color: #72839a;

  border: 1px solid #d0e5fb;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;

  -webkit-transition: all .3s linear 0ms;
  -khtml-transition: all .3s linear 0ms;
  -moz-transition: all .3s linear 0ms;
  -ms-transition: all .3s linear 0ms;
  -o-transition: all .3s linear 0ms;
  transition: all .3s linear 0ms;
}
.services-processline .procline-item-inner:hover {
  border-color: #00BCD4;
}

.services-processline .procline-item-inner::before {
  content: '';
  position: absolute;

  top: 98px;
  left: 0;
  right: 0;

  margin: 0 auto;

  height: 10px;
  width: 10px;

  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;

  opacity: 0;
  background-color: #00BCD4;

  -webkit-transition: all .3s linear 0ms;
  -khtml-transition: all .3s linear 0ms;
  -moz-transition: all .3s linear 0ms;
  -ms-transition: all .3s linear 0ms;
  -o-transition: all .3s linear 0ms;
  transition: all .3s linear 0ms;
}
.services-processline .procline-item-inner:hover::before {
  top: 118px;
  opacity: 1;
}

.services-processline .procline-item-inner .procline-item-count {
  position: absolute;
  z-index: 1;

  top: 0;
  left: 0;
  right: 0;

  margin: 0 auto;

  width: 72px;
  height: 72px;

  border: 3px solid #d0e5fb;
  -webkit-border-radius: 72px;
  -khtml-border-radius: 72px;
  -moz-border-radius: 72px;
  -ms-border-radius: 72px;
  -o-border-radius: 72px;
  border-radius: 72px;

  line-height: 66px;
  font-size: 25px;
  font-weight: 800;

  color: #222;

  background-color: #fff;

  -webkit-transition: all .3s linear 0ms;
  -khtml-transition: all .3s linear 0ms;
  -moz-transition: all .3s linear 0ms;
  -ms-transition: all .3s linear 0ms;
  -o-transition: all .3s linear 0ms;
  transition: all .3s linear 0ms;
}
.services-processline .procline-item-inner:hover .procline-item-count {
  color: #fff;
}

.services-processline .procline-item-inner .procline-item-count::before {
  content: '';
  position: absolute;
  z-index: -1;

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  -webkit-border-radius: 72px;
  -khtml-border-radius: 72px;
  -moz-border-radius: 72px;
  -ms-border-radius: 72px;
  -o-border-radius: 72px;
  border-radius: 72px;

  opacity: 0;
  background-image: -webkit-linear-gradient(21deg,#005cea 0%,#00c5fb 100%);
  background-image: -moz-linear-gradient(21deg,#005cea 0%,#00c5fb 100%);
  background-image: -ms-linear-gradient(21deg,#005cea 0%,#00c5fb 100%);
  background-image: -o-linear-gradient(21deg,#005cea 0%,#00c5fb 100%);
  background-image: linear-gradient(21deg,#005cea 0%,#00c5fb 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#005cea 0%',endColorStr='#00c5fb 100%');

  -webkit-transition: all .3s linear 0ms;
  -khtml-transition: all .3s linear 0ms;
  -moz-transition: all .3s linear 0ms;
  -ms-transition: all .3s linear 0ms;
  -o-transition: all .3s linear 0ms;
  transition: all .3s linear 0ms;
}

.services-processline .procline-item-inner:hover .procline-item-count::before {
  opacity: 1;
}

.services-processline .procline-item-title {
  margin: 0;
  margin: 0 0 15px;
  margin-bottom: 19px;

  line-height: 1.25;
  font-size: 26px;
  font-weight: 700;
  color: #222;
}

.services-processline .procline-item-desc {
}














/* RESPONSIVE */

@media (max-width: 1199px) {
  .services-list .services-list-item {
    width: 50%;
  }

  .services-processline::before {
    content: none;
  }
  .services-processline .procline-item {
    max-width: 25%;
    padding-top: 36px;
  }
  .services-processline .procline-item-inner::before {
    content: none;
  }

  .services-processline .procline-item-title {
    font-size: 24px;
  }
}


@media (max-width: 992px) {
  .services-processline .procline-item {
    max-width: 50%;
    padding-top: 36px;
  }
}


@media (max-width: 767px) {
  .services-header-section {
    flex-direction: column;
  }

  .services-header-section > .services-header-img {
    padding-left: 0;
    padding-right: 0;
  }
  .services-header-section > .services-header-img::before {
    height: 180px;
  }

  .services-header-section > .services-header-text-container {
    padding-top: 60px;
    padding-left: 0;
    padding-right: 0;
  }
  .services-header-section > .services-header-text-container > h3 {
    font-size: 36px;
    line-height: 42px;
  }

  .services-list .services-list-item {
    margin-bottom: 5px;
    width: 100%;
    padding: 32px 15px 31px;
  }
  .services-list .services-list-item:last-child {
    margin-bottom: 0;
  }

  .services-list .services-list-item-count,
  .services-list .services-list-item-title {
    font-size: 24px;
  }

  .services-section-title {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  .services-section-title > h3 {
    font-size: 30px;
  }

  .services-processline::before {
    content: none;
  }
  .services-processline .procline-item {
    max-width: 100%;
    padding-top: 36px;
  }
  .services-processline .procline-item-inner::before {
    content: none;
  }
}
