.contact {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  padding-bottom: 100px;
}

.blue-rectangle {
  background: var(--color-turquoise);
  height: 84.31px;
  width: 78.29px;
  transform: translate(-50%, 170px);
}

.grey-rectangle {
  background: #efefef;
  height: 95px;
  width: 84px;
  transform: translate(-20%, 60px);
  z-index: -1;
}

.contact-header {
  font-family: var(--font-rubik);
  font-weight: 500;
  z-index: 1;
}

.contact-list {
  z-index: 0;
}

.contact-item {
  letter-spacing: 0.08px;
  font-size: 11px;
  font-weight: 300;
  line-height: 25px;
  text-align: right;
}

.contact-item--icon {
  height: 12px;
  margin-left: 17px;
  vertical-align: middle;
  width: 12px;
}

@media only screen and (max-device-width: 811px) {
  .contact-header {
    font-size: 12px;
    line-height: 28px;
    width: 112px;
  }
}

@media only screen and (min-device-width: 812px) {
  .contact-header {
    font-size: 38px;
    line-height: 46px;
    width: 196px;
  }

  .blue-rectangle {
    height: 211px;
    transform: translate(-258px, 170px);
    width: 196px;
  }

  .grey-rectangle {
    height: 190px;
    transform: translate(19px, 60px);
    width: 168px;
  }
}

