
html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    height: 100%;
  }
  
  
  body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
  
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  a:hover {
    color: inherit;
  }
  
  ul,
  li {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  button {
    margin: 0;
    padding: 0;
    border: none;
  }
  
  button:focus {
    outline: none !important;
    box-shadow: none !important;
  }

  header{
    background-color: black;
    background-image: url(../images/banner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

  }
  .logo img{
    height: 35px;
  }

  header h1{
        font-size: 50px;
        font-weight: 700;
        line-height: 98px;
        color: white;
  }
  header h1 span{
    font-size: 60px;
  }

  header p{
    font-size: 38px;
    font-weight: 400;
    line-height: 70px;
    color: white;
    text-align: center;
}
  
h4{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

form label{
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
    color: #1E1E1E;
    font-weight: 500;
}

form input, form textarea{
    color: #1E1E1E;
    border: 2px solid #1E1E1E;
    width: 100%;
    padding: 20px;
    font-weight: 400;
    border-radius: 5px;
}

form input::placeholder{
    color: #1E1E1E;

}

form button{
    background: #2C60C8;
    text-align: center;
    padding: 20px;
    width: 100%;
    border-radius: 5px;
    border: 2px solid #2C60C8;
    color: white;
    transition: all .2s ease-in-out;
}

form button:hover{
    color: #2C60C8;
    background: transparent;
    transition: all .2s ease-in-out;
}
.apps{
  font-weight: 600;
  font-size: 22px;
}
.chrome{
  height: 40px;
}
.stripe{
  height: 56px;
}

@media (max-width: 767px){
    .logo img{
        height: 25px;
      }
    header{
        background-position: left bottom;
        background-size: cover;
    
      }
      .apps{
        text-align: start;
        margin-top: 25px;
        font-size: 18px;
        margin-bottom: 10px;
      }

      .apps .w-100{
        width: auto !important;
        height: 40px;
      }
      .chrome{
        height: 25px;
      }
      .stripe{
        height: 35px;
      }
    
    header h1{
        font-size: 30px;
        line-height: 52px;
        margin-bottom: 30px;
  }
  header h1 span{
    font-size: 36px;
  }

  header p{
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
}
  
}