/* Fonts Start */
@font-face {
  font-family: "gil";
  src: url("./gil.ttf") format("truetype");
}
/* Fonts End */
/* Variables Start */
/* Variables End */
/* Custom Scroll Bar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 6px;
}

/* Custom Scroll Bar*/
/* Mixins Start */
/* Mixins */
/* Mixins End*/
/* Default Styles Start */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (max-width: 1054px) {
  html {
    font-size: 12px;
  }
}

html, body {
  width: 100%;
  background-color: white;
  scroll-behavior: smooth;
  font-family: "gil", sans-serif;
}

body {
  height: auto;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-font-smoothing: subpixel-antialiased;
  position: relative;
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  animation: animateBg 20s linear infinite;
}

main {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  height: 100vh;
  width: 100%;
  z-index: 2;
}
main .content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main .content-wrapper .logo {
  margin: 6rem 0 20rem 0;
  width: calc(100% - 4rem);
  max-width: 800px;
}
@media (max-width: 1600px) {
  main .content-wrapper .logo {
    margin: 6rem 0 10rem 0;
  }
}
main .content-wrapper .bottom-section {
  width: 100%;
}
main .content-wrapper .bottom-section .coming-soon {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 130px;
  font-size: 5rem;
  color: white;
  position: relative;
  z-index: 5;
}
@media (max-width: 1054px) {
  main .content-wrapper .bottom-section .coming-soon {
    font-size: 3rem;
  }
}
main .content-wrapper .bottom-section .coming-soon:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -2;
  background: rgba(0, 0, 0, 0.73);
}
main .content-wrapper .bottom-section .info {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 4;
}
@media (max-width: 767px) {
  main .content-wrapper .bottom-section .info {
    flex-direction: column;
    height: 180px;
  }
}
main .content-wrapper .bottom-section .info .dot {
  width: 10px;
  height: 10px;
  border-radius: 20px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1054px) {
  main .content-wrapper .bottom-section .info .dot {
    display: none;
  }
}
main .content-wrapper .bottom-section .info a {
  font-size: 2rem;
  text-decoration: none;
  margin: 0 20px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 1054px) {
  main .content-wrapper .bottom-section .info a {
    margin: 0.5rem 20px;
  }
}
main .content-wrapper .bottom-section .info a:hover:after {
  width: 100%;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
main .content-wrapper .bottom-section .info a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  background: white;
  width: 0;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
main .content-wrapper .bottom-section .info a svg {
  width: 60px;
}
main .content-wrapper .bottom-section .info a svg * {
  fill: white;
}
main .content-wrapper .bottom-section .info:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -2;
  background: radial-gradient(circle, #008950, #004626);
  opacity: 0.8;
  background-blend-mode: screen;
}

@keyframes animateBg {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

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