@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&display=swap");
:root {
    --darkgreen: rgb(0, 87, 46);
    --white: #fff;
    --greenText: #028843;
    --lightGreenText: #00bf50;
    --darkGreenText: #023b13;
    --yellowText: #fee71b;
    --registerBg: rgba(23, 95, 73, 0.7);
}

html,
body {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-height: 100vh;
    background-color: var(--white);
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto";
    font-weight: 600;
    margin: 10px 0;
}

a:hover,
a:focus,
a:visited {
    text-decoration: none;
}
p {
    margin: 0;
}
.desktop {
    display: block;
}
.mobile,.hide-ondesk {
    display: none;
}

.body-container {
    width: 100%;
}

.header,
.footer,
.section {
    width: 100%;
}
.sc-container {
    width: 100%;
    max-width: 1500px;
    height: auto;
    margin: 0 auto;
    padding: 20px 10px;
}


.burger-menu {
    display: none;
    position: absolute;
    top: 10px;
    right:-50px;
}
.burger-menu div {
    width: 35px;
    height: 5px;
    background-color:var(--yellowText);
    margin: 6px 0;
    transition: 0.4s;
}

.active .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}
.active .bar2 {
    opacity: 0;
}

.active .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
}

.Banner-below-header img{
    margin:0 auto;
}

/*#region ---------------Header*/
.header {
    position: relative;
    background: var(--darkgreen);
    z-index: 99;
    background: #cfcfcf;
    background: linear-gradient(90deg, #cfcfcf 0%, #ffffff 100%);
}
.hd-top {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.hd-top .icons-contact {
    height: 30px;
}
.hd-top-left {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hd-top-left span {
    color: rgb(1, 69, 15);
    text-transform: uppercase;
    font-weight: 600;
    margin-left: 15px;
    font-size: 1.4rem;
}
.hd-top-right {
    display: flex;
    justify-content: center;
    align-items: center;
}
.gr-link {
    margin: 0 10px;
}
.gr-link a {
    position: relative;
    padding-right: 10px;
    margin-right: 15px;
    color: rgb(1, 69, 15);
    font-weight: 600;
    font-size: 20px;
}
.gr-link a::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    right: 0;
    background-color: black;
}
.gr-icons a {
    margin: 0 5px;
}

.hd-bottom {
    position: relative;
    padding: 10px;
    background: #033a13;
    background: linear-gradient(90deg, #033a13 0%, #007103 100%);
}
.hd-bottom-wr {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}
.hd-logo {
    padding: 10px 0;
    width: 400px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.hd-logo img {
    height: 50px;
}
.hd-title {
    text-align: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.hd-title p {
    color: white;
    font-weight: 600;
    font-size: 24px;
}
.cd-box {
    display: flex;
    flex-wrap: nowrap;
    padding: 5px 10px;
    background-color: #014e0a;
    border: 3px #02a406 solid;
    border-radius: 10px;
    max-width: 425px;
}
.each-time {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.each-time > div{
    display: flex;
    flex-wrap: nowrap;
}
.text-time{
    color: white;
    font-size: 20px;
    font-weight: bold;
}
.each-time p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    color: #033b12;
    font-size: 40px;
    font-weight: 600;
}
.each-time:not(:last-child) {
    padding-right: 10px;
    position: relative;
}
.each-time:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 3px;
    width: 4px;
    height: 4px;
    background-color: white;
}
.each-time:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 38px;
    right: 3px;
    width: 4px;
    height: 4px;
    background-color: white;
}
.each-time p {
    width: 46px;
    height: 61px;
    background: url(../images/bg-clock.png) no-repeat top center/contain;
}
/*#endregion*/


/*#region ------------------additional */

#additional {
    font-size: 16px;
}
.scAdd-title {
    font-family: "Roboto";
    text-align: center;
    margin: 0px auto 30px;
    font-size: 48px;
    font-weight: 600;
    color: var(--darkGreenText);
    text-shadow: 0px 5px 7px rgba(0, 0, 0, 0.3);
}
.scAdd-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.scAdd-main > div {
    flex-basis: 50%;
    padding: 0 0.625em;
}
.scAdd-introText h2 {
    color: var(--greenText);
    font-size: 2.1875em;
    text-align: center;
}
.scAdd-introText p {
    font-size: 1.4375em;
    line-height: 1.5;
    color: var(--greenText);
    font-weight: 600;
}
.scAdd-introText p b {
    font-size: 1.2em;
    font-family: "Roboto BoldCondensed";
}
.scAdd-main hr {
    margin-top: 0.625em;
    margin-bottom: 1.25em;
    border: 0;
    border-top: 1px solid var(--greenText);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .scAdd-title {
        margin: 0px auto 20px;
    }
    .scAdd-main {
        flex-direction: column;
    }
    .scAdd-main .video-wrapper {
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }
    .scAdd-main .sc-introText {
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .scAdd-title {
        font-size: 36px;
        margin: 0px auto 10px;
    }
    
    .scAdd-introText p {
        font-size: 18px;
        line-height: 1.2;
        color: var(--greenText);
    }
}
@media (max-width:600px){
    .scAdd-title,
    .scAdd-introText h2{
        font-size: 30px;
    }
}
/*#endregion */


/*#region ---------------Section2 */

#section2 {
    position: relative;
    background: url(../images/sec2-bg.jpg) no-repeat top center/cover;
}
.sc2-header {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 30px;
}
.sc2-header img {
    max-height: 123px;
    max-width: 322px;
    margin: 0 auto;
}
.sc2-header p {
    max-width: 1050px;
    color: white;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    padding: 14px 60px;
    background-color: #024316;
    border: 1px solid #00ff12;
    border-radius: 5px;
}
.sc2-header p b {
    color: #fee71b;
}
.sc2-main {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}

.sc2-contents p:first-child {
    color: var(--darkgreen);
    font-weight: 600;
    font-size: 24px;
}
.sc2-contents p:nth-child(2n) {
    color: var(--greenText);
    font-weight: 600;
    font-size: 20px;
}
.sc2-contents img {
    display: block;
    padding: 40px 30px;
    border: 1px solid var(--lightGreenText);
    border-radius: 10px;
    background-color: var(--registerBg);
    margin: 0 auto;
    margin-top: 20px;
}

.sc2-register {
    width: 100%;
    max-width: 680px;
    text-align: center;
}
.sc2-register .btn-datcuoc {
    display: block;
    max-width: 370px;
    margin: 20px auto;
    padding: 10px 0px;
    border-radius: 5px;
    color: white;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 600;
    background-color: var(--greenText);
    box-shadow: 0px 2px 7px 0px rgba(63, 84, 61, 0.74);
}
.sc2-register > p {
    max-width: 565px;
    margin: 20px auto;
    color: var(--greenText);
    font-weight: 600;
    font-size: 20px;
}
/*#region--------- REGISER */
#register {
    padding: 40px 30px;
    border: 1px solid var(--lightGreenText);
    border-radius: 10px;
    background-color: var(--registerBg);
}
.form-dk {
    border-radius: 8px;
    border-radius: 10px;
    background-color: rgb(5, 40, 25);
    max-width: 570px;
    margin: 0 auto;
    width: 100%;
    height: auto;
    padding: 40px 0 20px;
}
.form-dk h2 {
    font-family: "Roboto";
    text-align: center;
    margin: 0 auto 2rem;
    font-size: 2.1875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--yellowText);
    text-shadow: 0px 5px 7px rgb(0, 0, 0, 0.3);
}
.register-form {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#831b1b', endColorstr='#380000', GradientType=0);
    box-shadow: none;
    padding: 0 30px;
}
.register-form > .close {
    color: #fff;
    opacity: 1;
    margin-top: 16px;
    margin-right: 31px;
    z-index: 99;
    position: relative;
    cursor: pointer;
}

.register-form input[type="text"],
.register-form input[type="password"],
.register-form input[type="email"],
.register-form textarea,
.register-form select {
    background: #052819;
    width: 100%;
    height: 43px;
    background-size: contain;
    border: none;
    margin: 0 auto;
    font-size: 21px;
    display: block;
    line-height: 1;
    margin-bottom: 20px;
    border-radius: 3px;
    position: relative;
    z-index: 99;
    color: #fff;
}
#qpost input,
#qpost select {
    border-bottom: 1px solid #ccc;
}

#qpost input:focus-visible,
#qpost select:focus-visible {
    outline: none;
}
.detail-register {
    color: white;
}
.detail-register ul {
    display: flex;
}
.detail-register ul li {
    color: #949494;
    flex-basis: 33%;
    padding: 0 10px;
}
.detail-register [type="checkbox"]:not(:checked),
.detail-register [type="checkbox"]:checked {
    position: relative;
    opacity: 1;
    pointer-events: initial;
}
.text-yellow {
    color: var(--yellowText);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}
.errorMsg {
    padding: 8px;
    background: #e74e4e;
    border: 1px solid #860404;
    color: #fff;
    display: none;
    font-size: 14px;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 99999;
    box-sizing: border-box;
    right: 10px;
    -moz-box-sizing: border-box;
    border-radius: 5px;
}
.successMsg {
    padding: 8px;
    background: #6bb34b;
    border: 1px solid #1b4a07;
    color: #fff;
    display: none;
    font-size: 14px;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 99999;
    box-sizing: border-box;
    right: 10px;
    -moz-box-sizing: border-box;
    border-radius: 5px;
}
.birthDate select {
    width: 32.2%;
    display: block;
    float: left;
    margin-right: 8px;
    padding-left: 5px;
    font-size: 16px;
    line-height: 19px;
    position: relative;
}
.birthDate select:last-child {
    margin-right: 0;
}
.msg-error {
    color: #fff;
    font-size: 12px;
    margin-top: -5px;
    display: none;
    padding: 0 10px;
    margin-bottom: 5px;
}
.msg-error-focus {
    position: relative;
    color: #fff;
    font-size: 12px;
    margin-top: -5px;
    display: block;
    padding: 0 10px;
    margin-bottom: 5px;
    background: #015e2f;
}
.capbox-inner {
    position: relative;
}
#CaptchaDiv {
    font-size: 17px;
    font-style: italic;
    color: #fff;
    background-color: #0b4626;
    padding: 4px;
    -moz-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
    -webkit-border-radius: 0 4px 4px 0;
    width: 180px;
    letter-spacing: 2px;
    float: right;
    height: 43px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    line-height: 41px;
    z-index: 999;
}
.dangky {
    font-family: "Roboto";
    width: 215px;
    height: 55px;
    margin: 2.5rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    font-size: 1.09375em;
    font-weight: 600;
    color: #333333;
    background: #fecb1b;
    background: linear-gradient(0deg, #fecb1b 0%, #fecb1b 40%, #fff48e 70%, #fff48e 100%);
    box-shadow: 0px 10px 13px 0px rgb(0 0 0 / 50%);
    cursor: pointer;
}

@media (max-width: 1024px) {
    .desktop{
        display: none;
    }
    .mobile{
        display: block;
    }
    .birthDate select {
        width: 31.9%;
    }
    .register-form input[type="text"],
    .register-form input[type="password"],
    .register-form input[type="email"],
    .register-form textarea,
    .register-form select {
        margin-bottom: 10px;
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .birthDate select {
        width: 32%;
    }
}
@media (max-width: 550px) {
    .register-form {
        padding: 0 15px;
    }
    .form-dk h2 {
        font-size: 1.5rem;
    }
    .birthDate select {
        width: 31.5%;
    }
    #CaptchaDiv {
        width: 100px;
    }
    .text-yellow {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
}
@media (max-width: 375px) {
    .birthDate select {
        width: 31.2%;
    }
}
/*#endregion */

/* #endregion */

/*#region ---------------Section3 */

#section3 {
    background: url(../images/sec3-bg.jpg) no-repeat top center/cover;
}
.sc3-title {
    margin: 0 auto;
    color: var(--yellowText);
    text-transform: uppercase;
    font-size: 50px;
    font-weight: 600;
    text-shadow: 0px 5px 7px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-bottom: 60px;
}
.sc3-circle {
    display: flex;
    justify-content: space-evenly;
}
.sc3-circle div {
    text-align: center;
    flex-basis: 16.6%;
}
.sc3-circle div p {
    color: white;
    margin-top: 20px;
    padding: 0 30px;
    font-size: 18px;
}
/* #endregion */

/*#region ---------------Section4 */
#section4 {
    background: url(../images/sec4-bg.jpg) no-repeat top center/cover;
    text-align: center;
}
.sc4-contents {
    position: relative;
    margin-top: -15%;
    background: rgba(22, 110, 62, 0.8);
    border-radius: 15px;
    padding: 25px 40px;
    color: white;
    font-family: "Roboto";
}
.sc4-contents p {
    color: var(--yellowText);
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 7px 20px;
    max-width: 300px;
    margin: 0 auto;
    background-color: var(--darkGreenText);
    border-radius: 5px;
    margin-bottom: 15px;
}
.sc4-contents ul {
    text-align: left;
    font-size: 23px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.dangky.btn-sec4{
    position: absolute;
    left: 50%;
    top: -70px;
    transform: translateX(-50%);
    margin: 0;
}

/* #endregion */

/*#region ---------------Section5 */

#section5 {
    background: url(../images/sec5-bg.jpg) no-repeat top left/cover;
    font-family: "Roboto";
    padding-bottom: 45px;
}
.sc5-header {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 45px;
}
.sc5-header p:first-child {
    font-size: 40px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}
.sc5-header p:last-child {
    font-size: 40px;
    color: var(--yellowText);
    text-transform: uppercase;
    font-weight: bold;
}
.sc5-header p b {
    font-size: 50px;
}

.sc5-main {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
}
.cd-wrapper {
    text-align: center;
}
.cd-wrapper > p {
    font-size: 30px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}
.cd-wrapper .cd-box {
    transform: scale(1.3);
    margin: 20px auto;
}

/*#region--------- REGISER */
#register2 {
    padding: 40px 30px;
    border: 1px solid var(--lightGreenText);
    border-radius: 10px;
    background-color: var(--registerBg);
}
.form-dk {
    border-radius: 8px;
    border-radius: 10px;
    background-color: rgb(5, 40, 25);
    max-width: 570px;
    margin: 0 auto;
    width: 100%;
    height: auto;
    padding: 40px 0 20px;
}
.form-dk h2 {
    font-family: "Roboto";
    text-align: center;
    margin: 0 auto 2rem;
    font-size: 2.1875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--yellowText);
    text-shadow: 0px 5px 7px rgb(0, 0, 0, 0.3);
}
.register-form {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#831b1b', endColorstr='#380000', GradientType=0);
    box-shadow: none;
    padding: 0 30px;
}
.register-form > .close {
    color: #fff;
    opacity: 1;
    margin-top: 16px;
    margin-right: 31px;
    z-index: 9999;
    position: relative;
    cursor: pointer;
}

.register-form input[type="text"],
.register-form input[type="password"],
.register-form input[type="email"],
.register-form textarea,
.register-form select {
    background: #052819;
    width: 100%;
    height: 43px;
    background-size: contain;
    border: none;
    margin: 0 auto;
    font-size: 21px;
    display: block;
    line-height: 1;
    margin-bottom: 20px;
    border-radius: 3px;
    position: relative;
    z-index: 999;
    color: #fff;
}
#qpost2 input,
#qpost2 select {
    border-bottom: 1px solid #ccc;
}

#qpost2 input:focus-visible,
#qpost2 select:focus-visible {
    outline: none;
}
.detail-register {
    color: white;
}
.detail-register ul {
    display: flex;
}
.detail-register ul li {
    color: #949494;
    flex-basis: 33%;
    padding: 0 10px;
}
.detail-register [type="checkbox"]:not(:checked),
.detail-register [type="checkbox"]:checked {
    position: relative;
    opacity: 1;
    pointer-events: initial;
}
.text-yellow {
    color: var(--yellowText);
    font-weight: 600;
}
.errorMsg {
    padding: 8px;
    background: #e74e4e;
    border: 1px solid #860404;
    color: #fff;
    display: none;
    font-size: 14px;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 99999;
    box-sizing: border-box;
    right: 10px;
    -moz-box-sizing: border-box;
    border-radius: 5px;
}
.successMsg {
    padding: 8px;
    background: #6bb34b;
    border: 1px solid #1b4a07;
    color: #fff;
    display: none;
    font-size: 14px;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 99999;
    box-sizing: border-box;
    right: 10px;
    -moz-box-sizing: border-box;
    border-radius: 5px;
}
.birthDate select {
    width: 32.2%;
    display: block;
    float: left;
    margin-right: 8px;
    padding-left: 5px;
    font-size: 16px;
    line-height: 19px;
    position: relative;
}
.birthDate select:last-child {
    margin-right: 0;
}
.msg-error {
    color: #fff;
    font-size: 12px;
    margin-top: -5px;
    display: none;
    padding: 0 10px;
    margin-bottom: 5px;
}
.msg-error-focus {
    position: relative;
    color: #fff;
    font-size: 12px;
    margin-top: -5px;
    display: block;
    padding: 0 10px;
    margin-bottom: 5px;
    background: #015e2f;
}
.capbox-inner {
    position: relative;
}
#CaptchaDiv2 {
    font-size: 17px;
    font-style: italic;
    color: #fff;
    background-color: #0b4626;
    padding: 4px;
    -moz-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
    -webkit-border-radius: 0 4px 4px 0;
    width: 180px;
    letter-spacing: 2px;
    float: right;
    height: 43px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    line-height: 41px;
    z-index: 999;
}
.dangky {
    font-family: "Roboto";
    width: 215px;
    height: 55px;
    margin: 2.5rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    font-size: 1.09375em;
    font-weight: 600;
    color: #333333;
    background: #fecb1b;
    background: linear-gradient(0deg, #fecb1b 0%, #fecb1b 40%, #fff48e 70%, #fff48e 100%);
    box-shadow: 0px 10px 13px 0px rgb(0 0 0 / 50%);
    cursor: pointer;
}
.register-form.inpage ul li{
    list-style: none;
}
@media (max-width: 1024px) {
    .birthDate select {
        width: 31.9%;
    }
    .register-form input[type="text"],
    .register-form input[type="password"],
    .register-form input[type="email"],
    .register-form textarea,
    .register-form select {
        margin-bottom: 10px;
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .birthDate select {
        width: 32%;
    }
}
@media (max-width: 550px) {
    .register-form {
        padding: 0 15px;
    }
    .form-dk h2 {
        font-size: 1.5rem;
    }
    .birthDate select {
        width: 31.5%;
    }
    #CaptchaDiv2 {
        width: 100px;
    }
    .text-yellow {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
}
@media (max-width: 375px) {
    .birthDate select {
        width: 31.2%;
    }
}
/*#endregion */



/*#region ---------------FOOTER */

.footer {
    position: relative;
    padding: 35px 10px;
    border-top: 1px solid var(--greenText);
    border-bottom: 2px solid var(--lightGreenText);
    color: #eef5b8;
    background: linear-gradient(0deg, #052819 0%,#024316 50%, #02552b 100%);
}
.footer .icons{
    height: 30px;
}

.ft-wrapper{
    position: relative;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    color: #eef5b8;
}
.ft-dangky{
    flex-basis: 30%;
}
.dangky.btn-fter{
    margin: 0 auto;
}

.ft-right{
    display: flex;
    justify-content: space-between;
    flex-basis: 70%;
    font-size: 18px;
    font-weight: bold;
}
.ft-right a{
    color: #eef5b8;
}
.ft-right>div:not(:last-child){
    flex: 1;
}
.ft-last a{
    margin: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ft-right>div{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    padding: 8px 0;
    border: 1px #176d23 solid;
    background: linear-gradient(0deg,#176d23 0% , #357f0f 50% , #4e8f01 100% );
}


.toast-notifi{
  position: fixed;
  left: 15px;
  bottom: 95px;
  z-index: 9999;
}
.toast-box{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px;
    margin: 5px 0;
    border-radius: 15px;
    border: 1px var(--yellowText) solid;
    background: #033a13;
    background: linear-gradient(90deg, #033a13 0%, #007103 100%);
}
.toast-box img{
    margin-right: 10px;
}
.toast-box.success {
    display: flex;
    justify-content: flex-start;
    transform: translateX(calc(-100% - 32px));
    transition: all 400ms ease;
    animation: leftIn 400ms ease forwards, blurOut 2500ms ease forwards 5s;
}

.close-notifi{
    position: absolute;
    right: -7px;
    bottom: 64px;
    width: 20px;
    height: 20px;
    background-color: #ff0000;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
}
@keyframes leftIn {
    from {
        transform: translateX(calc(-100% - 32px));
        opacity: 0.5;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes blurOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}



/* #endregion */


/* #endregion */

/*#region -------------CUSTOM POP-UP*/
#modal-thanhcong{
    display: none;
}
#modal-thanhcong.showing{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 300ms ease;
}
.showing .modal-cover {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
    opacity: 0.7;
    transition: all 300ms ease;
}
#modal-thanhcong.showing .modal-body{
    animation: openModal 400ms ease 200ms forwards ;
}
.modal-body{
    opacity: 0;
    z-index: 99999;
}

@keyframes openModal {
    from{
        opacity: 0;
        transform: translateY(100px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}
/*#endregion-------------*/



@media (max-width: 1700px) {
 .sc5-register{
    transform: scale(80%);
    transform-origin: top right;
 }
}
@media (max-width: 1440px) {
    #section5{
        background: url(../images/sec5-bgMob.jpg) no-repeat top left/cover;
    }
    .sc5-register{
       transform: scale(100%);
       transform-origin: top center;
    }
    .sc5-main{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .hide-ondesk{
        display: block;
    }
    .sc5-header{
        margin-bottom: 0;
    }
    .sc2-header p {
        font-size: 28px;
   }
   .sc4-contents ul{
       font-size: 20px;
   }
   .sc3-title {
       font-size: 40px;
   }
}
@media (max-width: 1366px) {
    .hd-bottom-wr {
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .hd-bottom-wr>div:not(:last-child){
       margin-bottom: 10px;
    }
    .hd-logo {
        width: unset;
    }
    .sc4-title{
        width: 70%;
    }
    .footer{
        padding: 60px 10px 15px;
    }
    .ft-right {
        display: flex;
        justify-content: space-evenly;
        flex-basis: 100%;
    }
}
@media (max-width: 1024px) {
    .sc2-header,
    .sc2-main{
        flex-direction: column;
    }
    .sc2-register{
        margin-top: 50px;
    }
    .sc2-header img{
       width: 220px;
       margin-bottom:10px;
    }
    .sc2-register > p{
        color: #333;
    }
    .sc3-title{
        margin-bottom: 15px;
    }
    .sc3-circle{
        flex-wrap: wrap;
    }
    .sc3-circle div{
        flex-basis: 33%;
        margin-bottom: 15px;
    }
}
@media (max-width: 768px) {
    .sc3-title,
    .sc5-header p:first-child,
    .sc5-header p:last-child,
    .cd-wrapper > p,
    .sc2-register .btn-datcuoc,
    .sc4-contents p:first-child,
    .form-dk h2{
        font-size: 26px;
    }
    .sc2-header p {
        padding: 10px;
        font-size: 22px;
    }
    .sc5-header p b{
        font-size: 34px;
    }
    .sc3-circle div img{
        width: 90px;
    }
    .sc4-contents{
        padding: 20px 5px;
        margin-top: 0;
    }
    .toast-box{
        font-size: 16px;
    }
    .sc2-register{
        width: unset;
    }
    #register,
    #register2{
        padding: 0;
    }
    .hd-top-left span {
        font-size: 18px;
    }

    .hd-title p {
        font-size: 18px;
    }
    .hd-top{
        position: absolute;
        top: 10px;
        left: 0;
        width: 250px;
        height: auto;
        padding: 20px 10px;
        transform: translateX(-100%);
        transition: all 500ms ease;
        z-index: 9999;
        background: #cfcfcf;
        background: linear-gradient(90deg, #cfcfcf 0%, #ffffff 100%);
    }
    .hd-top.active{
        transform: translateX(0);
        transition: all 500ms ease;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }
    .burger-menu {
        display: block;
        cursor: pointer;
    }
    .hd-top.active .burger-menu {
        right: 0;
        transform: scale(.8)
    }
    .hd-top.active .burger-menu div{
        background-color: #333;
    }

    .hd-top,
    .hd-top-right,
    .gr-link{
        display: flex;
        flex-direction: column;
        align-items: normal;
        margin-bottom: 20px;
    }
    .hd-top-left{
        order: 3;
    }
    .gr-link a::after{
        display: none;
    }
    .footer{
        padding-top: 20px;
    }
    .ft-wrapper,
    .ft-right{
        flex-direction: column;
        align-items: center;
    }
    .ft-right>div{
        width: 100%;
        padding: 8px 40px;
        border-radius: 5px;
        margin: 5px auto;
    }
    .dangky.btn-fter{
        margin-bottom: 10px;
    }
}

@media (max-width: 600px) {
   
    .each-time p{
        width: 31px;
        height: 40px;
        font-size: 24px;
    }
    .each-time:not(:last-child)::before{
        top: 14px;
    }
    .each-time:not(:last-child)::after{
        top: 28px;
    }
    .cd-box,.cd-wrapper .cd-box {
        transform: scale(1);
        -webkit-transform: scale(1);
        max-width: 300px;
    }
    .sc3-circle div p {
        padding: 0 5px;
    }
    .ft-right{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .ft-right>div{
        width: 100%;
        margin-bottom: 5px;
    }
    .detail-register ul{
        padding: 0 10px;
    }
    .register-form.inpage ul li{
        font-size: 12px;
    }
    .sc4-contents p{
        font-size: 24px;
    }
}
@media (max-width: 425px) {
    .sc3-circle div p {
        font-size: 16px;
    }
    .sc2-header img {
        width: 180px;
    }
    .sc2-header p {
        padding: 7px;
        font-size: 18px;
    }
    .sc2-contents p:nth-child(2n),
    .sc2-register > p,
    .sc4-contents ul{
        font-size: 16px;
    }
    .sc2-register .btn-datcuoc {
        font-size: 20px;
        max-width: 200px;
    }
    .sc4-title {
        width: 90%;
    }
    .sc3-title,
    .sc5-header p:first-child,
    .sc5-header p:last-child,
    .cd-wrapper > p,
    .sc2-register .btn-datcuoc,
    .sc4-contents p:first-child,
    .form-dk h2{
        font-size: 20px;
    }
    .toast-box{
        font-size: 13px;
    }
}