/* ######## GRID ######### */
/* ######## MARGINS / PADDING ########### */
/* ############### */
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 3;
  background-color: #1D71B9;
  height: 60px;
}
header .logo {
  background-color: #fff;
  padding: 10px;
  display: inline-block;
  position: relative;
  z-index: 3;
}
header .logo img,
header .logo picture {
  display: block;
}
@media print, screen and (max-width: 1024px) {
  header nav {
    display: none;
    background: #1D71B9;
    position: absolute;
    width: 100%;
    left: 0;
    top: 60px;
    z-index: 2;
    padding-top: 30px;
  }
}
header nav ul {
  margin: 0;
  text-align: right;
}
@media print, screen and (max-width: 1024px) {
  header nav ul {
    text-align: center;
  }
}
header nav ul li {
  list-style: none;
  display: inline-block;
}
@media print, screen and (max-width: 1024px) {
  header nav ul li {
    display: block;
  }
}
header nav ul li.active a {
  border-bottom-color: #fff;
}
@media print, screen and (max-width: 1024px) {
  header nav ul li.icon {
    display: inline-block;
  }
}
header nav ul li a {
  color: #fff;
  display: inline-block;
  padding: 16px 20px 15px;
  border-bottom: 3px solid #1D71B9;
  text-transform: uppercase;
  font-weight: 700;
}
@media print, screen and (max-width: 1024px) {
  header nav ul li a {
    padding: 8px 10px;
  }
}
header nav ul li a:hover,
header nav ul li a:focus {
  color: #fff;
  border-bottom-color: #E2001A;
  transition: border-bottom-color 0.3s;
}
header nav ul li a.icon {
  position: relative;
  height: 60px;
  width: 30px;
  color: #1D71B9;
}
header nav ul li a.icon:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px auto;
}
header nav ul li a.icon.search:after {
  background-image: url("/static/img/icons/search.svg");
}
header nav ul li a.icon.login:after {
  background-image: url("/static/img/icons/login.svg");
}
header .navToggle {
  display: block;
  height: 60px;
  width: 60px;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
@media print, screen and (min-width: 1024px) {
  header .navToggle {
    display: none;
  }
}
header .navToggle.active:after {
  opacity: 0;
}
header .navToggle.active:before {
  opacity: 1;
}
header .navToggle.active + nav {
  display: block;
}
header .navToggle:after,
header .navToggle:before {
  content: "";
  display: block;
  height: 60px;
  width: 60px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px auto;
  position: absolute;
  left: 0;
  top: 0;
}
header .navToggle:after {
  opacity: 1;
  background-image: url("/static/img/icons/menu.svg");
}
header .navToggle:before {
  opacity: 0;
  background-image: url("/static/img/icons/menu-close.svg");
  background-size: 20px auto;
}
footer {
  padding-bottom: 32px;
}
footer.mt {
  margin-top: 1.25rem;
}
@media print, screen and (min-width: 650px) {
  footer.mt {
    margin-top: 5rem;
  }
}
footer .bgblue {
  background-color: #1D71B9;
  margin-bottom: 2rem;
}
footer .bgblue h5 {
  text-align: center;
  color: #fff;
  margin-bottom: 0;
  padding: 15px 0 16px;
}
footer p {
  color: #707070;
}
footer .bgwhite {
  position: relative;
}
footer .bgwhite h5 {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
footer .bgwhite h5:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  background-color: #1D71B9;
}
footer .bgwhite .large-3:first-child:after {
  display: none;
}
footer .bgwhite .large-3:after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #E1E1E1;
  transform: translateX(-0.9375rem);
}
footer nav ul {
  text-align: center;
  margin: 3rem 0;
}
footer nav ul li {
  list-style: none;
  display: inline-block;
  position: relative;
  padding-left: 10px;
  margin-left: 10px;
}
footer nav ul li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #707070;
}
footer nav ul li:first-child {
  margin-left: 0;
}
footer nav ul li:first-child:after {
  display: none;
}
footer nav ul li a {
  color: #707070;
  display: block;
}
footer .logo {
  display: block;
  margin-bottom: 1rem;
}
aside {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 3;
  display: none;
}
@media print, screen and (min-width: 650px) {
  aside {
    display: block;
  }
}
aside ul {
  margin-left: 0;
}
aside ul li {
  display: block;
}
aside ul li a {
  display: block;
  line-height: 60px;
}
aside ul li a.icon {
  position: relative;
  color: #fff;
  background-color: #1D71B9;
  padding-right: 10px;
  min-height: 60px;
  transform: translateX(100%);
  transition: transform 0.3s;
  text-transform: uppercase;
}
aside ul li a.icon:hover {
  transform: translateX(0%);
}
aside ul li a.icon:after {
  position: absolute;
  left: -60px;
  top: 0;
  display: block;
  background-color: #1D71B9;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 26px;
  background-image: url("/static/img/icons/bookmark.svg");
  height: 60px;
  width: 60px;
}
aside ul li a.icon .img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -60px;
  top: 0;
  background-color: #1D71B9;
  height: 60px;
  width: 60px;
}
aside ul li a.icon.contact:after {
  background-image: url("/static/img/icons/contact.svg");
}
aside ul li a.icon.login:after {
  background-image: url("/static/img/icons/login.svg");
}
aside ul li a.icon.insta:after {
  background-image: url("/static/img/icons/instagram.svg");
}
aside ul li a.icon.fb:after {
  background-image: url("/static/img/icons/facebook-f.svg");
}
aside ul li a.icon.youtube:after {
  background-image: url("/static/img/icons/youtube.svg");
}
aside ul li a.icon.news:after {
  background-image: url("/static/img/icons/envelope-open-text.svg");
}
.breadcrumb {
  margin-top: 0.5rem;
}
.breadcrumb i {
  display: inline-block;
  margin: 0 5px;
  height: 10px;
  background-color: #E1E1E1;
  width: 1px;
}
.withtabs .breadcrumb {
  margin-left: 0.9375rem;
  margin-right: 0.9375rem;
}
.withsidebar .breadcrumb {
  margin-left: 2rem;
  margin-right: 2rem;
}
/*# sourceMappingURL=navfoot.css.map */