/**************
    MIXINS
**************/
/**************
    FONTS
**************/
@font-face {
  font-family: latoRegular;
  src: url("./assets/fonts/Lato-Regular.ttf");
}

@font-face {
  font-family: quattro;
  src: url("./assets/fonts/QuattrocentoSans-Regular.ttf");
}

/******************
    BREAKPOINTS
******************/
/**************
    COLORS
**************/
/************************
    COMING-SOON PAGE
************************/
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  opacity: .6;
}

::-moz-placeholder {
  /* Firefox 19+ */
  opacity: .6;
}

:-ms-input-placeholder {
  /* IE 10+ */
  opacity: .6;
}

:-moz-placeholder {
  /* Firefox 18- */
  opacity: .6;
}

.coming-soon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  height: 200vh;
  color: #000;
}

@media screen and (min-width: 1024px) {
  .coming-soon {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 100vh;
  }
}

.coming-soon__title {
  font-family: latoRegular;
  font-size: 13px;
  line-height: 15px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  margin-top: 15px;
  padding: 0 25px;

}


 a:link , a:hover , a:visited , a:active {
  color: #000;
}



@media screen and (min-width: 1024px) {
  .coming-soon__title {
    padding: 0 10px;
  }
}

.coming-soon__logo {
  text-align: center;
}

.coming-soon__logo__img {
  width: 130px;
  height: 130px;
}

.coming-soon__countdown {
  margin-top: 10px;
}

.coming-soon__countdown-wrapper {
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .coming-soon__countdown-wrapper {
    margin-top: 60px;
  }
}

@media screen and (min-width: 1280px) {
  .coming-soon__countdown-wrapper {
    margin-top: 90px;
  }
}

.coming-soon__countdown__head-text {
  font-family: quattro;
  font-size: 13px;
  line-height: 15px;
}

.coming-soon__countdown__days, .coming-soon__countdown__hours, .coming-soon__countdown__minutes {
  display: inline-block;
  padding: 0 25px;
  font-family: latoRegular;
  color: #B48C00;
}

.coming-soon__countdown__days__value, .coming-soon__countdown__hours__value, .coming-soon__countdown__minutes__value {
  font-size: 20px;
  line-height: 24px;
  display: block;
  width: 100%;
}

.coming-soon__countdown__days__text, .coming-soon__countdown__hours__text, .coming-soon__countdown__minutes__text {
  font-size: 7px;
  line-height: 8px;
  text-transform: uppercase;
}

.coming-soon__countdown__days, .coming-soon__countdown__hours {
  position: relative;
  border-right: solid 1px #000;
}

.coming-soon__contact {
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .coming-soon__contact {
    margin-top: 50px;
  }
}

@media screen and (min-width: 1280px) {
  .coming-soon__contact {
    margin-top: 80px;
  }
}

.coming-soon__contact__text {
  font-family: quattro;
  font-size: 13px;
  line-height: 15px;
}

.coming-soon__contact__media {
  margin-top: 15px;
}

.coming-soon__contact__media__element {
  display: inline-block;
  width: 8px;
  height: 14px;
  margin: 0 5px;
}

.coming-soon__contact__media__element__inner {
  height: 100%;
}

.coming-soon__content, .coming-soon__img {
  width: 100%;
  height: 100vh;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (min-width: 1024px) {
  .coming-soon__content, .coming-soon__img {
    height: 100%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}

.coming-soon__content {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .coming-soon__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: calc(100% / 3 * 1);
  }
}

.coming-soon__content__top-corner {
  display: block;
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 170px;
  background-color: #B48C00;
}

.coming-soon__content__bottom-corner::before, .coming-soon__content__bottom-corner::after {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #B48C00;
}

.coming-soon__content__bottom-corner::before {
  width: 30px;
  height: 170px;
}

.coming-soon__content__bottom-corner::after {
  width: 170px;
  height: 30px;
}

.coming-soon__img {
  overflow: hidden;
  position: relative;
}

.coming-soon__img__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 280px;
  z-index: 1;
}

@media screen and (min-width: 1024px) {
  .coming-soon__img__logo {
    width: 320px;
  }
}

.coming-soon__img__background {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 100%;
}

@media screen and (min-width: 640px) {
  .coming-soon__img__background {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
    height: auto;
    left: auto;
  }
}

.coming-soon__img__credits {
  position: absolute;
  color: #FFF;
  opacity: .4;
  font-family: quattro;
  font-size: 11px;
  line-height: 11px;
  bottom: 10px;
  right: 10px;
}

@media screen and (min-width: 1024px) {
  .coming-soon__img {
    width: calc(100% / 3 * 2);
  }
}

@media screen and (min-width: 1600px) {
  .coming-soon__logo__img {
    width: 140px;
    height: 140px;
  }
  .coming-soon__title {
    font-size: 15px;
    line-height: 17px;
  }
  .coming-soon__countdown__head-text {
    font-size: 15px;
    line-height: 17px;
  }
  .coming-soon__form-wrapper__text {
    font-size: 15px;
    line-height: 17px;
  }
  .coming-soon__form-status {
    font-size: 15px;
    line-height: 20px;
  }
  .coming-soon__contact__text {
    font-size: 15px;
    line-height: 17px;
  }
}
/*# sourceMappingURL=index.css.map */

