section header > h1{
  font-size: 2.25rem;
  font-weight:700;
  margin-bottom: 3.125rem;
}

#team{
  margin-bottom:6rem;
}

#contact h2{
  font-size: 2.25rem;
  font-weight:700;
  border-bottom: 1px solid #000;
}

#contact .column > div{
  border-bottom: 1px solid #000;
  padding: .5rem 0;
  display: flex;
  justify-content: space-between;
}

#contact .column > div:last-child > div:first-child{
  font-size:.8rem;
}

.card-thumb{
  display:block;
  border-radius: 10px;
  border: 1px solid #000;
  height: 0;
  padding-bottom:150%;
  width: 100%;
  overflow:hidden;
  position:relative;
}

.card-thumb img{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  object-fit:cover;
 
}

.card-thumb:after{
  content:"";
  background-color: var(--color-light);
  display:block;
  position:absolute;
  width:100%;
  height:100%;
  mix-blend-mode: lighten;
  opacity:.4;
}

.thumb-infos{
  position: absolute;
  top:0;
  left:0;
  width:calc(100% - 2rem);
  height:100%;
  background-color:rgb(255,255,255,.7);
  padding:1rem;
  opacity: 0;
  transition: opacity .3s ease;
}

.card-thumb:hover .thumb-infos{
  opacity: 1;
}

.thumb-infos h3{
  border-bottom: 1px solid #000;
  padding: .5rem 0;
  font-weight: 700;
  font-size: 1rem;
}

.thumb-infos h3 + p{
  border-bottom: 1px solid #000;
  padding: .5rem 0;
  margin-bottom: .5rem;
}

@media screen and (min-width: 768px){
  #contact .column img{
    width: 400px;
    height: 400px;
    object-fit: contain;
    margin: auto;
    display:block;
  }
}