body, h1, h2, h3, h4, h5, h6, p, span, div {
    font-family: 'Montserrat', sans-serif;
}
.banner {
    width: 100%;
    margin: auto;
    background: url('../images/header-back.jpg') no-repeat center center;
    background-position: center center;
    background-size: cover;
    background-color: rgba(0,0,0,0.7);
    background-blend-mode: multiply;
    min-height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-h1 {
    font-weight: bold;
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    margin: 0;
}

.wrap {
    max-width: 1140px;
    padding-top: 40px;
    margin: auto;
    
}

.signup-btn {
    text-align: center;
    padding: 20px 0px;
    color: #fff;
}
.btn-icon {
    color: #fff;
    padding-right: 10px;
}

.signup-btn button {
    background-color: #0c98f2;
    border-radius: 10px;
    border: none;
    padding: 15px 40px;
}

/*navbar*/
nav {
    font-size: 12px!important;
  }
  .navbtn {
    background: #0ed6fb!important;
    color: #fff;
    padding: 0px 3px
  }
    
  
  @media screen and (min-width: 769px) {
     nav {
      display: none!important;
     }
     
     header {
      position: absolute;
      z-index: 3;
      width: 100%;
      padding-top: 30px;
     }
  
     header p a {
      padding: 10px 5px;
      color: #fff;
      transition: .3s ease-in-out;
      text-decoration: none;
     }
     header p a:hover {
      text-decoration: none;
      color: #fff;
      background-color: rgba(0,0,0,0.3);
      transition: .3s ease-in-out;
     }
  
     header .col-md-4 a {
      padding: 10px 25px;
      background: #0ed6fb;
      border: 1px solid #0ed6fb;
      text-decoration: none;
     }
  
     header .col-md-4 a:hover {
      border: 1px solid #0ed6fb;
      text-decoration: none;
      color: #fff;
      background: transparent!important;
     }
  }
  
  @media screen and (max-width: 768px) {
    header {
      display: none!important;
    }
    .banner h1 {
        font-size: 20px;
        padding-top: 48px;
    }
    .banner {
        min-height: 210px;
    }
  }