@charset "UTF-8";
/* ----------------------------------------------------------- */
/*                     © Aiomax Group 2022                     */
/* ----------------------------------------------------------- */
/* ------------------------------ */
/*             Generic            */
/* ------------------------------ */
/**
* Document
**/
@import url("https://fonts.googleapis.com/css2?family=Arima+Madurai:wght@300;400;500&family=Arima:wght@200;300;400;500;600&family=Oxygen:wght@300;400;700&display=swap");
/* 
font-family: 'Arima', cursive;
font-family: 'Arima Madurai', cursive;
font-family: 'Oxygen', sans-serif;
*/
.body {
  flex: auto;
  font-family: "Oxygen", sans-serif;
  color: #F5F5F5;
  font-size: 1rem;
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Arima", cursive;
  /* font-family: 'Arima Madurai', cursive; */
  color: #F5F5F5;
}

h1 {
  font-weight: 400;
}

h2 {
  font-weight: 300;
}

.partials {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

p {
  font-size: 1rem;
}

/**
* noscript
**/
.noscript {
  display: block;
  background-color: #FCE116;
  color: #810409;
  border: 2px solid #F56262;
}
.noscript a {
  text-decoration: underline;
  color: #BA1E21;
  font-weight: bold;
}
.noscript a:hover {
  text-decoration: none;
  color: #810409;
}

/**
* Partials
**/
.header .inner,
.upper .inner,
.nav .inner,
.main .inner,
.aside .inner,
.lower .inner,
.footer .inner {
  padding: 2rem;
  height: 100%;
}

/* ------------------------------ */
/*            Partials            */
/* ------------------------------ */
/**
* Header
**/
.slideshow,
.slideshow:after {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.slideshow:after {
  content: "";
  background: rgba(0, 0, 0, 0.5);
}
.slideshow li {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: none;
  animation: zoomRotate 36s linear infinite 0s;
}
.slideshow li:nth-child(1) {
  background-image: url(../images/slide-1.jpg);
}
.slideshow li:nth-child(2) {
  background-image: url(../images/slide-2.jpg);
  animation-delay: 6s;
}
.slideshow li:nth-child(3) {
  background-image: url(../images/slide-3.jpg);
  animation-delay: 12s;
}
.slideshow li:nth-child(4) {
  background-image: url(../images/slide-4.jpg);
  animation-delay: 18s;
}
.slideshow li:nth-child(5) {
  background-image: url(../images/slide-5.jpg);
  animation-delay: 24s;
}
.slideshow li:nth-child(6) {
  background-image: url(../images/slide-6.jpg);
  animation-delay: 30s;
}

@keyframes zoomRotate {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  10% {
    opacity: 1;
    transform: scale(1.05);
    animation-timing-function: ease-out;
  }
  20% {
    opacity: 1;
    transform: scale(1.1) rotate(3deg);
  }
  30%, 100% {
    opacity: 0;
  }
}
/**
* Main
**/
.main {
  height: 100%;
}

.countdown {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100%;
  z-index: 1;
  position: relative;
}
.countdown h1 {
  font-size: 3rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: white;
}
.countdown input {
  border: none;
  outline: none;
}
.countdown--knobs {
  position: relative;
}
.countdown--knobs li {
  text-align: center;
  display: inline-block;
  padding: 1rem;
  line-height: 1;
}
.countdown--knobs li > * {
  display: block;
}
.countdown--knobs li span {
  font-size: 1.5rem;
  position: relative;
  top: -1rem;
  color: #F5F5F5;
}
.countdown--description {
  width: 100%;
  padding: 2rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.25);
}
.countdown--description h2 {
  font-size: 1.625rem;
}

@media (max-width: 767px) {
  .countdown h1 {
    font-size: 2.5rem;
  }
  .countdown--knobs li span {
    font-size: 1.375rem;
  }
  .countdown--description h2 {
    font-size: 1.5rem;
  }
}

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