html, body{
    overflow-x: hidden;
    font-weight: 400;
    font-style: normal;
    font-family: "Poppins", sans-serif;
}

.topHeader{
    background-color: rgb(227, 77, 78);
    padding: 10px 0;
}

.topHeader p{
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    color: #fff;
    font-family: "Roboto", system-ui;
}

.mainContent{
    padding: 1rem 1rem;
}

.checkList{
    display: flex;
    align-items: center;
    justify-content: center;
}

.mainContent h1{
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.bannerMain{
    position: relative;
}

.bannerMain .logo-banner{
    position: absolute;
    top: 20px;
    left: 20px;
}

.checkList span{
    font-size: 18px;
    line-height: 20px;
}

.warningMain span{
    font-size: 19px;
    line-height: 22px;
}

.clickBtn{
    display: inline-block;
    width: 100%;
    line-height: 38px;
    font-size: 21px;
    color: rgb(255, 255, 255);
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    background-color: #4064e9;
    padding: 20px 0;
    margin: 20px 0;
}

.clickBtn:hover{
    color: #fff;
}

.logoMain{
    background-color: transparent;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #000;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.logoMain img {
    margin: 25px;
    max-width: 100px;
    height: auto;
}

.footerMain{
    background-color: rgb(228, 228, 228);
    padding: 2rem 0;
}

.footerMain a{
    text-decoration: underline;
    color: rgb(0, 0, 238);
    line-height: 22px;
    font-size: 14px;
}

.footerMain p{
    line-height: 22px;
    font-size: 14px;
    margin: 15px 0;
}

.hide-on-mob{
    display: none;
}

@media only screen and (min-width: 768px){
    .hide-on-mob{
        display: block;
    }
    
    .star-rating img {
        width: 450px;
        max-width: 450px;
    }
}

@media only screen and (min-width: 1200px) {

    .mainContent{
        padding: 2rem 3rem;
    }

    .topHeader p{
        font-size: 25px;
    }

    .mainContent h1{
        font-size: 30px;
        line-height: 42px;
    }

    .checkList span{
        font-size: 20px;
        line-height: 17px;
    }

    .warningMain span{
        font-size: 20px;
        line-height: 17px;
    }

    .clickBtn{
        line-height: 38px;
        font-size: 32px;
    }

}

@media only screen and (max-width: 480px) {
    .logoMain img {
        max-width: 60px;
        margin: 3px;
    }
    
    .logoMain {
        padding: 10px;
    }
}

.star-rating img {
    width: 100%;
    max-width: 300px;
    height: auto;
}