/***************************************************************
                          Fluro
 ***************************************************************/
@font-face {
  font-family: Fluro;
  src: url("/assets/fonts/fluro/fluro.otf");
}
@font-face {
  font-family: Fluro-Bold;
  src: url("/assets/fonts/fluro/fluro_bold.otf");
}
@font-face {
  font-family: Fluro-Light;
  src: url("/assets/fonts/fluro/fluro_light.otf");
}
@font-face {
  font-family: Fluro-SemiBold;
  src: url("/assets/fonts/fluro/fluro_semibold.otf");
}
/***************************************************************
                          Pixel Operator
 ***************************************************************/
@font-face {
  font-family: PixelOperator-Regular;
  src: url("/assets/fonts/pixelOperator/PixelOperator.ttf");
}
@font-face {
  font-family: PixelOperator-Bold;
  src: url("/assets/fonts/pixelOperator/PixelOperator-Bold.ttf");
}
@font-face {
  font-family: PixelOperator-HB;
  src: url("/assets/fonts/pixelOperator/PixelOperator-HB.ttf");
}
@-webkit-keyframes infiniteScroll {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
@keyframes infiniteScroll {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
body {
  margin: 0;
  overflow: hidden;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  text-decoration: unset;
  color: #FFFFFF;
}

.hide {
  display: none;
}

.show {
  display: block !important;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

.col-6 {
  max-width: 50%;
  flex: 0 0 50%;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.g-recaptcha > div {
  margin: auto;
}

.invalid-feedback {
  margin: 0 !important;
  display: none;
  color: #dc3545;
  font-family: Fluro-Light, serif;
  font-size: 14px;
}

.btn {
  margin: 9px;
  background: #1E1E1E;
  display: flex;
  padding: 4px 12px;
  color: #FFFFFF;
  height: 24px;
  cursor: pointer;
}
.btn:first-child {
  margin-left: 0;
}
.btn:last-child {
  margin-right: 0;
}
.btn:not(.disable):hover {
  background: #0000FF;
  color: #00FF00;
}
.btn:not(.disable):hover svg {
  fill: #00FF00;
}
.btn:not(.disable):hover a {
  color: #00FF00;
}
.btn svg {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px 10px 8px 0;
  fill: #FFFFFF;
  min-width: 9.4px;
}
.btn .btn-label {
  font-family: PixelOperator-HB, serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  text-transform: uppercase;
}
.btn.disable {
  color: #4E4E4E;
}
.btn.disable:hover #coming {
  opacity: 1;
}
.btn #coming {
  opacity: 0;
  font-family: PixelOperator, serif;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 24px;
  text-transform: lowercase;
  color: white;
  position: absolute;
  left: 35px;
  transition: all 0.2s ease-out;
}

.background {
  background: #141414;
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
}
.background #animation > div {
  display: block;
  width: 200%;
  position: absolute;
}
.background #animation > div span {
  float: left;
  width: 50%;
}
.background #animation #sky {
  -webkit-animation: infiniteScroll 180s linear infinite;
          animation: infiniteScroll 180s linear infinite;
  top: 0;
}
.background #animation #sky .sky {
  background: url("/assets/img/background/Sky_ascii.png");
  background-repeat-y: no-repeat;
  height: 137px;
}
.background #animation #ground-highway {
  -webkit-animation: infiniteScroll 6s linear infinite;
          animation: infiniteScroll 6s linear infinite;
  bottom: 0;
  z-index: 20;
}
.background #animation #ground-highway .highway {
  background: url("/assets/img/background/Highway_ascii.png");
  height: 181px;
  background-repeat: round;
}
.background #animation #ground-city {
  -webkit-animation: infiniteScroll 28s linear infinite;
          animation: infiniteScroll 28s linear infinite;
  bottom: 17px;
  z-index: 10;
}
.background #animation #ground-city .city {
  background: url("/assets/img/background/City_ascii.png");
  height: 600px;
}

.screen-center {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.screen-center .logo-informations {
  display: flex;
}
.screen-center .logo-informations .informations {
  margin: 0 21px;
  border-left: 1px solid #FFFFFF;
  padding-left: 21px;
}
.screen-center .logo-informations .informations .fullname .firstname, .screen-center .logo-informations .informations .fullname .lastname {
  font-family: Fluro-Bold, serif;
  font-size: 28px;
  letter-spacing: 0;
  line-height: 24px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.screen-center .logo-informations .informations .activity {
  font-family: PixelOperator-Regular, serif;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 18px;
  color: #4E4E4E;
}
.screen-center .btns-flex {
  display: flex;
  margin-top: 10px;
}
.screen-center .btns-flex .btn {
  margin: 9px;
  background: #1E1E1E;
  display: flex;
  padding: 4px 12px;
  color: #FFFFFF;
  height: 24px;
  cursor: pointer;
}
.screen-center .btns-flex .btn:first-child {
  margin-left: 0;
}
.screen-center .btns-flex .btn:last-child {
  margin-right: 0;
}
.screen-center .btns-flex .btn:not(.disable):hover {
  background: #0000FF;
  color: #00FF00;
}
.screen-center .btns-flex .btn:not(.disable):hover svg {
  fill: #00FF00;
}
.screen-center .btns-flex .btn:not(.disable):hover a {
  color: #00FF00;
}
.screen-center .btns-flex .btn svg {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px 10px 8px 0;
  fill: #FFFFFF;
  min-width: 9.4px;
}
.screen-center .btns-flex .btn .btn-label {
  font-family: PixelOperator-HB, serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  text-transform: uppercase;
}
.screen-center .btns-flex .btn.disable {
  color: #4E4E4E;
}
.screen-center .btns-flex .btn.disable:hover #coming {
  opacity: 1;
}
.screen-center .btns-flex .btn #coming {
  opacity: 0;
  font-family: PixelOperator-Regular, serif;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 24px;
  text-transform: lowercase;
  color: white;
  position: absolute;
  left: 35px;
  transition: all 0.2s ease-out;
}

@media (max-width: 600px) {
  .screen-center {
    transform: unset;
    top: 50px;
    left: 50px;
  }
  .screen-center .logo-informations {
    display: block;
  }
  .screen-center .logo-informations .logo img {
    width: 80px;
  }
  .screen-center .logo-informations .informations {
    border: unset;
    margin: unset;
    padding: unset;
    padding-top: 20px;
  }
  .screen-center .btns-flex {
    flex-direction: column;
  }
  .screen-center .btns-flex .btn {
    margin: 10px 0;
    width: 100px;
  }
}
footer {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
  text-align: right;
  font-family: PixelOperator-Regular, serif;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0;
  color: #4E4E4E;
  padding-top: 0;
  padding-bottom: 5px;
  padding-right: 5px;
  padding-left: 20px;
  background: linear-gradient(to right, transparent 15%, #141414 75%);
}
footer a {
  color: #FFFFFF;
  text-decoration: unset;
}
footer a:hover {
  color: #0000FF;
}

.contact-modal {
  display: none;
  background-color: #1E1E1E;
  width: 450px;
  z-index: 20;
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translate(0, -50%);
  box-shadow: 10px 10px 0 #4E4E4E;
  padding: 20px;
}
.contact-modal .contact-modal-title {
  display: flex;
  position: relative;
  left: -35px;
}
.contact-modal .contact-modal-title .title {
  width: 100%;
  font-family: Fluro-Bold, serif;
  margin-right: 20px;
  background: #4E4E4E;
  padding: 15px;
  font-size: 28px;
  color: white;
  text-transform: uppercase;
  line-height: 24px;
}
.contact-modal .contact-modal-title .close {
  margin-left: auto;
  min-width: 44px;
  padding: 20px 0 16px;
  background: #4E4E4E;
  text-align: center;
  cursor: pointer;
}
.contact-modal .contact-modal-title .close:hover img {
  transform: scale(1.2);
}
.contact-modal .contact-modal-title .close img {
  width: 8px;
  text-align: center;
}
.contact-modal .contact-modal-content {
  padding: 60px 35px 20px;
}
.contact-modal .contact-modal-content > * {
  margin-bottom: 15px;
}
.contact-modal .contact-modal-content > .flex > div {
  padding-left: 15px;
  padding-right: 15px;
}
.contact-modal .contact-modal-content > .flex > div:first-child {
  padding-left: 0;
}
.contact-modal .contact-modal-content > .flex > div:last-child {
  padding-right: 0;
}
.contact-modal .contact-modal-content input {
  border: 1px solid #4E4E4E;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 15px;
  font-family: PixelOperator-HB, serif;
  color: #FFFFFF;
  background: unset;
  padding: 0 15px;
  height: 26px;
  width: 100%;
  box-sizing: border-box;
}
.contact-modal .contact-modal-content input::-moz-placeholder {
  opacity: 1;
  color: white;
}
.contact-modal .contact-modal-content input:-ms-input-placeholder {
  opacity: 1;
  color: white;
}
.contact-modal .contact-modal-content input::placeholder {
  opacity: 1;
  color: white;
}
.contact-modal .contact-modal-content input:focus {
  border-color: #FFFFFF;
  border-radius: 0;
  outline: unset;
}
.contact-modal .contact-modal-content .form-textarea {
  position: relative;
}
.contact-modal .contact-modal-content .form-textarea label {
  position: absolute;
  left: 15px;
  top: 10px;
  font-family: PixelOperator-HB, serif;
  color: #FFFFFF;
  font-size: 12px;
  text-transform: uppercase;
}
.contact-modal .contact-modal-content .form-textarea textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #4E4E4E;
  background: unset;
  font-family: PixelOperator-HB, serif;
  color: #FFFFFF;
  font-size: 12px;
  padding: 5px 15px;
  resize: none;
}
.contact-modal .contact-modal-content .form-textarea textarea:focus {
  border-color: #FFFFFF;
  border-radius: 0;
  outline: unset;
}
.contact-modal .contact-modal-content .form-textarea textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #FFFFFF;
  text-transform: uppercase;
}
.contact-modal .contact-modal-content .form-textarea textarea:-ms-input-placeholder {
  color: #FFFFFF;
  text-transform: uppercase;
}
.contact-modal .contact-modal-content .form-textarea textarea::placeholder {
  color: #FFFFFF;
  text-transform: uppercase;
}
.contact-modal .contact-modal-content .btn-submit-contact {
  background: #4E4E4E;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: unset;
  -webkit-appearance: unset;
     -moz-appearance: unset;
          appearance: unset;
  box-sizing: content-box;
}
.contact-modal .contact-modal-content .btn-submit-contact:disabled {
  color: #4E4E4E !important;
  background: #1E1E1E !important;
  border: 1px solid #4E4E4E !important;
}
.contact-modal .contact-modal-content .btn-submit-contact:disabled svg {
  fill: #4E4E4E !important;
}
.contact-modal .contact-modal-content .btn-submit-contact:hover {
  background: #0000FF;
}

@media (max-width: 600px) {
  .contact-modal {
    left: 0;
    box-sizing: border-box;
    transform: unset;
    top: 140px;
    right: unset;
    width: 100%;
  }
  .contact-modal .contact-modal-title {
    left: unset;
  }
  .contact-modal .contact-modal-content > .flex > div {
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0;
    flex-direction: column;
  }
  .contact-modal .contact-modal-content > .flex > div:first-child {
    padding-bottom: 15px;
  }
}
.message {
  width: 450px;
  height: 145px;
  background: #AFAFAF;
  box-shadow: 10px 10px 0 #141414;
  overflow: hidden;
  border: 1px solid #1E1E1E;
  position: absolute;
  top: 25%;
  left: 20%;
  z-index: 999;
  padding: 10px;
}
.message .contact-waiting-title {
  display: flex;
}
.message .contact-waiting-title .title {
  width: 100%;
  font-family: PixelOperator-Regular, serif;
  margin-right: 20px;
  background: #4E4E4E;
  padding: 2px 10px;
  font-size: 20px;
  color: white;
  text-transform: uppercase;
  line-height: 22px;
  box-shadow: 0 3px 0 #141414;
}
.message .contact-waiting-title .close {
  margin-left: auto;
  min-width: 25px;
  padding: 6px 0 3px;
  background: #4E4E4E;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 3px 0 #141414;
}
.message .contact-waiting-title .close img {
  width: 6px;
  text-align: center;
}
.message .content {
  padding: 35px 25px;
  display: flex;
}
.message .content .error {
  padding: 10px 0;
}
.message .content .errmsg {
  font-size: 18px;
  font-family: PixelOperator-Regular, serif;
  width: 300px;
  margin-left: 25px;
}

@media (max-width: 600px) {
  .message {
    left: 50%;
    transform: translateX(-50%);
  }
}
.message.contact-success {
  width: 400px;
  height: 155px;
  top: 24%;
}
.message.contact-success .content {
  padding: 35px 20px 0;
}
.message.contact-success .content .error {
  padding: 0;
}
.message.contact-success .content .errmsg {
  width: 250px;
  padding-top: 5px;
}
.message.contact-success .message-footer .btns {
  display: flex;
  float: right;
}
.message.contact-success .message-footer .btns .btn {
  box-sizing: initial;
  background-color: #777676;
  border: unset;
  margin-bottom: 0;
}
.message.contact-success .message-footer .btns .btn:hover {
  background: #0000FF;
  color: #00FF00;
}