@charset "utf-8";

.contact {
    margin: 0;
    width: 100%;
    background: var(--compare);
  }
  

  
  .contact dl {
    padding:0 4rem 4rem;
    width: 100%;
    flex-direction: row !important;
  }

  
  .contact dl .column:first-of-type dd:nth-of-type(2):after {
      content:"FAX";
      font-variant: small-caps;
      margin-left: 1rem;
  }
  
   .contact dl dt:before {
    content: "";
    width: 1.25rem;
    margin-right: 0.5rem;
    margin-left: -0.5rem;
}
   .contact dl .column:first-of-type dt:before {
      background: url("../../images/phone-icon.svg");
      background-repeat: no-repeat;
  }
   .contact dl .column:nth-of-type(2) dt:before {
      background: url("../../images/mail-icon.svg");
      background-repeat: no-repeat;
  }
   .contact dl .column:nth-of-type(3) dt:before {
      background: url("../../images/map-pin-icon.svg");
      background-repeat: no-repeat;
  }
   .contact dl .column:last-of-type dt:before {
      background: url("../../images/clock-icon.svg");
      background-repeat: no-repeat;
  }
  
  .contact dl div {
    width: 25%;
    position: relative;
  }
  
  .contact dl dd::before {
    content: '';
    height: 100%;
    width: 2px;
    background: transparent;
    margin-right: 1rem;
  }
  
  .contact dt {
    margin: 0;
    font-weight: 600;
    line-height: 2;

  }
  
  .contact dd {
    margin: 0 !important;
    line-height: 1.5;
  
  }

  .contact .main {
    height: 100%; width: 100%; max-width: 1280px; margin: 1rem 0;
  }

.contact.column dl {
    flex-direction: column;
}

.multi-contact {
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    border-radius: .25rem;
    max-width: var(--max-width);
}

.multi-contact .main {
    margin: 0rem;
}

.multi-contact .contact {
    padding: 0 2rem;
    background: var(--compare-more);
}
.multi-contact .contact dl {
    padding: 0;
    margin: 1rem 0;
}

.multi-contact .contact dt{
    margin-top: 0;
}

.multi-contact h3{
    margin: 0;
    padding: 2rem 2rem 0;
    background: var(--compare-more);
}

.multi-contact h3:first-of-type {
    background: var(--color-6);
    color: var(--compare-more);
    margin: 0;
    padding:2rem;
}
.multi-contact h3:nth-of-type(odd):not(h3:first-of-type), 
.multi-contact .contact:nth-of-type(even) {
    background: var(--compare);
}


.multi-contact .block--container {
    overflow: hidden;
}

@media screen and (max-width: 480px) {

  .contact div.column {
    width: 100%;

  }

}