/* custom font file  */
@font-face {
    font-family: 'Gatwick Bold'; /* Give your font a name */
    src: url('/font/PPGatwick-Bold.otf') format('opentype'); /* Replace 'your-font-file' with the actual file name */
  }
  


*{
    padding: 0px;
    margin: 0px;
}

/* css start  */

.nws-coming-soon{
    width: 100%;
    height: 100vh;
    background: url(/images/banner\ Image.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.nws-logo{
    display: block;
    width: 100%;
}
.nws-logo img{
    max-width: 200px;
    display: block;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-bottom-right-radius:10px ;
    border-bottom-left-radius:10px ;
}
.nws-content{
    display: block;
    text-align: center;
   
}

.nws-content p {
    margin-top: 80px;
    margin-bottom: 50px;
    font-size: 128px;
    font-family: 'Gatwick Bold';
    text-transform: uppercase;
    line-height: 105px;
    color: #71e39b;
    text-shadow: 0px 0px 16px #19A44B;
}
.nws-content p span {
    font-size: 107px;
    color: white;
    text-shadow: 0px 0px 16px #ffffffba;
}

.nws-content a{
    color: white;
    text-decoration: none;
    font-size: 20px;
    text-transform: uppercase;
    font-family:sans-serif;
    padding: 10px 50px;
    background-color: #f79312;
    border-radius:5px;
    
}


/* media quries  */

@media screen and (min-width: 1920px) and (max-width: 2560px) {

    .nws-logo img {
        max-width: 370px;
    }

    .nws-content p {
        font-size: 170px;
        line-height: 150px;
        margin-top: 160px;
        margin-bottom: 100px;
    }
    .nws-content p span {
        font-size: 140px;
    }
    .nws-content a {
        font-size: 35px;
        padding:15px 70px;
    }
  }
@media screen and  (max-width: 1024px) {

    .nws-logo img {
        max-width: 160px;
    }
    .nws-content p {
        font-size: 90px;
        line-height: 70px;

    }
    .nws-content p span {
        font-size: 70px;

    }
    .nws-content a {
        font-size: 16px;
        padding: 10px 40px;
    }
  }

  @media screen and (min-width:320px) and (max-width: 600px) {
    .nws-coming-soon{
        background-position: right;
    }
    .nws-content p {
        margin-top: 150px;
        margin-bottom: 150px;
        font-size: 42px;
        line-height: 40px;
    }
    .nws-content p span {
        font-size: 40px;
    }
    .nws-content a {
        font-size: 16px;
        padding: 10px 40px;
    }

  }