@font-face {
  font-family: Montserrat;
  src: url(../fonts/Montserrat/Montserrat-SemiBold.ttf);
}

@font-face {
  font-family: Montserrat-light;
  src: url(../fonts/Montserrat/Montserrat-Light.ttf);
}

@font-face {
  font-family: K2D;
  src: url(../fonts/K2D/K2D-Regular.ttf);
}

.form {
  width: 50%;
  height: 60%;
  font-family: Montserrat !important;
}

.contact-title
{
  text-align: center;   
  font-size: 30px;
  padding-bottom: 10%;
  font-family: Montserrat-light !important;
}

.contact
{
  display: flex;
}

.form:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.map:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.map {
  width:40% !important;
  height:50% !important;
}
/* form {
  top: 10;
  bottom: 10;
  right: 10;
} */


form button {
  background-color: #3636F3;
  margin-left: 34%;
  width: 30%;
  background: transparent;
  border-radius: 10px;
  color: white;
  padding: 10px;
  z-index: 10;
  border-color: WHITE;
  border: 1px solid;
}
form button:hover {
  border: 0;
  background: #30ADDF;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.main-title
{
    animation-duration: 3s;
    animation-name: slidein;
  }
  .logo
  {
    position: absolute;
    top: 17%;
    left: 35%;
    max-width: 100%;
    max-height: 80%;
  }
  .poster3 {
    position: absolute;
    top: 15%;
    left: 0%;
    animation: slide 0.5s forwards;
    animation-delay: 2s;
    max-width: 100%;
    max-height: 80%;
  }
  .poster2 {
    position: absolute;
    bottom: 0;
    top: 20%;
    left: 62%;
    
    max-width: 100%;
    max-height: 80%;
  }
  .poster1 {
    position: absolute;
    bottom: 0;
    top: 60%;
    left: 70%;
    animation: slide 0.5s forwards;
      animation-delay: 2s;
    max-width: 100%;
    max-height: 80%;
    -webkit-animation-name: spin;
    -webkit-animation-duration: 60000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 40000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 60000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-transition: rotate(3600deg);
  }
  @-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}
  
  @keyframes slidein {
    from {
      left: 0;
    }
  
    to {
      left: 50;
    }
  }
  @keyframes slide {
    from {
      left: 0;
    }
  
    to {
      left: 50;
    }
  }
  /* form */
  
  
  input,
  span,
  label,
  textarea {
    font-family: 'Ubuntu', sans-serif;
    display: block;
    font-size: 18px;
  }
  
  textarea:focus,
  input:focus {
    outline: 0;
  }
  input.question,
  textarea.question {
    font-size: 18px;
    font-weight: 100;
    border-radius: 2px;
    margin: 0;
    border: none;
    width: 80%;
    background: transparent;
    transition: padding-top 0.2s ease, margin-top 0.2s ease;
    overflow-x: hidden; /* Hack to make "rows" attribute apply in Firefox. */
  }
  /* Underline and Placeholder */
  
  input.question + label,
  textarea.question + label {
    display: block;
    position: relative;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    width: 10%;
    border-top: 1px solid #3290E9;
    -webkit-transition: width 0.4s ease;
    transition: width 0.4s ease;
    height: 0px;
  }
  
  input.question:focus + label,
  textarea.question:focus + label {
    width: 60%;
  }
  
  /* input.question:focus,
  input.question:valid {
    padding-top: 25px;
  } */
  
  /* textarea.question:valid,
  textarea.question:focus {
    margin-top: 25px;
  } */

  .in
  {
    margin-top: 5%;
    padding-bottom: 5%;
  }
  
  input.question:focus + label > span,
  input.question:valid + label > span {
    top: -100px;
    font-size: 22px;
    color: #3280C0;
  }
  
  textarea.question:focus + label > span,
  textarea.question:valid + label > span {
    top: -100px;
    font-size: 18px;
    color: #4B63EC;
  }
  
  input.question:valid + label,
  textarea.question:valid + label {
    border-color: green;
  }
  
  input.question:invalid,
  textarea.question:invalid {
    box-shadow: none;
  }
  
  input.question + label > span,
  textarea.question + label > span {
    font-weight: 100;
    position: absolute;
    color: #8F8F8F;
    font-size: 20px;
    top: -66px;
    left: 20%;
    z-index: -1;
    -webkit-transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
    transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
  }
  
 
  

  
  input.question:valid ~ input[type="submit"], textarea.question:valid ~ input[type="submit"] {
    -webkit-animation: appear 1s forwards;
    animation: appear 1s forwards;
  }
  
  input.question:invalid ~ input[type="submit"], textarea.question:invalid ~ input[type="submit"] {
    display: none;
  }
  
  @-webkit-keyframes appear {
    100% {
      opacity: 1;
    }
  }
  
  @keyframes appear {
    100% {
      opacity: 1;
    }
  }
 