@import url("https://fonts.googleapis.com/css?family=Roboto");
@font-face {
  font-family: 'swatrg';
  src: url("../asset/font/swatrg.ttf") format("truetype"); }
@keyframes spin {
  100% {
    transform: rotate(90deg); } }
@-o-keyframes spin {
  100% {
    -o-transform: rotate(90deg); } }
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(90deg); } }
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(90deg); } }
body {
  width: 100%;
  height: 100vh;
  min-height: 660px !important;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background: #3C3E75;
  display: flex;
  justify-content: center;
  align-items: center; }
  body a {
    text-decoration: none;
    color: #999;
    transition: all 0.2s; }
    body a:hover {
      color: #FFF; }
  body #cookie {
    position: fixed;
    width: 100%;
    background: #3C3E75;
    text-align: center;
    left: 0;
    top: 0;
    padding: 20px 0;
    z-index: 9999;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
  body main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    body main .overlay {
      display: none; }
    body main header {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }
      body main header img {
        width: 200px; }
      body main header h1 {
        font-family: 'swatrg', 'Roboto', 'Arial', sans-serif;
        color: white;
        font-size: 5em;
        font-weight: lighter;
        margin: 10px;
        letter-spacing: 3px;
        line-height: .9em;
        display: flex;
        flex-direction: column; }
        body main header h1:after {
          content: '';
          width: 100%;
          height: 2px;
          background: white; }
    body main nav ul {
      padding: 0; }
      body main nav ul li {
        margin: 10px 0;
        display: flex;
        justify-content: flex-end;
        font-size: 2em;
        list-style: none;
        color: white;
        text-transform: uppercase; }
        body main nav ul li:hover {
          cursor: pointer; }
        body main nav ul li span {
          margin-left: 20px; }
          body main nav ul li span svg {
            width: 30px;
            fill: white; }
    body main .socialNetwork a {
      margin: 0 5px; }
      body main .socialNetwork a img {
        width: 50px;
        height: auto;
        transition: .3s ease-in-out; }
        body main .socialNetwork a img:hover {
          transform: scale(1.1); }
  body footer {
    display: none; }

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background: rgba(60, 62, 117, 0.95);
  display: none; }
  .overlay .close {
    width: 100%;
    position: fixed;
    padding-top: 40px;
    display: flex;
    justify-content: flex-end; }
    .overlay .close .closeBtn {
      width: 24px;
      height: 24px;
      cursor: pointer;
      transition: all 0.3s;
      fill: #FFFFFF;
      margin-right: 40px; }
      .overlay .close .closeBtn:hover {
        width: 30px;
        height: 30px;
        animation: spin 0.3s linear; }
  .overlay .module {
    width: 90%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #FFFFFF; }
    .overlay .module .logoOverlay .logoImg {
      width: 200px; }
    .overlay .module h2 {
      color: #FFFFFF;
      font-size: 2.5em;
      font-family: 'swatrg', 'Roboto', 'Arial', sans-serif;
      text-transform: uppercase;
      letter-spacing: 5px;
      display: inline-block;
      line-height: 2;
      text-align: center; }
      .overlay .module h2:after {
        content: '';
        display: block;
        height: 2px;
        width: 100%;
        background: #FFFFFF; }
    .overlay .module p {
      font-size: 1.5em; }
    .overlay .module .card-img-top {
      width: auto;
      height: 250px;
      margin: 20px; }
    .overlay .module .release {
      width: 100%; }
      .overlay .module .release section iframe {
        width: 70%;
        height: 300px;
        margin: 40px 0 60px; }
      .overlay .module .release section h3 {
        color: rgba(255, 255, 255, 0.8);
        font-weight: lighter;
        line-height: 2;
        margin-bottom: 20px;
        font-size: 2em; }
        .overlay .module .release section h3:after {
          content: '';
          display: block;
          height: 2px;
          width: 100%;
          background: linear-gradient(90deg, rgba(255, 255, 255, 0), white, rgba(255, 255, 255, 0)); }
      .overlay .module .release section .content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around; }
        .overlay .module .release section .content .elt {
          width: 200px;
          display: flex;
          flex-direction: column;
          align-items: center;
          margin: 40px; }
          .overlay .module .release section .content .elt .main_cover img {
            width: 200px;
            height: auto; }
          .overlay .module .release section .content .elt h5 {
            font-size: 1em;
            margin-bottom: .5em; }
          .overlay .module .release section .content .elt .date {
            margin: 0;
            width: 100%;
            text-align: right;
            font-size: .8em; }
    .overlay .module .contact-form {
      width: 100%;
      height: 100%;
      text-align: center; }
      .overlay .module .contact-form .logoImgForm {
        width: 200px; }
      .overlay .module .contact-form #msg {
        width: 100%;
        min-height: 30px;
        transition: all 0.3s ease-in-out; }
        .overlay .module .contact-form #msg .send-msg-v {
          width: 100%;
          margin: auto;
          font-size: 1em;
          text-align: center;
          color: greenyellow;
          display: none;
          transition: all 0.3s ease-in-out; }
        .overlay .module .contact-form #msg .send-msg-n {
          width: 100%;
          margin: auto;
          font-size: 1em;
          text-align: center;
          color: red;
          display: none;
          transition: all 0.3s ease-in-out; }
      .overlay .module .contact-form form {
        max-width: 1000px;
        margin: auto; }
        .overlay .module .contact-form form .formInfo {
          height: 244px; }
        .overlay .module .contact-form form label {
          display: none; }
        .overlay .module .contact-form form input {
          height: 40px; }
        .overlay .module .contact-form form input, .overlay .module .contact-form form textarea {
          padding: 0 15px 0 15px;
          font-family: 'Roboto', sans-serif;
          background: #000;
          outline: none;
          color: #ccc;
          border: solid 2px #333;
          border-radius: 5px;
          transition: all 0.3s ease-in-out;
          -webkit-transition: all 0.3s ease-in-out;
          -moz-transition: all 0.3s ease-in-out; }
          .overlay .module .contact-form form input:focus, .overlay .module .contact-form form textarea:focus {
            border: solid 2px #3C3E75; }
          .overlay .module .contact-form form input:hover, .overlay .module .contact-form form textarea:hover {
            border: solid 2px #999;
            cursor: pointer; }

@media all and (min-width: 576px) {
  body {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.9)), url(../asset/background/tetuna_background_credit_batvision.jpg) no-repeat fixed center;
    background-size: cover;
    justify-content: flex-end; }
    body main {
      margin-right: 60px;
      position: absolute;
      right: 40px; }
    body footer {
      width: 100%;
      height: 30px;
      position: fixed;
      bottom: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #999;
      background: linear-gradient(transparent, #000); }
      body footer .footerElt {
        font-size: 0.7em;
        padding-left: 20px; }
      body footer .footerElt:last-child {
        display: flex;
        justify-content: right;
        padding-right: 20px; }
        body footer .footerElt:last-child .footerLink:last-child {
          margin-left: 20px; } }
@media all and (max-height: 660px) {
  footer {
    display: none !important; } }

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