html {
  --theme-color: #1493ff;
  --theme-color-link: #1493ff;
  --theme-color-dark: #1493ff;
  --theme-color: #1e88e5;
  --theme-color-accent: #008a63;
  --theme-color-green: #008a63;
  --theme-color-red: #d9534f;
  --theme-background-color: #282d3a;
  --font-bold: 'Figtree Bold';
  --font-medium: 'Figtree Medium';
  --font-regular: 'Figtree Regular';
  --font-light: 'Figtree Light';
}
.font-bold {
  font-family: 'Figtree Bold';
}
.font-medium {
  font-family: 'Figtree Medium';
}
.font-regular {
  font-family: 'Figtree Regular';
}
.font-light {
  font-family: 'Figtree Light';
}
.telephone-link {
  padding: 1rem;
  border-radius: 0.5rem;
  text-shadow: none;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  width: 75%;
  display: block;
}
.telephone-link > a {
  color: white;
  white-space: nowrap;
}
.footer-section {
  background: #23232b;
  line-height: 135%;
  text-shadow: 2px 2px 3px #171717;
  padding-top: 20px;
  min-height: 320px;
}
.footer-section .top {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto;
  grid-auto-flow: column;
  grid-gap: 20px;
  justify-items: center;
  /* @media (max-width: 1200px) {
            grid-template-columns: repeat(3, 1fr);
            grid-auto-flow: row;
            padding-bottom: 20px;
        }

        @media (max-width: 767px) {
            grid-template-columns: auto;
        }
*/

}
.footer-section .top .logo {
  color: white;
  max-width: 255px;
  text-align: center;
  /*img {
                display: block;
            }*/

}
@media (max-width: 1200px) {
  .footer-section .top .logo {
    grid-column-start: 1;
    grid-column-end: 4;
    margin: auto;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .footer-section .top .logo {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.footer-section .top .logo .address {
  font-family: var(--font-regular);
  font-size: 15px;
  text-align: center;
  margin-top: 10px;
}
@media (max-width: 1200px) {
  .footer-section .top .logo .address {
    margin-left: 5px;
  }
}
.footer-section .top .logo .fsga {
  font-family: var(--font-medium);
  margin: 20px 0;
}
.footer-section .top .link-col {
  text-align: center;
  z-index: 1;
}
@media (min-width: 1200px) {
  .footer-section .top .link-col {
    padding: 25px 0;
  }
}
.footer-section .top .link-col > div {
  display: inline-block;
  text-align: left;
  min-width: 200px;
}
@media (max-width: 767px) {
  .footer-section .top .link-col > div {
    text-align: center;
  }
}
.footer-section .top .link-col h4 {
  color: white;
  font-family: var(--font-bold);
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 15px;
}
.footer-section .top .link-col h4:not(:first-of-type) {
  padding-top: 10px;
}
.footer-section .top .link-col ul {
  text-align: left;
}
@media (max-width: 767px) {
  .footer-section .top .link-col ul {
    text-align: center;
  }
}
.footer-section .top .link-col ul li {
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .footer-section .top .link-col ul li {
    display: inline-block;
  }
  .footer-section .top .link-col ul li + li {
    margin-left: 10px;
  }
}
.footer-section .top .link-col ul li a {
  font-family: var(--font-regular);
  position: relative;
  color: white;
  padding: 3px 0;
  font-size: 13px;
  transition: all 0.15s;
}
.footer-section .top .link-col ul li a:after {
  content: "";
  position: absolute;
  border: 2px solid transparent;
  left: -12px;
  top: 3px;
  bottom: 3px;
  transition: all 0.15s;
}
@media (max-width: 767px) {
  .footer-section .top .link-col ul li a:after {
    content: none;
  }
}
.footer-section .top .link-col ul li a:hover {
  font-family: var(--font-medium);
}
.footer-section .top .link-col ul li a:hover:after {
  border: 2px solid white;
}
.footer-section hr {
  /*border: none;
        border-bottom: 1px solid #fff;
        opacity: .5;
        margin: 10px auto;
        width: 65%;
        box-shadow: 0 20px 20px -20px #333;
        height: 20px;*/
  border: none;
  width: 65%;
  margin-top: 0;
  opacity: 0.5;
  border-bottom: 1px solid white;
  box-shadow: 0 20px 20px -20px rgba(45, 45, 45, 0.6);
  margin: 10px auto 10px;
  z-index: 1;
}
.footer-section .bottom {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-flow: row;
  grid-gap: 20px;
  padding: 20px;
  color: white;
  font-family: var(--font-medium);
  align-content: flex-end;
}
.footer-section .bottom .important {
  text-align: center;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  margin: auto;
}
@media (max-width: 767px) {
  .footer-section .bottom .important {
    grid-auto-flow: row;
    grid-gap: 10px;
  }
}
.footer-section .bottom .important div {
  padding: 0 10px;
}
.footer-section .bottom .important div + div {
  border-left: 2px solid white;
}
@media (max-width: 767px) {
  .footer-section .bottom .important div + div {
    border-left: none;
  }
}
.footer-section .bottom .important p {
  color: white;
  font-family: var(--font-regular);
  font-size: 13px;
  margin: 0;
}
.footer-section .bottom .important a {
  color: white;
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  margin-bottom: -3px;
  font-family: var(--font-medium);
}
.footer-section .bottom .important a:hover {
  border-bottom: 2px solid rgba(255, 255, 255, 0.75);
}
.footer-section .bottom .social-wrap {
  display: grid;
  align-items: flex-end;
}
.footer-section .bottom .social-wrap .social-media {
  font-size: 24px;
  text-align: center;
  display: grid;
  grid-gap: 15px;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  margin: auto;
}
.footer-section .bottom .social-wrap .social-media a {
  color: white;
}
.footer-section .bottom .social-wrap .social-media svg {
  display: inline-block;
  margin: 5px 10px;
}
