/* ===========================
   RESET & GLOBAL SETTINGS
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 20px;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    background-image: url(../images/login-bgG.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4, h5, h6, p, ul {
    margin: 0;
    padding: 0;
}

li { list-style: none; }

a { text-decoration: none; }

.clear { clear: both; }

/* ===========================
   LEGALS PAGE
=========================== */
.legals-policy {
    padding: 150px 0 100px 0;
}

.content {
    background-color: #fff;
    padding: 50px 20px;
    border-radius: 6px;
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.12);
}

.content .leagls-title {
    padding: 10px 0 20px 0;
    text-decoration: underline;
 font-weight: 600;
font-size:35px;
    color: #000;
    text-align: center;
}

/* ===========================
   TEXT CONTENT BLOCKS
=========================== */
.content p {
    margin-bottom: 15px;
    color: #000;
    line-height: 26px;
}

.content ul {
    margin: 10px 0 20px 20px;
}

.content ul li {
    list-style: disc;
    margin: 6px 0;
    color: #111;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 991px) {
    .legals-policy {
        padding: 120px 0 80px 0;
    }
}

@media (max-width: 768px) {
    .content {
        padding: 40px 15px;
    }

    .content .leagls-title {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 12px;
    }

    .content .leagls-title {
        font-size: 26px;
    }

    .content p {
        font-size: 15px;
        line-height: 24px;
    }
}
