

.hero-form{
    width: 100vw;
    height: 75vh;
    background-image: url(Images/DJI01SOLAR.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}


.hero-form h1{
    bottom: 10px;
    color: #ffffff;
    
    text-align: center;
    position: absolute;
    font-size: 65px;
    left: 50%;
}


.form {
    width: 40%;
    height: 100%;
   
   
   
   margin: 10px auto;
    padding: 20px 30px;
    max-width: calc(100vw - 40px);
    box-sizing: border-box;
    
    position: relative
    
}

h2 {
    margin: 10px 0;
    padding-bottom: 10px;
    width: 180px;
    color:  #065538;
    border-bottom: 3px solid  #065538;
}


input {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 10px;
    padding: 10px;
    box-sizing: border-box;
    background: none;
    outline: none;
    resize: none;
    border: 0;
    font-family: 'Montserrat', sans-serif;
    transition: all .3s;
    border-bottom: 2px solid #8c8c96;
}

input:focus {
    border-bottom: 2px solid #8c8c96;
}

input:focus,   
select:focus,   
textarea:focus {  
    border-bottom: 2px solid #8c8c96;
}  

label{
   color: #8c8c96;
    box-sizing: border-box;
    background: none;
    outline: none;
    resize: none;
    border: 0;
    font-family: 'Montserrat', sans-serif;
    transition: all .3s;
    border-bottom: 2px solid #8c8c96
}


  
select,   
textarea { 
   width:100%;
   background: #e2e2e2;
   border: 1px solid #065538; 
   -moz-border-radius: 4px;  
   -webkit-border-radius: 4px;  
   
   margin-bottom: 25px;  
   padding: 5px;  
}  

textarea{
    -moz-border-radius: 0px;  
    -webkit-border-radius: 0px;  
}



select {
    
    outline:0;
    box-shadow:none;
    border:0!important;
    background: #e2e2e2;
    background-image: none;
    flex: 1;
    padding: 0 .5em;
    color: #78788c;
    cursor:pointer;
    font-size: 1em;
    font-family: 'Open Sans', sans-serif;
 }

 
option::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 1em;
    background: #2b2e2e;
    cursor:pointer;
    pointer-events:none;
    transition:.25s all ease;
 }

 select:hover::after {
    color: rgb(6, 41, 17);
 }



p:before {
    content: attr(type);
    display: block;
    margin: 28px 0 0;
    font-size: 14px;
    color: #5a5a5a
}

span{
    width: 100%;
    margin: 15px 0px;
    box-sizing: border-box;
    background: none;
    outline: none;
    resize: none;
    border: 0;
    font-family: 'Montserrat', sans-serif;
    transition: all .3s;
    border-bottom: 2px solid #8c8c96;

}




.button-contact{
    display: flex;
    justify-content: center;
}

button {
   margin: inherit;
    background-color: #05412b; /* Green */
    color: #eceae5;
    border-radius: 50%;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all .3s
}

button:hover {
    background-color: #065538; /* Green */
    color: #fff
}

@media screen and (max-width: 1024px){
    .hero-form h1{
        bottom: 10px;
        color: #ffffff;
        text-align: center;
        position: absolute;
        font-size: x-large;
        left: 25%;
    }
    
    

    .form{
        width: 85%;
    }


}