@font-face {
  font-family: 'Hurme';
  src: url('../fonts/Hurme_Geometric_Sans/HurmeGeometricSans1_Black.otf');
  font-weight: 900;
}

@font-face {
  font-family: 'Hurme';
  src: url('../fonts/Hurme_Geometric_Sans/HurmeGeometricSans1_Bold.otf');
  font-weight: 700;
}

@font-face {
  font-family: 'Hurme';
  src: url('../fonts/Hurme_Geometric_Sans/HurmeGeometricSans1_Light.otf');
  font-weight: 300;
}

@font-face {
  font-family: 'Hurme';
  src: url('../fonts/Hurme_Geometric_Sans/HurmeGeometricSans1_SemiBold.otf');
  font-weight: 500;
}

:root {
  --swiper-pagination-bullet-inactive-color: #56565C;
  --swiper-pagination-color: #000;
  --swiper-pagination-bullet-width: 14px;
  --swiper-pagination-bullet-height: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Hurme', canada-type-gibson, sans-serif;
}

html.no-scroll,
body.no-scroll {
  overflow-y: hidden;
  position: relative;
  height: 100vh;
}

footer {
  background-color: #fff;
  padding: 40px 0;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .logo {
  width: 170px;
}

footer .terms {
  text-align: right;
}

footer .terms .link {
  color: #000;
  text-decoration: none;
  font-weight: 300;
  font-size: 14px;
  margin: 0 15px;
}

footer .terms .disclaimer {
  color: #000;
  font-weight: 300;
  font-size: 14px;
  margin: 0;
  margin-top: 20px;
}

footer .mobile {
  display: none;
}

@media screen and (max-width: 992px) {
  footer .terms .disclaimer {
    display: none;
  }

  footer .terms .link {
    display: block;
    margin-top: 10px;
  }

  footer .mobile {
    display: block;
  }

  footer .disclaimer-mobile {
    margin-bottom: 0;
    margin-top: 20px;
    font-weight: 300;
    text-align: center;
  }
}