@font-face {
    font-family: BebasKai;
    src: url(../fonts/BebasKai.woff) format('woff'),
      url(../fonts/BebasKai.woff2) format('woff2');
  }
  
  @font-face {
    font-family: DINPro;
    src: url(../fonts/DINPro.woff) format('woff'),
      url(../fonts/DINPro.woff2) format('woff2');
  }
body{
    background-color: #171642;
    color: #fff;
  }
.container{
    max-width:1920px;
}
.banner{
    background: url(images/banner-bg.webp) no-repeat top right;
    background-size: 90%;
   background-size: contain;
    font-family: BebasKai;
    padding-bottom: 55px;
    box-shadow: 0px 6px 15px 0px #0000007a;
}
.logo img{
    margin: 82px 0 82px 0;
    width: 40%;
}
.banner h1{
    font-size: 85px;
    line-height: 60px;
}
.banner h3{
    font-size: 70px;
    color: #ffb800;
}
.banner h3 span{
    font-size: 30px;
    color: #fff;
}
.banner .claim-btn{
    text-decoration: none;
    font-size: 55px;
    color: #fff;
    padding: 0px 20px;
    border-radius: 50px;
    background: linear-gradient(#ffd906, #c86a03);
    display: inline-block;
    box-shadow: 0px 2px 10px 0px #0000007a;
    margin-top: 20px;
}
.banner ul{
    margin: 60px 0;
}
.banner ul li{
    list-style-type: none;
    display: inline-block;
    margin-right: 20px;
    font-size: 22px;
}
.banner ul li span{
    width: 22px;
    height: 22px;
    display: inline-block;
    background: #ffb800;
    line-height: 22px;
    border-radius: 50%;
    margin-right: 5px;
}
.payment a img{
    /* margin: 0 10px; */
    width: 75%;
}
.row-para .para{
    margin: 40px 30px;
    font-family: DINPro;
    font-size: 16px;
}
/* -------------------------responsive------------------------------- */
@media screen and (min-width: 1919.98px) and (max-width: 1920.02px) {
    .logo img{
        width: 30%;
    }
}
@media screen and (max-width:768px){
    .banner{
        background: url(images/mobile-banner.webp) no-repeat center;
        background-size: cover;
    }
    .banner h1, .banner h3 {
        text-shadow: 0px 0px 10px #000;
    }
}
@media screen and (max-width:430px){
    .banner h1 {
        font-size: 50px;
        text-shadow: 0px 0px 10px #000;
    }
    .banner h3 {
        font-size: 45px;
        text-shadow: 0px 0px 10px #000;
    }
    .banner .claim-btn {
        font-size: 42px;
    }
    .banner ul {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-content: center;
        flex-wrap: wrap;
    }
    .banner ul li{
        display: block;
        margin: 0;
        margin-bottom: 5px;
    }
    .banner ul li span{
        text-align: center;
    }
    .payment a img {
        width: 70%;
    }
    .row-para .para {
        margin: 30px 20px;
    }
    .logo img {
        margin: 35px 0px 100px 0;
        width: 55%;
      }
}