/* poppins-300 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/poppins/poppins-v13-latin-300.eot");
  /* IE9 Compat Modes */
  src: local("Poppins Light"), local("Poppins-Light"), url("../fonts/poppins/poppins-v13-latin-300.eot?#iefix") format("embedded-opentype"), url("../fonts/poppins/poppins-v13-latin-300.woff2") format("woff2"), url("../fonts/poppins/poppins-v13-latin-300.woff") format("woff"), url("../fonts/poppins/poppins-v13-latin-300.ttf") format("truetype"), url("../fonts/poppins/poppins-v13-latin-300.svg#Poppins") format("svg");
  /* Legacy iOS */
}
/* poppins-500 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/poppins/poppins-v13-latin-500.eot");
  /* IE9 Compat Modes */
  src: local("Poppins Medium"), local("Poppins-Medium"), url("../fonts/poppins/poppins-v13-latin-500.eot?#iefix") format("embedded-opentype"), url("../fonts/poppins/poppins-v13-latin-500.woff2") format("woff2"), url("../fonts/poppins/poppins-v13-latin-500.woff") format("woff"), url("../fonts/poppins/poppins-v13-latin-500.ttf") format("truetype"), url("../fonts/poppins/poppins-v13-latin-500.svg#Poppins") format("svg");
  /* Legacy iOS */
}
* {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
}

input {
  display: none;
}

::-moz-selection {
  color: #fff;
  background: #b7112c;
  text-shadow: none;
}

::selection {
  color: #fff;
  background: #b7112c;
  text-shadow: none;
}

.page {
  display: flex;
  width: 100%;
  min-height: 100vh;
  background-color: #07070f;
  padding: 50px;
  justify-content: space-between;
  flex-direction: column;
  overflow: hidden;
}

.copyAlert {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translate(-50%, 0) scale(1);
  font-size: 1.4rem;
  margin: 0;
  padding: 5px 10px;
  font-weight: 500;
  color: #fff;
  border-radius: 5px;
  background-color: #b7112c;
  letter-spacing: normal;
  opacity: 1;
  white-space: nowrap;
  animation-name: copyAlertAnimation;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
}

@keyframes copyAlertAnimation {
  0% {
    transform: translate(-50%, 0) scale(1);
    opacity: 1;
  }
  40% {
    transform: translate(-50%, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 0) scale(0.7);
    opacity: 0;
  }
}
.logo-container {
  display: flex;
  width: 100%;
  flex: 1;
  align-items: center;
}

.logo {
  display: block;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.logo svg {
  width: 100%;
}
.logo .logo-subline {
  fill: #abaeba;
}
.logo .logo-txt {
  fill: #fff;
}
.logo .logo-et {
  fill: #b7112c;
}

.headline {
  display: none;
}

.footer {
  width: 100%;
}
.footer .contact {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  transform: translate(0, 50px);
  opacity: 0;
}
.footer .contact .mail {
  display: block;
  position: relative;
  font-weight: 300;
  font-size: 2rem;
  color: #abaeba;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid #07070f;
  border-radius: 5px;
  padding: 15px 30px;
  transition: 300ms ease-in-out;
  margin: 0;
  cursor: pointer;
  -ms-user-select: None;
  -moz-user-select: None;
  -webkit-user-select: None;
  user-select: None;
}
.footer .contact .mail span {
  color: #b7112c;
  font-size: 2rem;
}
.footer .contact .mail:hover {
  transform: scale(1.02);
  border-color: #b7112c;
}
.footer .legal {
  display: flex;
  justify-content: space-between;
  opacity: 0;
}
.footer .legal p {
  display: block;
  font-weight: 300;
  font-size: 1.4rem;
  color: rgba(171, 174, 186, 0.3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
.footer .legal .imp-nav {
  display: flex;
}
.footer .legal .imp-nav a {
  display: block;
  font-weight: 300;
  font-size: 1.4rem;
  color: rgba(171, 174, 186, 0.3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-right: 30px;
  text-decoration: underline;
  transition: 300ms ease-in-out;
}
.footer .legal .imp-nav a:hover {
  color: #b7112c;
}
.footer .legal .imp-nav a:last-child {
  margin-right: 0;
}

.ani-contact {
  animation-name: contectSlideIN;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.ani-legal {
  animation-name: legalFadeIN;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes contectSlideIN {
  0% {
    transform: translate(0, 50px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes legalFadeIN {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 767.98px) {
  .page {
    padding: 25px;
  }

  .footer .contact .mail {
    font-size: 1.4rem;
    padding: 0;
    border: none;
  }
  .footer .contact .mail span {
    font-size: 1.4rem;
  }
  .footer .legal {
    flex-direction: column;
  }
  .footer .legal p {
    order: 2;
    text-align: center;
  }
  .footer .legal .imp-nav {
    order: 1;
    justify-content: center;
    margin-bottom: 20px;
  }

  .copyAlert {
    font-size: 1.2rem;
  }
}

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