@import url(../fonts/fonts.css);
body{
  font-family: 'qanelas_softbold';
    font-size: 16px;
    line-height: 25.6px;
    font-weight: 400;
    color: #000;
  }

  body, html {
    height: 100%;
}
  .container-wrap{
    position: relative;
    overflow: hidden;
  }
  .overlay{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* opacity: 0.1;
    background-color: #0c2f55; */
    z-index: 1;
  }
  .body-bg{
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    transition: background-image 300ms ease-in 200ms; 
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }

  header h1,
  header h5{
    color: #1690ae;
  }
  header h1{
    text-transform: uppercase;
    font-family: 'qanelas_softextrabold'; 
  } 


  footer{
    background-color: #1292af;
    padding: 10px;
  }

  .footer-wrap{
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .footer-wrap span{
    color: #fff;
    font-size: 1.2rem;
    font-family: 'qanelas_softbold';
  }
  .footer-wrap span img{
    width: 45px;
  }

  @media (min-width: 581px) {
    header h1{
      font-size: 4.2rem;
    }
    header h5{
      font-size: 1.9rem;
    }
  }

  @media (max-width: 768px) {
    header{
      padding: 20px;
    }
  }

  @media (max-width: 480px) {
    header h1{
      font-size: 2.2rem;
    }
  }