.services {
  background-color: #F0F3F8;
}

.services .services-content {
  padding: 100px 80px 200px;
  position: relative;
}

.services .services-content .services-wrapper {
  position: relative;
  width: 100%;
  margin-top: 80px;
  display: flex;
}

.services .services-content .services-wrapper .img-wrapper img {
  /*clip-path: polygon(0% 0%, 0% 100%, 99% 100%, 60% 0%);*/
  /*background-image: url("../../../images/about_image.png");*/
  border-radius: 8px 0 0 8px;
  background-size: cover;
  background-position: center;
  width: 35%;
  height: 280px;
  position: absolute;
  z-index: 10;
  top: 0;
  object-fit: cover;
}

.services .services-content .services-wrapper .text-wrapper {
  position: relative;
  clip-path: polygon(8% 0%, 27% 100%, 100% 100%, 100% 0%);
  border-radius: 0 8px 8px 0;
  background-size: cover;
  background-position: center;
  background: #5083FF;
  width: 100%;
  height: 280px;
  border-top: 3px solid white;
}

.services .services-content .services-wrapper .text-wrapper .text-bg {
  position: absolute;
  clip-path: polygon(0% 0%, 0% 100%, 50% 100%, 96% 85%, 100% 45%, 100% 0%);
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: flex-end;
  border-radius: 0 5px 5px 0;
}

.services .services-content .services-wrapper .text-wrapper .text-bg .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: red;
  width: 58%;
  padding-right: 80px;
}

.services .services-content .services-wrapper .text-wrapper .text-bg .text h4 {
  margin-bottom: 25px;
  line-height: 34px;
  font-size: 28px;
  color: #212633;
  letter-spacing: 1.34px;
}

.services .services-content .services-wrapper .text-wrapper .text-bg .text p {
  color: #4B4C52;
  font-size: 18px;
  line-height: 32px;
}

.services .services-content .services-wrapper .img-wrapper-right  img{
  clip-path: polygon(42% 0%, 1% 100%, 100% 100%, 99% 0%);
  /*background-image: url("../../../images/about_image.png");*/
  border-radius: 0 8px 8px 0;
  background-size: cover;
  background-position: center;
  width: 35%;
  height: 280px;
  position: absolute;
  right: 0;
  z-index: 10;
  top: -20px;
}

.services .services-content .services-wrapper .text-wrapper-left {
  clip-path: polygon(0% 0%, 0% 99%, 70% 100%, 100% 0%);
  width: 100%;
  height: 280px;
  background: white;
  border-radius: 8px 0 0 8px;
}

.services .services-content .services-wrapper .text-wrapper-left .text {
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  justify-content: center;
  color: red;
  width: 58%;
  padding-left: 60px;
  border-radius: 8px 0 0 8px;
}

.services .services-content .services-wrapper .text-wrapper-left .text h4 {
  margin-bottom: 25px;
  line-height: 34px;
  font-size: 28px;
  color: #212633;
  letter-spacing: 1.34px;
}

.services .services-content .services-wrapper .text-wrapper-left .text p {
  color: #4B4C52;
  font-size: 18px;
  line-height: 32px;
}

.services .services-content .services-wrapper .text-wrapper-simple {
  position: relative;
  clip-path: polygon(8% 0%, 27% 100%, 100% 100%, 100% 0%);
  border-radius: 0 8px 8px 0;
  width: 100%;
  height: 280px;
  border-top: 3px solid white;
  background: white;
  display: flex;
  justify-content: flex-end;
}

.services .services-content .services-wrapper .text-wrapper-simple .text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: red;
  width: 58%;
  padding-right: 80px;
}

.services .services-content .services-wrapper .text-wrapper-simple .text h4 {
  margin-bottom: 25px;
  line-height: 34px;
  font-size: 28px;
  color: #212633;
  letter-spacing: 1.34px;
}

.services .services-content .services-wrapper .text-wrapper-simple .text p {
  color: #4B4C52;
  font-size: 18px;
  line-height: 32px;
}

.services .services-content .pagination {
  padding: 20px 0;
  display: flex;
  justify-content: flex-start;
}

.services .services-content .pagination span {
  display: inline-block;
  font-size: 13px;
  padding: 0 6px;
  line-height: 20px;
  border: 1px solid #DDDDDD;
  cursor: pointer;
}

.services .services-content .pagination span:not(:last-child) {
  border-right: none;
}

.services .services-content .pagination span:first-child {
  border-radius: 3px 0 0 3px;
}

.services .services-content .pagination span:last-child {
  border-radius: 0 3px 3px 0;
}

.services .services-content .pagination .current-page {
  background: #DDDDDD;
  color: white;
}

@media all and (max-width: 1150px) {
  .services .services-content {
    padding: 40px 40px 100px;
  }

  .services .services-content .services-wrapper .img-wrapper img {
    height: 250px;
    width: 32%;
    top: -8px;
  }

  .services .services-content .services-wrapper .text-wrapper {
    height: 250px;
  }

  .services .services-content .services-wrapper .text-wrapper .text-bg .text {
    width: 65%;
    padding-right: 20px;
  }

  .services .services-content .services-wrapper .text-wrapper .text-bg .text h4 {
    margin-bottom: 18px;
    line-height: 28px;
    font-size: 22px;
  }

  .services .services-content .services-wrapper .text-wrapper .text-bg .text p {
    font-size: 14px;
    line-height: 26px;
  }

  .services .services-content .services-wrapper .img-wrapper-right img {
    width: 35%;
    height: 250px;
    top: -10px;
  }

  .services .services-content .services-wrapper .text-wrapper-left {
    height: 250px;
  }

  .services .services-content .services-wrapper .text-wrapper-left .text {
    width: 65%;
    padding-right: 20px;
  }

  .services .services-content .services-wrapper .text-wrapper-left .text h4 {
    margin-bottom: 18px;
    line-height: 28px;
    font-size: 22px;
  }

  .services .services-content .services-wrapper .text-wrapper-left .text p {
    font-size: 14px;
    line-height: 26px;
  }

  .services .services-content .services-wrapper .text-wrapper-simple {
    height: 250px;
  }

  .services .services-content .services-wrapper .text-wrapper-simple .text {
    width: 65%;
    padding-right: 20px;
  }

  .services .services-content .services-wrapper .text-wrapper-simple .text h4 {
    margin-bottom: 18px;
    line-height: 28px;
    font-size: 22px;
  }

  .services .services-content .services-wrapper .text-wrapper-simple .text p {
    font-size: 14px;
    line-height: 26px;
  }
}

@media all and (max-width: 700px) {
  .services .services-content .services-wrapper {
    flex-direction: column;
  }

  .services .services-content .services-wrapper .img-wrapper img {
    width: 100%;
    border-radius: 5px;
    position: static;
    clip-path: none;
    margin-bottom: 20px;
  }

  .services .services-content .services-wrapper .text-wrapper {
    height: 300px;
    clip-path: none;
    border-radius: 8px;
  }

  .services .services-content .services-wrapper .text-wrapper .text-bg {
    border-radius: 5px;
  }

  .services .services-content .services-wrapper .text-wrapper .text-bg .text {
    width: 100%;
    padding: 0 20px;
    border-radius: 5px;
  }

  .services .services-content .services-wrapper .text-wrapper .text-bg .text h4 {
    margin-bottom: 18px;
    line-height: 28px;
    font-size: 22px;
  }

  .services .services-content .services-wrapper .text-wrapper .text-bg .text p {
    font-size: 14px;
    line-height: 26px;
  }

  .services .services-content .services-wrapper .img-wrapper-right, .services .services-content .services-wrapper .img-wrapper-right img {
    order: -10;
    width: 100%;
    border-radius: 5px;
    position: static;
    clip-path: none;
    margin-bottom: 20px;
  }

  .services .services-content .services-wrapper .text-wrapper-left {
    border-radius: 5px;
    height: 300px;
    clip-path: none;
  }

  .services .services-content .services-wrapper .text-wrapper-left .text {
    border-radius: 5px;
    width: 100%;
    padding: 0 20px;
  }

  .services .services-content .services-wrapper .text-wrapper-simple {
    border-radius: 5px;
    height: 300px;
    clip-path: none;
  }

  .services .services-content .services-wrapper .text-wrapper-simple .text {
    border-radius: 5px;
    width: 100%;
    padding: 0 20px;
  }

  .services .services-content .services-wrapper .text-wrapper-simple .text h4 {
    margin-bottom: 18px;
    line-height: 28px;
    font-size: 22px;
  }

  .services .services-content .services-wrapper .text-wrapper-simple .text p {
    font-size: 14px;
    line-height: 26px;
  }
}

@media all and (max-width: 450px) {
  .services .services-content {
    padding: 40px 16px 60px;
  }

  .services .services-content .services-wrapper .text-wrapper,
  .services .services-content .services-wrapper .text-wrapper-left,
  .services .services-content .services-wrapper .text-wrapper-simple {
    height: 360px;
  }
}

/*# sourceMappingURL=services.css.map */
