  .services {
  background: #fff;
  background-image: url("../img/services_bg.png");
  background-repeat: no-repeat;
  background-position: bottom;
  margin-top: 30px;
  padding-top: 35px;
}

.services-circle {
  display: block;
  border-radius: 50%;
  position: relative;
  width: 80%;
  height: 0;
  padding-bottom: 80%;
  margin: 70px auto;
  border: 1px solid #e1e1e1;
  box-sizing: content-box;
}

.services-circle::before,
.services-circle::after {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 1px solid #12ad8b;
  border-radius: 50%;
}

.services-circle::before {
  width: 450px;
  height: 450px;
  opacity: 0.6;
}

.services-circle::after {
  width: 550px;
  height: 550px;
  opacity: 0.4;
}

.services-subcircle {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  margin: auto;
  color: #fff;
  box-shadow: 0px 11px 18px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
  border-radius: 50%;
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  width: 60px;
  height: 60px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  border: 1px solid #12ad8b;
}

.services-subcircle i {
  font-size: 1.8em;
  color: #a5a5a5;
}

.services-subcircle:hover,
.services-subcircle.active {
  box-shadow: 0px 11px 13px 0 rgba(31, 136, 104, 0.4);
  background-color: #12ad8b;
}

.services-subcircle:hover i,
.services-subcircle.active i {
  color: #fff;
}

.services-content-wrapper {
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  padding: 0 65px;
}

.services-content-item {
  display: none;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 2;
}

.services-content-item.active {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: focus-in-contract 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: focus-in-contract 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  -webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.services-content-item span.title {
  font-weight: 600;
  letter-spacing: 3.2px;
  color: #1f8868;
  line-height: normal;
  margin-bottom: 0;
  font-size: 14px;
  text-align: center;
}
.services-content-item span.title a {
  color: #1f8868;
  font-size: inherit;
}

.services-content-item p.description {
  display: none;
  margin: 0;
  color: #757575;
  letter-spacing: 0.3px;
  line-height: 1.88;
  text-align: center;
  font-size: 12px;
}
.services-boxes {
  display: block;
  width: 100%;
  padding-top: 30px;
}

.services-boxes-heading {
  display: block;
  text-align: center;
  max-width: 100%;
}

.services-boxes-heading-wrapper {
  padding-bottom: 145px;
}

.services-boxes-heading span.title {
  display: block;
  font-weight: 700;
  color: #838383;
  letter-spacing: 0.44px;
  font-size: 18px;
}

.services-boxes-heading span.title.big {
  display: block;
  letter-spacing: 0.72px;
  font-size: 28px;
  word-break: break-word;
}

.services-boxes-heading span.title--primary {
  color: #1f8868;
}

.services-boxes-heading span.title--italic {
  font-style: italic;
}

.services-boxes-heading span.subtitle {
  display: block;
  font-size: 14px;
  color: #b3b3b3;
  letter-spacing: 2.8px;
  margin-top: 20px;
}

@supports ((display: -ms-grid) or (display: grid)) {
  .services-boxes-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    margin-top: -115px;
    grid-gap: 15px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  @media (min-width: 576px) {
    .services-boxes-content {
      grid-gap: 30px;
      -ms-grid-columns: (1fr) [2];
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media screen and (min-width: 768px) {
    .services-boxes-content {
      margin-top: -150px;
      -ms-grid-columns: (1fr) [3];
      grid-template-columns: repeat(3, 1fr);
    }
  }
}

@supports not ((display: -ms-grid) or (display: grid)) {
  .services-boxes-content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: -115px;
  }

  @media screen and (min-width: 768px) {
    .services-boxes-content {
      margin-top: -150px;
    }
  }
}

.services-boxes-content-wrapper {
  display: block;
  width: 100%;
  background: #ffffff;
}

.services-boxes-item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0px 7px 43px 0 rgba(0, 0, 0, 0.07);
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

@supports ((display: -ms-grid) or (display: grid)) {
  .services-boxes-item {
    width: unset;
  }
}

@supports not ((display: -ms-grid) or (display: grid)) {
  .services-boxes-item {
    width: calc(50% - 30px);
  }

  .services-boxes-item:not(:nth-last-child(-n + 2)) {
    margin-bottom: 30px;
  }

  .services-boxes-item + .services-boxes-item {
    margin-left: 30px;
  }

  .services-boxes-item:nth-child(2n + 1) {
    margin-left: 0;
  }

  @media screen and (min-width: 768px) {
    .services-boxes-item {
      width: calc(33.3% - 30px);
    }

    .services-boxes-item:not(:nth-last-child(-n + 2)) {
      margin-bottom: unset;
    }

    .services-boxes-item:not(:nth-child(-n + 3)) {
      margin-top: 30px;
    }

    .services-boxes-item + .services-boxes-item {
      margin-left: 30px;
    }

    .services-boxes-item:nth-child(3n + 1) {
      margin-left: 0;
    }
  }
}

.services-boxes-item:not(.no-hover) > * {
  transition: 0.2s ease-in-out;
}

.services-boxes-item:not(.no-hover):hover {
  background: #1f8868;
  box-shadow: 0px 12px 16px 0 rgba(31, 136, 104, 0.55);
}

.services-boxes-item:not(.no-hover):hover .services-boxes-item-icon,
.services-boxes-item:not(.no-hover):hover span.title,
.services-boxes-item:not(.no-hover):hover p.description {
  color: #fff;
}

.services-boxes-item-icon {
  font-size: 2em;
  color: #1f8868;
  margin-bottom: 20px;
}

.services-boxes-item span.title {
  font-size: 14px;
  font-weight: 700;
  color: #050505;
  letter-spacing: 2.8px;
  margin-bottom: 20px;
}

.services-boxes-item p.description {
  display: block;
  text-align: center;
  margin: 0;
  font-size: 13px;
  color: #757575;
  letter-spacing: 0.3px;
  line-height: 1.71;
}
@media (min-width: 576px) {
  .services-circle {
    padding-bottom: unset;
    display: block;
    margin: 150px auto;
    width: 350px;
    height: 350px;
  }

  .services-circle::before,
  .services-circle::after {
    display: block;
  }

  .services-content-item span.title {
    margin-bottom: 20px;
    line-height: 1;
  }

  .services-content-item p.description {
    display: block;
  }
}
.services {
  margin-top: 60px;
  padding-top: 65px;
}

.services-circle {
  margin: 130px auto;
  width: 510px;
  height: 510px;
}

.services-circle::before {
  width: 600px;
  height: 600px;
}

.services-circle::after {
  width: 680px;
  height: 680px;
}

.services-subcircle:nth-child(2n + 1) {
  width: 72px;
  height: 72px;
}

.services-content-item span.title {
  font-size: 18px;
  margin-bottom: 40px;
}

.services-content-item p.description {
  font-size: 16px;
}

/*.key-sector-bg {
  background-image: url('../images/key-sector-bg.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-attachment: scroll;  
}*/

.circle-bg-color {
  background: white;
}

.key-sector-bg {
  background: #4d7a5b73;
}
