/*Projects Block*/
.providers-projectsgrid {
  padding-bottom: 20px;
}

.providers-projectsgrid h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  padding: 30px 12px;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.projectItemContainer {
  width: 50%;
  padding: 12px;
  max-width: 550px;
}

.projectItemSubContainer {
  padding: 15px;
  background-color: white;
  background-image: linear-gradient(to right, var(--primary-two) 16%, rgba(0, 0, 0, 0) 16%);
}

.projectItemSubContainer img {
  height: 150px;
  width: 150px;
  margin-right: 20px;
}

.projectGridHeading {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 15px;
}

.projectGridText {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 16px !important;
}

.projectGridLink {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 137.1%;
  color: var(--primary-two);
  text-decoration: none;
  position: relative;
}

.projectGridLink:after {
  content: '\f345';
  font-family: dashicons;
  position: absolute;
  padding-left: 8px;
}

@media screen and (max-width: 992px) {
  .projectItemContainer {
    width: 100%;
    max-width: 550px;
    padding: 12px 0px;
  }
}

@media screen and (max-width: 576px) {
  .projectItemSubContainer {
    padding: 15px 15px 15px 14%;
    background-color: white;
    background-image: linear-gradient(to right, var(--primary-one) 10%, rgba(0, 0, 0, 0) 10%);
  }

  .projectItemSubContainer img {
    display: none;
  }
}