.project-covers::after {
    clear: both;
    content: '';
    display: table;
  }

.project-covers {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 0px;
    padding-top: 0px;
  
  }

  .project-cover {
    display: block;
    position: relative;
    margin-right: 5px;
    width: calc(50% - 2.5px);
  }

  .project-cover:nth-child(2n+1) {
    clear: left;
    margin-left: 0;
  }

  .project-cover:nth-child(2n) {
    margin-right: 0;
  }

  .project-covers a {
    transition: background 0.2s ease, color 0.2s ease;
  }

  .project-cover .cover-content {
    overflow: hidden;
    position: relative;
    margin-bottom: 5px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
  }

  .project-cover .cover-image-wrap {
    overflow: hidden;
    position: relative;
  }

  
.project-cover .cover-image::after {
  background-color: #fff;
  opacity: 0;
  -webkit-transition: background-color 0.2s ease, opacity 0.2s ease;
  -moz-transition: background-color 0.2s ease, opacity 0.2s ease;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}


.project-cover .cover-image::before {
  padding-bottom: 56.25%;
  content: '';
  display: block;
  width: 100%;
}

.image-title{
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  opacity: 0;
  transition: all .15s ease-out;
  align-items: center;
  justify-content: center;
  font-family: 'LandasansMedium';
  font-weight:normal;

}

@media (hover: hover){
  .image-title:hover{
    background-color: white;
    color: #002a42;
    opacity: 0.95;
  }
}

.touch-hover-effect{
  background-color: white;
  color: #002a42;
  opacity: 0.95;
}



.title-name{
  font-size: 30px;
  margin-bottom: 10px;
}

.title-year{
  font-family: 'Futura Md BT';
  font-weight: 800;
  font-size: 15px;
}

.project-cover .cover-image {
  position: relative;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  float: none;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  border-radius: 0px;
}

.project-cover .cover {
  left: 0;
  min-height: 100%;
  /*position: absolute;*/
  top: 0;
  border-radius: 0px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  min-height: 100%;
  overflow: hidden;
  width: 100%;
}

.project-cover .cover img {
  background-color: transparent;
  background-color: rgba(0, 0, 0, 0.03);
  object-fit: cover;
  height: calc(100% + 2px);
  left: 50%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 2px);
}


@media (max-width: 540px) {
  .project-covers {
    flex-direction: column;
  }

  .project-cover {
    width: 100%;
  }
}
  