/* Colour Combs
   Hex Codes
   Mint Cream  : #F2F7F3 
   Eerie Black : #141414
   Emerald : #40DD8C
   Jet : #292929
*/

/* Font Families */
/* Logo */ 
/* font-family: 'Righteous', cursive; */
/* Text */
/* font-family: 'Open Sans', sans-serif; */
/* font-family: 'Caveat', cursive; */


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background: #141414;
}
::-webkit-scrollbar{
    width: 10px;
 }
 ::-webkit-scrollbar-track{
    box-shadow:  2px 2px 0px #40DD8C;
 }
 ::-webkit-scrollbar-thumb{
    width: 5px;
    background: #40DD8C;
 }
/* Navigation Bar CSS*/
header{
    background: #40DD8C;
  }
  
  header::after{
     content: '';
     display: table;
     clear: both;
  }
  .logo{
   font-family: 'Righteous', cursive;
     float: left ;
     padding: 15px 0;
     font-size: 3.2rem;
     margin-left: 70px;
     color: #141414  ;
     text-transform: uppercase;
     cursor: pointer;
  }
  .logo span{
   color: #F2F7F3;
}
.logo a{
   color: inherit;
   text-decoration: none;
}
  nav{
     min-height: 60px;
     float: right;
     position: relative;
  }
  nav ul{
    margin: 0;
    padding: 0;
    list-style: none; 
  }
  nav li{
     display: inline-block;
     margin: 0 35px;
     padding-top:50px ;
  
     position: relative;
  }
  
  nav a{
    font-family:'Open Sans', sans-serif; ;
     font-weight: 400;
     align-items: center ;
     color: #141414;
     text-decoration: none;
     text-transform: uppercase;
     cursor: pointer;
  }
  
  nav a:hover{
     color: #F2F7F3;
     transition: 0.4s ease;
  }
  
  /* nav a::before{
     content: '';
     display: block;
     height: 5px;
     background-color: #292929 ;
     position: absolute;
     border-radius: 5px;
  
     top: 30px;
     width: 0%;
  
  
  
     transition: all ease-in-out 350ms
  } */
  
  nav a:hover::before{
     width: 100%;
  }
  
  /* Hamburger-Menu-Navbar CSS */
  .hamburger{
     display: none;
     cursor: pointer;
     position: absolute;
     top: 35px;
     right:20px;
  
  }
  .bar{
     display: block;
     width: 25px;
     height: 3px;
     margin: 5px auto;
     border-radius: 3px;
     -webkit-transition: all 0.3s ease-in-out ;
     transition: all 0.3s ease-in-out;
     background: #F2F7F3;
  }
  
  @media(max-width: 1030px){
     .logo{
        font-size: 2.7rem;
        display: block;
     }
     .hamburger{
        display: block;
     }
     
     .hamburger.active .bar:nth-child(2){
        opacity: 0;
  
     }
     .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
  
     }
     .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
  
     }
     .nav-menu{
        z-index: 100;
        position: fixed;
        left: -100%;
        flex-direction: column;
        top: 60px;
        background: #40DD8C;
        display: flex;
        width: 100%;
        margin-top: 40px;
        height: max-content;
        min-height:100%;
  
        justify-content: center;
        text-align: center;
        transition: 0.5s ease-in-out;
     }
     .nav-items{
        font-size: 1.2rem;
        margin: 16px 10px;
     }
     .nav-menu.active{
        left: 0;
     }
  }
  /* Navigation-Bar End */


  /* Contact Form Start */
  .contact-form-container{
    margin: 35px auto;
    border: 5px solid #40DD8C;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 720px;
    width: 500px;
    max-width: 1000px;
    max-height: 1000px;
    position: relative;

  }
  .contact-form-header h1::before{
   border: 1px solid #40DD8C;
    position: relative;
  }
  .contact-form-header h1::after{
    content: '';
    position: absolute;
    height: 5px;
    left: 110px;
    bottom: 530px;
    width: 50%;
    border-radius: 3px;
    background: #40DD8C;
}
  .contact-form-container .input-box{
    margin: 30px 8px;
  }
  .contact-form-container h1{
    color: #F2F7F3;
    font-size: 3.2rem;
    font-family:'Open Sans', sans-serif;
    margin-bottom: 100px;
    margin-top: 10px;
  }
  .contact-form-container span{
    font-family:'Open Sans', sans-serif ;
    color: #F2F7F3;
  }
  .input-box{
    position: relative;
    width: 300px;
  }
  .input-box input{
    width: 100%;
    padding: 12px;
    border: 1px solid #F2F7F3;
    background: #141414;
    border-radius: 5px;
    outline: none;
    color:#fff;
    font-size: 1rem;
  }
  .input-box span{
    position: absolute;
    left: 0;
    padding: 10px;
    pointer-events: none;
    font-size: 1rem;
    color: #F2F7F3;
    text-transform: capitalize;
    transition: 0.3s ease;
  }
  .input-box input:valid ~ span,
  .input-box input:focus ~ span{
    color: #40DD8C;
    transform: translateX(10px) translateY(-7px);
    font-size: 0.65rem;
    padding: 0 10px;
    background: #141414;
    border-left: 1px solid #40DD8C;
    border-right: 1px solid #40DD8C;
    letter-spacing: 0.2rem;
  }
  .input-box input:valid,
  .input-box input:focus{
    border: 1px solid #40DD8C;
  }
textarea{
    outline: none;
    resize: none;
    margin-left:5px;
}
  button{
    font-family:'Open Sans', sans-serif ;
    background:#40DD8C ;
    letter-spacing: 1px;
    color: #141414;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: bold;
    padding: 10px 25px ;
    font-size: 0.9rem;
    border-radius: 20px ;
    transition: .4s ease;
    margin-top: 25px;
 }

 button:hover{
    background: transparent;
    border: 2px solid #40DD8C;
    color: #F2F7F3;
    cursor: pointer;
 }


 @media(max-width: 1030px){
    .contact-form-container{
      justify-content: center;
      align-items: center;
        margin-top: 10px;
        width: 500px;
        height: 700px;
    }
    .contact-form-container h1{
        font-size: 2.1rem;
        margin-bottom: 80px;
    }
    .input-box{
        width: 200px;
    }
    .contact-form-header h1::after{
      content: '';
      position: absolute;
      height: 5px;
      left: 65px;
      bottom: 530px;
      width: 50%;
      border-radius: 3px;
      background: #40DD8C;
  }
 }
  /* Contact Form End */



  /* Footer CSS */
.footer{
   margin-top: 70px;
   width: 100%;
   height: 100px;
   display: flex;
   flex-direction: row;
   justify-content: center;
   align-items:center ;
}
.footer-links{
   width: 150px;
   display: inline-block;
}
.footer-icons{
   margin-left: 48px;
   color: #40DD8C;
   cursor: pointer;
   font-size: 1.8rem;
   transition: 300ms;

}
.footer-icons:hover{
   color: #F2F7F3;   
}


/* Footer CSS End */
@media(max-width: 1030px){
   .footer, .footer-icons{
      width: 600px;
      justify-content: center;
      align-items: center;
   }
}