#global-page {
   max-width: 1920px;
   margin: auto;
   position: relative;
}

.sticky-content.sticky {
    position: sticky;
    top: 200px;
}

.sticky-content {
    z-index: 1;
    position: relative;
}

header {
    position: fixed;
    width: 100%;
    max-width: 1920px;
    z-index: 9999;
    transform: translateY(50px);
    transition: .2s all ease;
}

header::before {
    content: "";
    position: absolute;
    width: 1000vw;
    height: 100%;
    top: 0;
    left: -1000vw;
    transition: .2s all ease;
}

header::after {
    content: "";
    position: absolute;
    width: 1000vw;
    height: 100%;
    top: 0;
    right: -1000vw;
    transition: .2s all ease;
}

header.scroll {
    transform: translateY(0);
    background: var(--color-secondary);
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

header.scroll::before,
header.scroll::after {
    background: var(--color-secondary);
}

header .nav-bar {
    border-top: 2px solid transparent;
    border-bottom: 2px solid var(--color-gray);
}

header.scroll .nav-bar {
    border-bottom: 2px solid transparent;
}

header .nav-desktop nav > ul > li,
header .nav-bis nav > ul > li {
    display: inline-block;
    margin-right: 2rem;
}

header .nav-bis nav > ul > li {
    margin-right: 0;
}

header .nav-desktop nav > ul > li:last-child,
header .nav-bis nav > ul > li:last-child {
    margin-right: 0;
}

header .nav-desktop nav > ul > li.parent,
header .nav-bis nav > ul > li.parent {
    padding-right: 10px;
    background: url(img/arrow-nav.png) no-repeat;
    background-position: center right;
}

header .nav-desktop nav > ul > li > a,
header .nav-desktop nav > ul > li > span,
header .nav-bis nav > ul > li > a,
header .nav-bis nav > ul > li > span {
    color: var(--color-white);
    display: block;
    line-height: 1;
    letter-spacing: 1px;
    padding: 15px 0;
}

header .nav-desktop nav > ul > li.menuactive > a,
header .nav-desktop nav > ul > li.menuactive ul li.menuactive > a,
header .nav-desktop nav > ul > li.menuactive > span,
header .nav-desktop nav > ul > li.menuactive ul li.menuactive > span,
header .nav-bis nav > ul > li.parent ul li.menuactive a {
    color: var(--color-primary) !important;
}

header .nav-desktop nav > ul > li.parent ul,
header .nav-bis nav > ul > li.parent ul {
    position: absolute;
    background: var(--color-white);
    padding: 10px 20px;
    -webkit-filter: drop-shadow(0 8px 20px rgba(0,0,0,.1));
    filter: drop-shadow(0 8px 20px rgba(0,0,0,.1));
    min-width: 230px;
    visibility: hidden;
    opacity: 0;
    margin-top: 20px;
    transition: .3s;
}

header .nav-desktop nav > ul > li.parent:hover > ul,
header .nav-bis nav > ul > li.parent:hover > ul {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    transition: .3s;
}

header .nav-desktop nav > ul > li.parent ul li {
    display: block;
    padding: 10px 0;
}

header .nav-bis nav > ul > li.parent ul li {
    display: block;
}

header .nav-desktop nav > ul > li.parent ul li:last-child,
header .nav-bis nav > ul > li.parent ul li:last-child {
    border-bottom: 0;
}

header .nav-desktop nav > ul > li.parent ul li a,
header .nav-bis nav > ul > li.parent ul li a {
    display: block;
    line-height: 1;
    letter-spacing: .5px;
    color: var(--color-dark);
}

header .nav-desktop nav a:hover,
header .nav-bis nav a:hover {
    color: var(--color-primary) !important;
}

header .nav-desktop nav > ul > li > ul > li > ul,
header .nav-bis nav > ul > li > ul > li > ul {
    visibility: hiddent;
    opacity: 0;
    transition: .3s;
    top: 0;
    left: calc(100% - 20px);
}

header .nav-desktop nav > ul > li > ul > li.parent:hover > ul,
header .nav-bis nav > ul > li > ul > li.parent:hover > ul {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    transition: .3s;
}

header .nav-desktop nav > ul > li > ul > li > ul > li > ul,
.nav-mobile nav > ul > li > ul > li > ul > li > ul {
    display: none;
}

header .nav-bis nav a {
    font-size: 22px !important;
    position: relative;
    top: 1px;
    padding: 10px 0 !important;
}

header .nav-bis nav > ul > li.parent {
    position: relative;
}

header .nav-bis nav > ul > li.parent ul li a {
    font-size: 15px !important;
}

header .nav-bis nav > ul > li.parent ul {
    min-width: inherit !important;
    right: 0;
}
header .nav-bis nav > ul > li.parent {
    background-position-x: right !important;
    background-position-y: 20px !important;
}

/* Nav mobile */

.nav-mobile {
    position: fixed;
    width: 320px;
    height: 100%;
    right: -330px;
    top: 0;
    z-index: 999999;
    background: #fff;
    transition: .2s;
    opacity: 0;
}

.nav-mobile.open-nav {
    right: 0;
    opacity: 1;
    transition: .4s;
}

.nav-mobile .inner {
    height: 100%;
    overflow: scroll;
    padding-bottom: 120px;
}

.nav-mobile nav ul li {
    padding: 10px 0;
    border-top: 1px dotted #ddd;
}

.nav-mobile nav ul li.parent {
    padding-bottom: 0 !important;
}

.nav-mobile nav ul li.parent > span {
    padding-bottom: 10px;
}

.nav-mobile nav ul li ul li {
    padding-left: 20px;
}

.nav-mobile nav ul li a,
.nav-mobile nav ul li > span {
    display: block;
    color: var(--color-secondary);
    font-size: 16px;
    padding-left: 20px;
    font-weight: 600;
}

.nav-mobile nav ul li.menuactive > a {
    color: var(--color-primary); !important;
}

.nav-mobile nav ul li.parent > a {
    margin-bottom: 10px;
}

.nav-mobile nav ul li a:hover {
    color: var(--color-primary);;
}

.bt-open-nav {
    border-radius: 50%;
    overflow: hidden;
    margin-left: 1rem;
    cursor: pointer;
}

.bt-open-nav i {
    background: var(--color-primary);
    color: var(--color-white);
    line-height: 45px;
    width: 45px;
    text-align: center;
    font-size: 26px;
}

.bt-open-nav:hover i {
    background: var(--color-primary-hover);
}

.bt-close-nav {
    line-height: 60px;
    padding-left: 15px;
    font-size: 28px;
    cursor: pointer;
}

.bt-close-nav i {
    line-height: 3;
}

.bt-close-nav:hover i {
    color: var(--color-primary);
}

.bt-mask-nav {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.4);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    backdrop-filter: blur(2px);
}

.open-nav .bt-mask-nav {
    transition: .3s;
    opacity: 1;
    visibility: visible;
}

.nav-mobile .nav-item a {
    color: var(--color-secondary);
    font-weight: 600;
}

.nav-mobile .nav-item a:hover {
    color: var(--color-primary);
}

.nav-mobile .nav-item .bt-search {
    font-size: 28px !important;
    margin-left: 15px;
    margin-right: 15px;
}

.nav-mobile .nav-item .bt-search i {
    line-height: 3;
}


/* Heading */

.heading-content {
    position: relative;
    width: 100%;
    height: calc(100vh - 50px);
    padding: 50px 70px;
    padding-bottom: 0;
}

.banner-content {
    position: absolute;
    width: calc(100% - 140px);
    height: calc(100% - 50px);
}

.banner-content .component-fullwidth {
    width: 100%;
    height: 100%;
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    border-radius: var(--border-radius-max);
    overflow: hidden;
}

.banner-content .component > ul {
    position: absolute;
    top: 0;
}

.banner-content .component-fullwidth li .filter {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
}

.banner-content .component-fullwidth li .filter:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(80,80,80,.5) 0%, rgba(61,72,77,.9) 100%);
}

.banner-content .component-fullwidth li .filter:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 40%;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg,rgba(61, 72, 77, 1) 0%, rgba(61, 72, 77, 0) 100%);
}

.banner-content .component-fullwidth nav {
    display: none;
}

.banner-content .component-fullwidth li img {
    top: 0;
}

.banner-content .component-fullwidth li .inner {
    position: relative;
    top: 100px;
    opacity: 0;
    transition: .3s;
}

.banner-content .component-fullwidth li.current .inner {
    top: 0;
    opacity: 1;
    transition: .3s;
}

.banner-content .component-fullwidth li .background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center !important;
    background-size: cover !important;
}

.banner-content .container {
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 205px;
    height: 100%;
    color: var(--color-white);
}

.banner-content .teaser-content {
    position: absolute;
    bottom: 0;
    width: calc(100% - var(--gutter-x) * 2);
}

.banner-content .teaser-content a {
    flex: none;
    color: var(--color-white);
}

.banner-content .teaser-content a:hover {
    color: var(--color-primary);
}

.banner-content .teaser-content a .line {
    width: 100%;
    height: 2px;
    background: var(--color-gray);
    margin-bottom: 3rem;
    position: relative;
}

.banner-content .teaser-content a .line::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: auto;
    right: 0px;
    width: 0px;
    height: 2px;
    background: linear-gradient(to left, var(--color-primary) 0.16%, var(--color-primary) 99.84%);
    transition: 0.4s ease-in-out;
}

.banner-content .teaser-content a:hover .line::before {
    width: 100%;
    right: auto;
    left: 0px;
}

.banner-content .teaser-content h5 {
    padding-right: 3.5rem;
    margin-bottom: 3rem;
}

.banner-content .teaser-content a .icon {
    width: 40px;
    margin-bottom: 1rem;
}

.banner-content a.bt-enter {
    position: absolute;
    z-index: 99;
    bottom: -30px;
    right: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 5px solid var(--color-white);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: .1s all ease;
}

.banner-content a.bt-enter:hover {
    background: var(--color-primary-hover);
}

.banner-content a.bt-enter i {
    font-size: 36px;
}

.heading-content.scroll a.bt-enter {
    opacity: 0;
    visibility: hidden;
}


/* About */
.about-content .tag {
    position: absolute;
    transform: rotate(-90deg);
    transform-origin: left;
    left: 25px;
    bottom: 5vh;
    font-size: var(--font-size-md);
    line-height: 1;
    white-space: nowrap;
}

.about-content .tag::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    top: calc(50% - 2px);
    left: -45px;
    background: var(--color-primary);
}

.about-content .about-img-group {
    position: relative;
    line-height: 0;
    padding: 0 40px;
    padding-bottom: 10%;
}

.about-content .about-img-group .img-1 {
    position: relative;
    line-height: 0;
    display: block;
    mask-image: url(img/about-img-mask.svg);
    background-image: url(img/about-img-mask.svg);
    mask-size: cover;
    mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
    mask-position: center center;
}

.about-content .about-img-group .img-1 img {
    width: 100%;
    height: 100%;
}

.about-content .about-img-group .img-2 {
    position: absolute;
    width: 46.8%;
    height: 35%;
    bottom: 0%;
    right: 0%;
    border-radius: 19px;
    overflow: hidden;
}

.about-content .about-img-group .img-2 img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .about-img-group .img-1::after,
.about-content .about-img-group .img-2::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(61, 72, 77, .4);
    top: 0;
    left: 0;
}

.about-content h4 i {
    font-size: 34px;
    color: var(--color-primary);
}

.about-content .about-team {
    margin-bottom: 2rem;
    flex-flow: wrap;
    gap: 1rem;
}

.about-content .about-team p {
    color: var(--color-primary);
    font-weight: var(--font-weight-xxl);
}
.about-content .about-team .about-team-img img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: contain;
    margin-left: -15px;
    z-index: 8;
    position: relative;
}

.about-content .about-team .about-team-img img:first-child {
    margin-left: 0;
}


/* Aside */

.aside-content {
    position: relative;
    padding: 0 70px;
}

.aside-content .warpper {
    position: relative;
    height: 100%;
    background: var(--color-secondary);
    border-radius: var(--border-radius-max);
    color: var(--color-white);
}

.aside-content .warpper .container {
    position: relative;
    z-index: 9;
}

.aside-content .warpper .banner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    border-radius: 0 var(--border-radius-max) var(--border-radius-max) 0;
    overflow: hidden;
}

.aside-content .warpper .banner .img {
    position: absolute;
    width: 100%;
    height: 100%;
}

.aside-content .warpper .banner .img::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(185, 183, 168, .4) 0%, rgba(61, 72, 77, .9) 100%);
    z-index: 9;
}

.aside-content .warpper .banner .img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.counter-content i {
    font-size: 52px;
    position: relative;
    color: var(--color-primary);
    z-index: 1;
}

.counter-content .counter i:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--color-secondary-hover);
    border-radius: 20px;
    right: -5px;
    bottom: -2px;
    z-index: -1;
}

.counter-content .counter h2.timer {
    font-weight: 200;
    letter-spacing: 6px;
    margin: 0;
}

.counter-content .counter h5.count-text {
    text-transform: uppercase;
    line-height: 1.2;
}

/* News */

.summary-list-home {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.summary-list-home .summary {
    display: flex;
    border-top: 1px solid #ddd;
    padding-top: 2rem;
}

.summary-list-home .summary:first-child {
    border-top: 0;
    padding-top: 0;
}

.summary-list-home .summary .img {
    flex: none;
    width: 30vh;
    height: 225px;
    line-height: 0;
    margin-right: 2rem;
    border-radius: var(--border-radius-base);
    overflow: hidden;
    position: relative;
}

.summary-list-home .summary .img img {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
}

.summary-list-home .summary .img::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(185, 183, 168, .2) 0%, rgba(61, 72, 77, .9) 100%);
    z-index: 9;
}

.summary-list-home .summary .txt h3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2; 
    -webkit-box-orient: vertical;
}

.summary-list-home .summary .txt p {
    display: none;
}

.summary-list-home .summary .txt p:first-child {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2; 
    -webkit-box-orient: vertical;
}

.summary-detail-news p {
    font-weight: 900;
}

.summary-img-news img {
    border-radius: var(--border-radius-base);
}

.summary-detail-news {
    border-left: 4px solid;
    padding-left: .5rem;
}

/* Map contact */

.info-content {
    position: relative;
    padding: 0 70px;
}

.info-content .warpper {
    position: relative;
    height: 100%;
    background: var(--color-secondary);
    border-radius: var(--border-radius-max);
    color: var(--color-white);
}

.info-content .warpper .map-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: var(--border-radius-max) 0 0 var(--border-radius-max);
    overflow: hidden;
    pointer-events: none;
}

.info-content .warpper .map-content #map {
    position: absolute;
    width: 100%;
    height: calc(100% + 15px);
    top: 0;
    left: 0;
    opacity: .85;
    pointer-events: all;
}

.info-content .warpper .map-content a.btn {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    border-radius: var(--border-radius-max);
    background: var(--color-gray);
    width: 90%;
    max-width: max-content;
    display: flex;
    align-items: center;
    white-space: normal;
}

.info-content .warpper .map-content a.btn legend {
    line-height: 1;
}

.link-content a {
    max-width: 190px;
    filter: grayscale(1);
}


/* Footer */

footer {
    position: relative;
    padding: 0 70px;
    margin-bottom: 50px;
}

footer .warpper {
    position: relative;
    height: 100%;
    background: var(--color-secondary);
    border-radius: var(--border-radius-max);
    color: var(--color-white);
}

footer h3 span {
    color: var(--color-primary);
}

footer .contact-info i {
    font-size: 20px !important;
    color: var(--color-primary);
    margin-right: 10px;
}

footer .contact-info span {
    color: var(--color-primary);
    margin-right: 10px;
}

footer .contact-info a {
    color: var(--color-white);
}

footer a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.newsletter-content form {
    position: relative;
}

.newsletter-content form input[type=email] {
    margin-bottom: 15px !important;
    padding-right: 55px;
}

.newsletter-content form .submit {
    position: absolute;
    top: 5px;
    right: 6px;
}

.newsletter-content form .submit input {
    line-height: 30px;
    height: 35px;
    padding: 0px 10px;
    font-size: 22px;
    background: var(--color-white);
    color: var(--color-secondary);
}

.social-link a i {
    display: inline-block;
    width: 45px;
    line-height: 45px;
    text-align: center;
    background: var(--color-secondary-hover);
    border-radius: 50%;
}

.social-link a:hover i {
    background: var(--color-primary);
    color: var(--color-white);
}

.social-link strong {
    line-height: 1.1;
    color: var(--color-primary);
}

footer nav ul {
    display: flex;
    gap: 1rem;
}
footer nav ul li a {
    color: var(--color-white);
}

footer nav ul li.menuactive a,
footer nav ul li a:hover {
    color: var(--color-primary);
}

footer nav ul li.parent ul {
    display: none;
}

footer hr {
    border-color: transparent;
    border-bottom-color: var(--color-gray);
}

footer a.bt-top:hover {
    background: var(--color-primary-hover);
}

footer a.bt-top {
    position: absolute;
    z-index: 99;
    bottom: -30px;
    right: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 5px solid var(--color-white);
    opacity: 1;
    visibility: visible;
    transition: .1s all ease;
}

footer a.bt-top.bottom-scroll {
    opacity: 1;
    visibility: visible;
}

footer a.bt-top i {
    font-size: 36px;
}

/* Sub page */

.content ul {
    list-style: circle;
    padding-left: 20px;
    margin-bottom: var(--padding);
}

.content ol {
    list-style: decimal;
    margin-bottom: var(--padding);
    left: 35px;
    position: relative;
}

/* Sub banner */
.heading-sub-page {
    position: relative;
    width: 100%;
    height: calc(50vh - 50px);
    padding: 50px 70px;
    padding-bottom: 0;
}

.heading-sub-page .sub-banner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--border-radius-max);
}

.heading-sub-page .sub-banner .banner {
    position: absolute;
    width: calc(100% - 140px);
    height: calc(100% - 50px);
    z-index: 0;
}

.heading-sub-page .sub-banner .filter {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.heading-sub-page .sub-banner .filter:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(80, 80, 80, .5) 0%, rgba(61, 72, 77, .9) 100%);
}

.heading-sub-page .sub-banner .filter:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 40%;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(61, 72, 77, 1) 0%, rgba(61, 72, 77, 0) 100%);
}

.heading-sub-page .sub-banner .bg-img-cover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center !important;
    background-size: cover !important;
}

.heading-sub-page .container {
    position: relative;
    height: 100%;
    padding-top: 105px;
    z-index: 5;
    color: var(--color-white);
}

/* Sidebar */

.sidebar {
    background: var(--color-secondary);
    border-radius: var(--border-radius-max);
    color: var(--color-white);
    padding: 40px;
}

.sidebar .title {
    border-bottom: 2px solid var(--color-primary);
    margin-bottom: 30px;
}

/* Breadcrumb */

.breadcrumbs-content {
    background: none;
    padding: 0;
    margin: 0;
    margin-top: 40px;
    padding-top: 5px;
    border-top: 1px solid #ddd !important;
    color: #333;
    font-size: 14px;
}

.breadcrumbs-content span:nth-child(2) {
    display: none !important;
}

.breadcrumbs-content span.breadcrumb {
    display: inline-block;
    margin-left: 10px;
    margin-right: 5px;
    margin-bottom: 0;
}

.breadcrumbs-content a.home-link {
    margin-right: 8px;
}

.breadcrumbs-content a.home-link i {
    font-size: 20px;
    line-height: 0;
    transform: translateY(4px);
}