/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/* Container Extra */

.extra{
  height: 650px;
}

/* Selecting / Hover */

::selection{
  color: #fff;
  background: #0D6EFD;
}


/* Wrapper for Form / All Form CSS */

.wrapper{
  width: 100%;
  height: 600px;
  background: black;
}

.wrapper header{
  font-size: 35px;
  font-weight: 300;
  padding: 10px 20px;
  color:white;
  font-family:'Courier New', Courier, monospace;
}

.wrapper .container-fluid{
  margin-right:0px;
  background-color:black;
  position: sticky;
  padding-top:60px;
  right:100%;
  width:40%;
  height:500px;
}

.wrapper .container-fluid p{
  font-family:'Courier New', Courier, monospace;
}

.wrapper .container-fluid .info{
  color:white;
}

.extra .wrapper .container-fluid .icons i{
  display: inline-block;
  padding: 12px;
  color:white;
}

.extra .wrapper .container-fluid .icons .fab{
  font-size:1rem;
  border: solid;
  border-width: 1px;
}

.wrapper form{
  position: absolute;
  left:45%;
  top:30%;
  width:50%;
}

.wrapper form.disabled{
  pointer-events: none;
  opacity: 0.7;
}
form .dbl-field{
  display: flex;
  margin-bottom: 25px;
  justify-content: space-between;
}
.dbl-field .field{
  height: 50px;
  display: flex;
  position: relative;
  width: calc(100% / 2 - 13px);
}
.wrapper form i{
  position: absolute;
  top: 50%;
  left: 18px;
  color: #ccc;
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}
form .field input,
form .message textarea{
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 18px 0 48px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.field input::placeholder,
.message textarea::placeholder{
  color: #ccc;
}
.field input:focus,
.message textarea:focus{
  padding-left: 47px;
  border: 2px solid #0D6EFD;
}
.field input:focus ~ i,
.message textarea:focus ~ i{
  color: #0D6EFD;
}
form .message{
  position: relative;
}
form .message i{
  top: 30px;
  font-size: 20px;
}
form .message textarea{
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 15px 20px 0 48px;
}
form .message textarea::-webkit-scrollbar{
  width: 0px;
}
.message textarea:focus{
  padding-top: 14px;
}
form .button-area{
  margin: 25px 0;
  display: flex;
  align-items: center;
}
.button-area button{
  color: #fff;
  border: none;
  outline: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: #0D6EFD;
  transition: background 0.3s ease;
}
.button-area button:hover{
  background: #025ce3;
}
.button-area span{
  font-size: 17px;
  margin-left: 30px;
  display: none;
}

/* Media Querie (Header) */

@media(max-width: 900px){
  .wrapper header{
    font-size: 30px;
    font-weight: 300;
    padding: 10px 20px;
    transition: ease all .5s;
  }
  
  .wrapper .container-fluid p{
    font-size:0.8rem;
    transition: ease all .5s;
  }

  .extra .wrapper .container-fluid .icons i{
    padding: 12px;
    transition: ease all .5s;
  }
  
  .extra .wrapper .container-fluid .icons .fab{
    font-size:0.8rem;
    border: solid;
    border-width: 1px;
    transition: ease all .5s;
  }
}

@media(max-width:874px){
  nav .mainMenu li a {
    padding: 30px;
    margin:10px;
    font-size: 0.8rem;
    transition: ease all .5s;
  }
}

/* Media Querie (ScrollBar) */

@media(min-height:820px){
  ::-webkit-scrollbar {
      display: none;
  }
}


/* Media Querie (DROP DOWN) */

@media(max-width: 805px){
  nav .logo{
      margin: 6px;
      font-size: 25px;
      cursor: pointer;
      display:inherit;
  }

  nav .mainMenu {
      height: 100vh;
      position: fixed;
      top: -100%;
      right: 0;
      left: 0;
      z-index: 10;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background: white;
      transition: top 1s ease;
      display: flex;
  }

  nav .mainMenu .closeMenu {
      display: block;
      position: absolute;
      top: 20px;
      right: 20px;
      color:black;
  }

  nav .openMenu {
      display: block;
  }

  nav .mainMenu li a {
      background: none;
      font-size: 2rem;
  }

  nav .mainMenu li a:hover {
      background: none;
      color: rgb(0, 110, 255);
      font-size: 2.5rem;
  }
}

/* Media Querie (Form/Header) */

@media (max-width: 615px){

  /* (Container) */

  .wrapper{
    width: 100%;
    height: 750px;
    background: black;
  }

  .extra{
    height: 800px;
  }

  /* (Header) */
  .wrapper header{
    font-size: 15px;
    font-weight: 300;
    padding:10px;
    transition: ease all .5s;
  }
  
  .wrapper .container-fluid p{
    font-size:0.5rem;
    transition: ease all .5s;
  }

  .extra .wrapper .container-fluid .icons i{
    padding: 12px;
    transition: ease all .5s;
  }
  
  .extra .wrapper .container-fluid .icons .fab{
    display:none;
    border: none;
    transition: ease all .5s;
  }

  .wrapper .container-fluid{
    position:absolute;
    right:0%;
    height:100px;
    width:100%;
  }

  /* (Form) */

  .wrapper form{
    position: absolute;
    left:25%;
    top:42%;
    width:50%;
  }

  .wrapper header{
    text-align: center;
  }

  form .dbl-field{
    flex-direction: column;
    margin-bottom: 0px;
  }
  form .dbl-field .field{
    width: 100%;
    height: 45px;
    margin-bottom: 20px;
  }
  form .message textarea{
    resize: none;
  }
  form .button-area{
    margin-top: 20px;
    flex-direction: column;
  }
  .button-area button{
    width: 100%;
    padding: 11px 0;
    font-size: 16px;
  }
  .button-area span{
    margin: 20px 0 0;
    text-align: center;
  }
}

/* EXTRA FIX */

@media(max-width:1185px){
  footer{
      position:absolute;
      bottom:0rem;
  }
}

@media(max-width:550px){
  footer{
      position:absolute;
      bottom:0rem;
  }
}

@media(max-width:500px){
  footer{
      position:absolute;
      bottom:0rem;
  }
}

