* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.side-space {
    width: 1280px;
    margin: 0 auto;
    padding: 0 30px 0 30px;
}

.space {
    margin-top: 50px;
}

.space-area {
    margin-bottom: 200px;
}

/* title-type-1 */

.title-type-1 h4 {
    font-size: 24px;
    font-weight: 600;
    padding-left: 20px;
    color: #003777;
}

.title-type-1 span {
    font-weight: 400;
    color: #003777;
    padding-right: 15px;
}

.title-type-1 div {
    max-width: 23rem;
    height: 6px;
    background-color: #FEDC00;
   margin-top: 5px;
}

/* title-type-2 */

.title-type-2 {
    margin-top: 30px;
}

.title-type-2 h1 {
    max-width: 43.75rem;

    color: #003777;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 40px;
}

/* text */

.text {
    margin-top: 30px;
}

.text .text-p {
    max-width: 930px;
    font-weight: 400;
    font-size: 16px;
    text-align: justify;
}

/* title-type-3 */

.title-type-3 {
    margin-top: 30px;
}

.title-type-3 h4{
    font-size: 24px;
    color: #003777;
    font-weight: 500;
}

/* list-type-1 */

.list-type-1 ul, ol {
    max-width: 58.125rem;

    padding-left: 35px;
    font-weight: 600;
    margin-top: 30px;
    text-align: justify;
}

.list-type-1 ol li {
    font-weight: 400;
}

.list-type-1 p {
    max-width: 58.125rem;
    margin-top: 30px;
    text-align: justify;
}

/* list-type-2 */

.list-type-2 ul{
    max-width: 930px;

    padding-left: 35px;
    margin-top: 30px;
    text-align: justify;
}

/* table */

.table {
    width: 1280px !important;
}

.table table{
    width: 900px;
    border:1px solid #C0C0C0;
    border-collapse:collapse;
    padding:5px;

    margin-top: 30px;
}
.table th {
    border:1px solid #C0C0C0;
    padding:5px;
    background:#F0F0F0;
}
.table td {
    border:1px solid #C0C0C0;
    padding:5px;
}

footer {
    margin-top: 60px;
}





@media (max-width: 910px) {

    .side-space, .text-p, .table table {
        width: auto;
    }

    .title-type-2 h1 {
        font-size: 28px;
    }

    .text .text-p {
        font-size: 16px;
    }

}

@media (max-width: 600px) {

    .table table {
        width: 315px;
        padding: auto;
    }

    .table th, .table td {
        font-size: 10px;
        padding: auto;
        text-align: center;
    }




}


@media (max-width: 400px) {

    .table th, .table td {
        padding: 0;
    }

}