/********** Template CSS **********/
:root {
    --primary: #0061C3;
    --secondary: #00264C;
    --light: #F8F2F0;
    --dark: #374151;
    --orange: #FF792F;
    --gray: #4B5563;
}

@font-face {
    font-family: 'General Sans';
    src: url('../fonts/general/GeneralSans-Medium.otf');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

p:last-of-type {
    margin-bottom: 0;
}

.gap-16 {
    gap: 16px;
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Images ***/

.images-box {
    position: relative;
    /*overflow: hidden;*/
}

.images-box::before {
    content: '';
    display: block;
    padding-top: 55%;
}

.images-box .img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.images-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*** Section title ***/

.section-title h3 {
    font-size: 36px;
    line-height: 48px;
    color: var(--primary);
    margin-bottom: 0;
}

.section-title p {
    letter-spacing: .32px;
}

@media (max-width: 767px) {

    .section-title h3 {
        font-size: 28px;
    }
}

/*** Button ***/

.back-to-top {
    background: var(--primary);
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.back-to-top:hover {
    color: var(--primary);
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-custom {
    background: linear-gradient(90deg, #2563EB 0%, #06B6D4 100%);
    color: white;
    padding: 12px 25px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.btn-custom:hover {
    color: white;
}

/*** Navbar ***/

.header {
    transition: all .5s;
}

.m-menu-item {
    display: none;
    margin-top: 10px;
}

.m-menu-item a {
    width: 100%;
    border-radius: 0;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav {
    gap: 30px;
}

.logo img {
    width: 316px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    color: var(--secondary);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-toggler:focus {
    box-shadow: none;
}

.navbar-light .navbar-nav .submenu {
    min-width: 200px;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.navbar-light .navbar-nav .submenu li a {
    color: black;
    display: block;
    padding: 6px 10px;
}

.navbar-light .navbar-nav .submenu li a:hover {
    color: var(--primary);
}

@media (min-width: 992px) and (max-width: 1199px) {

    .logo img {
        width: 200px;
    }

    .navbar-light .navbar-nav {
        gap: 16px;
    }
}

@media (min-width: 992px) {

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .navbar-light .navbar-nav .submenu {
        position: absolute;
        transition: all 0.3s ease-in-out;
        margin-top: 30px;
        background: white;
        border: none;
        visibility: hidden;
    }

    .navbar-light .navbar-nav .nav-item:hover .submenu {
        visibility: visible;
        margin-top: 0;
    }
}

@media (max-width: 991px) {

    .logo img {
        width: 200px;
    }

    .m-menu-item {
        display: block;
    }

    .navbar .offcanvas {
        background: #ececec;
        max-width: 80%;
        z-index: 1200;
    }

    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
        color: black;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--primary);
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }

    .offcanvas-header {
        background: white;
    }

    .offcanvas-header img {
        width: 180px;
    }

    .offcanvas-header .btn-close:focus,
    .search-project-frm input[type="text"]:focus {
        box-shadow: none;
    }

    .search-project-frm {
        padding: 1px 10px;
        margin: 10px 0;
        width: 100%;
    }

    .search-project-frm input[type="text"] {
        border: 0;
    }

    .navbar .offcanvas-body {
        padding: 0;
    }

    .navbar .navbar-nav {
        gap: 12px;
        padding: 16px;
        background: white;
    }
}

.box-search .dropdown-menu {
    padding: 8px;
    z-index: 9999;
    width: 300px;
}

.box-search input[type="text"]:focus {
    box-shadow: none;
}

.topper a {
    border: 1px solid var(--orange);
    background: transparent;
    padding: 7px 21px;
    border-radius: 6px;
    color: var(--orange);
}

.topper a:hover {
    background: var(--orange);
    color: white;
}

.content-bottom__offcanvas {
    margin: 12px 0 0;
    padding: 16px;
    background: white;
}

.content-bottom__offcanvas h3 {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: black;
}

.content-bottom__offcanvas ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/*** Header ***/

.section-wrapper {
    position: relative;
}

.section-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -345px;
    transform: translateY(-50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    opacity: 0.3;
    background: linear-gradient(90deg, #FED7AA 0%, #FDBA74 100%);
    filter: blur(12px);
}

.main-box-content {
    margin-top: 36px;
    padding: 31px 24px;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    background: linear-gradient(90deg, #EFF6FF 0%, #FFF7ED 100%);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    position: relative;
    text-align: center;
    font-size: 19px;
    line-height: 32px;
    color: var(--dark);
}

.main-box-content span {
    color: var(--orange);
}

.main-box-content::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -130px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid #6ec1ff;
    opacity: 0.8;
}

.line-vetor {
    position: absolute;
    bottom: -10px;
    right: -140px;
}

.main-title {
    position: relative;
    margin-bottom: 38px;
}

.main-title.orange::before {
    content: '';
    background: url('../img/icon/dot-1.svg') center no-repeat;
    background-size: cover;
    width: 85px;
    height: 85px;
    position: absolute;
    top: 0;
    left: 0;
}

.main-title.non-before::before {
    display: none;
}

.main-title h3 {
    position: relative;
    font-weight: 400;
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 0;
    padding-bottom: 16px;
}

.main-title h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 127px;
    height: 4px;
    border-radius: 30px;
    background: transparent;
}

.main-title.orange h3 {
    color: var(--orange);
}

.main-title.orange h3::after {
    background: linear-gradient(90deg, #F97316 0%, #FB923C 100%);
}

.main-title.blue h3 {
    color: var(--primary);
}

.main-title.blue h3::after {
    background: var(--primary);
}

@media (min-width: 1200px) and (max-width: 1399px) {

    .section-wrapper::before {
        width: 100px;
        height: 100px;
        right: -225px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {

    .section-wrapper::before {
        display: none;
    }
}

@media (max-width: 991px) {

    .section-wrapper::before,
    .main-box-content::after,
    .line-vetor {
        display: none;
    }
}


/*** Product ***/

.product-item {
    height: 100%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
    border-radius: 8px;
    border: 2px solid #BFDBFE;
    overflow: hidden;
    position: relative;
}

.product-item:hover {
    border-color: #FED7AA;
}

.product-item .tag {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 13px;
    line-height: 20px;
    color: white;
    padding: 12px 18px;
    border-radius: 30px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
}

.tag-hot {
    background: linear-gradient(90deg, #F97316 0%, #EA580C 100%);
}

.tag-vip {
    border: 1px solid var(--orange);
    background: linear-gradient(90deg, #2563EB 0%, #1D4ED8 100%);
}

.level {
    margin-top: -35px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.level span {
    background: linear-gradient(90deg, #2563EB 0%, #F97316 100%);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto;
}

.level.blue span {
    background: var(--primary);
}

.product-content {
    padding: 32px 24px 44px;
}

.product-content h3 {
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 21px;
}

.product-content p {
    font-size: 17px;
    line-height: 29px;
    color: var(--gray);
}

.product-content a.btn-custom {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    margin-top: 24px;
}

.product-content a.btn-custom:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.exam-item h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 0;
}

/*** Level Second ***/

.level-second-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.level-second-item:not(:last-child) {
    margin-bottom: 27px;
}

.level-second-item:last-child {
    flex-direction: row-reverse;
}

.level-content {
    max-width: 40%;
    flex: 0 0 40%
}

.level-images {
    flex: 0 0 20%;
    max-width: 20%;
}

.icon-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-box-text h4 {
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
}

.level-content .section-title {
    margin-bottom: 32px;
}

.level-content h3 {
    color: var(--secondary);
    margin-bottom: 32px;
}

.level-content p {
    color: #003162;
}

.group-btn a:first-child:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.group-btn a:last-child {
    background: transparent;
    border-color: transparent;
    color: var(--primary);
}

.group-btn a:last-child:hover {
    color: var(--primary);
}

@media (max-width: 991px) {

    .level-content {
        max-width: 60%;
        flex: 0 0 60%;
    }

    .level-images {
        max-width: 30%;
        flex: 0 0 30%;
    }
}

@media (max-width: 767px) {

    .list-level-second .level-second-item {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .level-content,
    .level-images {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

/*** Feature ***/

.step {
    position: relative;
}

.step-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.step-item:not(:last-child) {
    margin-bottom: 30px;
}

.step-item:nth-child(2) {
    flex-direction: row-reverse;
}

.step-item h5 {
    margin-bottom: 0;
    font-family: 'General Sans';
    font-weight: 500;
    font-size: 100px;
    color: var(--secondary);
    opacity: .15;
    max-width: 20%;
    flex: 0 0 20%;
}

.step-box {
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #EDEEF0;
    box-shadow: 10px 25px 100px 0 rgba(0, 43, 107, 0.25);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    flex: 1;
}

.step-box .icon {
    width: 56px;
    height: 56px;
    border-radius: 43px;
}

.step-box .content {
    flex: 1;
}

.step-item:first-child .step-box .icon {
    background: #E1E9FE;
}

.step-item:nth-child(2) .step-box .icon {
    background: #FFEED2;
}

.step-item:last-child .step-box .icon {
    background: #F6E2FF;
}

.step-box .content h6 {
    font-size: 24px;
    line-height: 20px;
    margin-bottom: 4px;
}

.step-box .content p {
    color: var(--gray);
}

.images-member {
    position: relative;
}

.member-box {
    position: absolute;
    bottom: 30px;
    left: 0;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 20px;
    box-shadow: 10px 25px 100px 0 rgba(0, 43, 107, 0.25);
    background: white;
}

.avatar img {
    border-radius: 56px;
    width: 56px;
    object-fit: cover;
}

.avatar img:nth-child(2),
.avatar img:nth-child(3) {
    margin-left: -16px;
}

.member-box .content h5 {
    color: var(--primary);
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
}

.member-box .content p {
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
}

@media (min-width: 1400px) {
    .avatar img {
        width: auto;
    }
}

@media (min-width: 768px) {

    .step::before {
        content: '';
        background: url('../img/circle.png') center no-repeat;
        background-size: cover;
        width: 179px;
        height: 368px;
        position: absolute;
        left: 0;
        bottom: -215px;
    }
}

@media (max-width: 991px) {

    .avatar img {
        width: 90px;
    }
}

@media (max-width: 767px) {

    .step-item {
        align-items: flex-start;
        gap: 0;
    }

    .step-item,
    .step-item:nth-child(2) {
        flex-direction: column;
    }

    .step-item:not(:last-child) {
        margin-bottom: 16px;
    }

    .step-item h5 {
        font-size: 80px;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .step-box .icon {
        max-width: 30%;
    }

    .step-box .content h6 {
        font-size: 16px;
        line-height: 24px;
    }

    .step-box .content p {
        font-size: 14px;
    }

    .avatar img {
        width: 50px;
    }

    .member-box {
        bottom: 0;
    }
}

/*** Achievements ***/

.ic-left {
    position: absolute;
    bottom: 0px;
    left: 70px;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid rgba(253, 224, 71, 0.80);
}

.ic-right {
    position: absolute;
    bottom: 80px;
    right: 100px;
    width: 32px;
    height: 32px;
    background: linear-gradient(90deg, rgba(191, 219, 254, 0.80) 0%, rgba(165, 180, 252, 0.80) 100%);
    border-radius: 50px;
}

.achievements-item {
    padding: 30px;
    border-radius: 14.938px;
    border: 0.934px solid #E5E7EB;
    background: rgba(255, 255, 255, 0.70);
    box-shadow: 0 9.336px 14.004px -2.801px rgba(0, 0, 0, 0.10), 0 3.734px 5.602px -3.734px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(5.6015625px);
}

.achievements-item img {
    padding: 14px;
    border-radius: 11.203px;
    background: linear-gradient(135deg, #2563EB 0%, #60A5FA 100%);
    box-shadow: 0 9.336px 14.004px -2.801px rgba(0, 0, 0, 0.10), 0 3.734px 5.602px -3.734px rgba(0, 0, 0, 0.10);
}

.achievements-item .content {
    margin-top: 21px;
}

.achievements-item h2 {
    font-weight: 900;
    color: #1E40AF;
    font-size: 34px;
    line-height: 37px;
    margin-bottom: 12px;
}

.achievements-item p {
    font-size: 14px;
    line-height: 18px;
    color: var(--gray);
}

/*** Prize ***/

.documuent {
    position: relative;
}

.document-content h3 {
    color: #1E40AF;
    font-weight: 900;
    font-size: 60px;
    margin-bottom: 0;
}

.document-content h3 span {
    color: #60A5FA;
}

.document-content p {
    color: var(--secondary);
    font-size: 20px;
    line-height: 32px;
    margin: 36px 0;
}

.document-group-btn {
    display: flex;
    align-items: center;
    gap: 24px;
}

.document-group-btn a:first-child {
    background: var(--primary);
}

.document-group-btn a:last-child {
    background: #E5E7EB;
    color: var(--secondary);
}

.document-content,
.document-list {
    position: relative;
}

.document-content::before {
    content: '';
    background: linear-gradient(90deg, rgba(153, 246, 228, 0.60) 0%, rgba(103, 232, 249, 0.60) 100%);
    width: 40px;
    height: 40px;
    transform: rotate(45deg);
    position: absolute;
    top: 130px;
    right: 0;
}

.document-list::before {
    content: '';
    background: linear-gradient(90deg, rgba(245, 208, 254, 0.50) 0%, rgba(249, 168, 212, 0.50) 100%);
    width: 50px;
    height: 50px;
    transform: rotate(12deg);
    position: absolute;
    bottom: -45px;
    left: 95px;
    z-index: -1;
}

.document-list {
    background: white;
    padding: 36px 34px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 24px;
    border: 2px solid #F3F4F6;
}

.document-title img {
    filter: invert(38%) sepia(80%) saturate(5382%) hue-rotate(216deg) brightness(96%) contrast(91%);
}

.document-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.document-title .icon-box {
    align-items: flex-start;
}

.document-title .icon-box-text h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
}

.document-title a {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
}

.document-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.document-list li {
    position: relative;
    padding: 12px 20px 12px 36px;
}

.document-list li::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50px;
}

.document-list li a {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.document-list li a span.tag {
    display: inline-block;
    color: var(--primary);
    padding: 5px 8px;
    border-radius: 30px;
    background: #DBEAFE;
    font-size: 12px;
    line-height: 16px;
}

@media (min-width: 768px) {

    .documuent::before {
        content: '';
        background: url('../img/circle-doc.png') center no-repeat;
        background-size: cover;
        width: 209px;
        height: 337px;
        position: absolute;
        top: 10px;
        right: 0;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .documuent::before {
        width: 150px;
        height: 237px;
    }
}

@media (max-width: 767px) {

    .document-content h3 {
        font-size: 45px;
    }

    .document-content p {
        margin: 20px 0;
    }

    .document-group-btn {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
}

/*** Testimonial ***/

.testimonial-slider {
    padding-top: 42px;
}

.testimonial-item {
    text-align: center;
    padding: 36px 75px;
    width: 100%;
    height: 100%;
}

.testimonial-item.first {
    background: url('../img/testimonial/testimonial-1.png') center no-repeat;
    background-size: cover;
}

.testimonial-item.second {
    background: url('../img/testimonial/testimonial-2.png') center no-repeat;
    background-size: cover;
}

.testimonial-item.third {
    background: url('../img/testimonial/testimonial-3.png') center no-repeat;
    background-size: cover;
}

.testimonial-img {
    margin-top: -65px;
}

.testimonial-content {
    margin-top: 10px;
}

.testimonial-content h5 {
    font-size: 17px;
    color: var(--secondary);
    margin-bottom: 4px;
}

.testimonial-content label {
    color: var(--primary);
    font-size: 11px;
}

.testimonial-content img {
    display: block;
    margin: 0 auto;
}

.testimonial-content p {
    font-size: 12px;
    color: var(--secondary);
}

.testimonial-control .swiper-pagination {
    bottom: -16px;
}

.testimonial-control .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--secondary);
}

.testimonial-control .swiper-button-next::after,
.testimonial-control .swiper-button-prev::after {
    display: none;
}

.testimonial-control .swiper-button-next,
.testimonial-control .swiper-button-prev {
    top: -20px;
    color: var(--secondary);
}

.testimonial-control .swiper-button-next i,
.testimonial-control .swiper-button-prev i {
    font-size: 20px;
}

/*** Footer ***/

.footer {
    background: url('../img/bg-footer.jpg') center no-repeat;
    background-size: cover;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    width: 300px;
}

.footer-item h3 {
    position: relative;
    color: var(--secondary);
    font-size: 18px;
    line-height: 28px;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.footer-item h3::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--orange);
    width: 72px;
    height: 3px;
}

.footer-item-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    line-height: 24px;
}

.footer-item-info li:not(:last-child) {
    margin-bottom: 22px;
}

.footer-item-info li h6 {
    font-size: 15px;
    margin-bottom: 0;
}

.footer-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-item-nav li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-item li a {
    display: block;
    color: var(--secondary);
    font-size: 14px;
    line-height: 21px;
}

.footer-item li a:hover {
    color: var(--primary);
}

.footer-info ul {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-info span {
    padding-left: 12px;
    display: inline-block;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}

.copyright {
    text-align: center;
    margin-top: 82px;
    padding: 14px 0 20px;
    border-top: 2px solid #E5E5EA;
    font-size: 14px;
    letter-spacing: .32px;
    color: var(--secondary);
}

.copyright a {
    color: var(--secondary);
}

@media (max-width: 767px) {

    .footer-item h3 {
        font-size: 15px;
    }
}

/* ----------------------------------- Other Pages Styles ----------------------------------- */

/*--------------------------------------------------------------
# Archive Page
--------------------------------------------------------------*/

.nav-bread .breadcrumb-item+.breadcrumb-item::before {
    content: '>';
}

.title-topic {
    margin-bottom: 20px;
}

.title-topic h3 {
    color: var(--primary);
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 16px;
}

.title-topic p {
    color: var(--secondary);
    font-size: 14px;
    line-height: 21px;
}

.subject-item .images-box {
    overflow: hidden;
    border-radius: 12px;
}

.subject-item img {
    transition: all .75s ease-in-out
}

.subject-item a:hover img {
    transform: scale(1.1);
}

.subject-item a {
    display: block;
    padding: 12px 12px 24px;
    border-radius: 20px;
    overflow: hidden;
    transition: transform .4s ease-in-out;
}

.subject-item a:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 10px rgba(192, 210, 235, .5);
}

.subject-content {
    padding-top: 16px;
    font-size: 12px;
    line-height: 18px;
}

.subject-content h6 {
    color: var(--gray);
}

.subject-content p {
    color: var(--secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.subject-item a:hover h6 {
    color: var(--primary);
}

/*--------------------------------------------------------------
# Archive Child Page
--------------------------------------------------------------*/

.subject-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    background-color: #fff7f2;
    overflow: auto;
    padding: 0 24px;
    margin-bottom: 24px;
}

.tab-scroll {
    position: relative;
    display: inline-block;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    white-space: nowrap;
    scrollbar-width: none;
    overflow-x: auto;
    overflow-y: hidden;
}

.subject-category-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
}

.subject-category-list a {
    width: max-content;
    height: 64px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: black;
}

.subject-category-list a.active {
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
}

.subject-page-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.archive .subject-page-tabs a {
    min-width: 192px;
    min-height: 40px;
    color: white;
    font-weight: 500;
}

.archive .subject-page-tabs a,
.archive .subject-page-tabs a.active {
    background-color: var(--primary);
    border-width: 2px;
    border-color: var(--primary);
}

.subject-page-tabs a:last-child {
    border-color: var(--primary);
    background-color: transparent;
    color: var(--primary);
}

.button-scroll {
    cursor: pointer;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-scroll.hidden {
    display: none;
}

.tree-item-panel-main {
    padding: 16px 0;
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .078);
    border-radius: 10px;
    background-color: white;
    overflow: hidden;
}

.tree-item-panel-main:not(:last-child) {
    margin-bottom: 24px;
}

.tree-item-panel-content {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e9e9e9;
    border-radius: 10px;
    padding: 0 20px 0 12px;
    cursor: pointer;
}

.tree-item-panel-content .icon {
    width: 15px;
    height: 15px;
    margin-right: 8px;
}

.tree-item-panel-content h5 {
    font-weight: 600;
    margin-bottom: 0;
}

.tree-item-panel-content p {
    padding-top: 4px;
    font-size: 14px;
    color: #535353;
}

.tree-item-panel-left {
    position: relative;
    width: 30px;
    display: flex;
    align-items: center;
}

.tree-item-panel-left::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: var(--orange);
    left: 50%;
    z-index: 2;
}

.tree-item-panel-left p {
    background: var(--orange);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: 700;
    font-size: 14px;
    z-index: 3;
}

.tree-item-panel {
    display: flex;
    padding-left: 24px;
}

.tree-item-panel-middle,
.tree-item-panel-label a {
    display: flex;
    align-items: center;
}

.tree-item-panel-middle {
    padding: 0 20px 0 12px;
}

.tree-item-panel-label {
    padding-top: 16px;
    padding-bottom: 16px;
    width: 100%;
}

.tree-item-panel-label a {
    justify-content: space-between;
    color: black;
}

.tree-item-panel-icon-container {
    margin-right: 8px;
}

.tree-box-item-content h6 {
    margin-bottom: 0;
}

.tree-box-item-content p {
    font-size: 14px;
    color: #535353;
}

.right-sticky {
    position: sticky;
    top: 25%;
}

.levels-practice-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 12px 0 hsla(0, 0%, 4%, .078);
    margin-bottom: 20px;
    padding: 24px;
    text-align: center;
}

.levels-practice-box h6 {
    color: var(--primary);
}

.levels-practice-box-item-list {
    display: flex;
    padding-top: 8px;
    justify-content: space-between;
}

.levels-practice-box-item-list h5 {
    font-weight: 400;
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 0;
}

.rank-list {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .078);
}

.rank-header {
    padding: 24px 0 0;
    text-align: center;
}

.rank-header h6 {
    color: var(--secondary);
    margin-bottom: 4px;
}

.rank-header h5 {
    color: var(--primary);
    margin-bottom: 0;
}

.rank-grades {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    padding: 12px;
    background-color: #fff7f4;
    font-size: 14px;
    font-weight: 600;
}

.rank-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rank-body ul li {
    padding: 13px 0;
    display: flex;
    align-items: center;
    color: var(--dark);
    font-weight: 400;
    font-size: 14px;
}

.rank-body .number {
    padding: 0 25px;
    min-width: 20px;
    font-weight: 400;
}

.rank-body .number.item-1 {
    background: linear-gradient(180deg, #ffdb5e 32.29%, #e99a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rank-body .number.item-2 {
    background: linear-gradient(180deg, #b4c6e1 17.6%, #667286 80.44%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rank-body .number.item-3 {
    background: linear-gradient(180deg, #f4bd89 17.6%, #d56d2c 80.44%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rank-body .avatar {
    margin: 0 10px 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 50px;
    height: 50px;
}

.ranking-item-avatar-wrapper {
    width: 40px;
    height: 40px;
    margin-bottom: 6px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 5px;
    z-index: 1;
}

.ranking-item-badge-wrapper {
    width: 50px;
    height: 50px;
    margin-bottom: 6px;
    position: absolute;
    z-index: 2;
}

.rank-body .name {
    padding: 0 4px;
    width: 50%;
    word-break: break-word;
}

.rank-body .score {
    position: relative;
    text-align: end;
    margin-left: auto;
    max-width: 28%;
    width: 20%;
    word-wrap: break-word;
    text-align: center;
    line-height: 20px;
    min-height: 20px;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

/*--------------------------------------------------------------
# Single Start Page
--------------------------------------------------------------*/

.practice-page-view-title h1 {
    font-size: 24px;
}

.levels-practice {
    max-width: 700px;
    margin: 0 auto 30px;
}

.levels-practice .item {
    display: flex;
    margin-bottom: 10px;
    font-weight: 600;
}

.levels-practice .item p {
    width: 150px;
}

.levels-practice .item-body {
    flex: 1;
    display: flex;
    align-items: center;
}

.levels-practice .item-body>span {
    width: 40px;
    font-size: 13px;
    color: #949ba3;
}

.proprogress-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: block;
    height: 10px;
    z-index: 0;
    background-color: rgb(231, 236, 239);
    border-radius: 5px;
}

.proprogress-item .percent {
    display: flex;
    height: 100%;
}

.proprogress-item.first span.percent {
    background: var(--primary);
}

.proprogress-item.second span.percent {
    background: var(--secondary);
}

.proprogress-item.third span.percent {
    background: var(--orange);
}

@media (max-width: 1444px) {

    .levels-practice .item p {
        font-size: 14px;
    }

    .levels-practice .item-body>span {
        font-size: 12px;
    }
}