@font-face {
  font-family: "Cabin";
  src: url("../assets/fonts/Cabin-Bold.woff") format("woff"), url("../assets/fonts/Cabin-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Cabin";
  src: url("../assets/fonts/Cabin-Medium.woff") format("woff"), url("../assets/fonts/Cabin-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Cabin";
  src: url("../assets/fonts/Cabin-Regular.woff") format("woff"), url("../assets/fonts/Cabin-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Cabin;
  color: #333333;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  cursor: pointer;
}

.btn {
  color: #1B1464;
  background-color: #FBB03B;
  padding: 15px 25px;
  -webkit-transition: .5s;
  transition: .5s;
  cursor: pointer;
}

.btn:hover {
  background-color: #1B1464;
  color: #FBB03B;
}

.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.coming-soon {
  position: relative;
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: url("../assets/images/coming-soon.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.coming-soon .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.coming-soon .coming-soon-title {
  color: white;
  font-size: 76px;
  margin-top: 40px;
  text-align: center;
}

.coming-soon .coming-soon-text {
  color: white;
  font-size: 18px;
  text-align: center;
  margin: 30px 0;
  max-width: 585px;
}

.coming-soon .coming-soon-text a {
  color: white;
}

.coming-soon .coming-soon-text a:hover {
  text-decoration: underline;
}

.coming-soon .coming-soon-text a span {
  font-family: 'Times New Roman', Times, serif;
  color: white;
}

.coming-soon .coming-soon-copyright {
  position: absolute;
  bottom: 10px;
  text-align: center;
}

.coming-soon .coming-soon-copyright span, .coming-soon .coming-soon-copyright a {
  color: white;
}

.coming-soon .coming-soon-copyright a {
  font-size: 16px;
}

.coming-soon .coming-soon-copyright span {
  font-size: 12px;
}

@media screen and (max-width: 1140px) {
  .container {
    padding: 0 20px;
  }
}

@media screen and (max-width: 568px) {
  .coming-soon img {
    height: 200px;
    width: auto;
  }
  .coming-soon .coming-soon-title {
    font-size: 32px;
  }
}

@media screen and (max-height: 820px) and (min-width: 568px) {
  .coming-soon img {
    height: 80px;
    width: auto;
    position: absolute;
    top: 10px;
    left: 10px;
  }
  .coming-soon .coming-soon-title {
    font-size: 32px;
  }
}

@media screen and (max-width: 360px) {
  .coming-soon img {
    height: 80px;
    width: auto;
    position: absolute;
    top: 10px;
  }
}
/*# sourceMappingURL=style.css.map */