::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #aaa;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

@font-face {
    src: url("../fonts/Anton-Regular.ttf");
    font-family: "Anton";
}

:root {
    --color-dark: #000;
    --primary-color2: #FFD600;
    --primary-color3: #F2CB00;
}

.absolute-footer, html {
    background-color: #fff !important;
}

#wrapper, #main {
    background: #fff !important;
}

ul, li {
    margin-bottom: 0px !important;
}

.row-0 {
    padding: 0px 0px !important;
}

.pd-0 {
    padding: 0px !important;
}

.row-5 {
    padding: 0px 10px !important;
}

.pd-5 {
    padding: 0px 5px 8px 5px !important;
}

.row-20 {
    padding: 0px 0px !important;
}

.pd-20 {
    padding: 0px 20px 20px 20px !important;
}

.pd-35 {
    padding: 0px 35px 20px 35px !important;
}

.row-7 {
    padding: 0px 7px !important;
}

.pd-7 {
    padding: 0px 7px 7px 7px !important;
}

.noPadding {
    padding-bottom: 0px !important;
}

.mr-1 {
    margin-right: 10px !important;
}

.mr-2 {
    margin-right: 20px;
}

.mr-3 {
    margin-right: 30px;
}

.mr-4 {
    margin-right: 40px;
}

.mr-4 {
    margin-right: 50px;
}

.ml-1 {
    margin-left: 10px;
}

.ml-2 {
    margin-left: 20px;
}

.ml-3 {
    margin-left: 30px;
}

.ml-4 {
    margin-left: 40px;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-5 {
    margin-top: 50px;
}

.mb-1 {
    margin-bottom: 10px !important;
}

.mb-2 {
    margin-bottom: 20px !important;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

.mb-5 {
    margin-bottom: 50px;
}

.button_style {
    background-color: var(--primary-color);
    color: #fff !important;
    text-align: center;
    padding: 0px 25px;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 9;
    border-radius: 5px !important;
}

.button_style:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.button_style:hover:before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/**back to top**/
.progress-wrap {
    position: fixed;
    display: block;
    cursor: pointer;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    text-align: center;
    position: absolute;
    cursor: pointer;
    font-family: 'Font Awesome 6 Pro';
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap {
    bottom: 30px;
    height: 46px;
    width: 46px;
    border-radius: 46px;
    background-color: #ffffff;
    box-shadow: inset 0 0 0 2px #cccccc;
}

.progress-wrap.btn-left-side {
    left: 30px;
}

.progress-wrap.btn-right-side {
    right: 30px;
}

.progress-wrap::after {
    width: 46px;
    height: 46px;
    color: #1f2029;
    font-size: 24px;
    content: '\f341';
    line-height: 46px;
}

.progress-wrap:hover::after {
    color: #1f2029;
}

.progress-wrap svg.progress-circle path {
    stroke: #1f2029;
    stroke-width: 2px;
}

/**header**/
div#top-bar input#s {
    background: #fff;
    height: 30px !important;
    border-radius: 50px !important;
    box-shadow: unset !important;
    font-size: 14px;
    color: #000;
    border: 0;
    width: 230px !important;
}

div#top-bar button.ux-search-submit.submit-button.secondary.button.icon.mb-0 {
    background: transparent !important;
    border: 0px !important;
    color: var(--primary-color) !important;
    position: absolute;
    right: 0px;
    top: 0;
    height: 30px !important;
    min-height: 30px !important;
    line-height: 30px !important;
    width: 40px !important;
    padding: 0;
}

/**menu**/
div#mega-menu-wrap-primary {
    width: 100% !important;
}

#mega-menu-wrap-primary #mega-menu-primary {
    display: flex !important;
    justify-content: space-around;
}

div#mega-menu-wrap-primary ul li a {
    color: var(--color-dark) !important;
    font-weight: 700 !important;
    padding: 0 !important;
    text-transform: uppercase !important;
    font-size: 16px !important;
    text-align: center !important;
    display: flex !important;
    align-items: center;
}

div#mega-menu-wrap-primary ul li a:after {
    content: '';
    width: 0%;
    display: block !important;
    height: 3px;
    background: var(--primary-color) !important;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.3s ease-in-out;
}

div#mega-menu-wrap-primary ul li a:hover {
    color: var(--primary-color) !important;
}

div#mega-menu-wrap-primary ul li a:hover:after {
    transition: 0.3s ease-in-out;
    width: 100%;
}

div#mega-menu-wrap-primary ul li.mega-current-menu-item a {
    color: var(--primary-color) !important;
}

div#mega-menu-wrap-primary ul li.mega-current-menu-item a:after {
    width: 100%;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {
    -webkit-box-shadow: 0 16px 32px rgba(34, 37, 49, 0.24);
    box-shadow: 0 16px 32px rgba(34, 37, 49, 0.24);
    display: block !important;
    border-radius: 8px !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    height: unset !important;
    padding: 0px 10px !important;
    display: block !important;
    -webkit-transition: .4s;
    transition: .4s;
    font-size: 14px !important;
    color: var(--color-dark) !important;
    text-transform: uppercase !important;
    background: #fff !important;
    text-align: left !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover {
    color: var(--primary-color) !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
    border-bottom: 1px solid #f2f2f2 !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    color: #000 !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    text-align: left !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
    color: #000 !important;
    text-transform: unset !important;
    font-size: 16px !important;
    text-align: left !important;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
    padding: 0px !important;
    text-align: left !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover {
    color: var(--primary-color) !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
    background: #fff !important;
    box-shadow: 0px 0px 16px rgb(0 0 0 / 10%);
    padding: 15px !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    margin-bottom: 0px !important;
    text-align: left !important;
    padding-bottom: 5px !important;
    padding-left: 0px !important;
    border-bottom: 1px solid #f2f2f2;
}

div#mega-menu-wrap-primary ul li a i {
    font-size: 25px;
}

/**widget**/
.widget-post-list {
    width: 100%;
}

.widget-post-list .widget-post-item {
    width: 100%;
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #f2f2f2;
    align-items: center;
}

.widget-post-list .widget-post-item:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 0px;
}

.widget-post-list .widget-post-item a {
    display: flex;
    align-items: center;
}

.widget-post-list .widget-post-item .widget-post-thumbnail {
    width: 100px;
    float: left;
    height: 100px;
    border-radius: 15px;
}

.widget-post-list .widget-post-item .widget-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.widget-post-list .widget-post-item .widget-post-content {
    width: calc(100% - 100px);
    float: left;
    padding-left: 10px;
}

.widget-post-list .widget-post-item .widget-post-content h3 {
    display: inline-block;
    color: #000;
    font-size: 15px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
    line-height: 20px;
}

.widget-post-list .widget-post-item .widget-post-content h3:hover {
    color: var(--primary-color);
}

.widget-post-list .widget-post-item .widget-post-content .post-meta {
    color: gray;
    font-size: 14px
}

.widget-title span {
    padding: 8px 15px;
    width: 100%;
    display: block;
    background: var(--primary-color) !important;
    text-align: left;
    font-size: 20px !important;
    line-height: 26px !important;
    color: #fff;
    font-family: "Averta";
    font-weight: 700;
}

.widget-title h3 {
    padding: 8px 15px;
    width: 100%;
    display: block;
    background: var(--primary-color) !important;
    text-align: left;
    font-size: 20px !important;
    line-height: 26px !important;
    color: #fff;
    font-family: "Averta";
    font-weight: 700;
}

aside.widget-post {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 4px 45px 0px #0000000D;
}

.widget-post-vertical a {
    display: block !important;
    flex-flow: wrap;
}

.widget-post-list {
    padding: 0 15px 15px 15px;
}

.widget-post-vertical .widget-post-thumbnail {
    width: 100% !important;
    height: 180px !important;
}

.widget-post-vertical .widget-post-content {
    width: 100% !important;
    padding: 10px 0 0 0 !important;
    border: 0px;
}

.is-divider.small {
    display: none;
}

.widget_categories ul, .widget_product_categories ul {
    margin-top: -5px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAEklEQVQImWNgYGCQYiAAhoYCAEfjALcmCP1hAAAAAElFTkSuQmCC)
}

.widget_categories ul li, .widget_product_categories ul li {
    width: 100%
}

.widget_categories ul li a, .widget_product_categories ul li a {
    width: 100%;
    display: block;
    color: #333;
    padding: 10px 15px !important;
    background: #e4e4e499;
    border-bottom: 1px solid #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s
}

.widget_categories ul li a:before, .widget_product_categories ul li a:before {
    content: "\f45c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-size: 6px;
    vertical-align: middle;
    margin-right: 10px;
    color: var(--primary-color)
}

.widget_categories ul li:hover a, .widget_product_categories ul li:hover a {
    background: var(--primary-color) !important;
    color: #fff
}

.menu-main-menu-container ul li a {
    width: 100%;
    display: block;
    padding: 8px 10px !important;
    color: #334862 !important;
}

aside.widget_text .widget-title span {
    background: transparent !important;
    color: var(--primary-color);
    padding-top: 15px !important;
}

aside.widget_text .input_address, aside.widget_text .textarea_address {
    box-shadow: unset !important;
    background: #fff !important;
}

aside.widget_text .button_address {
    width: 100% !important;
    border-radius: 8px !important;
    height: 40px !important;
    line-height: 40px !important;
    box-shadow: unset !important;
    font-size: 16px !important;
    margin: 0px !important;
}

form.wpcf7-form.init {
    margin: 0px !important;
}

.screen-reader-response {
    display: none !important;
}

span.wpcf7-not-valid-tip {
    font-size: 14px !important;
    background: #fff !important;
    display: block;
    margin: 0 !important;
}

/**pagination**/
.pagination {
    width: 100%;
    display: inline-block;
}

.pagination ul li a, .pagination ul li span {
    background: #d3d3d3;
    border: 1px solid #d3d3d3;
    width: 40px;
    height: 40px;
    padding: 0px;
    line-height: 40px;
    font-weight: normal;
    display: inline-block;
    border-radius: 5px !important;
    color: #000 !important;
}

.pagination ul li a:hover, .pagination ul li span:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    font-weight: normal !important;
    border: 1px solid var(--primary-color) !important;
}

.wp-pagenavi {
    width: 100%;
    display: inline-block;
    margin: 20px 0 0 0;
    text-align: center;
}

.wp-pagenavi a, .wp-pagenavi span {
    background: #d3d3d3;
    border: 1px solid #d3d3d3;
    width: 40px;
    height: 40px;
    color: #000 !important;
    padding: 0px;
    line-height: 35px;
    font-weight: normal;
    display: inline-block;
    border-radius: 5px !important;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current, .pagination span.current {
    background: var(--primary-color) !important;
    color: #fff !important;
    font-weight: normal !important;
    border: 1px solid var(--primary-color) !important;
}

/**alert**/
.alert {
    position: relative;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-primary {
    color: #084298 !important;
    background-color: #cfe2ff !important;
    border-color: #b6d4fe !important;
}

.alert-secondary {
    color: #41464b !important;
    background-color: #e2e3e5 !important;
    border-color: #d3d6d8 !important;
}

.alert-success {
    color: #0f5132 !important;
    background-color: #d1e7dd !important;;
    border-color: #badbcc !important;;
}

.alert-danger {
    color: #842029 !important;
    background-color: #f8d7da !important;
    border-color: #f5c2c7 !important;
}

.alert-warning {
    color: #664d03 !important;
    background-color: #fff3cd !important;
    border-color: #ffecb5 !important;
}

.alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

.alert-light {
    color: #636464;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

.alert-dark {
    color: #141619;
    background-color: #d3d3d4;
    border-color: #bcbebf;
}

/**slide**/
body .swiper-button-next, body .swiper-button-prev {
    width: 39px;
    height: 39px;
    border: none;
    outline: none;
    background-color: #fff;
    box-shadow: 0 5px 16px rgba(0, 0, 0, .1);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: .3s;
    transition: .3s;
    transform: translateY(-50%) !important;
    top: 50% !important;
    margin: 0;
    border-radius: 50% !important;
    color: var(--primary-color)
}

body .swiper-button-prev.swiper-button-disabled,
body .swiper-button-next.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none;
}

body .swiper-button-next:after, body .swiper-button-prev:after {
    content: '' !important;
    font-size: 15px;
    color: #000;
}

body .swiper-button-next {
    right: -5px;
}

body .swiper-button-prev {
    left: -5px;
}

.swiper-container {
    overflow: hidden;
}

/**abouts**/
.abouts {
    width: 100%;
}

.abouts .abouts-title {
    font-family: "Anton";
    text-transform: uppercase;
    font-size: 25px;
    line-height: 35px;
    color: var(--primary-color)
}

.abouts .abouts-content p {
    font-size: 16px;
    margin: 0 0 10px 0;
}

.col-sk {
    margin-top: -100px !important;
}

.col-sk .col-inner {
    background: #fff url(../images/bg_main2.png) bottom center no-repeat;
    padding: 40px 60px;
    min-height: 200px;
    border-radius: 100px;
    -webkit-box-shadow: 0px 0px 9px 5px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0px 0px 9px 5px rgba(0, 0, 0, .15);
    box-shadow: 0px 0px 9px 5px rgba(0, 0, 0, .15);
}

.row-sk .col-inner {
    padding: 0 !important;
    background: transparent !important;
    min-height: unset !important;
    box-shadow: unset !important;
}

.counter {
    text-align: center;
}

.counter .counter-total {
    font-weight: bold;
    font-size: 78px;
    color: var(--primary-color);
    line-height: 1em;
}

.counter .counter-title {
    color: var(--primary-color);
    font-size: 18px;
}

/**home-title**/
.home-title h2, .home-title h1, .home-title h3 {
    color: var(--primary-color);
    font-family: "Anton";
    text-transform: uppercase;
    font-size: 35px;
    line-height: 42px;
    margin: 0;
    font-weight: 500;
}

.home-title p {
    margin: 10px 0 0 0;
}

.color-white h2 {
    color: #fff;
}

.home-title a {
    margin: 10px 0 0 0;
    color: var(--primary-color);
    font-size: 15px;
}

/*8form**/
.input_register, .select_register {
    height: 50px !important;
    padding: 10px 20px !important;
    font-size: 17px;
    border: 0px !important;
    border-radius: 10px !important;
    margin: 0;
}

.textarea_register {
    padding: 10px 20px !important;
    font-size: 17px;
    border: 0px !important;
    border-radius: 10px !important;
    margin: 0;
}

.formRegister .button_style {
    height: 50px !important;
    padding: 0 50px !important;
    margin: 0;
    font-size: 17px;
}

form.wpcf7-form.init {
    margin: 0px !important;
}

/*8country**/
.country-item {
    width: 100%;
    border-radius: 20px;
    height: 320px;
    position: relative;
    transition: 0.3s ease-in-out;
}

.country-item .country-thumbnail {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    -ms-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -webkit-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -moz-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -o-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    position: relative;
}

.country-item .country-thumbnail:before {
    content: "";
    position: absolute;
    background: rgba(0, 58, 2, .7);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    border-radius: 20px;
}

.country-item .country-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    -ms-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -webkit-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -moz-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -o-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}

.country-item .country-flags {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50% !important;
    border: 4px solid #ffff;
}

.country-item .country-flags img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 50% !important;
}

.country-item .country-content {
    position: absolute;
    bottom: 0;
    left: 0px;
    padding: 20px;
    width: 100%;
    transition: 0.3s ease-in-out;
    opacity: 0;
}

.country-item .country-content .country-title a {
    text-align: center;
    color: #fff;
    display: block;
    font-size: 20px;
    font-family: "Anton";
    font-weight: 500;
}

.country-item:hover .country-thumbnail img.image {
    transition: 0.3s ease-in-out;
    transform: scale3d(1.1, 1.1, 1.1);
}

.country-item:hover .country-content {
    opacity: 1;
}

.country-item:hover .country-thumbnail:before {
    opacity: 1;
}

/**post item**/
.post-item {
    width: 100%;
    transition: 0.3s ease-in-out;
    border-radius: 20px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, .11);
    -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, .11);
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, .11);
}

.post-item .post-thumbnail {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    -ms-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -webkit-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -moz-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -o-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
}

.post-item .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    -ms-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -webkit-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -moz-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -o-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
}

.post-item:hover .post-thumbnail img {
    -ms-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -webkit-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -moz-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -o-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    transform: scale3d(1.1, 1.1, 1.1);
}

.post-item .post-content {
    padding: 20px;
}

.post-item .post-content h4 {
    margin-bottom: 0px;
}

.post-item .post-content h4 a {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--color-dark);
    height: 50px;
}

.post-item .post-content h4 a:hover {
    color: var(--primary-color)
}

.post-item .post-content .post-desc {
    color: #6c6c6c;
    font-size: 14px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.post-item .post-content .post-meta {
    color: #6c6c6c;
    font-size: 14px;
    margin: 7px 0;
}

/**post large**/
.post-list .post-large:not(:last-child) {
    margin-bottom: 25px;
}

.post-large {
    width: 100%;
    height: 260px;
    transition: 0.3s ease-in-out;
    border-radius: 20px;
    position: relative;
    -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, .11);
    -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, .11);
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, .11);
}

.post-large:before {
    content: "";
    display: block;
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 20px;
}

.post-large .post-thumbnail {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    -ms-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -webkit-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -moz-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -o-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
}

.post-large .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    -ms-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -webkit-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -moz-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -o-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
}

.post-large:hover .post-thumbnail img {
    -ms-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -webkit-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -moz-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -o-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    transform: scale3d(1.1, 1.1, 1.1);
}

.post-large .post-content {
    position: absolute;
    bottom: 0px;
    padding: 20px;
}

.post-large .post-content h4 {
    margin-bottom: 0px;
}

.post-large .post-content h4 a {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #fff;
    text-align: center;
}

.post-large:hover .post-content {
    background: rgba(255, 255, 255, 0);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(237, 32, 36, 0.8) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(237, 32, 36, 0.8)));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(237, 32, 36, 0.8) 100%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(237, 32, 36, 0.8) 100%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(237, 32, 36, 0.8) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(237, 32, 36, 0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#055a09", GradientType=0);
    border-radius: 0 0 20px 20px;
}

.post-large:hover:before {
    opacity: 1;
}

/**review**/
.review-item .review-desc .i-star {
    display: flex;
    flex-direction: row;
    column-gap: 5px;
    margin-bottom: 40px;
}

.review-item .review-desc .i-star i {
    font-size: 20px;
    color: #ffd800;
}

.review-item .review-desc {
    background: #fff;
    padding: 30px;
    padding-bottom: 50px;
    border-radius: 20px;
    border-top-right-radius: 0;
    position: relative;
    font-size: 20px;
    text-align: justify;
    margin-bottom: 45px;
}

.review-item .review-desc .i-quotes {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-bottom-left-radius: 18px;
    position: absolute;
    right: 0;
    top: 0;
}

.review-item .review-desc .i-quotes i {
    content: "”";
    font-size: 45px;
    color: #fff;
    text-align: center;
    display: block;
}

.review-item .review-desc:before {
    content: "";
    width: 0;
    height: 0;
    border: 32px solid rgba(0, 0, 0, 0);
    border-top-color: #fff;
    position: absolute;
    bottom: -64px;
    left: 50px;
}

.review-item .review-auth {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}

.review-item .review-auth .review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.review-item .review-auth .review-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.review-item .review-auth .review-name {
    font-weight: 700;
}

.review-item .review-auth p {
    margin: 0;
    font-size: 15px;
}

/**partner**/
.partner-item {
    border: 1px solid var(--primary-color2);
    border-radius: 10px;
    padding: 10px;
}

.partner-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/**footer**/
#footer {
    background: var(--primary-color);
    font-size: 16px;
    padding: 0 0 30px 0;
}

#footer .footer__top {
    background: linear-gradient(180deg, #FFD600 0%, #F2CB00 100%);
    border-radius: 0 0 20px 20px;
    padding: 20px;
}

.d-flex {
    display: flex;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

#footer .footer__top .address-item p {
    margin: 0px;
    color: #000;
}

#footer .footer__top .address-item .address-name {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
}

#footer .footer__top .footer-logo img {
    width: 100%;
}

#footer .footer-top {
    display: inline-block;
}

#footer .footer-title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin: 0 0 10px 0;
}

#footer p {
    margin: 0 0 8px 0;
    color: #fff;
}

#footer .footer-menu ul {
    display: flex;
    flex-flow: wrap;
}

#footer .footer-menu ul li {
    width: 50%;
    border: 0 !important;
    margin: 0 0 8px 0 !important;
    gap: 15px;
}

#footer .footer-menu ul li:before {
    content: '\f0da';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 700;
    color: #fff;
    opacity: 1;
}

#footer .footer-menu ul li a {
    color: #fff;
    padding: 0;
}

#footer .footer-zalo img {
    width: 100px;
}

.footer-copyright {
    background: #000;
    text-align: center;
    color: #fff;
    padding: 8px 0;
    font-size: 16px;
}


#footer .footer-rg a {
    margin: 0 0 20px 0;
    display: block;
}

#footer .footer-rg a img {
    width: 100px;
}

#footer .footer-social a {
    background: linear-gradient(180deg, #FFD600 0%, #F2CB00 100%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 35px;
    margin: 0 8px 0 0;
}

/**gioithieu**/
.sumenh .box-text p {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

.sumenh .box-text h4 {
    color: var(--primary-color);
    margin: 0 0 10px 0;
    font-size: 25px;
    line-height: 32px;
}

.sumenh .box-text {
    padding: 15px 0 0 0;
    width: 70%;
    margin: 15px auto 0;
}

.col-100 .col-inner {
    height: 100%;
}

.ic-about {
    height: 100%;
    background: #fff;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, .09);
    -moz-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, .09);
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, .09);
    padding: 20px;
}

.ic-about h4 {
    color: var(--primary-color);
    margin: 0 0 10px 0;
    font-size: 20px;
    line-height: 28px;
}

.ic-about p {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

/**breadcrumbs**/
section.breadcrumbs {
    padding: 10px 0;
    text-align: right;
}

section.breadcrumbs a, section.breadcrumbs {
    color: #000;
    font-size: 15px;
    font-weight: normal;
}

section.breadcrumbs span.last {
    color: var(--primary-color) !important;
}

/**category**/
section.category-banner img {
    width: 100%;
}


/**category**/
.category-description {
    box-shadow: 0px 4px 45px 0px #0000000D;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    font-weight: 300;
    font-size: 15px;
}

.entry-content {
    padding: 0 !important;
    font-weight: 300;
    font-size: 15px;
}

.category-description p
.category-description ul li,
.category-description ol li,
.entry-content p,
.entry-content ul li,
.entry-content ol li {
    margin: 0 0 10px 0 !important;
}

.category-description ul,
.category-description ol,
.entry-content ul,
.entry-content ol {
    margin-left: 15px !important;
}

.category-description table,
.category-description table tr td,
.entry-content table,
.entry-content tr td {
    border-collapse: collapse;
    border: 1px solid #3333;
}

.category-description table tr td,
.category-description table tr th,
.entry-content tr td,
.entry-content tr th {
    padding: 10px;
    color: #333 !important;
}

section.category-entry {
    margin: 20px 0 30px 0;
}

.category-description a, .entry-content a {
    color: var(--primary-color);
}

/**sidebar**/
.register2 h2 {
    font-size: 25px;
    color: var(--primary-color) !important;
}

.formRegister.register2 {
    background: #EFEFEF !important;
    padding: 30px 20px;
    border-radius: 20px;
    border-bottom: 3px solid var(--primary-color);
}

.register2 .input_register, .register2 .select_register {
    height: 45px !important;
    padding: 5px 15px !important;
    font-size: 15px !important;
}

.register2 .textarea_register {
    height: 90px !important;
    font-size: 15px !important;
    padding: 5px 15px !important;
}

.register2 .button_style {
    height: 45px !important;
    width: 100%;
}

.register2 .pd-10 {
    padding-bottom: 15px !important;
}

.post-large.category {
    height: 350px;
}

.category-list a {
    background: #D0D0D0;
    display: inline-block;
    border-radius: 9px;
    padding: 6px 15px;
    font-size: 16px;
    color: #5F5F5F;
}

.category-list a:not(:last-child) {
    margin-right: 10px;
}

.category-list a:hover, .category-list a.active {
    color: #fff;
    background: var(--primary-color);
}

/*single**/
#header-single {
    border-bottom: 1px solid #f2f2f2;
    padding: 0 0 15px 0;
    margin-bottom: 20px;
}

#header-single h1 {
    color: var(--primary-color);
    font-family: "Anton";
    font-size: 35px;
    line-height: 42px;
    margin: 0;
    font-weight: 500;
}

#header-single .post-meta {
    color: #6c6c6c;
    font-size: 14px;
    margin: 7px 0;
}

.swiper-post-next {
    right: 0 !important;
}

.swiper-post-prev {
    left: 0 !important;
}

/*9contact**/
.col-contact .col-inner {
    border-radius: 50px;
    -webkit-box-shadow: 0px 0px 9px 5px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0px 0px 9px 5px rgba(0, 0, 0, .15);
    box-shadow: 0px 0px 9px 5px rgba(0, 0, 0, .1);
    padding: 50px;
}

.col-contact .col-inner .col .col-inner {
    box-shadow: unset !important;
    padding: 0 !important;
}

.contact h4 {
    color: var(--primary-color);
    text-transform: uppercase !important;
    font-size: 22px;
    line-height: 28px;
}

.contact p {
    margin: 0;
    font-size: 16px;
}

.contactForm .formRegister {
    background: var(--primary-color);
    padding: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, .11);
    -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, .11);
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, .11);
}

.contactForm .formRegister .button_style {
    background: var(--primary-color2) !important;
    color: #000 !important;
}

.col-100 .col-inner p {
    height: 100% !important;
    margin: 0 !important;
}

iframe.contact-map {
    height: 100% !important;
    border-radius: 30px !important;
    -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, .11);
    -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, .11);
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, .11);
}

.info-school {
    display: flex;
    flex-direction: row;
    column-gap: 40px;
    padding: 20px 0;
    align-items: center
}

.info-school ul {
    margin: 0 !important;
}

.info-school ul li {
    list-style: none;
    font-size: 16px;
}

span.if-02 .line:last-child {
    display: none;
}

/**table**/
.table-list .line:last-child {
    display: none;
}

.list-partner-school .table-list, .list-scholarship .table-list {
    width: 100%;
    border-collapse: separate;
    border-spacing: 1px;
    border: 1px solid var(--primary-color)
}

.list-partner-school .table-list th, .list-partner-school .table-list td,
.list-scholarship .table-list th, .list-scholarship .table-list td {
    border-collapse: collapse
}

.list-partner-school .table-list thead th,
.list-scholarship .table-list thead th {
    padding: 20px 10px;
    background: var(--primary-color);
    color: #fff !important;
    text-transform: uppercase;
    font-size: 13px;
    min-height: 70px;
    white-space: nowrap;
    text-align: center;
}

.list-partner-school .table-list tbody tr td,
.list-scholarship .table-list tbody tr td {
    background: #e5ffd6;
    padding: 30px 10px;
    text-align: center;
    color: #333;
    line-height: 1.5em;
    font-size: 15px
}

.list-partner-school .table-list tbody tr td.col-name,
.list-scholarship .table-list tbody tr td.col-name {
    text-align: left;
    padding: 20px 20px
}

.list-partner-school .table-list tbody tr:nth-child(even) td,
.list-scholarship .table-list tbody tr:nth-child(even) td {
    background: #f0f0f0
}

.list-partner-school .link_detail,
.list-scholarship .link_detail {
    font-size: 15px;
    color: var(--primary-color);
    text-decoration: underline;
    position: relative;
    padding-right: 25px
}

.list-partner-school .link_detail::after, .list-scholarship .link_detail::after {
    content: "";
    font-family: "Font Awesome 6 Pro";
    font-size: 16px;
    margin-left: 10px;
    position: absolute;
    right: 0
}

.pvt_box_school_serach .search-form {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border: 1px solid #cbcbcb;
    border-radius: 12px
}

.pvt_box_school_serach .search-box input {
    display: block;
    width: 100%;
    padding: 12px 20px;
    padding-left: 50px;
    height: 50px;
    border-radius: 10px;
    border: 1px solid #cbcbcb;
    box-shadow: unset !important;
    margin: 0 !important;
}

.pvt_box_school_serach .search-box .s-key {
    position: relative
}

.pvt_box_school_serach .search-box .s-key::before {
    content: "";
    font-family: "Font Awesome 6 Pro";
    color: var(--primary-color);
    position: absolute;
    font-size: 24px;
    left: 15px;
    top: 15%
}

.pvt_box_school_serach .bottom-form {
    padding-top: 10px;
    display: flex;
    flex-direction: row;
    column-gap: 10px
}

.pvt_box_school_serach .bottom-form .custom-select, .pvt_box_school_serach .bottom-form button {
    flex: 1
}

.pvt_box_school_serach button.btn-search {
    display: inline-block;
    background: #444;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    height: 50px;
    box-shadow: none;
    min-width: 180px;
    max-width: 180px;
    margin: 0px !important;
    line-height: 50px !important;
    padding: 0;
    font-weight: 700;
}

.pvt_box_school_serach button.btn-search i.fa {
    margin-right: 10px
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #000 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) !important;
    border-width: 5px 5px 0 5px !important
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #000 rgba(0, 0, 0, 0) !important;
    border-width: 0 5px 5px 5px !important
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid var(--primary-color) 1px !important;
    outline: 0 !important
}

.select2-container .select2-selection--single {
    height: 50px !important;
    background: #fff !important;
    border: none !important;
    text-align: left !important;
    border-radius: 10px !important;
    padding: 0px !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 12px 20px !important;
    padding-right: 30px !important;
    font-size: 16px !important;
    border: none !important;
    line-height: 26px !important
}

.select2-container .select2-selection--single .select2-selection__arrow {
    height: 50px !important;
    width: 30px !important
}

.select2-container .select2-search--dropdown .select2-search__field {
    height: 40px !important;
    border-radius: 10px !important;
    padding: 5px 20px !important;
    font-size: 18px !important;
    font-weight: bold !important
}

.select2-container--open .select2-dropdown--below {
    border-top: 1px solid #aaa !important
}

.search-form .select2-container {
    width: 100% !important;
    display: block !important
}

.search-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-radius: 10px !important
}

.search-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #fff rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) !important;
    border-width: 5px 5px 0 5px !important
}

.search-form .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #fff rgba(0, 0, 0, 0) !important;
    border-width: 0 5px 5px 5px !important
}

/*Page item**/
.service-item {
    width: 100%;
    transition: 0.3s ease-in-out;
    border-radius: 20px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, .11);
    -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, .11);
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, .11);
}

.service-item .service-thumbnail {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    -ms-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -webkit-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -moz-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -o-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
}

.service-item .service-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    -ms-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -webkit-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -moz-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -o-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
}

.service-item:hover .service-thumbnail img {
    -ms-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -webkit-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -moz-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -o-transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    transition: transform .8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    transform: scale3d(1.1, 1.1, 1.1);
}

.service-item .service-content {
    padding: 10px 20px;
}

.service-item .service-content .service-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-item .service-content .service-title i {
    color: var(--primary-color);
    font-size: 25px;
}

.service-item .service-content .service-title a {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: var(--primary-color);
    text-transform: uppercase;
}

.tab-duhoc ul li a {
    background: #D0D0D0;
    display: inline-block;
    border-radius: 9px 9px 0 0;
    padding: 6px 25px !important;
    font-size: 16px;
    color: #5F5F5F;
}

.tab-duhoc ul li.active a {
    background: var(--primary-color);
    color: #fff;
}

table td[class*="col-"], table th[class*="col-"] {
    position: static;
    display: table-cell;
    float: none;
}

section.breadcrumbs p {
    margin: 0;
}

.header-support {
    display: flex;
    gap: 30px;
    font-size: 15px;
}

.header-support .support-item {
    position: relative;
}

.header-support a {
    color: #fff;
}

.header-support a:hover {
    color: #fff;
}

.header-support .support-item:after {
    content: "";
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    right: -15px;
    top: -5px;
    opacity: 1;
}

.header-support .support-item:last-child:after {
    display: none;
}