
/*Đài CSS*/
:root {
    --kt-bg1: linear-gradient(90deg, #9B241B 0%, #DD3F24 100%);
    --kt-title: linear-gradient(283deg, #E15021 0.34%, #A72A01 99.66%);
    --kt-btn: linear-gradient(90deg, #CD001E 0%, #F63F10 100%);
}



/*Animation*/


@keyframes slideX {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50px);
    }
}

@keyframes zoomInOut {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.3)
    }

    100% {
        transform: scale(1)
    }
}







.page-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 150%;

    @media only screen and (max-width: 768px) {
        font-size: 26px;
        margin-bottom: 5px;
    }
}

.page-title span {
    background: var(--kt-title);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.page-title2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 150%;

    @media only screen and (max-width: 768px) {
        font-size: 24px;
    }
}

.page-title2 span {
    background: var(--kt-title);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.sec-title3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 150%;

    @media only screen and (max-width: 800px) {
        font-size: 22px;
    }
}

.sec-title3 span {
	display: inline-block;
    background: var(--kt-title);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 30px;
    font-weight: 700;
    line-height: 150%;
    /* padding-left: 10px; */

    @media only screen and (max-width: 800px) {
        font-size: 22px;
        padding-left: 0;
    }
}

.sec-title4 {
    font-size: 25px;
    font-weight: 600;
    line-height: 150%;
    background: var(--kt-btn);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 2px solid #CD001E;
}





