@charset "UTF-8";

/**
 * hc-footer.css
 * 
 * CSS that is used by the footer section
 *
 */

/* ==========================================================================
   Site Footer
   ========================================================================== */
/**
 * Any screen size
 *
 */

.site-footer {
  background-color: var( --hc--color--green-light );
  border-bottom: 10px solid var( --hc--color--white );
  border-top: 10px solid var( --hc--color--white );
  display: inline-block;
/*  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.13);*/
  padding: 0;
  position: relative;
  top: 0;
  
  width: 100%;
}



.site-footer > .hc-site-footer__info-wrap{
  align-items: flex-start;
  display: flex;
  flex: 1 1 auto;
  height: 100%;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1728px;
  padding: 16px calc( var( --hc--spacing--unit-1x ) * 6 ) 20px;
/*  min-height: 88px;*/
  
}


.hc-site-footer__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.hc-site-footer__contact-title-wrap {
  margin: 5px auto 20px;
}

.hc-site-footer__contact-title {
  border-bottom: 3px solid var( --hc--color--white );
  filter: drop-shadow( var( --hc--text-shadow ));
  font-size: clamp( 16px, 1.0417vw, 18px);
  padding-bottom: 3px;
}

.hc-site-footer__contact {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.hc-site-footer__link-wrap {
  margin-right: 30px;
}

.hc-site-footer__link-wrap:last-child {
  margin-right: 0;
}

.hc-site-footer__link {
  align-items: center;
  display: flex;
  filter: drop-shadow( var( --hc--text-shadow ));
  font-size: clamp( 16px, 1.0417vw, 18px);
  text-decoration-line: none;
}

.hc-site-footer__link:hover,
.hc-site-footer__link:focus {
  color: var( --hc--color--green );
  text-decoration-line: none;
}

.hc-site-footer__link-icon-wrap {
  background-color: var( --hc--color--white );
  border-radius: 50vw;
  display: flex;
  padding: 10px;
  height: 50px;
  margin-right: 10px;
  transition: all 0.2s ease-in-out;
  width: 50px;
}

.hc-site-footer__link:hover .hc-site-footer__link-icon-wrap {
  background-color: var( --hc--color--green);
}

.hc-site-footer__link-icon {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  height: 100%;
  transition: all 0.2s ease-in-out;
  width: 100%;

}

.hc-site-footer__link-icon--1 {
  background-image: url( '../images/hc-phone-icon-green.svg' );
}

.hc-site-footer__link-icon--2 {
  background-image: url( '../images/hc-email-icon-green.svg' );
}

.hc-site-footer__link:hover .hc-site-footer__link-icon--1 {
  background-image: url( '../images/hc-phone-icon-white.svg' );
}

.hc-site-footer__link:hover .hc-site-footer__link-icon--2 {
  background-image: url( '../images/hc-email-icon-white.svg' );
}

.hc-site-footer__address-title-wrap {
  margin-bottom: 4px;
}

.hc-site-footer__address-title {
  border-bottom: 4px solid var( --hc--color--green );
  color: var( --hc--color--green );
  font-size: clamp( 16px, 1.0417vw, 18px);
  padding-bottom: 0;
}

.hc-site-footer__address-title span {
  font-family: 'Capture it', 'Arial', sans-serif;
  font-size: clamp( 28px, 2.08333vw, 36px);
  font-weight: normal;
}

.hc-site-footer__address {
  color: var( --hc--color--green );
  font-family: 'Noteworthy Light', 'Arial', sans-serif;
  font-size: clamp( 16px, 1.273vw, 22px);
  font-weight: bold;
  text-align: right;
  
}

.hc-site-footer__address p {
  white-space: pre-line;
}

@media (max-width: 1024px) {

/*========================================================
 * Footer
 *
 * 0-1024
 */



  .hc-site-footer__contact-title {
    border-bottom: 0;
    white-space: pre-line;
  }

  .hc-site-footer__contact {
    flex-direction: column;
  }

  .hc-site-footer__link-wrap {
    margin: 0 0 20px;
  }

} /* end of 0-1024 */


@media (max-width: 900px) {

/*========================================================
 * Footer
 *
 * 0-900
 */

  .site-footer {
    border-bottom-width: 5px;
    border-top-width: 5px;
  }

  

} /* end of 0-900 */


@media (max-width: 768px) {

/*========================================================
 * Footer
 *
 * 0-768
 */

  .hc-site-footer__info {
    align-items: flex-start;
    flex-direction: column;
  }

  .hc-site-footer__info-block-wrap--1 {
    order: 2;
    width: 100%;
  }

  .hc-site-footer__contact {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hc-site-footer__contact-title-wrap {
    margin: 20px auto 20px;
    text-align: center
  }

  .hc-site-footer__link-wrap {
    margin-right: 30px;
  }

  .hc-site-footer__link-text {
    white-space: nowrap;
  }

  .hc-site-footer__info-block-wrap--2 {
    order: 1;
    width: 100%;
  }

  .hc-site-footer__address-wrap {
    display: flex;
    justify-content: space-between;
  }



  

} /* end of 0-768 */


@media (max-width: 600px) {

/*========================================================
 * Footer
 *
 * 0-600
 */

  .hc-site-footer__info {
    align-items: flex-start;
    flex-direction: column;
  }

  .hc-site-footer__info-block-wrap--1 {
    order: 2;
    width: 100%;
  }

  .hc-site-footer__contact {
    flex-direction: row;
    justify-content: center;
  }

  .hc-site-footer__contact-title-wrap {
    margin: 20px auto 20px;
    text-align: center
  }

  .hc-site-footer__link-wrap {
    margin-right: 30px;
  }

  .hc-site-footer__link-text {
    white-space: nowrap;
  }

  .hc-site-footer__info-block-wrap--2 {
    order: 1;
    width: 100%;
  }

  .hc-site-footer__address-wrap {
    display: block;
    justify-content: space-between;
  }



  

} /* end of 0-600 */


@media (max-width: 400px) {

/*========================================================
 * Footer
 *
 * 0-400
 */


  .hc-site-footer__contact {
    justify-content: flex-start;
  }

  .hc-site-footer__contact-title-wrap {
    text-align: left;
  }

  

  

} /* end of 0-400 */