@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.headerSec{
    height: auto;
    width: 100%;
    background-color: rgba(2,86,167,1);
    padding: 10px 0px;

}

.flexBetween{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* hero section here  */
.heroSec{
    height: auto;
    width: 100%;
    background-image: url(./assets/image/SP\ Promo_BG@2x.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 20px 0px;
}

.row{
    align-items: center !important;
}

.heroSec p{
    margin: 10px 0px;
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-style: normal !important;
    text-transform: initial;
    padding-top: 15px;
}

.heroSec  h4{
    color: rgb(255, 196, 0);
    font-family: Poppins;
    font-size: 24px;
    line-height: 26px;
    font-weight: 500;
    font-style: normal;
    padding: 10px 0px;
}

.heroSec h6{
    color: rgb(0, 194, 255);
    font-family: Poppins;
    font-size: 23px;
    line-height: 26px;
    font-weight: 500;
    font-style: normal;
}

.heroSec h6 a{
    color: rgb(0, 194, 255);
}
.liveSec img{
    padding: 0px 5px;
}

/* middle section here  */
.secondSec{
    height: auto;
    width: 100%;
    padding: 50px 0px;
}
.middle{
    display: flex;
    align-items: center;
}

.secondSec h5{
    padding: 30px 0px;
}
/* footer section  */
.footerSec{
    display: block;
    background: rgba(0,34,70,1);
    border-style: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    border-radius: 0px;
    width: 100%;
    height: auto;
    color: #FFF;
    padding: 20px 0px;
}

@media only screen and (max-width:767px) {
    .footerSec .flexBetween{
        display: block;
        justify-content: space-between;
        align-items: center;
    }

    .footerSec{
        text-align: center;
    }
    .rightFooter .liveSec{
        justify-content: center;
    }

    .leftFooter h1{
        font-size: 20px !important;
    }

    .rightFooter .liveSec .country {
        width: 15%;
    }

    .heroSec .liveSec img {
        width: 15%;
    }
}

