*{
    margin: 0px;
    font-family: sans-serif;
    outline: 0px;
  }
  .contact-section{
    background: url(https://cdn.discordapp.com/attachments/778709189664047149/780177630363123712/bg.png) no-repeat center;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    margin: 0;
    display: table;
    vertical-align: middle;
    padding: 40px 0;
    height: 70vh;
    width: 100%;
  }
  .contact-section h1{
    text-align: center;
    color: white;
    font-size: 38px;
    padding-bottom: 10px;
  }
  
  .contact-form{
    max-width: 600px;
    margin: auto;
    padding: 0 10px;
    overflow: hidden;
  }
  
  .contact-form-text{
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 16px 0;
    border: 0;
    background: #D2F8FB;
    padding: 20px 40px;
    outline: none;
    color: black;
    transition: 0.5s;
    font-family: sans-serif;
  }
  .contact-form-text:focus{
    box-shadow: 0 0 10px 4px #34495e;
  }
  textarea.contact-form-text{
    resize: none;
    height: 120px;
  }
  .contact-form-btn{
    float: right;
    border: 0;
    background: #34495e;
    color: #fff;
    padding: 12px 50px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.5s;
  }
  .contact-form-btn:hover{
    background: #2980b9;
  }
  
  
  
  .menu {
    background-color: #071145;
    height: 75px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #fff;
    margin: 0px;
  }
  .logito {
    color: #071145;
    font-size: 35px;
    font-family: "Raleway", sans-serif;
    padding: 0 80px;
    font-weight: bold;
  }
  .menu_items {
    display: flex;
    list-style: none;
    margin-right: 30px;
  }
   .menu_items li {
     border-radius: 3px;
     margin: 0 5px;
   }
  .menu_items li a {
    padding: 7px 13px;
    text-decoration: none;
    font-size: 16px;
    display: block;
    text-transform: uppercase;
    color: white;
    font-family: sans-serif;
    font-weight: bolder;
  }
  
  .menu_items li:hover, li :active {
    background-color: #5dc1b9 ;
    transition: .3s;
  }
  .btn_menu {
    margin-right: 30px;
    font-size: 25px;
    cursor: pointer;
    display: none;
  }
  
  ul.show {
    top: 65px;
  }
  @media screen and (max-width: 952px){
    .logito{
      font-size: 30px;
      padding-left: 35px;
    }
    .menu_items li a{
      font-size: 16px;
  
    }
  }
  
  @media screen and (max-width: 858px){
    .menu{
  height: 65px;
    }
    .btn_menu{
      display: inline-flex;
    }
    .menu_items {
      position: fixed;
      width: 100vw;
      height: calc(100%-65px);
      background:#414141;
      top: -100vh;
      text-align: center;
      transition: all .4s;
      flex-direction: column;
    }
    .menu_items li {
      margin: 30px 0 0 0;
      line-height: 30px;
    }
    .menu_items li:hover {
      background: none;
    }
    .menu_items li a {
      font-size: 20px;
      color: white;
      font-weight: bold;
    }
    .menu_items li a:hover {
      color: red;
    }
    .logito {
      font-size: 25px;
      padding-left: 35px;
    }
  }
  
  @media screen and (max-width: 858px) and (orientation: landscape){
    .menu_items li {
      margin: 5px 0 0 0;
    }
    .menu_items {
      overflow: scroll;
      height: calc(100% - 65px);
    }
  }
  
  #footer {
    background: #000729;
    padding: 30px 0;
    color: #fff;
  }
  
  #footer .copyright {
    text-align: center;
  }
  
  #footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
  }