/* You can add global styles to this file, and also import other style files */
@font-face {
  font-family: "Suisse Int'l";
  font-weight: 300;
  src: url('SuisseIntl-Light.otf');
}
@font-face {
  font-family: "Suisse Int'l";
  font-weight: 700;
  src: url('SuisseIntl-Bold.otf');
}
@font-face {
  font-family: "Suisse Works";
  font-weight: 700;
  src: url('SuisseWorks-Bold.otf');
}
html {
  scroll-behavior: smooth;
  font-size: 1.2vw;
}
body {
  margin: 0;
  width: 100%;
  font-family: "Suisse Int'l", sans-serif;
}
body * {
  box-sizing: border-box;
}
body *::-webkit-scrollbar {
  display: none;
}
body *:focus {
  outline: none;
}
body img {
  width: 100%;
  line-height: 0;
}
@media (min-width: 1440px) {
  html {
    font-size: 18px;
  }
}
@media (min-width: 720px) {
  .desktop-hidden {
    display: none !important;
  }
}
@media (max-width: 720px) {
  .mobile-hidden {
    display: none !important;
  }
  html {
    font-size: 5vw;
  }
}
.image {
  line-height: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
  margin: 0;
  padding: 0;
}
ul {
  list-style-type: none;
}
.nobreak {
  white-space: nowrap;
}
p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  letter-spacing: 0.4px;
}
p.large {
  font-size: 1.3rem;
}
p a {
  color: #00d1b8;
  text-decoration: none;
}
p a:hover {
  text-decoration: underline;
}
.button {
  display: inline-block;
  cursor: pointer;
  padding: 18px 32px;
  line-height: 1;
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
  position: relative;
  transition: 0.7s cubic-bezier(0.6, 0, 0.4, 1);
  font-size: 1.5rem;
  white-space: nowrap;
  perspective: 100px;
  text-decoration: none;
}
.button::after {
  content: "";
  position: absolute;
  bottom: 0;
  background: #00d1b8;
  z-index: 2;
  width: 100%;
  height: 0;
  transition: 0.7s cubic-bezier(0.6, 0, 0.4, 1);
  left: 0;
}
.button .text,
.button .button-text {
  text-align: center;
  position: relative;
  z-index: 10;
  transition: 0.7s cubic-bezier(0.6, 0, 0.4, 1);
  text-decoration: none;
}
.button .text .one,
.button .button-text .one {
  color: #00d1b8;
  transition: 0.7s cubic-bezier(0.6, 0, 0.4, 1);
  position: relative;
  width: 100%;
}
.button .text .two,
.button .button-text .two {
  color: #fff;
  transition: 0.7s cubic-bezier(0.6, 0, 0.4, 1);
  position: absolute;
  top: 0;
  transform: translate(0, 30px) rotateX(-90deg);
  opacity: 0;
  width: 100%;
}
.button:hover {
  box-shadow: 0 0 30px rgba(0,209,184,0.5);
}
.button:hover .text .one,
.button:hover .button-text .one {
  transform: translate(0, -30px) rotateX(90deg);
  opacity: 0;
}
.button:hover .text .two,
.button:hover .button-text .two {
  transform: translate(0, 0) rotateX(0);
  opacity: 1;
}
.button:hover::after {
  height: 100%;
}



/*# sourceMappingURL=styles.css.map*/