/* fauxgram */

.fauxgram { width:100%; background-color:var(--cty-brand-orange); color:#2F2B1D; }

.fauxgram-row { width:100%; display:flex; }
.fauxgram-follow { width:100%; }
.fauxgram-follow a { display:flex; width:100%; height:100%; padding:60px 30px; align-items:center; text-decoration:none; color:inherit; }
.fauxgram-follow a:hover { color:inherit; text-decoration:none; }
.fauxgram-follow a div { width:100%; text-align:center; }

.fauxgram-icon { color:white; font-size:60px; line-height:1; }
.fauxgram-headline { font-weight:700; font-size:36px; line-height:1; margin-top:12px; }
.fauxgram-handle { font-weight:600; font-size:16px; line-height:1; margin-top:18px; }

.fauxgram-cell { width:50%; }
.fauxgram-img { width:100%; padding-bottom: 133%; background-size:cover; background-position:center center; }

@media all and (min-width: 992px) {
  .fauxgram { width:100%; display:flex; }
  .fauxgram-row { width:40%; }
  .fauxgram-follow { width:20%; }
}


/* footer */

:root {
  --footer-color:#332E21;
  --footer-bg-main:white; 
  --footer-bg-legal:#12703E;
  --footer-button-text: #332E21;
  --footer-button-bg: white;
  --footer-button-text-hover: #12703E;
  --footer-button-bg-hover: white;
}

.footer-main { background-color:var(--footer-bg-main); color:var(--footer-color); padding:2rem 0; }

.footer-logo { width:100%; max-width:200px; margin:1rem auto; }

.footer-address { font-weight:500; margin:1rem 0 0.5rem 0; }
.footer-address a { color:inherit; }
.footer-address a:hover { color:inherit; }

.footer-headline { font-size:1.3rem; margin-top:1rem; margin-bottom:0.5rem; }
.footer-subscribe { margin-bottom:1rem; }
.btn-brand-footer { 
  background-color:var(--footer-button-bg); 
  border:0;  
  color:var(--footer-button-text); 
  font-size:16px; line-height:30px; text-transform:none; letter-spacing:0.020rem; 
  border-radius:20px; 
  margin: 0; 
  padding: 0px 12px; 
  transition:var(--cty-transition-hover);  
  text-decoration:none; 
}
.btn-brand-footer:hover {  
  background-color:var(--footer-button-bg-hover); 
  color:var(--footer-button-text-hover);  
  text-decoration:none; 
}

.footer-social { display:block; margin:0.5rem 0 1rem 0; }
.footer-social span { font-weight:500; }
.footer-social a { display:inline-block; width:24px; height:24px; font-size:20px; line-height:24px; border-radius:50%; text-align:center; margin:0 8px; }
.footer-social a { text-decoration:none; color:var(--footer-button-text); background-color:var(--footer-button-bg); border:none; transition: all 0.15s linear 0s; }
.footer-social a:hover { color:var(--footer-button-text-hover); background-color:var(--footer-button-bg-hover); }

.footer-ul { margin:0; padding:0; list-style:none; }
.footer-ul li { font-weight:500; }
.footer-ul li a { text-decoration:none; }
.footer-ul li a:hover { text-decoration:none; }

.footer-break { background-color:var(--footer-bg-legal);  }
.footer-break-line { border-top:1px solid var(--cty-brand-green); opacity:0.5; }

.footer-legal { background-color:var(--footer-bg-legal); color:white; padding:2rem 0; }
.footer-legal p { color:inherit; margin:0; font-size:0.9rem; }
.footer-legal a { color:inherit; }
.footer-legal a:hover { color:inherit; }

.footer-legal-links { margin-top:1rem; font-size:0.9rem; }
.footer-legal-links a { display:inline-block; padding:0 0.5rem; }

@media screen and (min-width: 992px) {
  .footer-main { padding-bottom:1rem; }
  
  .footer-logo { margin:1rem 0; }
  .footer-address {  }

  .footer-social a {  }

  .footer-legal { padding:1.5rem 0; }
  .footer-legal-links { margin:0; }
  .footer-legal-links a { padding:0 0 0 1rem; }

}