/**
 * Variables.
 */
html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  font-family: "Exo", sans-serif;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
}
body::-webkit-scrollbar {
  display: none;
}

p {
  margin: 0;
}

figure {
  margin: 0;
}

img {
  display: block;
}

.stop-scrolling {
  overflow: hidden;
}

.wrap {
  margin-left: 20px;
  margin-right: 20px;
}
@media screen and (min-width: 1315px) {
  .wrap {
    max-width: 1275px;
    margin-left: auto;
    margin-right: auto;
  }
}

.section-navigation {
  display: none;
}
@media screen and (min-width: 1025px) {
  .section-navigation {
    display: block;
    max-width: 50px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    cursor: pointer;
  }
  .section-navigation.section-nav-up {
    bottom: auto;
    top: 90px;
    transform: rotate(180deg);
    visibility: hidden;
  }
}
@media screen and (min-width: 1920px) {
  .section-navigation {
    right: 190px;
  }
}

.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
/**
 * Header
 */
.hamburger {
  display: inline-flex;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  color: #fff;
  text-transform: none;
  background-color: transparent;
  border: 0;
  padding: 4px 0;
  margin: -13px 0 0;
  overflow: visible;
  outline: 0;
  position: absolute;
  top: 50%;
  right: 30px;
  z-index: 1;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger .hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
  width: 28px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger .hamburger-inner::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  top: -8px;
}
.hamburger .hamburger-inner::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  bottom: -8px;
}
.hamburger--collapse .hamburger-inner {
  /* stylelint-disable-line */
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  /* stylelint-disable-line */
  top: -16px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner ::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger-box {
  width: 28px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.header {
  background-color: transparent;
  position: fixed;
  top: 0;
  height: 80px;
  width: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
  transition: top 0.2s ease-in-out;
}
.header.show-bg {
  background-color: rgba(0, 0, 0, 0.3);
}
.header.default-header-hide {
  top: -80px;
  background-color: rgba(0, 0, 0, 0.3);
}
.header.fixed {
  background-color: rgba(0, 0, 0, 0.3);
}
.header.nav-up {
  top: -80px;
}
.header.nav-down {
  top: 0;
}
.header__wrap {
  width: 100%;
  margin-left: 30px;
  margin-right: 30px;
}
.header__logo .logo {
  fill: #fff;
}
.header__nav {
  position: absolute;
  top: 0;
  right: -100%;
  z-index: 2;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  width: 245px;
  background-color: #fff;
  padding: 20px 20px 20px 60px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 768px) {
  .header__nav {
    width: 354px;
    padding-right: 40px;
    padding-left: 66px;
  }
}
.header__nav.open {
  right: 0;
}
.header__nav__close {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(../images/nav-close.png) no-repeat 0 0;
  align-self: flex-end;
  cursor: pointer;
}
.header__nav__list {
  list-style: none;
  margin: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
}
.header__nav__list li {
  padding: 8px 0;
}
.header__nav__list a {
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Big Shoulders Stencil Text", Arial;
  color: #1C60BC;
  font-size: 24px;
  line-height: 35px;
  font-weight: 500;
  display: block;
}

/**
 * Footer
 */
.footer {
  background-color: #E2E1DD;
  position: relative;
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 30px 0 40px;
  }
}
.footer__wrap ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
}
.footer__top {
  display: flex;
}
@media screen and (min-width: 980px) {
  .footer__top {
    align-items: center;
  }
}
.footer__top__logos {
  width: 40%;
}
.footer__top__logos img {
  max-width: 100%;
  display: block;
}
@media screen and (min-width: 980px) {
  .footer__top__logos img {
    display: inline-block;
  }
}
.footer__top__logos img + img {
  margin-top: 30px;
}
@media screen and (min-width: 980px) {
  .footer__top__logos {
    width: 42%;
  }
  .footer__top__logos img + img {
    margin-top: 0;
    margin-left: 20px;
  }
}
.footer__top__wrapper {
  width: 60%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (min-width: 980px) {
  .footer__top__wrapper {
    width: 58%;
    flex-direction: row;
  }
}
.footer__top__links {
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (min-width: 980px) {
  .footer__top__links {
    width: 70%;
    flex-direction: row;
  }
}
.footer__top__links a {
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  text-decoration: none;
  color: #313131;
}
@media screen and (min-width: 768px) {
  .footer__top__links a {
    font-size: 20px;
    line-height: 30px;
  }
}
.footer__top__links li {
  margin-bottom: 3px;
}
.footer__top__links li + li {
  margin-left: 12px;
}
@media screen and (min-width: 980px) {
  .footer__top__links li + li::before {
    content: "";
    width: 1px;
    height: 14px;
    border-left: 3px solid #313131;
    display: inline-block;
    margin-right: 10px;
  }
}
.footer__top__social {
  justify-content: flex-end;
}
@media screen and (min-width: 980px) {
  .footer__top__social {
    width: 30%;
  }
}
.footer__top__social li + li {
  margin-left: 10px;
}
.footer__top__social a {
  display: block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100%;
}
.footer__top__social .mail {
  background-image: url("../images/iconmail.png");
}
.footer__top__social .youtube {
  background-image: url("../images/iconyoutube.png");
}
.footer__top__social .fb {
  background-image: url("../images/iconfb.png");
}
.footer__top__social .insta {
  background-image: url("../images/iconinsta.png");
}
.footer__top__social .linkedin {
  background-image: url("../images/iconlinkedin.png");
}
.footer__top__social .twitter {
  background-image: url("../images/icontwitter.png");
}
.footer__bottom {
  color: #5C5959;
  font-style: italic;
  padding-top: 20px;
  margin-top: 25px;
  border-top: 2px solid #a7a7a7;
  font-size: 12px;
  line-height: 14px;
}
.footer__bottom a {
  color: inherit;
}
@media screen and (min-width: 768px) {
  .footer__bottom {
    font-size: 14px;
    line-height: 18px;
  }
}
.footer__bottom__copyright {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .footer__bottom__copyright {
    margin-bottom: 20px;
  }
}
.footer__bottom__copyright .icons img {
  display: inline;
}
.footer__bottom__privacy {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .footer__bottom__privacy {
    margin-bottom: 20px;
  }
}
.footer__credits {
  margin-top: 15px;
  font-style: italic;
  color: #5C5959;
  font-size: 12px;
  line-height: 14px;
}
.footer__credits a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .footer__credits {
    font-size: 14px;
    line-height: 18px;
    margin-top: 20px;
  }
}
