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

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

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

@font-face {
    src: url("../fonts/UTM AvoBold.ttf");
    font-family: "UTM Avo";
    font-weight: bold;
}

@font-face {
    src: url("../fonts/UTM Avo.ttf");
    font-family: "UTM Avo";
    font-weight: normal;
}

@font-face {
    src: url("../fonts/BwDariusDEMO-Bold.otf");
    font-family: "BwDarius";
    font-weight: bold;
}

@font-face {
    src: url("../fonts/BwDariusDEMO-Regular.otf");
    font-family: "BwDarius";
    font-weight: normal;
}

.absolute-footer {
    display: none;
}

.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: 5px 25px;
    font-size: 15px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 9;
    border-radius: 5px;
}

.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;
}

h1, h2, h3, h4, h5, h6, b, strong {
    font-family: "UTM Avo" !important;
    font-weight: bold !important;
}

body {
    font-family: "UTM Avo" !important;
    font-weight: normal !important;
}

@-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;
}

.page-home {
    overflow: visible !important;
}

.button_home {
    align-items: center !important;
    background-color: #101010 !important;
    border-radius: 40px !important;
    color: #fff !important;
    cursor: pointer !important;
    display: inline-flex !important;
    font-size: 15px !important;
    line-height: 18px !important;
    padding: 15px 25px !important;
    position: relative !important;
    text-decoration: none !important;
    transition: all .4s ease-in !important;
    z-index: 10 !important;
    text-transform: unset !important;
    margin: 0 !important;
}

.button_home:after {
    content: url(../images/button-arrow-orange.svg);
    display: inline-block;
    margin-bottom: -5px;
    padding-left: 28px;
    transition: all .4s ease-in;
    vertical-align: middle
}

/**header**/
.header-home {
    display: none;
}

/**video**/
.bt-video:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99
}

.bt-video iframe {
    width: 100%;
    height: 100%
}

.plyr__controls {
    display: none !important
}

.video-main {
    position: relative;
}

.intro-video-buttons-group {
    border: 0;
    bottom: 120px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    display: flex;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 2024;
}

.intro-video-buttons-group .button {
    align-items: center;
    background-color: #101010;
    border-radius: 40px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 15px;
    line-height: 18px;
    padding: 28px 32px;
    position: relative;
    text-decoration: none;
    transition: all .4s ease-in;
    z-index: 10;
    text-transform: unset !important;
    margin: 0 !important;
}

.button--sm {
    padding: 15px 25px !important;
}

.intro-video-buttons-group .intro-video-with-sound:after {
    content: url(../images/unmute-icon.svg);
    height: 23px;
    padding-left: 28px;
}

.intro-video-buttons-group .intro-video-skip-button:after {
    content: url(../images/button-arrow-orange.svg);
    display: inline-block;
    margin-bottom: -5px;
    padding-left: 28px;
    transition: all .4s ease-in;
    vertical-align: middle
}

.button--unmute {
    width: 160px;
    background-color: #fff !important;
    color: #101010 !important;
}

.fp-overflow {
    width: 100%;
}

.fp-section {
    padding: 0 !important;
}

.fp-tableCell {
    width: 100%;
}

.row-position {
    margin: auto !important;
    width: 100% !important;
}

.abouts h3 {
    font-size: 40px !important;
    font-weight: 800;
    line-height: 50px;
    font-family: "BwDarius";
    margin: 0;
    color: #252C65;
}

.abouts-content ul li {
    position: relative;
    list-style: none;
    font-weight: 500;
    color: #BEBEBE;
    padding-left: 30px;
    font-size: 2.3vh !important;
}

.abouts-content ul li:before {
    content: '';
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #BEBEBE;
    border-radius: 30px;
    position: absolute;
    top: 7px;
    left: 0px;
}

.aboutc-content {
    margin: 30px 0 0 0;
}

.hpsection-visit-website a {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #252f38;
}

.hpsection-visit-website {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hpsection-visit-website .hpsection-visit-website-text {
    width: 100px;
    text-align: right;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    text-transform: uppercase;
}

.hpsection-visit-website .hpsection-visit-website-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border-radius: 99px;
    color: white;
    font-size: 18px;
}

.hpsection-visit-website .hpsection-visit-website-button:before {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    font-size: 18px;
}

/**footer**/
footer#footer, .footer {
    color: #fff;
}

footer#footer p.company-name, .footer p.company-name {
    font-size: 18px;
    font-weight: 700;
}

footer#footer .footer-address p, .footer .footer-address p {
    font-size: 15px;
    margin: 0 0 10px 0;
}

footer#footer .footer-menu a, .footer .footer-menu a {
    padding: 0;
    min-height: unset;
    margin: 0 0 10px 0;
}

footer#footer .footer-menu a:hover, .footer .footer-menu a:hover {
    color: var(--primary-color) !important;
}

footer#footer .footer-title, .footer .footer-title {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

footer#footer .footer-menu .ux-menu-link--active a, .footer .footer-menu .ux-menu-link--active a {
    color: var(--primary-color) !important;
}

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

.pagination ul li a, .pagination ul li span {
    color: #000;
    border: 1px solid #e9e9e9;
    width: 35px;
    height: 35px;
    padding: 0px;
    line-height: 35px;
    font-weight: normal;
    background: #fff;
    border-radius: 99px !important;
}

.pagination ul li a:hover, .pagination ul li span:hover {
    background: var(--primary-color) !important;
    color: #fff;
    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: #fff;
    border: 1px solid #e9e9e9;
    width: 35px;
    height: 35px;
    padding: 0px;
    line-height: 35px;
    font-weight: normal;
    display: inline-block;
    border-radius: 99px !important;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current, .pagination span.current {
    background: var(--primary-color) !important;
    color: #fff;
    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;
    background-color: #cfe2ff;
    border-color: #b6d4fe;
}

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

.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;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.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;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: .3s;
    transition: .3s;
    transform: translateY(-50%) !important;
    top: 50% !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
    border-radius: 50% !important;
    color: var(--primary-color);
    margin: 0 !important;
}

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: -55px;
}

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

body .swiper-button-next:after, body .swiper-button-prev:after {
    display: none !important;
}

/**category**/
.category-description {
    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;
}

/**breadcrumbs**/
.breadcrumbs {
    margin-bottom: 10px !important;
    border-bottom: 1px dashed rgba(51, 51, 51, .45);
    border-radius: 0;
    font-size: 14px;
    padding-bottom: 10px !important;
    font-weight: normal;
}

.breadcrumbs p {
    margin: 0;
}

.breadcrumbs span, .breadcrumbs a {
    color: #333 !important;
}

/**post list**/
.post-list {
    display: flex;
    flex-flow: wrap;
    transition: 0.3s ease-in-out;
}

.post-list:not(:last-child) {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #dcdbdb;
}

.post-list .post-thumbnail {
    width: 290px;
    height: 175px;
    border-radius: 8px;
}

.post-list .post-thumbnail img {
    -o-object-fit: cover;
    object-fit: cover;
    object-position: 50% 50%;
    -o-object-position: 50% 50%;
    width: 100%;
    height: 100%;
}

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

.post-list .post-content .title {
    margin-bottom: 10px;
}

.post-list .post-content .title a {
    font-size: 18px;
    line-height: 1.3;
    color: #333;
    font-weight: 700;
}

.post-list .post-content .post-desc {
    color: hsla(0, 0%, 68%, .95);
    font-size: 15px;
    line-height: 22px;
}

.post-list .post-content .title a:hover {
    color: var(--primary-color)
}

/**widget**/
.widget {
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
    border: 1px solid rgba(0, 0, 0, .15);
    margin-bottom: 25px;
}

.widget-title {
    color: var(--primary-color);
    padding: 0;
    padding-bottom: 6px;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    margin-bottom: 15px;
    position: relative;
    display: block;
}

.widget-title:after {
    content: "";
    width: 60px;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    color: black;
}

.widget-category-child ul li {
    list-style: none !important;
    margin: 0px !important;
}

.widget-category-child ul li a {
    display: block;
    background: #ededed;
    padding: 10px !important;
    border-top: 1px solid #ddd;
    color: var(--primary-color);
    font-weight: 700;
    transition: all 0s;
    display: block;
    width: 100%;
}

.widget-post-list {
    width: 100%;
    display: inline-block;
}

.widget-post-list .widget-post-item a {
    display: flex;
    flex-flow: wrap;
}

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

.widget-post-list .widget-post-item a {
    display: flex;
    flex-flow: wrap;
}

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


.widget-post-list .widget-post-item .widget-post-thumbnail {
    width: 80px;
    height: 60px;
}

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

.widget-post-list .widget-post-item .widget-post-content {
    width: calc(100% - 80px);
    padding: 0 0 0 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;
    line-height: 20px;
    text-align: left;
}

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

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

/**post item**/
.post-item {
    width: 100%;
    transition: 0.3s ease-in-out;
}

.post-item .post-thumbnail {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.post-item .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.3s ease-in-out;
}

.post-item .post-content {
    padding: 15px 0 0 0;
}

.post-item .post-content .title {
    margin-bottom: 5px;
}

.post-item .post-content .title a {
    font-size: 16px;
    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: #333;
    height: 50px;
}

.post-item .post-content .post-desc {
    color: #777;
    font-size: 14px;
}

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

/**single**/
header#header-single h1 {
    font-weight: 700;
    font-size: 30px;
   color: black;
    padding-bottom: 10px;
    margin-bottom: 10px;
    line-height: 40px;
}

.single-post-meta {
    background-color: #f9f9f9;
    padding: 5px 10px;
    border-radius: 3px;
    margin-bottom: 15px;
    margin-right: 0;
    margin-left: 0;
}

header#header-single .single-post-meta .author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

header#header-single .single-post-meta .author-info .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

header#header-single .single-post-meta .author-info .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

header#header-single .single-post-meta .review-title {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 1;
}

.review .kk-star-ratings .kksr-legend {
    margin: 0 !important;
}


.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.single-post-meta .comment-count, .single-post-meta .update-time {
    margin-left: 5px;
    font-size: 13px;
    color: #888;
}

.single-post-meta-bottom a.social {
    position: relative;
    display: inline-block;
    margin: .333rem .25rem;
    border-radius: 100px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    line-height: 32px;
    width: 32px;
    height: 32px;
    transition: color .333s;
}

.single-post-meta a.social.social-twitter, .single-post-meta a.social[href^="https://twitter"] {
    background-color: #00aced;
}

.single-post-meta a.social.social-facebook, .single-post-meta a.social[href^="https://www.facebook"] {
    background-color: #3b5998;
}

.single-post-meta a.social.social-linkedin, .single-post-meta a.social[href^="https://www.linkedin"] {
    background-color: #007bb6;
}

.single-post-meta a.social.social-pintrest, .single-post-meta a.social[href^="https://pinterest"] {
    background-color: #cb2027;
}

.related-post, .comment {
    margin-top: 30px;
}

.related-post .related-title {
    text-transform: uppercase;
    font-size: 24px;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
}

.single-post-meta span {
    margin-left: 5px;
    font-size: 13px;
    color: #888;
}

.tab-info ul li a {
        background: #252c65;
    color: #fff !important;
    font-size: 16px;
}

header#header i.icon-menu {
    color: #fff !important;
    font-size: 30px !important;
}

header#header i.icon-search {
    color: #fff !important;
    font-size: 20px !important;
}

/**header**/
header#header .header-zalo img {
    width: 25px;
}

header#header li.html.custom.html_topbar_left {
    margin: 0 15px;
}

header#header .wp_language {
    margin-left: 15px;
}

header#header .wp_language ul {
    display: flex;
    gap: 10px;
}

header#header .wp_language ul li {
    list-style: none;
}

.header#header .wp_language ul li img {
    width: 30px !important;
    height: 30px !important;
    object-fit: contain;
}

header#header li.nav-icon.has-icon {
    MARGIN: 0;
}

/** NAV **/
.home-navigation {
    width: 80px;
    bottom: 0px;
    position: fixed;
    top: 0px;
    right: 2px;
    z-index: 15;
    display: none;
    justify-content: center;
    height: 100%;
}

.menuNav {
    display: flex !important;
}

.hphome .home-navigation {
    display: none;
}

.home-navigation-logo {
    display: none;
}

.home-navigation-line {
    width: 2px;
    background: #b5b5ba;
    height: 100vh;
}

.home-navigation-burger {
    left: 0px;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.home-navigation-burger span {
    height: 2px;
    background: white;
    display: block;
    width: 20px;
    border-radius: 10px;
}

/** SIDE NAV **/
#homeSideNav {
    position: fixed;
    display: none;
    width: 425px;
    height: 100vh;
    z-index: 99999;
    right: 0px;
    overflow: hidden;
    top: 0px;
    max-height: 100vh;

}

.sidenav-underGlobal #homeSideNav {
    background: transparent;
}

.sidenav-underGlobal #homeSideNav {
    z-index: 19;
}

#homeSideNav .sideNavInner {
    width: 100%;
    height: 100%;
    left: 40px;
    display: flex;
    flex-direction: column;
    margin-top: 112px;
    padding-left: 50px;
}

#homeSideNav h3 {
    margin: 0px !important;
    padding: 0 0 0 1.5vh;
    font-size: 2.9vh !important;
    font-family: BwDarius !important;
    font-weight: 700 !important;
    color: #c2366f;
    cursor: pointer;
}

#homeSideNav ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    width: 100%;
}

#homeSideNav li {
    font-size: 2.4vh !important;
    font-weight: 700 !important;
    height: 5vh;
    border-radius: 46px;
    display: flex;
    align-items: center;
    transition: background .5s ease-out;
    cursor: default;
    user-select: none;
    position: relative;
    margin: 0;
    padding: 0 0 0 1.5vh;
    xwidth: calc(100% - 21px);
    margin-right: 19px;
    z-index: 2;
    justify-content: space-between;
}

#homeSideNav li.empty {
    height: 3vh;
}

#homeSideNav li div:first-child {
    white-space: nowrap;
}

#homeSideNav li div.spacer {
    min-width: 30px;
}

#homeSideNav li div:last-child {
    width: 42px;
    display: flex;
    justify-content: center;
    position: relative;
}

#homeSideNav li:hover:not(.active) {
    background: #fff;
}

#homeSideNav li.empty:hover {
    background: transparent;
}

#homeSideNav li.mousedown,
#homeSideNav li.active {
    background: #fff !important;
}

#homeSideNav li:hover a, #homeSideNav li.active a {
    color: #000 !important;
}

#homeSideNav .ball {
    width: 2.4vh;
    height: 2.4vh;
    border-radius: 20px;
    background: #d9d9d9;
    transition: background .5s ease-out;
    display: block;
}

#homeSideNav li.mousedown .ball,
#homeSideNav li.active .ball {
    background: #d32070;
}

#homeSideNav li:hover:not(.active) .ball {
    background: #d4216f;
}

#homeSideNav .line {
    width: 2px;
    height: 100%;
    position: absolute;
    background: #979797;
    top: 0px;
    right: 39px;
    z-index: 1;
}

#homeSideNav .close {
    width: 80px;
    height: 80px;
    position: fixed;
    right: 1px;
    cursor: pointer;
    top: 20px !important;
    z-index: 3;
    background-image: url(../images/burgermenu_close.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.nav-scheme-light #homeSideNav .close {
    background-color: #252f38;
}

.nav-scheme-light #homeSideNav .close:before,
.nav-scheme-light #homeSideNav .close:after {
    background: white;
}

.nav-scheme-dark .image-light {
    display: none;
}

.nav-scheme-light .image-dark {
    display: none;
}

#homeSideNav .sideNavFooter {
    overflow: hidden;
    margin-top: 5vh;
    margin-left: 2.4vh;
    position: relative;
    height: 100%;
}

#homeSideNav .sideNavFooter-inner {
    position: absolute;
}

#homeSideNav .sideNavFooter-inner .image-light,
#homeSideNav .sideNavFooter-inner .image-dark {
    height: 10vh;
}

#homeSideNav .sideNavFooter-inner div {
    color: #FFFFFF;
    font-family: Raleway;
    font-weight: 600;
    font-size: 1.6vh;
}

#homeSideNav .social-media {
    display: flex;
    gap: 1.8vh;
    margin-top: 4vh;
}

#homeSideNav .social-media img {
    height: 3.5vh;
    width: 3.5vh;
}

@media (min-width: 1024px) and (max-height: 470px) {
    #homeSideNav .sideNavFooter {
        opacity: 0;
        transition: opacity 0.3s;
    }
}

.nav-scheme-dark {
    background: #252f38;
    color: #fff;
}

.home-navigation.nav-scheme-dark {
    background: transparent;
}

.sec-home .section-content.relative {
    height: 100%;
    display: flex;
    align-items: center;
    flex-flow: column-reverse;
}

.menu-page ul li a {
    width: 100%;
    display: block;
    color: #fff !important;
    position: relative;
}

.menu-page ul li a:after {
    content: '';
    width: 2.4vh;
    height: 2.4vh;
    border-radius: 20px;
    background: #d9d9d9;
    transition: background .5s ease-out;
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.sec-home:before {
    content: '';
    background: #fff;
    width: 18%;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    display: block;
    z-index: 1;
}

.sec-home:after {
    content: '';
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 50%, rgb(255, 255, 255) 100%);
    width: 50%;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 18% !important;
    display: block;
    z-index: 0;
}

.is-full-height {
    overflow: hidden;
    z-index: 1;
}

.hpsection-vertical-text {
    z-index: 11;
    bottom: 0px !important;
    left: 30px;
    height: 100vh;
    width: 60px;
    overflow: hidden;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    gap: 15px;
}

.hpsection-vertical-text .hpsection-text {
    transform: rotate(180deg);
    color: #252f38;
    writing-mode: vertical-rl;
    font-size: 4vh;
    font-weight: 800;
}

.hpsection-vertical-text .hpsection-line {
    height: 150px;
}

.hpsection-vertical-text .hpsection-line div {
    background: #252f38;
    width: 2px;
    height: 100%;
}

.pd-80 .col-inner {
    padding-left: 150px !important;
}

.video-wrapper {
    width: 100%;
    height: 150vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.video-footer .video-main {
    width: 50vw;
    height: 28vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease, top 0.5s ease;
}

.video-footer .video-main iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

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

.tab-info ul li.active a {
    background: #fff !important;
}

.tab-th ul li a {
    background: #252c65 !important;
}

.tab-tt ul li a {
      background: #059EA6 !important;
}

.tab-pt ul li a {
    background: #262d64 !important;
}

.tab-tt ul li.active a {
   border-color: #059EA6 !important;
}

.tab-pt ul li.active a {
    border-color: #262d64 !important;
}

.tab-th ul li.active a {
       border-color: #252c65 !important;
    color: #252c65 !important;
}

div#masthead {
    background: rgba(0, 0, 0, 0.4) !important;
}

/**menu**/
div#mega-menu-wrap-primary ul li a {
    color: #fff !important;
    font-weight: 600 !important;
    padding: 0 8px !important;
    text-transform: uppercase !important;
    font-size: 15px !important;
    text-align: center !important;
    display: flex !important;
    align-items: center;
}

div#mega-menu-wrap-primary ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

div#mega-menu-wrap-primary ul li.mega-current-menu-item a {
    background: rgba(255, 255, 255, 0.2);
}

#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;
    text-transform: unset !important;
    background: #fff !important;
    text-align: left !important;
    color: #333 !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-current-menu-parent a,#mega-menu-wrap-primary #mega-menu-primary  li.mega-current-menu-item a{
	color:#F36F21 !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: 0px !important;
    text-align: left !important;
    padding-bottom: 5px !important;
    padding-left: 0px !important;
    border-bottom: 1px solid #f2f2f2;
    text-transform: unset !important;
}


#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-current-menu-item a,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-current-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-current-menu-item  > a.mega-menu-link {
	color:#F36F21 !important
}
.has-sticky.header-home {
    display: block;
}

.school-item {
    width: 100%;
    box-shadow: 0px 0px 6px #ccc;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
}

.school-item:hover {
    transition: 0.3s ease-in-out;
    transform: translateY(-5px);
}

.school-item .school-logo {
    width: 100%;
    height: 80px;
    padding: 15px;
}

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

.school-item .school-thumbnail {
    width: 100%;
    height: 150px;
}

.school-item .school-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.school-item .school-title {
    padding: 10px;
    font-size: 16px;
    line-height: 24px;
}

.school-item .school-label {
    background: #252C65;
    text-align: center;
    border-radius: 0 0 8px 8px;
    padding: 2px 0;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
}

.video-server {
    position: relative;
}

.video-server > video {
    width: 100%;
    height: 100%;
}

.footer-social a {
    -webkit-box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: inline-block;
    margin: 0 8px 0 0 !important;
}

.footer-social a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.mega-menu-columns-12-of-12 ul.mega-sub-menu li {
    width: auto !important;
    padding: 0 15px !important;
    border: 0px !important;
}

.mega-menu-columns-12-of-12 ul.mega-sub-menu {
    display: flex !important;
    justify-content: end !important;
}

.mega-menu-columns-12-of-12 ul.mega-sub-menu li a {
    border: 0px !important;
    padding: 0 15px !important;
    font-size: 15px !important;
}

.mega-menu-columns-12-of-12 ul.mega-sub-menu li a:after {
    content: "|" !important;
    margin-left: 15px;
    color: #000 !important;
    display: inline-block !important;
    font-weight: normal !important;
}

.mega-menu-columns-12-of-12 ul.mega-sub-menu li:last-child a:after {
    display: none !important;
}

.mega-menu-columns-12-of-12 ul.mega-sub-menu li a:hover {
    color: var(--primary-color) !important;
    text-decoration: underline !important;
}

.pum-theme-default-theme {
    background: rgba(0, 0, 0, 0.5) !important;
}

.banner-popup {
    width: 500px !important;
    margin: auto !important;
}

.pum-container.pum-responsive {
    background: transparent !important;
    text-align: center;
    box-shadow: unset !important;
}

button.pum-close.popmake-close {
    width: 30px !important;
    height: 30px !important;
    background: #fff !important;
    color: #000 !important;
    border-radius: 50% !important;
    padding: 0px !important;

    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 30px !important;
}

button.pum-close.popmake-close i:before {
    content: '⨯' !important;
    padding: 0px !important;
    font-size: 25px;
}

.pum-content.popmake-content {
    background: #262d64;
    padding: 40px;
}

.form-tv .input_register {
    box-shadow: unset !important;
    height: 40px !important;
    border-radius: 10px !important;
    padding: 0 10px;
    font-size: 15px;
}

.form-tv .select_register {
    box-shadow: unset !important;
    height: 40px !important;
    border-radius: 10px !important;
    padding: 0 10px;
    font-size: 15px;
}

.form-tv .textarea_register {
    box-shadow: unset !important;
    height: 165px !important;
}

.form-tv .button_register {
    width: 100%;
    height: 45px !important;
    margin: 0;
    box-shadow: unset !important;
}

.form-tv h3 {
    color: var(--primary-color);
    text-transform: unset;
    font-size: 25px;
    text-align: center;
    line-height: 35px;
}

.form-tv p {
    text-align: center;
    color: gray;
    margin: 0;
}
.form-tv label {
    text-align: left;
}
body.home {
    height: var(--app-height) !important;
    overflow: hidden;
}

.hpsection-section {
    width: 100%;
    height: var(--app-height) !important;
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
}

div#masthead {
    height: 75px !important;
}

div#masthead #logo img {
    max-height: 75px !important;
}

body.home div#content {
    overflow-y: scroll !important;
    overflow-x: hidden !important;
    height: var(--app-height) !important;
    scroll-snap-type: y mandatory;
}

body.home div#content .footer {
    scroll-snap-align: start;
}

/** NAV **/
.hpsection-section .home-navigation {
    width: 80px;
    bottom: 0px;
    position: absolute;
    top: 0px;
    right: 2px;
    z-index: 15;
    display: flex;
    justify-content: center;
    background: transparent;
}

.hpsection-section .home-navigation-logo {
    display: none;
}

.hpsection-section .home-navigation-line {
    width: 2px;
    background: #b5b5ba;
    height: var(--app-height);
}

.hpsection-section .home-navigation-burger {
    width: 80px;
    height: 80px;
    background: #059ea6;
    border-radius: 80px;
    position: absolute;
    left: 0px;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.hpsection-section .home-navigation-burger span {
    height: 5px;
    background: white;
    display: block;
    width: 40px;
    border-radius: 10px;
}

#button-contact-vr {
    position: fixed;
    bottom: 0;
    z-index: 99999
}

#button-contact-vr .button-contact {
    position: relative;
    margin-top: -5px
}

#button-contact-vr .button-contact .phone-vr {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 90px;
    height: 90px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block
}

.phone-vr-circle-fill {
    width: 65px;
    height: 65px;
    top: 12px;
    left: 12px;
    position: absolute;
    box-shadow: 0 0 0 0 #c31d1d;
    background-color: rgba(230, 8, 8, 0.7);
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animuiion: zoom 1.3s infinite;
    animation: zoom 1.3s infinite
}

.phone-vr-img-circle {
    background-color: #e60808;
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 25px;
    left: 25px;
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phone-vr-circle-fill 1s infinite ease-in-out
}

.phone-vr-img-circle a {
    display: block;
    line-height: 37px
}

.phone-vr-img-circle img {
    max-height: 25px;
    max-width: 27px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%)
}

#instagram-vr .phone-vr-circle-fill {
    background: rgb(17, 143, 253);
    background: linear-gradient(160deg, rgba(17, 143, 253, 1) 20%, rgba(188, 60, 218, 1) 50%, rgba(253, 223, 5, 1) 80%);
    background-size: contain;
    box-shadow: 0 0 0 0 #c840c9;
    background-color: rgb(79 103 254);
    border: 0
}

#instagram-vr .phone-vr-img-circle {
    background: transparent
}

#telegram-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2c9fd8;
    background-color: rgb(44 159 216 / 74%)
}

#telegram-vr .phone-vr-img-circle {
    background: #2c9fd8
}

@-webkit-keyframes phone-vr-circle-fill {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
}

@-webkit-keyframes zoom {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

@keyframes zoom {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

.phone-bar a {
    position: absolute;
    margin-top: -65px;
    left: 30px;
    z-index: -1;
    color: #fff;
    font-size: 16px;
    padding: 7px 15px 7px 50px;
    border-radius: 100px;
    white-space: nowrap
}

.phone-bar a:hover {
    opacity: 0.8;
    color: #fff
}

@media (max-width: 736px) {
    .phone-bar {
        display: none
    }
}

#zalo-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #F36F21;
    background-color: #f36f2163;
}

#zalo-vr .phone-vr-img-circle {
       background-color: #F36F21;
}

#viber-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #714497;
    background-color: rgba(113, 68, 151, 0.8)
}

#viber-vr .phone-vr-img-circle {
    background-color: #714497
}

#contact-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 var(--primary-color);
    background-color: rgba(33, 150, 243, 0.7)
}

#contact-vr .phone-vr-img-circle {
    background-color: var(--primary-color)
}

div#whatsapp-vr .phone-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #1fd744;
    background-color: rgb(35 217 72 / 70%)
}

div#whatsapp-vr .phone-vr .phone-vr-img-circle {
    background: #1cd741
}

div#whatsapp-vr .phone-vr .phone-vr-img-circle img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 50%
}

#fanpage-vr img {
    max-width: 25px;
    max-height: 25px
}

#fanpage-vr .phone-vr-img-circle {
    background-color: #F36F21;
}

#fanpage-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #F36F21;
    background-color: #f36f2163;
}

#gom-all-in-one .button-contact {
    transition: 1.6s all;
    -moz-transition: 1.6s all;
    -webkit-transition: 1.6s all
}

#button-contact-vr.active #gom-all-in-one .button-contact {
    margin-left: -100%
}

#all-in-one-vr .phone-bar {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 100%;
    color: #fff;
    padding: 5px 15px 5px 48px;
    border-radius: 50px;
    margin-left: -64px;
    width: max-content;
    cursor: pointer
}

#popup-showroom-vr, div#popup-form-contact-vr {
    display: none
}

#popup-showroom-vr.active, div#popup-form-contact-vr.active {
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 99999
}

.bg-popup-vr {
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(51 51 51 / 50%);
    width: 100%;
    height: 100vh
}

.content-popup-vr {
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    border-radius: 5px;
    box-shadow: 0 0 14px 5px rgb(0 0 0 / 49%);
    max-width: 600px;
    display: flex
}

.content-popup-vr input, .content-popup-vr textarea {
    width: 100%;
    max-height: 100px;
    min-height: 38px;
    border: 1px solid #b1b1b1;
    margin-bottom: 10px;
    padding: 0 7px;
    background: #fff
}

.content-popup-vr label {
    width: 100%
}

.content-popup-vr input.wpcf7-form-control.wpcf7-submit {
    max-width: fit-content;
    padding: 5px 32px 2px;
    background: var(--primary-color);
    border: 0;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    margin: 10px auto 0;
    display: block;
    box-shadow: 0 0 5px 1px rgb(0 0 0 / 29%);
    font-weight: 400;
    min-height: auto;
    line-height: 30px
}

.content-popup-vr input.wpcf7-form-control.wpcf7-submit:hover {
    opacity: 0.7
}

.content-popup-vr .close-popup-vr {
    font-family: sans-serif;
    width: 23px;
    height: 23px;
    background: black;
    position: absolute;
    top: -10px;
    right: -10px;
    color: #fff;
    text-align: center;
    line-height: 23px;
    font-size: 17px;
    border-radius: 50%;
    cursor: pointer
}

.content-popup-vr .close-popup-vr:hover {
    background: #b50000
}

.content-popup-vr .content-popup-div-vr {
    width: 100%;
    padding: 25px
}

.content-popup-vr .content-popup-img-vr {
    width: 100%;
    max-width: 45%;
    border-radius: 10px 0 0 10px;
    overflow: hidden
}

#loco-top, #loco-bottom {
    display: block
}

#loco-top .content-popup-img-vr, div#popup-form-contact-vr #loco-bottom .content-popup-img-vr {
    max-width: 100%;
    text-align: center
}

#contact-showroom.no-event a {
    pointer-events: none
}

.content-popup-vr .content-popup-div-vr ul {
    color: #333;
    list-style: none;
    font-size: 15px
}

@media (max-width: 673px) {
    div#popup-form-contact-vr .content-popup-vr {
        display: block
    }

    div#popup-form-contact-vr .content-popup-vr .content-popup-img-vr {
        max-width: 100%;
        display: none
    }
}

#ftiktok-vr .phone-vr-img-circle {
    background-color: #020202;
}

#tiktok-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 rgb(2 2 2 / 55%);
    background-color: rgb(2 2 2 / 60%);
}

#tiktok-vr .phone-vr-img-circle img {
    max-width: 90%;
    max-height: 90%;
}

#tiktok-vr .phone-vr-img-circle {
    background: #020202;
}

#messenger-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #F36F21;
    background-color: #f36f2163;
}

#messenger-vr .phone-vr-img-circle {
    background-color: #F36F21;
}

#messenger-vr .phone-vr-img-circle img {
    max-width: 100%;
    max-height: 100%;
}

#button-contact-vr {
    right: 0;
}

#button-contact-vr {
    transform: scale(1);
}

nav.tab-method button {
    text-transform: uppercase;
}

header.archive-page-header {
    display: none;
}
h5.post-title.is-large {
    display: -webkit-box;
    -webkit-line-clamp: 2;             
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4em;               
    max-height: calc(1.4em * 2);
}

