.contact-card {
  padding: 28px;
}


.contact-card__addr {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 10px;
}

.contact-card__label {
  font-family: var(--ubuntu-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--unnamed-color-154269);
  margin: 0 0 4px 0;
}

.contact-card__value {
  font-family: var(--ubuntu-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--unnamed-color-154269);
  margin: 0;
}

.contact-card__blurb {
  font-family: var(--ubuntu-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--unnamed-color-154269);
  margin: 10px 0 18px 0;
  max-width: 800px;
}

.contact-card__methods {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;

  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 10px;
  align-items: center;
}

.contact-card__method {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.contact-card__icon {
  width: 22px;
  height: 16px;
  object-fit: contain;
  flex: 0 0 auto;
}

.contact-card__method-text {
  font-family: var(--ubuntu-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--unnamed-color-154269);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-card__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 6px;

  padding: 0 8px;
  box-sizing: border-box;
}

.contact-card__image-wrap {
  position: relative;
  width: 100%;
  margin-top: 18px;
}

.contact-card__image--base {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.contact-card__image--overlay {
  position: absolute;
  right: 0;
  bottom: 0;

  width: min(303px, 38%);
  height: auto;

  transform: translate(10%, 12%);
  pointer-events: none;
}

.demo-title{
  font-family: 'ATPPleasurize-Regular', 'ATP-Pleasurize', sans-serif;
  font-size: 48px;
  line-height: 52px;
  color: #154269;

  margin: 0;
}
.demo-form{
  padding-top: 16px;
}


/* -------------------------
   Responsive
------------------------- */

@media (max-width: 900px) {
  .contact-card__addr {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-card__methods {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-card__method-text {
    white-space: normal;
  }

  .contact-card__image {
    padding: 0;
  }
  .contact-card__image--overlay {
    width: min(220px, 60%);
    transform: translate(6%, 10%);
  }
  .demo-title br {
    display: none;
  }

}
@media (max-width: 700px) {
  .demo-title {
    font-size: 42px;
    line-height: 40px;
  }
}
