*{
    text-decoration: none;
    margin: 0;
    padding: 0;
  }
  body{
    background-color:	#B0C4DE;
  }
  
  header{
    background-color:#fff);*/
    width: 100%;
    height:100px;
  }
  
  header .header-brand{
    font-family: 'Major Mono Display', monospace;
    font-size: 35px;
    font-weight: 400px;
    color: #111;
    text-align:center;
    text-transform: uppercase;
    margin: 0 auto;
    display: block;
    padding:20px 0;
  }
  
  .text{
    text-align: center;
  }
  
  header nav ul{
    display: block;
    margin: 0 auto;
    width: fit-content;
  }
  
  header nav ul li{
    display: inline-block;
    float: left;
    list-style: none;
    padding: 0 10px;
  }
  
  header nav ul li a{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 18px;
    color: #111;
    text-transform: uppercase;
  }
  
  .header-cases{
    display: none;
  }

  .contact-section{
    text-align: center;   
}
.contact-section h1{
  font-family: 'Julius Sans One', sans-serif;
  margin-top: 30px;
  text-align: center;
  color: #fff;
}
/*
.border{
    width: 100px;
    height: 10px ;
    background: #34495e;
    margin:40px auto;
}*/

.contact-form {
    max-width: 600px;
    margin-top:10px;
    padding: 70px 50px;
    overflow: hidden;
}

.contact-form-text {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 16px 10px;
    border:0;
    background: #111;
    padding: 20px 40px;
    outline: none;
    color: #ddd;
    transition: 0.5s;
}

.contact-form-text:focus{
    box-shadow: 0 0 10px 4px #132639;
}

textarea.contact-form-text{
    resize: none;
    height: 120px;
}

.contact-form-btn{
    float:right;
    border: 0;
    background: #132639;
    color: #fff;
    padding:12px 50px;
    border-radius: 20px;
    transition: 0.5s;
    transition-property: all; 
    transition-duration: 400ms;
    transition-timing-function: ease-in-out;
    transition-delay: 0.5s, 1s;
    margin-top: 20px;
    cursor: pointer;
    
}

.contact-form-btn:hover{
  background:#a1514e;
  border-radius: 50%;
  color: #fff;
  padding: 5vmin;
  box-shadow:  #f9ecec 2px 2px 2px 2px;
}

