html {
  --theme-color: #2960c0;
  --theme-color-link: #0e7bf7;
  --theme-color-dark: #00278e;
  --theme-color-accent: #008a63;
  --theme-color-green: #008a63;
  --theme-color-red: #d9534f;
}
.footer-section {
  background: linear-gradient(to bottom, #263644, #26323c);
  border-top: 2px solid #171e25;
  line-height: 135%;
  text-shadow: 2px 2px 3px #171717;
  padding-top: 20px;
  min-height: 320px;
}
.footer-section .top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  grid-auto-flow: column;
  grid-gap: 20px;
}
@media (max-width: 1200px) {
  .footer-section .top {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: row;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .footer-section .top {
    grid-template-columns: auto;
  }
}
.footer-section .top .logo {
  color: white;
  font-family: 'Gotham Medium';
  max-width: 250px;
}
@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 img {
  display: block;
}
.footer-section .top .logo .address {
  font-size: 15px;
  text-align: center;
  margin-top: 10px;
}
@media (max-width: 1200px) {
  .footer-section .top .logo .address {
    margin-left: 5px;
  }
}
.footer-section .top .link-col {
  text-align: center;
  z-index: 2;
}
@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: 150px;
}
@media (max-width: 767px) {
  .footer-section .top .link-col > div {
    text-align: center;
  }
}
.footer-section .top .link-col h4 {
  color: white;
  font-family: 'Gotham Bold';
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 15px;
}
.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: 'Gotham Book';
  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: 'Gotham 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;
  height: 20px;
  width: 65%;
  height: 50px;
  margin-top: 0;
  opacity: 0.5;
  border-bottom: 1px solid white;
  box-shadow: 0 20px 20px -20px rgba(45, 45, 45, 0.6);
  margin: -40px auto 10px;
  z-index: 1;
}
.footer-section .bottom {
  display: grid;
  grid-template-columns: 250px auto 250px;
  grid-template-rows: auto;
  grid-auto-flow: column;
  grid-gap: 20px;
  padding: 20px;
  color: white;
  font-family: 'Gotham Medium';
  align-content: flex-end;
}
@media (max-width: 1200px) {
  .footer-section .bottom {
    grid-template-columns: auto;
    grid-auto-flow: row;
  }
}
.footer-section .bottom .important {
  text-align: center;
  display: grid;
  align-items: flex-end;
  grid-gap: 10px;
}
.footer-section .bottom .important p {
  color: white;
  font-family: 'Gotham Book';
  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: 'Gotham Medium';
}
.footer-section .bottom .important a:hover {
  border-bottom: 2px solid rgba(255, 255, 255, 0.75);
}
.footer-section .bottom .copyright {
  /*text-align: center;*/
  display: grid;
  align-items: flex-end;
}
@media (max-width: 1200px) {
  .footer-section .bottom .copyright {
    text-align: center;
  }
}
.footer-section .bottom .social-wrap {
  display: grid;
  align-items: flex-end;
}
.footer-section .bottom .social-wrap .social-media {
  font-size: 28px;
  text-align: right;
}
@media (max-width: 1200px) {
  .footer-section .bottom .social-wrap .social-media {
    text-align: center;
  }
}
.footer-section .bottom .social-wrap .social-media a {
  color: white;
}
.footer-section .bottom .social-wrap .social-media svg {
  display: inline-block;
  margin: 5px;
}
