header, footer {
  width: 100%;
}
header .template-content, footer .template-content {
  padding: 20px 20px;
  max-width: 1200px;
  position: relative;
}
header .template-content div, footer .template-content div {
  padding-left: 22px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
header .template-content div a, footer .template-content div a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 5px 12px;
}
header .template-content div a:hover, footer .template-content div a:hover {
  color: #FFF;
}
header .template-content div img, footer .template-content div img {
  margin-left: 10px;
  width: 100px;
}
header .template-content .menu-button, footer .template-content .menu-button {
  display: none;
  width: 37px;
  height: 22px;
  position: relative;
  cursor: pointer;
}
header .template-content .menu-button .line, footer .template-content .menu-button .line {
  width: 100%;
  height: 3px;
  background: #FFF;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
header .template-content .menu-button .line1, footer .template-content .menu-button .line1 {
  top: 0;
}
header .template-content .menu-button .line2, footer .template-content .menu-button .line2 {
  top: calc(50% - 1px);
}
header .template-content .menu-button .line3, footer .template-content .menu-button .line3 {
  bottom: 0;
}
header .template-content .menu-button.active .line2, footer .template-content .menu-button.active .line2 {
  opacity: 0;
}
header .template-content .menu-button.active .line1, footer .template-content .menu-button.active .line1 {
  top: 9.5px;
  transform: rotate(45deg);
}
header .template-content .menu-button.active .line3, footer .template-content .menu-button.active .line3 {
  bottom: 9.5px;
  transform: rotate(-45deg);
}

footer {
  padding: 0 !important;
}
footer .footer-content {
  display: flex;
  align-items: center;
  padding: 35px 25px !important;
  justify-content: space-between;
}
footer .footer-content div > img {
  margin-right: 20px;
}
footer .footer-content .info p {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  color: #cecece;
}
footer .footer-content .info p img {
  width: 16px;
  margin-right: 8px;
  display: inline-block;
}
footer .footer-content > div {
  display: flex;
  align-items: center;
}
footer .footer-content .copy {
  flex-wrap: wrap;
  text-align: right;
}
footer .footer-content .copy a {
  width: 100%;
}
footer .footer-content .copy p {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  margin-top: 5px;
  font-size: 11px;
  color: #dbe0e6;
}
footer .footer-content a, footer .footer-content a b {
  font-size: 10px;
  color: #f2f2f2;
  text-decoration: none;
}

.columns {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.columns .column {
  width: calc(100% - 12.5px);
}

body.no-scroll {
  overflow-y: hidden;
}

@media (max-width: 950px) {
  body {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }

  footer .footer-content {
    flex-wrap: wrap;
  }
  footer .footer-content .copy {
    text-align: center;
  }

  .columns {
    flex-wrap: wrap;
  }
  .columns .column {
    width: 100%;
  }
  .columns .column:first-child {
    margin-bottom: 20px;
  }

  header .template-content .menu-items {
    position: absolute;
    top: 100%;
    height: calc(100vh - 75px);
    align-items: flex-start;
    opacity: 0;
    left: -100%;
    transition: all 0.3s;
    background: var(--primary);
    width: 100%;
    flex-wrap: wrap;
    padding-left: 0;
    padding: 15px 0;
    z-index: 10000;
  }
  header .template-content .menu-items div {
    width: 100%;
    padding: 0;
  }
  header .template-content .menu-items div a {
    width: 100%;
    padding: 20px 20px;
    display: block;
  }
  header .template-content .menu-items div a:active {
    background: #000;
  }
  header .template-content .menu-items > a img {
    display: none;
  }
  header .template-content .menu-items.active {
    left: 0;
    opacity: 1;
  }
  header .template-content .menu-button {
    display: block;
  }
}
@media (max-width: 950px) {
  footer .footer-content {
    justify-content: center;
  }
  footer .footer-content div > img {
    width: 60px;
  }
  footer .footer-content a {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 20px;
  }
}
footer {
  width: 100%;
  background: var(--tertiary);
}
footer .footer-content {
  max-width: 1200px;
}
footer .footer-content img {
  max-width: 80px;
}