/* used in cases-section.htm */
.title-caption {
  color: var(--light-grey);
  text-align: left;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
}
.case-block__project-icon {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  transition: color .2s;
  display: flex;
  position: static;
}

/* used in cases-section.htm */
.container__case-block {
  width: 100%;
  max-width: 1200px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.container__case-block.w-container {
  max-width: 1200px;
}
/* used in cases-section.htm */
.case-block__heading-wrap {
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}
/* used in cases-section.htm */
.case-block__title_caption {
  margin-bottom: 16px;
}
/* used in cases-section.htm */
.case-block__grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: repeat(2, 1fr);
  overflow: clip;
}
.case-block__item {
  position: relative;
  overflow: hidden;
  padding: 40px;
  min-height: 250px;
}
.case-block__item--blue {
  background-color: #14274e;
}
.case-block__project-name {
  color: var(--grey);
  justify-content: space-between;
  display: flex;
}
.case-block_project-nfo {
  background-color: #fff;
  border-radius: 100%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: flex;
  box-shadow: 1px 1px 20px #0000000d;
}
.case_project_title {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Gilroy, Impact, sans-serif;
  font-size: 20px;
  font-weight: 400;
}
.case_project_title.text-color-white {
  color: var(--white-smoke);
}
.case_project_description {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
}
/* used in cases-section.htm */
.heading-14 {
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
  .case-block__grid {
    grid-template-columns: 1fr;
  }
  .case-block__grid > :nth-child(3) {
    order: 4;
  }
  .case-block__grid > :nth-child(4) {
    order: 3;
  }
}
@media screen and (max-width: 767px) {
  .case-block__grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .case-block__project-name {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .case-block__project-name__tags-block {
    justify-content: flex-end;
  } 
}