/* .contact{
  height: 100vh;
  width: 100%;
} */
.contact__container{
  background-image: none;
  padding-top: 0;
}

.contact__info{
  background-color: var(--black);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.contact__desc{
  padding: 20px;
  height: 250px;
  background-image: url(../images/contact-hero.png);
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact__desc>.tag{
  color: var(--white);
  border-color: var(--white);
  margin-left: auto;
}
.contact__desc>h1{
  color: var(--white);
}
.contact__list{
  padding: 32px;
}
.contact__item{
  padding-bottom: 32px;
}
.contact__item>span,
.contact__item>p{
  font-size: 14px;
  margin-bottom: 8px;
}
.contact__item>span{
  display: block;
  color: var(--white);
}
.map{
  height: 400px;
}

@media screen and (min-width: 768px){
  .map{
    height: 100vh;
  }
  .contact{
    position: relative;
  }
  .contact__desc{
    height: 325px;
  }
  .contact__info{
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    max-width: 395px;
  }
  .contact__list{
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .contact__item{
    padding-right: 12px;
  }
  .contact__item:nth-child(-n+2){
    border-bottom: var(--border);
    margin-bottom: 32px;
    border-color: var(--dark-gray-1);
  }
}