.projects-filter .project-selection-results {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  color: rgba(206, 33, 49, 1);
}

.featured-projects ul {
  list-style: none;
  margin: 0;
  padding: 10px 20px;
  background: rgba(206, 33, 49, 1);
  color: white;
}

@media screen and (min-width: 768px) {
  .featured-projects ul {
    display: flex;
    justify-content: space-between;
    padding: 40px 20px;
  }
}

.featured-projects li {
  flex: 0 1 49%;
  min-height: 300px;
  margin: 10px 0;
  border: 2px solid white;
}

@media screen and (min-width: 768px) {
  .featured-projects li {
    margin: 0 20px;
  }
}

.featured-projects h2 {
  color: #5a5a5a;
  padding: 0;
  line-height: 1;
}

.featured-projects a {
  display: block;
  width: 100%;
  height: 100%;
}

.featured-projects .project {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 400px;
  box-sizing: border-box;
  height: 400px;
  padding: 30px;
  background-color: rgba(0, 0, 0, 1);
  overflow: hidden;
  cursor: pointer;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.featured-projects .project__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  transition: all 300ms ease-in-out;
  opacity: 1;
  font-size: 16px;
}

@media screen and (-ms-high-contrast: none) {
	.featured-projects .project__content {
		max-width: 99% !important;
		height: 99% !important;
		min-height: 100% !important;
		margin: auto !important;
		display: table !important;
		vertical-align: middle !important;
	}

	.featured-projects .project__content:hover {
		background: rgba(206, 33, 49, .8);
	}

	.featured-projects .project__title {
		display: table-cell !important;
		vertical-align: middle !important;
	}
}

@media screen and (min-width: 768px) {
  .featured-projects .project__title .project__info {
    font-size: .66em;
  }
}

.featured-projects .project__title,
.featured-projects .project__link {
  color: #FFF;
  text-align: center;
  line-height: 1.375;
  letter-spacing: 0;
  overflow: hidden;
  transition: flex-basis .3s ease,
  opacity .3s ease;
}

.featured-projects .project__title .project__info {
  display: block;
  font-weight: normal;
  margin-bottom: 10px;
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .featured-projects .project__title .project__info {
    font-size: .66em;
  }
}

.featured-projects .project__title {
  flex: 1 0 100%;
  text-transform: none;
  margin-bottom: 20px;
  font-weight: lighter;
  line-height: 1.25;
  font-size: 22px;
  display:block;
}

@media screen and (-ms-high-contrast: none) {
	.featured-projects .project__title {
		line-height: 1;
		max-width: 100%;
		width: 100%;
	}
}

@media screen and (min-width: 1000px) {
  .featured-projects .project__title {
    font-size: 1.66em;
  }
}

.featured-projects .project__title .project__content {
  display: block;
  font-size: .66em;
  font-weight: normal;
  margin: 10px;
  padding-top: 10px;
  border-top: 1px solid white;
}

.featured-projects .project__link {
  flex: 1 0 100%;
  font-size: 15px;
  text-transform: uppercase;
  text-align: right;
  border: 1px solid rgba(255,255,255, 1);
  padding: 10px 20px;
  transition: all 300ms ease-in-out;
  font-weight: 500;
}

@media screen and (min-width: 1000px) {
  .featured-projects .project__link {
    font-size: 15px;
  }
}

.featured-projects .project__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
     object-fit: cover;
     transform: scale(1);
  transition: all .3s ease .1s;
  opacity: .66;
}

 .featured-projects .project:hover .project__img {
  opacity: 1;
}

.featured-projects .project:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(206, 33, 49, .8);
  z-index: 1;
  transition: transform .25s ease-in-out .3s;
}

.featured-projects .project:after {
  transform: translateY(100%);
  bottom: 0;
}

.featured-projects .project:hover:after {
  transition-delay: 0s;
}

.featured-projects .project:hover:after {
  transform: translateY(0%);
}

.featured-projects .project:hover .project__content {
  opacity: 1;
  transition: all 1200ms ease-in-out;
}

@keyframes grow-shrink {
  0%, 100% { transform: scale3d(1, 1, 1); }
  50% { transform: scale3d(1.25, 1.25, 1); }
}

.featured-projects .project__link:hover {
  background-color: white;
  color: rgba(206, 33, 49, 1);
  border: 1px solid rgba(206, 33, 49, 1);
  animation: grow-shrink 300ms ease-in-out;
}

.featured-projects .project:hover .featured-projects .project__img {
  transform: scale(1);
}

.projects-filter {
  padding: 0 15px;
}

@media screen and (min-width: 768px) {
  .projects-filter {
    padding: 0 40px;
  }
}

.projects-filter .project-filter {
  margin: 10px 0;
  padding: 10px;
}

@media screen and (min-width: 768px) {
  .projects-filter .project-filter {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.projects-filter .project-filter > div {
  flex: 1 0 auto;
  margin-top: 1em;
}

.filter-search .filter {
  display: flex;
  width: 100%;
  font-size: 1.25em;
}

@media screen and (min-width: 700px) {
  .filter-search .filter {
    font-size: 1em;
  }
}

.project-filter .filter-select {
  position: relative;
  font-size: 1.25em;
  padding: 0 0 0 0;
}

@media screen and (min-width: 700px) {
  .project-filter .filter-select {
    font-size: 1em;
  }
}

.selected-option::after {
  content: '\25BC';
  position: absolute;
  right: 5px;
  top: 0;
  height: 1.5em;
  z-index: 200;
  transform: scale(.6);
}

.filter-select.opened .selected-option::after {
  content: '\0058';
  font-weight: bolder;
  font-size: 1.1em;
}

.filter.opened .selected-option::after {
  transform: scale(-.6);
}

.selected-option {
  background: #eee;
  padding: 0 0 0 .5em;
  width: 100%;
  position: absolute;
  top:0;
}

.project-filter h3 {
  margin: 0;
  font-size: .75em;
}

.filter-services .filter-wrapper,
.filter-services .filter-wrapper .selected-option {
  z-index: 999999999;
}

.filter-markets .filter-wrapper,
.filter-markets .filter-wrapper .selected-option{
  z-index: 888888888;
}

.filter-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: white;
  height: 0px;
  background: #eee;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 1;
}

.filter-select.opened .filter-wrapper {
  height: auto;
}

.filter-wrapper li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  width: 100%;
  padding: 0 0 0 .5em;
  border-top: 1px solid white;
  transition: 300ms ease;
  font-size: 1em;
}

@media screen and (min-width: 700px) {
  .filter-wrapper li {
    font-size: 1em;
  }
}

.filter-wrapper li:hover {
  background: rgba(206, 33, 49, .5);
  color: white;
}

.filter-wrapper li.selected {
  background: rgba(206, 33, 49, 1);
  color: white;
}

.projects-filter .filter {
  height: 2em;
  max-height: 2em;
  line-height: 2em;
}

@media screen and (min-width: 700px) {
  .projects-filter .filter {
    margin-right: 10px;
  }
}

.projects-filter .project-filter .filter-search {
  display: flex;
  justify-content: space-between;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.projects-filter .project-filter .filter-search input {
  flex: 0 0 80%;
  padding-left: 5px;
  border-radius: 0;
  background: #eee;
  border: none;
  font-size: 1em;
  flex: 0 1 80%;
}

.projects-filter .project-filter .filter-search button {
  flex: 0 0 18%;
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  flex: 1 0 20%;
}
@media only screen and (min-width : 768px) {
  .projects-filter .projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.projects-filter * {
  transition: all 600ms ease-in-out;
}

.projects-filter .project {
  width: 100%;
  transform: scale3d(1,1,1);
  transition: transform 600ms ease-in-out;
}

@media screen and (min-width:768px) {
  .projects-filter .project {
    width: auto;
    flex: 0 1 31%;
    margin: 1%;
  }
}

.projects-filter .project.project-hidden {
  transform: scale3d(0,0,0);
}

.projects-filter .project a {
  display: block;
}

.projects-filter .project-thumbnail {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 5px solid rgba(206, 33, 49, 1);
}

.projects-filter .project-thumbnail img {
  z-index: 1;
  width: 100%;
  height: auto;
}

.projects-filter .project a:hover img {
  transition: all 5000ms ease-in-out;
  transform: scale3d(1.1,1.1,1.1);
}

.projects-filter .project-description {
  position: absolute;
  z-index: 2;
  bottom: -100%;
  background: rgba(206, 33, 49, .75);
  color: white;
  padding: 15px 10px;
}

.projects-filter .project a:hover .project-description {
  bottom: 0;
}

.projects-filter .project h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  font-family: 'Source Sans Pro', sans-serif;
  letter-spacing: 0px;
  color: rgba(206, 33, 49, 1);
}

.projects-filter .project a:hover h3 {
  color: #333;
}