<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.contact {
  padding: 40px 0;
  @media screen and (max-width:768px) {
    padding: 24px 0;
  }
  &amp;:last-child {
    margin-bottom: 100px;
  }
}
.contact__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
  margin-top: -20px;
  @media screen and (max-width:980px) {
    margin: 0;
  }
  @media screen and (max-width:768px) {
    gap: 20px 2%;
  }
}
.contact__item {
  width: 30%;
  @media screen and (max-width:768px) {
    width: 49%;
  }
  @media screen and (max-width:480px) {
    width: 100%;
  }
}
.contact__link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100px;
  background: var(--color-gray-8);
  border-radius: 4px;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  font-weight: 500;
  color: var(--color-font-black);
  padding: 12px 40px 12px 16px;
  @media screen and (max-width:768px) {
    min-height: 80px;
  }
  @media screen and (max-width:480px) {
    min-height: 60px;
  }
  &amp;:hover {
    opacity: .8;
    box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.2);
  }
  &amp;::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 12px;
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960' fill='%23354245'%3E%3Cpath d='M504-480 320-664l56-56 240 240-240 240-56-56 184-184Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  small {
    font-size: var(--font-size-14);
    font-weight: 400;
    @media screen and (max-width:768px) {
      font-size: var(--font-size-12);
    }
  }
  p {
    line-height: 1.3;
    font-size: var(--font-size-18);
    margin: 0;
    @media screen and (max-width:768px) {
      font-size: var(--font-size-16);
    }
    br {
      @media screen and (max-width:480px) {
        display: none;
      }
    }
  }
}</pre></body></html>