body,
html {
  background: none;
  -webkit-animation: unset;
          animation: unset;
  background-color: rgba(0, 14, 33, 1);
}

header {
  background-color: #000;
}

.contact-card-bg {
  position: absolute;
  right: 0;
  top: 0;
  background-color: transparent;
  border-color: #fff;
  border-top: 0px solid transparent;
  border-bottom: 100vh solid #fff;
  border-left: 350px solid transparent;
  border-right: 350px solid #fff;
  z-index: 1;
  transform: translateX(100vw);
  transition: 0.3s;
}

.contact-card {
  position: absolute;
  right: 0;
  /* top: 86px; */
  top: 0;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding: 1em;
  color: #000;
  z-index: 2;
  transition: right 0.3s;
  height: calc(100vh - 86px);
  width: 600px;
  opacity: 0;
  transition: 0.3s;
}

.contact-card .hire {
  margin-top: 80px;
  margin-bottom: 80px;
}

.contact-card .hire .hire-icons {
  display: flex;
  align-items: center;
  margin-right: 1em;
}

.contact-card.visible {
  opacity: 1;
}

.contact-card-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}

.contact-card-info-item img {
  width: 32px;
  height: auto;
}

.contact-card-info-item > img:first-of-type {
  margin-left: 300px;
}

.contact-card-info-item > div:last-of-type {
  margin-left: 2em;
}

#map {
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  margin-top: 86px;
  color: #000;
}

.click-me {
  padding-left: 30px;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  margin-right: 1em;
  /* IE does not support max-content */
  float: right;
}

.click-me::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 26px;
  background: url("../../imgs/SVG/top-hand.svg") no-repeat center / cover;
  -webkit-animation: pop 1s infinite;
          animation: pop 1s infinite;
}

.mobile-contact-card {
  display: none;
}

@-webkit-keyframes pop {
  0% {
    top: 0;
  }

  50% {
    top: -10px;
  }

  100% {
    top: 0px;
  }
}

@keyframes pop {
  0% {
    top: 0;
  }

  50% {
    top: -10px;
  }

  100% {
    top: 0px;
  }
}

@media screen and (max-width: 768px) {
  .contact-card,
  .contact-card-bg {
    display: none;
  }

  .mobile-contact-card {
    display: block;
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .mobile-contact-card .hire {
    display: none;
  }

  .contact-card-info-item > div:last-of-type {
    margin-left: 0.5em;
  }

  .contact-card-info-item > img:first-of-type {
    margin-left: 0;
  }

  .contact-card-info {
    margin: 0 1em;
  }

  .contact-card-info-item {
    margin-bottom: .5em;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .click-me {
    display: inline-block;
  }
}

@supports (-ms-ime-align: auto) {
  .click-me {
    display: inline-block;
  }
}

@media only screen and (max-width: 800px) {
  #map {
    height: 60vh;
    margin-top: 0;
  }
  
  .mobile-contact-card img {
    width: 16px;
    height: auto;
  }

  .mobile-contact-card {
    margin-top: 50px;
    padding: 1em 0;
    font-size: 14px;
    line-height: 1.75;
  }
}
