/* TEXT FORMAT */

.cwhite {
    color: rgb(255, 255, 255);
}

.cyellow {
    color: yellow;
}

.cblue {
    color: blue;
}

.cred {
    color: red;
}

.cgreen {
    color: green;
}

.tb {
    font-weight: bold;
}

.ti {
    font-style: italic;
}

.te {
    text-align: center;
}

.tu {
    text-decoration-line: underline;
}

.fs16 {
    font-size: 16px;
}

.fs18 {
    font-size: 18px;
}

.lh30 {
    line-height: 30px;
}


/*---------------------CHUNG ----------------------*/

.frame1200 {
    max-width: 1200px;
    margin: 0 auto;
}

.grid-1-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}
.grid-1-2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 10px;
}

.img-block {
    display: block;
}

.margin-0auto {
    margin: 0 auto;
}

.pb10 {
    padding-bottom: 10px;
}

.video-center {
    display: block;
    margin: 0 auto;
}

.underline-green {
    border-bottom: 1px solid #C1F2B0;
}

.w100 {
    width: 100%;
}

.w80 {
    width: 80%;
}

.w60 {
    width: 60%;
}


/* --------------------------------------------------------- */

.footer-wrap {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}


/* --------------------------------------------------------- */

@media screen and (max-width:575px) {
    .video-center {
        width: 100%;
        height: 300px;
    }
    .footer-wrap {
        grid-template-columns: 1fr;
    }
    .grid-1-1 {
        grid-template-columns: 1fr;
    }
    .grid-1-2 {
        grid-template-columns: 1fr;
    }
    .w100,
    .w60,
    .w80 {
        width: 95%;
    }
}