@media (min-width: 991px) {
    body, html {
        font-size: .95vw;
    }
}

/* CSS */
a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

video.elementor-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

input,
optgroup,
select,
textarea {
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: inset 0.0625rem 0.0625rem 0.1875rem rgba(0, 0, 0, 0);
    -moz-box-shadow: inset 0.0625rem 0.0625rem 0.1875rem rgba(0, 0, 0, 0);
    box-shadow: inset 0.0625rem 0.0625rem 0.1875rem rgba(0, 0, 0, .0);
}

:root {
    --font-light: 'SVN-GothamLight';
    --font-bold: 'SVN-GothamBold';
    --font-black: 'SVN-GothamBlac';
    --font-normal: 'SVN-Gotham';
    --font-title-black: 'iCielDomaineTextBold';
    --font-title-bold: 'SVN-Moneta Bold';
    --font-title: 'SVN-Moneta';
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.3);
    background-color: #015c4b;
}

body::-webkit-scrollbar {
    width: 0.5rem;
    background-color: #FAAF18;
}

body::-webkit-scrollbar-thumb {
    background-color: #FAAF18;
}

body {
    font-family: var(--font-light);
    color: #1F2B1A;
    overflow-x: hidden;
    font-size: 0.9375rem;
    font-size: 0.9375rem;
    background: #FFFBEF;
}

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

.grid-container {
    max-width: 78.646rem;
}

.content {
    font-size: 0.833rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 0;
}

a, a:hover {
    text-decoration: none !important;
    transition: all 1s;

}

.content > *:last-child {
    margin: 0;
}

b,
strong {
    font-family: var(--font-bold);
}

.hero-slider .arrow_slider {
    transition: .5s all;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 9;
    transform: translateY(-50%);
    left: 8rem;
    cursor: pointer;
    opacity: 0;
}

.hero-slider .arrow_slider.next {
    left: unset;
    right: 8rem;
}

.hero-slider:hover .arrow_slider {
    opacity: 1;
}


h1,
h2,
h3 {
    font-family: var(--font-bold);
}


.text_white {
    color: white !important;
}

.text_justify {
    text-align: justify;
}

.text_center {
    text-align: center;
}

.text_up {
    text-transform: uppercase;
}

.fs14 {
    font-size: 0.875rem;
}

.fs15 {
    font-size: 0.9375rem;
}

.fs18 {
    font-size: 0.9375rem;
}

.style_center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.max {
    width: 100%;
    height: 100%;
    z-index: 9;
}

.display_flex {
    display: flex;
}

.display_flex_wrap {
    display: flex;
    flex-wrap: wrap;
}

.css_bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.content ul {
    list-style: disc;
    margin-left: 1.25rem;
}

.section {
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.arrow.prev {
    transform: rotate(180deg);
}

.swiper-slide img {
    display: block;
}

.hero-slider {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
}

.hero-slider .swiper-slide {
    overflow: hidden;
    color: #fff;
}

.hero-slider .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-slider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

/*--------------------------------------------------------------
    #hero-style
--------------------------------------------------------------*/
.hero-style {
    height: 100vh;
}

section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.home_sec1:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    background-image: url(../images/home_bf_sec_1.png);
    content: '';
    z-index: 8;
    pointer-events: none;
    height: 9.5rem;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

/* waves */
.ocean {
    height: 5rem; /* change the height of the waves here */
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-x: hidden;
}

.wave {
    background: url(../images/wage.svg);
    position: absolute;
    width: 200%;
    height: 100%;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 1;
    pointer-events: none;
    z-index: 9;
}

.wave:nth-of-type(2) {
    bottom: 0;
    animation: wave 25s linear reverse infinite;
    opacity: 0.5;
}

.wave:nth-of-type(3) {
    bottom: 0;
    animation: wave 20s -1s linear infinite;
    opacity: 0.5;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(-50%);
    }
}

img.style_background {
    width: 100%;
    height: calc(100% + 0.125rem);
    object-fit: cover;
    position: absolute;
    top: -0.0625rem;
}

.grid-container {
    position: relative;
}

.heading_h2 {
    text-transform: uppercase;
    background: linear-gradient(270deg, #DFB46F 31.03%, #FFD89B 50.35%, #DFB46F 73.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0rem 0.25rem 0.25rem rgba(1, 74, 69, 0.2);
    line-height: normal;
    font-family: var(--font-title-black);
    font-size: 3rem;
    margin-bottom: 1.042rem;
}

a.button_style {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    color: #F5D7A7;
    font-family: var(--font-title-black);
    text-transform: uppercase;
    opacity: 1;
    transition: .3s all;
    transform: scale(1);
}

a.button_style:hover {
    opacity: .8;
    transform: scale(.9);
}

a.button_style svg {
    margin-left: 0.9375rem;
    display: block;
}

section.home_sec2 .content {
    max-width: 48.75rem;
    margin: 0 auto 1.875rem;
}


.utilities-wrap {
    width: 100%;
    margin: 0 auto;
    height: 100%
}

.utilities-list {
    position: absolute;
    top: 50%;
    left: -7.8125rem;
    transform: translateY(-50%);
    z-index: 2;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease
}

.utilities-circle {
    position: relative;
    width: 34.375rem;
    height: 34.375rem;
    border-radius: 100%;
    z-index: 2
}

.utilities-spin {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 555;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.utilities-list-item {
    width: 100%;
    height: 100%
}

.utilities-list-item ul {
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease
}

.utilities-list-item ul {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease
}

.utilities-list-item ul li {
    width: 20.625rem;
    height: 20.625rem;
    list-style: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease
}

.icon-utilitis-wrap {
    position: relative
}

.utilities-list-item ul li a {
    z-index: 2;
    display: block;
    background: transparent !important;
}

/*.icon-utilitis-wrap .icon-utilitis{*/
/*    background: transparent !important;*/
/*}*/

.icon-utilitis-wrap .active .icon-utilitis .icon-active {
    display: block
}

.icon-utilitis-wrap .active .icon-utilitis .icon-normal {
    display: none
}

.icon-utilitis-wrap .icon-utilitis .icon-active {
    display: none
}

.icon-utilitis {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 100%;
    text-align: center;
    position: relative;
    left: 0;
    top: 0;
    -webkit-transform: translate(-100%, -100%);
    -moz-transform: translate(-100%, -100%);
    -ms-transform: translate(-100%, -100%);
    -o-transform: translate(-100%, -100%);
    transform: translate(-100%, -100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s all
}

.icon-utilitis-wrap .active .icon-utilitis {
    box-shadow: 0 0 1.5rem #e5d3b2;
    border-radius: 11.25rem;
    width: 3.75rem;
    height: 3.75rem
}

.utilities-list-item ul li img {
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease
}

.icon-utilitis-wrap .icon-utilitis:after {
    content: "";
    width: 4.6875rem;
    height: 4.6875rem;
    border-radius: 100%;
    border: 0.0625rem solid #f1f1f1;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease
}

.ulilities-bg {
    bottom: 0;
    right: 0;
    z-index: 2;
    overflow: hidden
}

.group-central .banner-slideshow {
    width: 100%
}

#phan-khu img[usemap] {
    border: 0;
    height: auto;
    max-width: 100%;
    width: auto
}

.ulilities-bg img {
    display: block;
    width: 100%;
    object-fit: cover
}

.ulilities-content {
    position: absolute;
    bottom: 15%;
    z-index: 10;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center
}

.utilities-wrap:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 30%;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, #003a7a 0, rgba(0, 58, 122, 0) 100%);
    transform: rotate(180deg)
}

.utiliti-content-wrap {
    display: none
}

.box-nav li a:hover {
    text-decoration: none
}

.utiliti-content-active {
    display: block
}

.decription-for-utilities-wrap {
    width: 50%;
    margin: 0 auto
}

.about_sec_2 .content {
    max-height: 31.25rem;
    overflow: auto;
    color: white;
    padding-right: 3.125rem;
}

.bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.about_sec_2 .content::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

.about_sec_2 .content::-webkit-scrollbar {
    width: 0.375rem;
    background-color: #F9DBAC;
}

.about_sec_2 .content::-webkit-scrollbar-thumb {
    background-color: #F9DBAC;
}

.about_sec_2 h1.heading_h2 {
    z-index: 9;
    position: relative;
}

.about_sec_2 .bg {
    background-position: bottom center;
}

.about_sec_2 img {
    margin-top: -9.375rem;
    display: block;
}

.about_sec_2 .fp-tableCell {
    vertical-align: bottom;
}

.swiper-pagination {
    position: absolute;
    z-index: 99;
    content: '';
    bottom: 6.875rem !important;
    left: 50%;
    transform: translateX(-50%);
}

.swiper-pagination span {
    width: 3.125rem;
    height: 0.1875rem;
    background: #D9D9D9;
    opacity: 0.4;
    border-radius: 6.25rem;
}

.swiper-pagination span.swiper-pagination-bullet-active {
    opacity: 1;
    background: #FED699;
}

.about_sec_3 .inner {
    display: inline-block;
    position: relative;
}

.about_sec_3 .box_tab {
    text-align: center;
}

.about_sec_3 .inner li {
    position: absolute;
    left: 10%;
}

.about_sec_3 .inner .wrap_content {
    position: absolute;
    max-width: 29.375rem;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    top: 11.25rem;
}

.about_sec_3 .inner li a {
    display: flex;
    align-items: center;
    text-align: right;
    color: white;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.about_sec_3 .inner li a .box_content > * {
    display: block;
}

.about_sec_3 .inner li a .content {
    color: white;
}

.about_sec_3 .inner li a span.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 10.25rem;
    height: 10.25rem;
    border: 0.0625rem solid rgb(223 180 111 / 20%);
    position: relative;
    flex: 0 0 auto;
}

li {
}

.about_sec_3 .inner li a .box_content * {
    width: max-content;
    margin-left: auto;
}

/*.about_sec_3 .inner li a span.icon:before {*/
/*    background: linear-gradient(180deg, rgba(223, 180, 111, 0.2) 28.73%, rgba(223, 180, 111, 0) 100%);*/
/*    width: 8rem;*/
/*    height: 8rem;*/
/*    content: '';*/
/*    border-radius: 50%;*/
/*    display: inline-block;*/
/*    position: absolute;*/
/*    animation: pulse-border 1000ms ease-out infinite;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*}*/

.about_sec_3 .inner li a span.icon:after {
    background: radial-gradient(37.77% 37.77% at 50.53% 50.53%, #F9D193 23.44%, #DFB46F 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
    content: '';
    width: 5.875rem;
    height: 5.875rem;
    position: absolute;
    border-radius: 50%;
}

.about_sec_3 .inner li a span.icon img {
    position: relative;
    z-index: 99;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2);
        opacity: 0;
    }
}

.about_sec_3 .inner li span.box_content > b {
    font-family: var(--font-title);
    font-size: 1.823rem;
    font-weight: 400;
    line-height: 1;
}

.about_sec_3 .inner li span.box_content > b b {
    font-family: var(--font-title-black);
    font-weight: 700;
}

.about_sec_3 .inner li a span.box_content {
    margin-right: 1.875rem;
}

.about_sec_3 .inner li:nth-child(2) {
    top: 26%;
    left: 30%;
}

.about_sec_3 .inner li:nth-child(3) .box_content {
    margin: 0 0 1.25rem;
}

.about_sec_3 .inner li:nth-child(3) a {
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    bottom: 0;
    top: unset;
    transform: unset;
}

.about_sec_3 .inner li:nth-child(3) {
    top: 34%;
    left: 50%;
}

.about_sec_3 .inner li:nth-child(3) a .box_content * {
    margin: auto;
}

.about_sec_3 .inner li:nth-child(4), .about_sec_3 .inner li:nth-child(5) {
}

.about_sec_3 .inner li:nth-child(4) a .box_content, .about_sec_3 .inner li:nth-child(5) a .box_content {
    order: 2;
    margin: 0 0 0 1.875rem;
    text-align: left;
}

.about_sec_3 .inner li:nth-child(4) {
    left: 88%;
    top: 32%;
}

.about_sec_3 .inner li:nth-child(4) a .box_content *, .about_sec_3 .inner li:nth-child(5) a .box_content * {
    margin: unset;
}

.about_sec_3 .inner li:nth-child(4) a, .about_sec_3 .inner li:nth-child(5) a {
    right: unset;
    left: 0;
}

.about_sec_3 .inner li:nth-child(4) {
    top: 26%;
    left: 70%;
}

.about_sec_3 .inner li:nth-child(5) {
    top: 95%;
    left: 90%;
}

.swiper-pagination span {
    margin: 0 0.3125rem;
}

.item_popup {
    max-width: 54.6875rem;
    background: linear-gradient(0deg, #00634B 1.18%, rgba(0, 87, 69, 0.63) 71.18%, rgba(0, 77, 63, 0) 100%);
    padding: 5.625rem;
}

.item_popup * {
    color: white;
}

.item_popup h3, .item_popup h3 b {
    margin: 0;
    font-family: var(--font-title-bold);
}

.item_popup span {
    font-size: 0.833rem;
    display: block;
    margin-bottom: 1.1875rem;
}

.item_popup .content {
    font-size: 0.875rem;
    max-height: 15.625rem;
    overflow: auto;
    padding-right: 1.875rem;
    text-align: justify;
}

.item_popup .content::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
    border-radius: 6.25rem;
    background: transparent;
    border: 0.0625rem solid rgba(101, 255, 218, 0.3);

}

.item_popup .content::-webkit-scrollbar {
    width: 0.25rem;
    background: rgba(101, 255, 218, 0.4);
    border-radius: 6.25rem;
}

.item_popup .content::-webkit-scrollbar-thumb {
    background: rgba(101, 255, 218, 0.4);
    border-radius: 6.25rem;;
}

/*.fancybox-bg {*/
/*    background: #000000;*/
/*    opacity: 0.8;*/
/*}*/

.fancybox-close-small {
    background: transparent !important;
}

.about_sec_4 .bg:before, .about_sec_5 .bg:before, .recruitment_sec_2 .bg:before, .home_sec5 .bg:before,
.home_sec7 .bg:before, .home_sec_9 .bg:before, .footer_page .bg:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-image: url(../images/bg_sec_4_ab.png);
    content: '';
    background-size: cover;
}

.footer_page .bg:before {
    background-image: url(../images/bf_contact.png);
}

.recruitment_sec_2 .bg:before {
    background-image: url(../images/td_sec_2_bf.png);
}

.home_sec7 .bg:before {
    background-image: url(../images/bf_tien_ich.png);
}

.home_sec5 .bg:before {
    background-image: url(../images/nen_view_360.png);
}

.about_sec_4 .fp-tableCell {
    vertical-align: bottom;
}

.about_sec_4 .box_content {
    display: flex;
    align-items: center;
    padding-bottom: 10.9375rem;
}

.about_sec_4 .box_content a.play {
    background: linear-gradient(146.79deg, #DFB46F 16.21%, #FFE5BB 50.86%, #DFB46F 86.73%);
    border: 0.0625rem solid #DFB46F;
    width: 5.625rem;
    height: 5.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 0;
    position: relative;
    margin-right: 7.8125rem;
}

.about_sec_4 .box_content a.play:before, .about_sec_4 .box_content a.play:after {
    width: 9.5625rem;
    height: 9.5625rem;
    background: linear-gradient(180deg, rgba(0, 106, 82, 0.9) 0%, rgba(2, 69, 71, 0.9) 100%);
    opacity: 0.5;
    position: absolute;
    content: '';
    border-radius: 50%;
    z-index: -1;
    animation: pulse-border 1200ms ease-out infinite;
    top: 50%;
    left: 50%;
}

.about_sec_4 .box_content a.play:after {
    background: linear-gradient(180deg, rgba(0, 106, 82, 0.5) 0%, rgba(2, 69, 71, 0.5) 100%);
    opacity: 0.5;
    width: 13.375rem;
    height: 13.375rem;
    animation: pulse-border 1200ms ease-out infinite;
}

.about_sec_4 .box_content h3 {
    margin: 0;
    font-family: var(--font-title-black);
    font-size: 3.125rem;
}

.about_sec_4 .box_content h2 {
    margin: 0;
}

.about_sec_5 .box_content {
    max-width: 58.125rem;
    margin: auto;
    position: relative;
}

.about_sec_5 .box_content:before {
    background: radial-gradient(50% 50% at 50% 50%, #014336 0%, #022427 100%);
    mix-blend-mode: multiply;
    opacity: 0.6;
    filter: blur(6.25rem);
    height: 150%;
    width: 100%;
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.about_sec_5 .box_content > * {
    position: relative;
}

.about_sec_5 .box_content .content {
    font-size: 1.5625rem;
}

.about_sec_5 .box_content .content svg {
    display: block;
    margin: 2.8125rem auto 0;
}

.wrap_slider {
    position: relative;
}

.wrap_slider .arrow_slider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -6.25rem;
    z-index: 9;
}

.wrap_slider .arrow_slider.next {
    left: unset;
    right: -6.25rem;
}

.slider_history .box_img {
    opacity: 0;
    transition: .5s all;
    display: flex;
    justify-content: center;
    margin-bottom: 3.75rem;
    position: relative;
}

.slider_history .swiper-slide-active .box_img {
    opacity: 1;
}

.slider_history .box_img img {
    height: 25.0625rem;
    max-width: 59.375rem;
    border-radius: 1.875rem 1.875rem 0rem 0rem;
    display: block;
}

.slider_history .item {
    text-align: center;
}

.slider_history .item .box_content {
    opacity: 0;
    transition: .5s all;
    justify-content: center;
    margin-top: 2.8125rem;
}

.slider_history .swiper-slide-active .item .box_content {
    opacity: 1;
    color: white;
}

.slider_history .swiper-slide-active .item .box_content * {
    color: white;
}

.slider_history .swiper-slide-active .item .box_content .inner {
    margin: 0 -7.5rem;
}

.slider_history .swiper-slide-active .item .box_content .inner h3 {
    margin: 0;
    font-family: var(--font-title-black);
    font-size: 1.875rem;
    margin-bottom: 0.625rem;
}

.slider_history .item .year {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    border-radius: 50%;
    border: 0.0625rem solid transparent;
    position: relative;
    align-items: center;
    justify-content: center;
    transition: .3s all;
    z-index: 9;
}

.slider_history .item .year:before {
    width: 0.875rem;
    height: 0.875rem;
    background: #DFB46F;
    content: '';
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    transition: .5s all;
}

.slider_history .swiper-slide-active .item .year:before {
    width: 1.5rem;
    height: 1.5rem;
}

.slider_history .swiper-slide-active .item .year {
    border-color: #DFB46F;
}

.slider_history .swiper-slide {
    opacity: 0.5;
    transition: .5s all;

}

.slider_history .swiper-slide-active,
.slider_history .swiper-slide.swiper-slide-prev,
.slider_history .swiper-slide.swiper-slide-next {
    opacity: 1;
}

.slider_history .item .year .title {
    font-family: var(--font-title-bold);
    text-shadow: 0rem 0.25rem 0.25rem rgba(1, 74, 69, 0.2);
    font-size: 1.5625rem;
    position: absolute;
    top: 0;
    transform: translateY(-100%);
    text-transform: uppercase;
    background: linear-gradient(270deg, #DFB46F 31.03%, #FFD89B 50.35%, #DFB46F 73.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    transition: .5s all;
}

.slider_history .swiper-slide-active .year .title {
    transform: translateY(-100%) scale(2.5);
    top: -3.125rem;
}

.slider_history:before {
    height: 0.0625rem;
    background-image: linear-gradient(to right, rgba(196, 150, 12, 0) 0%, #dcc06d 14%, #dcc06d 86%, rgba(196, 150, 12, 0) 100%);
    content: '';
    width: 100%;
    position: absolute;
    top: 30.375rem;
    opacity: .5;
}

.about_sec_6 .arrow_slider {
    top: 12.5rem;
    left: 0;
}

.about_sec_6 .arrow_slider.next {
    right: 0;
}


.slider_history .box_img:before {
    width: 59.375rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 18.75rem;
    content: '';
    pointer-events: none;
    background: linear-gradient(180deg, #006f5400 0%, #00484896 57.2%, #004437 100%);
    opacity: .8;
}

.about_sec_6 .fp-tableCell {
    vertical-align: bottom;
}

.about_sec_7 .content {
    color: white;
    font-size: 0.9375rem;
}

.about_sec_7 .heading_h2 {
    margin-bottom: 0.625rem;
}

.slider_team {
    padding: 4.375rem 0;
}

.slider_team .box_img img {
    width: auto;
    height: 13.875rem;
    margin: 0 auto 1.25rem;
}

.about_sec_7 .wrap_slider {
    max-width: 75rem;
    margin: auto;
}

.slider_team h3 {
    font-family: var(--font-title-bold);
    color: #DFB46F;
    text-shadow: 0rem 0.25rem 0.25rem rgba(1, 74, 69, 0.2);
    margin: 0 0 0.3125rem;
}

.slider_team .content {
    font-size: 0.875rem;
}

.slider_team .swiper-slide {
    transform: scale(1);
    transition: .5s all;
}

.slider_team .swiper-slide.swiper-slide-active {
    transform: scale(1.2);
}

.wrap_slider .arrow_slider {
    cursor: pointer;
    opacity: 1;
    transition: .3s all;
}

.wrap_slider .arrow_slider:hover {
    opacity: .5;
    transition: .3s all;
}

.about_sec_8 .wrap_slider {
    max-width: 78.125rem;
    margin: auto;
}

.slider_partner .item {
    height: 7.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about_sec_8 .swiper-pagination {
    position: unset;
    transform: unset;
    margin-top: 2.5rem;
}

.about_sec_8 .wrap_slider {
    max-width: 78.125rem;
    margin: auto;
}

.slider_partner .item {
    height: 7.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about_sec_8 .swiper-pagination {
    position: unset;
    transform: unset;
    margin-top: 2.5rem;
}

.about_sec_8 .bg:before {
    height: 19.1875rem;
    width: 100%;
    content: '';
    position: absolute;
    background-image: url(../images/bg_section_partner.png);
    bottom: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}

.about_sec_9 .content {
    margin-bottom: 3.4375rem;
    color: white;
}

.slider_gt .item {
    border: 0.0625rem solid #DFB46F;
    padding: 1.8125rem 0.9375rem 4.6875rem;
    border-bottom: 0;
}

.slider_gt .item:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 4.1875rem;
    background-image: url(../images/line_boder.png);
    bottom: -0.3125rem;
    left: 0;
    right: 0;
    background-size: 100% 100%;
}

.slider_gt .item .box_img {
    height: 7.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 1.823rem;
    position: relative;
    margin-bottom: 1.823rem;
}

.slider_gt .swiper-wrapper {
    display: grid;
    grid-auto-flow: column;
}

.slider_gt .swiper-wrapper > *, .slider_gt .swiper-wrapper > * > * {
    height: 100%;
    box-sizing: border-box;
}

.slider_gt .item .box_img:before {
    background-image: linear-gradient(to right, rgba(196, 150, 12, 0) 0%, #dcc06d 50%, #dcc06d 50%, rgba(196, 150, 12, 0) 100%);
    content: "";
    position: absolute;
    bottom: 0;
    width: 90%;
    height: 0.125rem;
}

.slider_gt .item h3 {
    color: white;
    font-size: 0.833rem;
    margin-bottom: 0.3125rem;
}

.slider_gt .item .box_content * {
    line-height: 1.5;
    margin: 0;
}

.about_sec_9 .wrap_slider {
    max-width: 65.625rem;
    margin: auto;
}

.about_sec_9 .arrow_slider {
    left: -8.75rem;
}

.about_sec_9 .arrow_slider.next {
    right: -8.75rem;
}

.slider_gt .item {
    border-radius: 0.375rem 0.375rem 0 0;
    border: 0.125rem solid #DFB46F;
    border-bottom: none;
}

.slider_gt {
    padding-bottom: 0.625rem;
}

.about_sec_9 h2.heading_h2 {
    margin-bottom: 0;
}

.news_page {
    background-image: url(../images/bg_post.jpg);
    /*background-size: cover;*/
    background-attachment: fixed;
    background-position: top center;
}

.news_page {
    background-repeat: repeat;
    background-size: auto;
}

.news_page:before {
    background: linear-gradient(180deg, #00634B 0%, rgba(0, 100, 78, 0.694066) 51.74%, rgba(0, 77, 63, 0.01) 100%);
    height: 23.75rem;
    content: '';
    position: absolute;
    width: 100%;
    top: 0;
}

.news_page:after {
    background: linear-gradient(360deg, #002323 0%, rgba(0, 35, 35, 0.849829) 34.67%, rgba(0, 35, 35, 0.587825) 63.1%, rgba(0, 35, 35, 0) 100%);
    height: 100%;
    width: 100%;
    content: '';
    position: absolute;
    bottom: 0;
}

.wrap_post_top {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.item_post {
    position: relative;
    padding: 0.9375rem;
    z-index: 0;
    box-sizing: border-box;
    border-radius: 1.25rem;
    overflow: hidden;
}

.item_post .box_img {
    height: 12.0625rem;
    border-radius: 1.25rem;
    overflow: hidden;
    width: 100%;
}

.item_post .box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_page .grid-container {
    z-index: 2;
}

.item_post .box_content {
    padding: 0 0.9375rem;
}

.item_post .box_content .date {
    color: white;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.625rem;
}

.item_post .box_content h3 {
    font-family: var(--font-title-black);
    font-size: 1.875rem;
    color: white;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    height: 4.5rem;
}

.item_post .box_content .content {
    color: white !important;
    font-size: 0.875rem;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    height: 4.375rem;
    margin-bottom: 1.875rem;
}

.item_post:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #DFB46F 0%, rgba(223, 180, 111, 0) 82.99%);
    z-index: -1;
    left: 0;
    bottom: 0;
    opacity: 0;
    transition: .3s all;
    border-radius: 1.25rem;
}

.item_post:hover:before {
    opacity: .7;
}

.item_post .box_content * {
    transition: .3s all;
}

.item_post:hover .box_content * {
    color: #F9DBAC;
}

.wrap_post {
    display: flex;
    flex-wrap: wrap;
}

.wrap_post .item_post {
    width: 25%;
}

.news_page {
    padding: 11.25rem 0 5.625rem;
}

.news_page h1.heading_h2 {
    text-align: center;
}

ul.list_terms {
    display: flex;
    justify-content: center;
    margin-bottom: 3.75rem;
}

ul.list_terms a {
    height: 3rem;
    border: 0.0625rem solid #FFFFFF;
    border-radius: 6.25rem;
    color: white;
    font-family: var(--font-title-bold);
    font-size: 1.375rem;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 3.125rem;
    min-width: 13.125rem;
    justify-content: center;
    margin: 1.25rem 0.8125rem 0;
    transition: .3s all;
}

ul.list_terms a:hover, ul.list_terms a.active {
    color: #F9DBAC;
    border-color: #F9DBAC;
}

.wrap_post_top .item_post:nth-child(1) {
    display: flex;
    width: 65%;
    flex-wrap: wrap;
}

.wrap_post_top .item_post:nth-child(2) {
    width: 35%;
}

.wrap_post_top .item_post:nth-child(1) .box_content {
    order: 2;
    margin-top: 1.823rem;
}

.wrap_post_top .item_post:nth-child(1) .box_content .content {
    margin: 0;
}

.wrap_post_top .item_post:nth-child(1):before {
    background: linear-gradient(180deg, #DFB46F 0%, rgba(223, 180, 111, 0) 100%);
}

.wrap_post_top .item_post:nth-child(1) .box_img {
    height: 22.3125rem;
}

.wrap_post_top .item_post:nth-child(1) h3 {
    height: auto;
}

.wrap_post .item_post a:before, .wrap_post .item_post a:after {
    content: '';
    background: linear-gradient(0deg, #ffffff 0%, rgba(223, 180, 111, 0) 82.99%);
    width: 0.0625rem;
    height: 120%;
    bottom: 0;
    left: 0;
    position: absolute;
    opacity: .2;
}

.wrap_post .item_post a:after {
    left: unset;
    right: 0;
}

.item_post a {
    opacity: 1;
    transition: .3s all;
}

.item_post:hover a {
    opacity: 0;
}

.wrap_post .item_post a:before {
    opacity: 0;
}

.wrap_post .item_post:nth-child(4n + 1) a:before {
    opacity: .2;
}

.banner_post .wrap_img {
    display: flex;
    justify-content: center;
}

.banner_post .wrap_img img {
    max-width: unset;
}

.banner_post .text_center {
    position: absolute;
    z-index: 99;
    top: 10.625rem;
    left: 50%;
    transform: translateX(-50%);
}

.banner_post .grid-container {
    position: unset;
}

.banner_post h2 {
    text-transform: uppercase;
    background: linear-gradient(270deg, #DFB46F 31.03%, #FFD89B 50.35%, #DFB46F 73.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-family: var(--font-title-black) !important;
    font-size: 4.0625rem;
    margin: 0;
}

.banner_post .content {
    color: white;
    font-size: 0.9375rem;
}

.single-post section:not(.contact_sec_1) .heading_h2 {
    color: #00634B;
    background: transparent !important;
    background: linear-gradient(270deg, #DFB46F 31.03%, #FFD89B 50.35%, #DFB46F 73.3%);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    max-width: 56.25rem;
    margin: auto;
}

.term {
    font-size: 1.5625rem;
    font-family: var(--font-title);
    color: #00634B;
    display: block;
    margin-bottom: 0.6875rem;
}

.post_details h1.heading_h2 {
    margin-bottom: 0.9375rem;
}

.post_details .wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 1.875rem;
    border-bottom: 0.0625rem solid rgba(51, 51, 51, 0.1);
    margin-bottom: 1.875rem;
}

.post_details .wrap * {
    font-size: 0.875rem;
    color: #666666;
}

.post_details .wrap .date_post {
    display: flex;
    align-items: center;
    margin-right: 3.75rem;
}

.post_details .wrap .date_post svg {
    margin-right: 0.625rem;
}

.post_details .wrap .share {
    position: relative;
    display: flex;
    font-style: initial;
}

/*.post_details .wrap .share:before {*/
/*    content: 'Chia sáº½';*/
/*    margin-right: 1.25rem;*/
/*}*/

.post_details .wrap .share a {
    margin-right: 0.625rem;
}

.post_details .grid-container {
    max-width: 87.5rem;
}

.content_post {
    text-align: justify;
    color: #333333;
    font-size: 0.833rem;
}

.single-post {
    background: white !important;
}

.content_post h1 {
    font-size: 1.75rem;
}

.content_post h2 {
    font-size: 1.5625rem;
}

.content_post h3 {
    font-size: 1.375rem;
}

.content_post h4 {
    font-size: 1.1875rem;
}

.content_post h5 {
    font-size: 1.0625rem;
}

.content_post strong {
}

.post_related {
    background: rgba(0, 99, 75, 0.05);
    padding-top: 3.375rem;
}

.post_related span.sub_title {
    font-family: var(--font-title);
    font-size: 1.5625rem;
    color: #00634B;
    display: block;
    margin-bottom: 0.625rem;
}

.post_related .wrap_post .item_post {
    width: 100%;
}

.post_related .wrap_post .item_post * {
    color: #333333 !important;
}

.post_related .wrap_post .item_post:hover * {
    color: #00634B !important;
}

.post_related .wrap_post .item_post a:before, .post_related .wrap_post .item_post a:after {
    background: linear-gradient(0deg, #555555 0%, rgba(223, 180, 111, 0) 82.99%);
}

.post_related h2.heading_h2 {
    margin-bottom: 3.125rem;
}

.post_related {
    padding-bottom: 4.375rem;
}

.slider_post .swiper-pagination {
    position: unset;
    transform: unset;
}

.slider_post .swiper-pagination span {
    width: 0.9375rem;
    height: 0.125rem;
    background: rgba(0, 99, 75, 0.4);
}

.post_details {
    padding-bottom: 4.375rem;
}

.image_page,
.video_page {
    background-image: url(../images/bg_gallery.jpg);
}

.image_page {
    padding-top: 11.875rem;
    padding-bottom: 6.25rem;
}

.item_gallery {
    position: relative;
    width: calc(calc(100% / 3) - 2.375rem);
    margin: 0 1.1875rem 1.875rem;
}

.item_gallery_top {
    display: flex;
    position: relative;
    align-items: center;
    margin-bottom: 3.75rem;
}

.image_page .wrap {
    display: flex;
    justify-content: space-between;
}

.image_page h1.heading_h2 {
    flex: 0 0 auto;
}

.image_page .wrap ul.list_terms {
    flex-wrap: wrap;
    margin-top: -0.625rem;
    margin-left: 1.875rem;
}

.grid-container {
    max-width: 73.4375rem;
}

.image_page .wrap ul.list_terms a {
    min-width: unset;
}

.item_gallery_top .box_img {
    width: 65%;
    height: 37rem;
    transform: translateX(0rem);
    transition: .5s all;
}

.item_gallery_top .box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.25rem 6.25rem 1.25rem 1.25rem;
}

.item_gallery_top .box_content {
    background: linear-gradient(55.11deg, rgb(0 53 57 / 50%) 16.95%, rgb(0 75 57 / 50%) 84.84%);
    border: 0.0625rem solid rgb(249 219 172 / 50%);
    border-left: none;
    padding: 3.125rem 3.375rem 3.125rem 3.75rem;
    width: 35%;
    border-radius: 0 1.25rem 1.25rem 0;
}

.item_gallery_top .box_content span {
    font-size: 0.833rem;
    background: linear-gradient(270deg, #FDD698 21.06%, #DFB46F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.875rem;
    font-family: var(--font-bold);
}

.item_gallery_top .box_content h3 {
    font-family: var(--font-title-black);
    color: #FFFFFF;
    font-size: 1.823rem;
}

.item_gallery_top .box_content .view {
    display: inline-flex;
    align-items: center;
    color: #F5D7A7;
    font-size: 1.25rem;
    font-family: var(--font-title-black);
    text-transform: uppercase;
    margin-top: 1.25rem;
}

.item_gallery_top .box_content .view svg {
    margin-left: 1.25rem;
}

.item_gallery_top:hover .box_img {
    transform: translateX(1.875rem);
}

.wrap_gallery {
    display: flex;
    flex-wrap: wrap;
}

.item_gallery .box_img {
    height: 15.417rem;
    overflow: hidden;
    border-radius: 1.25rem;
    margin-bottom: 1.5625rem;
}

.item_gallery .box_img img {
    height: 100%;
    width: calc(100% + 0.625rem);
    transition: .3s all;
    object-fit: cover;
    max-width: unset;
    transform: translateX(-0.625rem);
}

.item_gallery:hover .box_img img {
    transform: translateX(0rem);
}

.item_gallery h3 {
    display: flex;
    font-family: var(--font-title-black);
    font-size: 1.2rem;
    color: #FFFFFF;
    justify-content: space-between;
    padding: 0 0.9375rem;
}

.item_gallery h3 svg {
    margin-left: 0.625rem;
    flex: 0 0 auto;
}

.popup_gallery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
    opacity: 0;
    pointer-events: none;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup_gallery h3 {
    font-family: var(--font-title-black);
    font-size: 1.823rem;
    color: white;
}

div#load_gallery {
    max-width: 62.5rem;
    margin: auto;
    position: relative;
    z-index: 3;
    transition: .3s all;

}

.popup_gallery.active {
    opacity: 1;
    pointer-events: unset;
}

.bg_close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.gelery_for img {
    max-height: 60vh;
    width: auto;
    margin: auto;
    border-radius: 1.25rem;
}

.wrap_thu {
    position: relative;
    margin-bottom: 0.625rem;
}

.wrap_slide_vertical {
    margin: 0 6.25rem;
}

.wrap_slide_vertical .item {
    height: 5.729rem;
    border-radius: 0.3125rem;
    overflow: hidden;
    border: 0.0625rem solid transparent;
    cursor: pointer;
}

.wrap_slide_vertical .item img {
    height: 100%;
    object-fit: cover;
}

.wrap_thu .arrow_slider {
    left: -8.125rem;
}

.wrap_thu .arrow_slider.next {
    right: -8.125rem;
}

.swiper-slide.swiper-slide-thumb-active .item {
    border: 0.0625rem solid #DFB46F;
}

.video_page {
    padding: 11.875rem 0 6.25rem;
}

.slider_video {
    padding: 6.25rem 21.875rem;
    margin-bottom: 5rem;
}

.slider_video .box_img {
    height: 18rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    margin-bottom: 0.9375rem;
}

.slider_video .box_img img {
    height: 100%;
    object-fit: cover;
    border-radius: 1.25rem;
}

.slider_video .box_img .icon_play {
    width: 6.125rem;
    height: 6.125rem;
    border: 0.0625rem solid #f9dcad;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: .4s all;
}

.slider_video .swiper-slide {
    transform: scale(1);
    transition: .4s all;
    opacity: .5;
}

.slider_video .swiper-slide.swiper-slide-active {
    transform: scale(1.3);
    z-index: 9;
    opacity: 1;
}

.slider_video h3 {
    font-family: var(--font-title-black);
    color: white;
    font-size: 1.2rem;
    margin: 0 1.25rem;
    opacity: 0;
    transition: .3s all;
}

.slider_video .swiper-slide.swiper-slide-active .icon_play {
    opacity: 1;
    z-index: 2;
}

.slider_video .box_img > img {
    opacity: .7;
}

.slider_video .swiper-slide.swiper-slide-active h3 {
    opacity: 1;
}

.video_page .arrow_slider {
    top: 17.8125rem;
    left: 3.125rem;
}

.video_page .arrow_slider.next {
    right: 3.125rem;
}

.page-template-recruitment .content {
    color: white;
}

.recruitment_sec_1 .text_center {
    max-width: 47.9375rem;
    margin: auto;
}

.recruitment_sec_1 .text_center .content {
    font-size: 0.9375rem;
}

.recruitment_sec_2 h2.heading_h2 {
    width: max-content;
    margin-top: 1.25rem;
}

.recruitment_sec_2
.content {
    font-size: 0.9375rem;
    padding-right: 3.125rem;
    text-align: justify;
}

.recruitment_sec_2 .grid-50 > img {
    max-width: calc(100% + calc(calc(100vw - 77.865rem) / 2));
    display: block;
    margin-left: 2.875rem;
}

ul.table_td {
    max-height: 28.75rem;
    overflow: auto;
    padding-right: 1.875rem;
}

ul.table_td::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
    border-radius: 6.25rem;
    background: transparent;
    border: 0.0625rem solid rgba(101, 255, 218, 0.3);

}

ul.table_td::-webkit-scrollbar {
    width: 0.25rem;
    background: rgba(101, 255, 218, 0.4);
    border-radius: 6.25rem;
}

ul.table_td::-webkit-scrollbar-thumb {
    background: rgba(101, 255, 218, 0.4);
    border-radius: 6.25rem;;
}

ul.table_td li {
    display: flex;
}

ul.table_td li .vi_tri, ul.table_td li .thoi_han {
    width: 21%;
    flex: 0 0 auto;
}

ul.table_td li .dia_diem {
    width: 18%;
}

ul.table_td li .phong_ban, ul.table_td li .song_luong {
    width: 16%;
}

ul.table_td li .ung_tuyen {
    width: 18%;
}


ul.table_td li * {
    color: white;
    font-size: 0.833rem;
}

ul.table_td li.wrap_title {
    border-bottom: 0.0625rem solid rgba(101, 255, 218, 0.3);
}

ul.table_td li > *:not(:last-child) {
    border-right: 0.0625rem solid rgba(101, 255, 218, 0.3);
}

ul.table_td li > * {
}

ul.table_td li > * {
    padding: 0.8125rem 0.625rem;
}

ul.table_td li .song_luong, ul.table_td li .ung_tuyen {
    text-align: center;
}

ul.table_td li .phong_ban {
    padding: 0.9375rem 1.875rem;
}

ul.table_td li .thoi_han, ul.table_td li .dia_diem {
    padding: 0.9375rem 1.875rem;
}

ul.table_td li .vi_tri {
    padding-left: 0;
}

a.button_ut {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #DFB46F !important;
    height: 3rem;
    border-radius: 6.25rem;
    border: 0.0625rem solid #DFB46F;
    padding: 0 1.25rem;
    position: relative;
    overflow: hidden;
    z-index: 0;
    font-family: var(--font-title-black);
    font-size: 1.375rem !important;
}

a.button_ut span {
    color: #DFB46F !important;
    transition: .3s all;
    font-size: 1.375rem;
}

a.button_ut:before {
    background: linear-gradient(270deg, #DFB46F 31.03%, #FFD89B 50.35%, #DFB46F 73.3%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    opacity: 0;
    transition: .3s all;
}

a.button_ut:hover span {
    color: #004B39 !important;
}

a.button_ut:hover:before {
    opacity: 1;
}

ul.table_td {
    position: relative;
}

.recruitment_sec_3 .bg:before {
    background: linear-gradient(180deg, #ffffff00 26.79%, #002721 100%);
    height: 65%;
    width: 100%;
    position: absolute;
    content: '';
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.popup_td {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
    opacity: 0;
    pointer-events: none;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup_td.active {
    opacity: 1;
    pointer-events: unset;
}


div#load_content_td {
    max-width: 55rem;
    background: linear-gradient(0deg, #00634B 1.18%, rgba(0, 87, 69, 0.63) 49.05%, rgba(0, 77, 63, 0) 100%);
    position: relative;
    z-index: 2;
}

div#load_content_td .inner {
    padding: 5.625rem;
}

div#load_content_td .inner h3.heading_h2 {
    font-size: 2.8125rem;
    text-transform: unset;
}

div#load_content_td .inner .content_ut > ul,
div#load_content_td .inner > ul {
    display: flex;
    color: white;
    margin-bottom: 1.875rem;
}

div#load_content_td .inner .content_ut > ul li,
div#load_content_td .inner > ul li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}

div#load_content_td .inner .content_ut > ul li:not(:last-child),
div#load_content_td .inner > ul li:not(:last-child) {
    margin-right: 3.75rem;
}

div#load_content_td .inner .content_ut > ul li svg,
div#load_content_td .inner > ul li svg {
    margin-right: 0.375rem;
}

div#load_content_td .content {
    font-size: 0.875rem;
    line-height: 1.6;
    max-height: 18.75rem;
    overflow: auto;
    padding-right: 5rem;
    text-align: justify;
    margin-bottom: 1.25rem;
}

div#load_content_td .content h1 {
    font-size: 1.25rem;
}

div#load_content_td .content h2 {
    font-size: 0.9375rem;
}

div#load_content_td .content h3 {
    font-size: 0.833rem;
    margin-bottom: 0.625rem;
}

.content > *:last-child {
    margin: unset;
    margin-bottom: 0;
}

div#load_content_td .content ul {
    margin-bottom: 1.25rem;
    margin-left: 1.25rem;
}

div#load_content_td .content::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
    border-radius: 6.25rem;
    background: transparent;
    border: 0.0625rem solid rgba(101, 255, 218, 0.3);

}

div#load_content_td .content::-webkit-scrollbar {
    width: 0.25rem;
    background: rgba(101, 255, 218, 0.4);
    border-radius: 6.25rem;
}

div#load_content_td .content::-webkit-scrollbar-thumb {
    background: rgba(101, 255, 218, 0.4);
    border-radius: 6.25rem;;
}

.view_more {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-title-black);
    color: #F5D7A7 !important;
    font-size: 0.9375rem;
}

.view_more svg {
    display: block;
    margin-left: 1.25rem;
}

div#load_content_td .inner {
    position: relative;
}

div#load_content_td .inner:before {
    position: absolute;
    content: '';
    width: 23.125rem;
    height: 14.375rem;
    background-image: url(../images/bf_popup.png);
    bottom: 0;
    right: 0;
    pointer-events: none;
}

div#load_content_td .item {
    display: none;
}

div#load_content_td .item.active {
    display: block;
}

.wrap_form input, .wrap_form textarea {
    width: 100%;
    background: transparent !important;
    border: 0.0625rem solid transparent !important;
    padding: 0;
    border-bottom: 0.0625rem solid rgb(255 255 255 / 50%) !important;
    height: 2.8125rem;
    font-size: 0.875rem;
    color: #FFFFFF !important;
    margin-bottom: 1.3125rem;
}

.wrap_form input::placeholder, .wrap_form input, .wrap_form textarea::placeholder {
    color: white !important;
}

.wrap_form textarea {
    height: 2.8125rem;
}

.wrap_form b {
    font-size: 0.75rem;
    color: white;
}

.wrap_form input[type="file"] {
    height: auto;
    border: none !important;
    margin: 0;
}

.wrap_form .view_more {
    position: relative;
}

.wrap_form .view_more input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 99;
}

.wrap_form br {
    display: none;
}

.wrap_form .view_more {
    float: right;
}

div#load_content_td
.item.nop_ho_so {
    padding-bottom: 3.125rem;
}

.wrap_form {
    margin: 0 -0.625rem;
}

div#load_content_td .item.nop_ho_so h3.heading_h2 {
    margin-bottom: 0;
}

div#load_content_td .item.nop_ho_so h3.heading_h2 + .content {
    font-family: var(--font-title-bold);
    font-size: 1.25rem;
    margin-bottom: 1.875rem;
}

.contact_sec_2 .bg:before {
    position: absolute;
    content: '';
    background-image: url(../images/bf_contact_sec_2.png);
    height: 14.6875rem;
    background-size: cover;
    background-repeat: no-repeat;
    bottom: 0;
    width: 100%;
}

.contact_sec_1 span {
    color: white;
}

span.sub {
    font-family: var(--font-title);
    font-size: 1.302rem !important;
    display: block;
    margin-bottom: 0.521rem;
}

.contact_sec_1 .content strong {
    font-family: var(--font-title-bold);
    font-size: 1.042rem;
}

.contact_sec_1 .content a {
    color: white;
}

.contact_sec_1 .box_content {
    padding-right: 5.208rem;
}

.contact_sec_1 .content {
    margin-bottom: 1.354rem;
}

.contact_sec_1 span {
    font-size: 0.833rem;
    color: #FFFFFF;
}

ul.phone_contact {
    display: flex;
    margin-bottom: 1.042rem;
}

ul.phone_contact li * {
    display: block;
}

ul.phone_contact li a {
    background: linear-gradient(270deg, #FDD698 21.06%, #DFB46F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-family: var(--font-title-bold);
    font-size: 1.5625rem;
}

ul.phone_contact li:not(:last-child) {
    margin-right: 50px;
}

.mail * {
    display: block;
}

.mail a {
    font-family: var(--font-title-bold);
    font-size: 1.042rem;
    color: white;
}

.mail {
    margin-bottom: 1.042rem;
}

.socials ul {
    display: flex;
    align-items: center;
    margin-top: 0.521rem;
}

.socials ul svg {
    display: block;
}

.socials ul li:not(:last-child) {
    margin-right: 1.042rem;
}

a.form_dk {
    float: right;
    color: #004B39;
    font-family: var(--font-title-bold);
    background: linear-gradient(270deg, #DFB46F 31.03%, #FFD89B 50.35%, #DFB46F 73.3%);
    border-radius: 5.208rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 1.146rem;
    padding: 0 1.302rem;
    z-index: 0;
    margin-bottom: 45px;
}

a.form_dk:before {
    z-index: -1;
    background: linear-gradient(146.79deg, #DFB46F 16.21%, #FFE5BB 50.86%, #DFB46F 86.73%);
    opacity: 0.4;
    border-radius: 5.208rem;
    top: 50%;
    left: 50%;
    content: '';
    position: absolute;
    animation: pulse-border 1200ms ease-out infinite;
    width: 95%;
    height: calc(100% + 0.417rem);
}

.map iframe {
    width: 100%;
    border-radius: 3.125rem 0.521rem;
    display: block;
}

.map {
    padding-top: 2.604rem;
}

.contact_sec_2 span {
    color: white;
}

div#form_dk {
    background: linear-gradient(0deg, #00634B 37.23%, rgba(0, 87, 69, 0.63) 72.04%, rgba(0, 77, 63, 0) 100%);
    max-width: 800px;
    margin: auto;
    padding: 7.8125rem 5.208rem 3.90625rem;
}

div#form_dk .view_more {
    float: unset;
    margin-top: 1.042rem;
}

div#form_dk .view_more span.wpcf7-spinner {
    position: absolute;
}

div#form_dk h3.heading_h2 {
    font-size: 2.34375rem;
    text-transform: unset;
}

div#form_dk .content {
    font-family: var(--font-title);
    color: #FFFFFF;
    font-size: 1.042rem;
    margin-bottom: 2.083rem;
}

.wpcf7-not-valid-tip {
    position: absolute;
    font-size: 0.625rem !important;
    color: #deb46f !important;
    bottom: -1.615rem;
}

.wpcf7 form .wpcf7-response-output {
    color: white;
    font-size: 0.833rem;
    text-align: center;
}

.project_page .box_content {
    height: 100vh;
    background: linear-gradient(0deg, #004546 0%, rgba(0, 107, 83, 0.9) 100%);
    position: absolute;
    left: 0;
    top: 0;
    width: 29.375rem;
    display: flex;
    align-items: center;
    padding: 4.375rem;
}

.project_page .box_content .heading_h2 {
    font-size: 3.125rem;
}

.project_page .box_content ul {
    position: absolute;
    bottom: 3.25rem;
    display: flex;
    left: 5.625rem;
    right: 5.625rem;
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.3);
    padding-top: 1.25rem;
}

.project_page .box_content ul li > * {
    display: block;
    color: white;
}

.project_page .box_content ul li {
    width: 50%;
}

.project_page .box_content ul span {
    font-size: 0.833rem;
    text-transform: uppercase;
}

.project_page .box_content ul b {
    font-size: 0.833rem;
}

.view_more {
    text-transform: uppercase;
}

.project_page .box_content .content {
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 8;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.page-template-project .wrap-fp-nav {
    display: none;
}

.project_details_sec_1:before {
    position: absolute;
    content: '';
    background-image: url(../images/banner_project.png);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.project_details_sec_1:after {
    background-image: url(../images/bf_banner_project.png);
    height: 14.4375rem;
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 9;
    pointer-events: none;
    left: 0;
}

a.scroll_down {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    z-index: 99;
    bottom: 7.1875rem;
    text-align: center;
    font-family: var(--font-title-bold);
    color: #F5D7A7;
    font-size: 0.9375rem;
}

a.scroll_down svg {
    display: block;
    margin: 0.9375rem auto 0;
    animation: hu__hu__ infinite 2s ease-in-out
}

.hu__hu__ {
    animation: hu__hu__ infinite 2s ease-in-out
}

@keyframes hu__hu__ {
    50% {
        transform: translateY(1.875rem)
    }
}

.project_details_sec_2 .bg:before {
    position: absolute;
    content: '';
    background-image: url(../images/project_bf_sec_2.png);
    height: 21.5625rem;
    bottom: 0;
    width: 100%;
    background-size: cover;
}

.project_details_sec_2 .group_content {
    max-width: 51.5625rem;
    margin: auto;
}

.project_details_sec_2 li.img_top {
    position: absolute;
    top: 20%;
    left: calc(calc(100vw - 87.5rem) / 2);
}

.project_details_sec_2 .grid-container {
    position: relative;
}

.project_details_sec_2 li.img_bottom {
    position: absolute;
    bottom: 0;
    right: calc(calc(100vw - 87.5rem) / 2);
}

.project_details_sec_2 li:before {
    content: '';
    width: 10.9375rem;
    height: 12.625rem;
    background: linear-gradient(180deg, #DFB46F 0%, rgba(223, 180, 111, 0) 82.99%);
    opacity: 0.3;
    position: absolute;
    top: -3.125rem;
    right: -5rem;
    border-radius: 1.25rem 0 0 0;
}

.project_details_sec_2 li img {
    position: relative;
    display: block;
}

.project_details_sec_2 li.img_bottom:before {
    right: unset;
    left: -4.375rem;
}

.project_details_sec_3 {
    background: linear-gradient(180deg, #006F54 0%, #004848 57.2%, #003C44 100%);
}

.project_details_sec_3 .content {
    color: white;
}

.project_details_sec_3 .wrap {
    display: flex;
    align-items: center;
}

.project_details_sec_3 .fp-tableCell {
    vertical-align: bottom;
}

.project_details_sec_3 .box_img {
    max-width: calc(100% + calc(calc(100vw - 85.625rem) / 2));
    width: calc(100% + calc(calc(100vw - 85.625rem) / 2));
    position: relative;
}

.project_details_sec_3 .item_tab:before {
    height: 19.1875rem;
    background: linear-gradient(180deg, #006952 0%, rgba(0, 101, 80, 0) 100%);
    width: 100%;
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 9;
}

.project_details_sec_3 .box_img .buttons {
    position: absolute;
    z-index: 999;
    bottom: 3.125rem;
    left: 7.5rem;
}

.project_details_sec_3 .box_img .buttons button {
    background: #004045;
    border: 0.0625rem solid #DFB46F;
    width: 50.2794rem;
    height: 50.2794rem;
    border-radius: 50%;
    color: #DFB46F;
    font-size: 1.5625rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

ul.list_location li {
    position: absolute;
    top: 50%;
    left: 50%;
}

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

.wrap_image_hover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: .3s all;
}

.wrap_image_hover img.active {
    opacity: 1;
}

.project_details_sec_3 .wrap_content {
    max-width: 29.0625rem;
    margin-left: auto;
    text-align: right;
    padding-bottom: 6.25rem;
}

.project_details_sec_3 .wrap_content .content {
    font-size: 0.9375rem;
}

ul.list_location li span:before {
    border: 0.0313rem solid #73B49D;
    width: 3.125rem;
    height: 3.125rem;
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-border 1000ms ease-out infinite;
    background: #73b49d99;
}

ul.list_location li span {
    background: linear-gradient(180deg, rgba(16, 132, 130, 1) 0%, rgba(200, 255, 229, 1) 100%);
    width: 1.5rem;
    height: 1.5rem;
    content: '';
    position: absolute;
    border-radius: 50%;
    display: inline-block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

ul.list_location li.style_2 span {
    background: linear-gradient(180deg, #FF9F0F 0%, #FFC532 93.92%);
}

ul.list_location li.style_2 span:before {
    border: 0.0625rem solid #FFD038;
    background: transparent;
    /*background: linear-gradient(180deg, #FF9F0F 0%, #FFC532 93.92%);*/
    /*opacity: .2 !important;*/
}

ul.list_location li .box_content {
    position: absolute;
    width: 7.5rem;
    height: 7.5rem;
    background: linear-gradient(180deg, rgba(51, 176, 149, 1) 0%, rgba(255, 255, 255, 0) 100%);
    filter: drop-shadow(0rem 0.25rem 3.75rem rgba(0, 112, 122, 0.3));
    border-radius: 6.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    top: 0;
    left: 50%;
    transform: translate(-50%, calc(-100% - 2.5rem));
    opacity: 0;
    transition: .3s all;
}

ul.list_location li .box_content h3 {
}

ul.list_location li .box_content h3 {
    width: 6.25rem;
    height: 6.25rem;
    background: linear-gradient(180deg, rgba(0, 218, 169, 0.7) 0%, rgb(72 172 180) 100%);
    border-radius: 6.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-shadow: 0rem 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
    font-size: 0.8125rem;
    font-family: var(--font-title-black);
    padding: 0 0.625rem;
    margin: 0;
    text-transform: uppercase;
}

ul.list_location li .box_content:before {
    width: 0.0625rem;
    height: 1.1875rem;
    background: #49b0b6;
    content: '';
    position: absolute;
    bottom: 0.625rem;
    transform: translateY(100%);
}

ul.list_location li.style_2 .box_content:before {
    background: #FCCF65;
}

ul.list_location li.style_2 .box_content {
    background: linear-gradient(180deg, rgba(253, 179, 53, 0.5) 0%, rgba(253, 179, 53, 0) 100%);
}

ul.list_location li.style_2 .box_content h3 {
    background: linear-gradient(180deg, rgba(253, 203, 76, 0.7) 0%, rgba(253, 176, 51, 1) 100%);
}

ul.list_location li:hover .box_content {
    opacity: 1;
}

.popup_gallery_product {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    content: '';
    background: white;
    opacity: 0;
    pointer-events: none;
    transition: .3s all;
}

.popup_gallery_product.active {
    opacity: 1;
    pointer-events: unset;
}

.close_popup {
    display: flex;
    align-items: center;
    color: rgba(102, 102, 102, 0.8);
    font-size: 1.25rem;
    position: absolute;
    top: 1.875rem;
    right: 1.875rem;
    z-index: 999;
    cursor: pointer;
}

.close_popup span {
    border: 0.0625rem solid rgba(51, 51, 51, 0.3);
    width: 2.9375rem;
    height: 2.9375rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.75rem;
    transform: rotate(0deg);
    transition: 1s all;
}

.close_popup:hover span {
    transform: rotate(360deg);
}

.arrow_slider_text {
    position: absolute;
    left: 1.5rem;
    bottom: 2.8125rem;
    z-index: 99;
    font-size: 0.75rem;
    color: #E0B571;
    text-align: center;
    cursor: pointer;
    text-align: right;
}

.product_slide .box_content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    text-align: center;
    z-index: 9;
    opacity: 0;
    pointer-events: none;
    transition: .5s all;
}

.product_slide .item > h3 {
    position: absolute;
    bottom: 0;
    margin: 0;

}

.product_slide {
    min-height: 100vh;
}

.product_slide .item {
    position: relative;
    height: 100vh;
    width: 100%;
    cursor: pointer;
}

.product_slide .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product_slide .item:before, .product_slide .item:after {
    background: linear-gradient(360deg, #002323 0%, rgba(0, 35, 35, 0.8) 61.13%, rgba(0, 35, 35, 0) 100%);
    height: 12.3125rem;
    width: 100%;
    content: '';
    position: absolute;
    bottom: 0;
    opacity: 0.95;
}

.product_slide .item:after {
    background: linear-gradient(270deg, #002323 0%, rgba(0, 41, 40, 0.938517) 37.31%, rgba(0, 80, 74, 0.85) 65.84%, rgba(0, 80, 74, 0.5) 100%);
    display: none;
}

.product_slide .item:after {
    background: linear-gradient(360deg, #002323 0%, rgba(0, 41, 40, 0.938517) 37.31%, rgba(0, 80, 74, 0.85) 65.84%, rgba(0, 80, 74, 0.5) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    opacity: 0;
    transition: .5s all;
}

.product_slide .item:hover:after {
    opacity: 1;
}

.product_slide .item:hover > h3 {
    opacity: 0;
}

.product_slide .item h3 {
    color: #DFB46F;
    text-shadow: 0rem 0.25rem 0.25rem rgba(1, 74, 69, 0.2);
    font-size: 1.823rem;
    font-family: var(--font-title-bold);
    left: 12.5rem;
    right: 12.5rem;
    text-align: center;
    bottom: 3.75rem;
    z-index: 9;
    transition: .5s all;
}

.product_slide .box_content ul a {
    min-width: 17.552rem;
    border: 0.0625rem solid rgba(255, 255, 255, 0.5);
    filter: drop-shadow(0rem 0.25rem 0.25rem rgba(1, 74, 69, 0.2));
    border-radius: 5.208rem;
    height: 2.604rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.042rem;
    font-size: 0.833rem;
    color: #FFFFFF;
    text-transform: uppercase;
    font-family: var(--font-bold);
    position: relative;
    transition: .3s all;
}

.product_slide .box_content ul li:not(:last-child) {
    margin-bottom: 0.9375rem;
}

.product_slide .box_content ul a:before {
    background: linear-gradient(270deg, #DFB46F 31.03%, #FFD89B 50.35%, #DFB46F 73.3%);
    top: -0.0625rem;
    left: -0.0625rem;
    bottom: -0.0625rem;
    right: -0.0625rem;
    content: '';
    position: absolute;
    border-radius: 6.25rem;
    z-index: -1;
    opacity: 0;
    transition: .3s all;
}

.product_slide .box_content ul a:hover:before {
    opacity: 1;
}

.product_slide .box_content ul a:hover {
    color: #00322E;
}

.product_slide .item:hover .box_content {
    opacity: 1;
    pointer-events: unset;
}

.arrow_slider_text span {
    display: inline-block;
    text-transform: uppercase;
    font-family: var(--font-bold);
    font-size: 0.75rem;
    transform: translateY(0.625rem);
    padding-right: 0.625rem;
}

.arrow_slider_text.next {
    left: unset;
    right: 1.5rem;
}

.arrow_slider_text svg {
    display: block;
}

.arrow_slider_text.next {
    text-align: left;
}

.arrow_slider_text.next span {
    padding: 0 0 0 0.625rem;
}

.popup_gallery_product {
    display: flex;
    align-items: center;
    justify-content: center;
}

div#load_gallery_product {
    max-width: 87.5rem;
    margin: auto;
    position: relative;
    z-index: 9;
}

div#load_gallery_product img {
    display: block;
    border-radius: 0.625rem;
    max-height: 70vh;
    margin: auto;
    width: auto;
}

div#load_gallery_product h4 {
    max-width: 31.25rem;
    margin: auto;
    text-align: center;
    padding-top: 1.25rem;
    font-family: var(--font-title-black);
    font-size: 1.875rem;
    color: #333333;
}

ul.menu_gallery_project a {
    font-size: 1.25rem;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    transition: .3s all;
}

ul.menu_gallery_project li:not(:last-child) {
    margin-bottom: 0.9375rem;
}

ul.menu_gallery_project a:before {
    width: 0;
    height: 0.0625rem;
    background: #E8BE7B;
    content: '';
    margin-right: 0;
    transition: .3s all;
}

ul.menu_gallery_project a.active:before {
    width: 1.875rem;
    margin-right: 0.625rem;
}

ul.menu_gallery_project a.active {
    font-family: var(--font-bold);
    color: #DFB46F;
}

ul.menu_gallery_project a:hover {
    color: #DFB46F;
}

.slider_image_project .box_img {
    height: 24.4375rem;
    box-shadow: 0rem 0.25rem 1.875rem rgba(4, 83, 84, 0.1);
    border-radius: 3.75rem 0rem;
    overflow: hidden;
    width: 100%;
    margin-bottom: 0.9375rem;
    position: relative;
    padding-bottom: 65%;
    height: auto;
}

.slider_image_project .box_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider_image_project h3 {
    display: flex;
    align-items: center;
    color: white;
    font-family: var(--font-title-bold);
    text-transform: uppercase;
    transition: .3s all;
}

.slider_image_project h3 svg {
    margin-left: 1.25rem;
}

.slider_image_project .item:hover h3 {
    color: #DFB46F;
}

.slider_image_project {
    width: calc(100% + calc(100vw - 85.625rem) / 2);
    padding-right: calc(21.875rem + calc(100vw - 85.625rem) / 2);
}

.slider_image_project .box_img:before {
    background: linear-gradient(-90deg, #023a34 10.31%, rgba(255, 255, 255, 0) 100%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    content: '';
    opacity: .8;
    transition: .5s all;
}

.slider_image_project .swiper-slide.swiper-slide-active .box_img:before {
    opacity: 0;
}

.project_details_sec_6 .bg:before {
    position: absolute;
    content: '';
    position: absolute;
    background-image: url(../images/project_gal_bf.png);
    width: 100%;
    height: 19.0625rem;
    bottom: 0;
    background-size: cover;
}

.project_details_sec_7 .fp-tableCell {
    vertical-align: bottom;
}

.project_details_sec_7 .group_content {
    max-width: 75rem;
    margin: auto;
}

.project_details_sec_7 .content_cs {
    margin-top: 2.5rem;
    background: linear-gradient(180deg, rgb(223 180 111 / 20%) 0%, rgba(223, 180, 111, 0) 82.99%);
    padding: 4.375rem 1.875rem 4.375rem 5.625rem;
    border-radius: 1.875rem 1.875rem 0 0;
}

.project_details_sec_7 .content_cs .inner {
    position: relative;
}

.project_details_sec_7 .content_cs .inner:before {
    background: linear-gradient(180deg, #d9d9d900 68.18%, rgb(1 36 36) 100%);
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    z-index: 9;
    pointer-events: none;
}

.project_details_sec_7 .content_cs .content {
    padding-right: 3.75rem;
    text-align: justify;
    max-height: 50vh;
    overflow: auto;
}

.project_details_sec_7 .content_cs .content::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.3);
    background-color: #fafafa78;
    border-radius: 1.25rem;
}

.project_details_sec_7 .content_cs .content::-webkit-scrollbar {
    width: 0.125rem;
    background-color: #F9DBAC;
    border-radius: 1.25rem;
}

.project_details_sec_7 .content_cs .content::-webkit-scrollbar-thumb {
    background-color: #F9DBAC;
    border-radius: 1.25rem;
}

.project_details_sec_7
h2.heading_h2 {
    margin-bottom: 0;
}

.faqs .wrap_title {
    font-size: 0.9375rem;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    border: 0.0625rem solid #FFFFFF;
    border-radius: 6.25rem;
    padding: 0.8125rem 5rem 0.8125rem 1.875rem;
    font-family: var(--font-bold);
    position: relative;
    cursor: pointer;
}


.faqs .wrap_title .num {
    width: 2.875rem;
    background: linear-gradient(270deg, #DFB46F 31.03%, #FFD89B 50.35%, #DFB46F 73.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 1.875rem;
    font-family: var(--font-title-black);
}

.faqs .wrap_title span {
    position: absolute;
    width: 1.375rem;
    height: 1.375rem;
    top: 50%;
    transform: translateY(-50%);
    right: 1.5625rem;
}

.faqs .wrap_title span:before, .faqs .wrap_title span:after {
    width: 100%;
    height: 0.0625rem;
    background: white;
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faqs .wrap_title span:after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faqs .active .wrap_title {
    border: 0.0625rem solid #F4CB8C;
    color: #F4CB8C;
}

.faqs .active .wrap_title span:before, .faqs .active .wrap_title span:after {
    background: #DFB46F;
}

.faqs .content {
    color: #FFFFFF;
    text-align: justify;
    padding: 0.9375rem 0;
    font-size: 0.833rem !important;
    margin: 0 !important;
}

.project_details_sec_8 .content {
    color: white;
    font-size: 0.9375rem;
    margin-bottom: 1.875rem;
}

.project_details_sec_8 .heading_h2 {
    margin: 0;
}

.faqs .item:not(:last-child) {
    margin-bottom: 1.25rem;
}

.faqs {
    max-width: 75rem;
    margin: auto;
}

.project_details_sec_8 .bg:before {
    position: absolute;
    height: 8.1875rem;
    position: absolute;
    content: '';
    background-image: url(../images/bg_faq.png);
    bottom: 0;
    left: 0;
    background-size: cover;
    width: 100%;
}

.project_details_sec_9 .fp-tableCell {
    vertical-align: bottom;
}

.project_details_sec_9 .content {
    color: white;
}

.project_details_sec_9 .heading_h2 + .content {
    font-size: 0.9375rem;
    margin-bottom: 3.75rem;
}

.wrap_post.post_list .item_post {
    padding-bottom: 0;
    border-radius: 1.25rem 1.25rem 0 0;
}

.wrap_post.post_list .item_post .box_img {
    border-radius: 1.25rem 1.25rem 0 0;
}

.wrap_post.post_list .item_post:before {
    border-radius: 1.25rem 1.25rem 0 0;
}

.project_sec_1 img {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.project_sec_2 .bg {
    background-size: cover;
    background-position: top center;
}

.project_sec_2 {
    padding-top: 16.875rem;
}

.project_sec_2 {
}

.project_sec_2 .list_items {
    padding-left: 11.25rem;
    margin-top: 2.5rem;
}

.project_sec_2 .item {
    display: flex;
    align-items: center;
}

.project_sec_2 .item .icon {
    width: 3.958rem;
    height: 3.958rem;
    background: radial-gradient(37.77% 37.77% at 50.53% 50.53%, #F9D193 23.44%, #DFB46F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    margin-right: 3.75rem;
}

.project_sec_2 .item span {
    color: #FFFFFF;
    display: block;
    margin-bottom: 0.3125rem;
}

.project_sec_2 .item .icon:before {
    background: linear-gradient(180deg, rgba(223, 180, 111, 0.2) 28.73%, rgba(223, 180, 111, 0) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    position: absolute;
    width: calc(100% + 1.25rem);
    height: calc(100% + 1.25rem);
    border-radius: 50%;
    animation: pulse-border 1200ms ease-out infinite;
}

.project_sec_2 .item .icon:after {
    border: 0.0625rem solid #DFB46F;
    content: '';
    top: -1.75rem;
    left: -1.75rem;
    right: -1.75rem;
    bottom: -1.75rem;
}

.project_sec_2 .item h3 {
    margin: 0;
    color: white;
    font-family: var(--font-title-black);
    font-size: 1.875rem;
}

.project_sec_2 .item:not(:last-child) {
    margin-bottom: 3.4375rem;
}

.project_sec_2 .content {
    color: white;
}

.project_sec_2 .box_content .heading_h2:before {
    background-image: url(../images/line_title.png);
    width: 100%;
    height: 39.0625rem;
    content: '';
    background-size: 100% auto;
    position: absolute;
    top: 1.25rem;
    background-repeat: no-repeat;
    left: 3.4375rem;
}

.project_sec_2 .box_content .heading_h2 {
    position: relative;
    padding-top: 6.375rem;
}

.project_sec_2 .box_content .heading_h2 + .content {
    margin-left: 7.9375rem;
    max-width: 28.125rem;
}

.project_sec_2 .item .icon:after {
    position: absolute;
    border-radius: 50%;
    opacity: .2;
}

.project_sec_2 .item:not(:last-child) {
    margin-bottom: 4.6875rem;
}

.project_sec_3 {
    height: 100vh;
    position: relative;
}

.project_sec_3:before {
    background: linear-gradient(180deg, #004647 0%, rgba(0, 70, 71, 0.628017) 50.23%, rgba(0, 70, 71, 0) 100%);
    height: 11.875rem;
    position: absolute;
    content: '';
    width: 100%;
    top: 0;
    z-index: 1;
}

.project_details_sec_3 .grid-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.project_sec_3 .wrap_content {
    padding-bottom: 0;
    margin-top: 12.5rem;
    padding-top: 0;
    position: relative;
}

.project_sec_3 .wrap_content:before {
    background: #000000;
    opacity: 0.4;
    filter: blur(6.25rem);
    position: absolute;
    content: '';
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 50%;
}

.project_sec_3 .wrap_content > * {
    position: relative;
    text-shadow: none;
}

ul.list_location li {
    z-index: 99;
}

.project_sec_3 .wrap_content h2 {
    position: relative;
}

.project_sec_3 .wrap_content h2:before {
    position: absolute;
    content: '';
    background-image: url(../images/line_title_position.png);
    width: 44.5rem;
    height: 17.75rem;
    top: 0;
    right: 2.5rem;
    background-size: 100% 100%;
}

.project_sec_3 .wrap_content h2 {
    padding-top: 4.125rem;
}

.project_sec_3 .wrap_content .content {
    padding-right: 5.9375rem;
}

.project_sec_3 .wrap_content {
    max-width: 33.75rem;
}

.project_sec_4 {
    background-image: url(../images/bg_mb.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: auto;
}

.project_sec_4 {
    padding-top: 12.5rem;
}

.project_sec_4 .group_content {
    max-width: 54.0625rem;
    margin: auto;
}

.project_sec_4 .box_img:before {
    z-index: 2;
    background: linear-gradient(180deg, #02554b 0%, rgba(0, 86, 73, 0.870104) 41.67%, rgba(0, 86, 73, 0.706676) 55.28%, rgba(0, 86, 73, 0) 100%);
    height: 50vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    pointer-events: none;
}

.project_sec_4 .box_img {
    position: relative;
}

.project_sec_4 .box_img .buttons {
    position: absolute;
    z-index: 999;
    bottom: 7.5rem;
    left: 7.5rem;
}

.project_sec_4 .box_img .buttons button {
    background: #004045;
    border: 0.0625rem solid #DFB46F;
    width: 50.2794rem;
    height: 50.2794rem;
    border-radius: 50%;
    color: #DFB46F;
    font-size: 1.5625rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

div#panzoom img {
    display: block;
    width: 100%;
}

.project_sec_5 {
    padding-top: 12.5rem; /* margin-top: -6.25rem; *//* min-height: 81.25rem; */
}

.project_sec_5 .bg {
    background-size: auto;
    background-position: top center;
    background-size: cover;
    transform: scale(1.3);
}

.project_sec_5 .wrap_slider {
    margin: auto;
    max-width: 68.75rem;
}


.project_sec_5 .group_content {
    max-width: 54.375rem;
    margin: 0 auto 5rem;
}

.project_sec_5 .arrow_slider {
    left: -9.375rem;
}

.project_sec_5 .arrow_slider.next {
    right: -9.375rem;
}

.slider_tien_ich .item {
    display: flex;
    align-items: flex-end;
    height: 13.125rem;
    justify-content: center;
}

.slider_tien_ich .item h3 {
    margin: 0;
    position: absolute;
    text-align: center;
    font-size: 0.833rem;
    text-shadow: 0rem 0.25rem 0.25rem rgba(1, 74, 69, 0.2);
    color: #FFDCA6;
    font-family: var(--font-title-black);
    bottom: 0.833rem;
}

.project_sec_6, .project_sec_6 .grid-container {
    /* min-height: 66.8125rem; */
}

.slider_product_style_2.product_slide, .slider_product_style_2 .item {
    min-height: unset;
    height: auto;
}

.project_sec_6 .grid-container {
    display: flex;
    align-items: center;
}

.project_sec_6 {
    /* margin-top: -6.25rem; */
}

.slider_product_style_2 {
    width: calc(100% + calc(100vw - 71.615rem) / 2);
}

.project_sec_6 .content {
    max-width: 15.625rem;
    margin-left: 5.99rem;
    text-align: justify;
}

.slider_product_style_2 .arrow_slider_text span {
    padding: 0;
    text-transform: unset;
    font-family: var(--font-title-bold);
    font-size: 0.729rem;
    transform: translateY(0.99rem);
}

.slider_product_style_2 .item h3 {
    opacity: 1 !important;
}

.project_sec_6 .heading_h2 {
    position: relative;
}

.project_sec_6 .heading_h2:before {
    position: absolute;
    content: '';
    width: 26.198rem;
    height: 26.25rem;
    background-image: url(../images/product_line_title.png);
    top: -5.833rem;
    left: 2.135rem;
    background-size: 100% 100%;
}

.project_sec_6 .group_content {
    margin-top: 1.823rem;
}

.project_sec_7 .arrow_slider {
    left: 1.875rem;
}

.project_sec_7 .arrow_slider.next {
    right: 1.875rem;
}

.project_sec_7 img {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

ul.menu_type_project {
    position: absolute;
    bottom: 6.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    display: flex;
}


ul.menu_type_project a {
    color: #B8E0E0;
    font-size: 1.5625rem;
    font-family: var(--font-title-black);
    margin: 0 2.0625rem;
    text-transform: uppercase;
    position: relative;
    min-width: 13.4375rem;
    display: inline-block;
    text-align: center;
    padding-bottom: 1.25rem;
}

ul.menu_type_project a:before {
    position: absolute;
    content: '';
    background-image: url(../images/title_bottom.png);
    width: 13.375rem;
    height: 1.3125rem;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-position: center;
}

ul.menu_type_project a.active:before {
    background-image: url(../images/title_bottom_active.png);

}

ul.menu_type_project a.active {
    text-transform: uppercase;
    background: linear-gradient(270deg, #DFB46F 31.03%, #FFDEAA 50.35%, #DFB46F 73.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    color: transparent;
}

.project_sec_7 {
    /* margin-top: -11.823rem; */
}

.project_sec_6 {
    z-index: 2;
}

.item_video {
    position: relative;
}

.item_video a {
    border: 0.125rem solid #FFFFFF;
    width: 7.5rem;
    height: 7.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.item_video a:before {
    border: 0.0625rem solid rgba(255, 255, 255, 0.5);
    width: 9.375rem;
    height: 9.375rem;
    position: absolute;
    content: '';
    border-radius: 50%;
    animation: pulse-border 1000ms ease-out infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.project_sec_8
ul.menu_type_project {
    position: relative;
    transform: unset;
    justify-content: center;
    z-index: 9;
    left: unset;
    bottom: unset;
    /*margin-bottom: 10.9375rem;*/
}

.project_sec_8 .bg {
    background-position: bottom center;
    background-size: auto;
}

.project_sec_8 {
    /* margin-top: -15.0625rem; */
    z-index: 2;
}

.project_sec_8 h2.heading_h2 {
    margin-bottom: 0;
}

.project_sec_8 .group_content {
    max-width: 54.375rem;
    margin: 0 auto 2rem;
}

.project_sec_8 .wrap_post .item_post * {
    color: white !important;
}

.project_sec_8 .wrap_post .item_post:hover * {
    color: #F9DBAC !important;
}

.project_sec_8 .wrap_post .item_post:hover *.content {
    color: white !important;
}

.project_sec_8 .wrap_post .item_post a:before, .project_sec_8 .wrap_post .item_post a:after {
    background: linear-gradient(0deg, #fcfcfc 0%, rgba(223, 180, 111, 0) 82.99%);
}

.project_sec_8 .arrow_slider {
    left: -7.5rem;
}

.project_sec_8 .arrow_slider.next {
    right: -7.5rem;
}

.project_sec_8 .wrap_cs {
}

.project_sec_8 .grid-45 .content {
    max-width: 25.875rem;
    font-size: 0.9375rem;
}

.project_sec_8 .grid-55 .content {
    padding-right: 3.75rem;
    text-align: justify;
    max-height: 31.25rem;
    overflow: auto;
}

.project_sec_8 .grid-55 .content::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.3);
    background-color: #FFFFFF;
    border-radius: 1.25rem;
}

.project_sec_8 .grid-55 .content::-webkit-scrollbar {
    width: 0.125rem;
    background-color: #F9DBAC;
    border-radius: 1.25rem;
}

.project_sec_8 .grid-55 .content::-webkit-scrollbar-thumb {
    background-color: #F9DBAC;
    border-radius: 1.25rem;
}

.project_sec_8 .wrap_cs .wrap_content {
    position: relative;
}

.project_sec_8 {
}

.project_sec_9 {
    background: #015c4b;
    padding-bottom: 6.875rem;
    padding-top: 6.25rem;
}

.project_sec_9 {
    overflow: unset;
    z-index: 2;
}

.home_sec3 {
    background: linear-gradient(180deg, #006F54 0%, #004848 57.2%, #003C44 100%);
}

.home_sec3 .fp-tableCell {
    vertical-align: bottom;
}

.home_sec3 h2.heading_h2 {
    text-shadow: none;
}

.home_sec3 .content {
    color: white;
    margin-bottom: 2.5rem;
}

.home_sec3 .list_address {
    background: linear-gradient(180deg, #003D44 0%, #004440 100%);
    padding: 3.125rem 0.9375rem 3.125rem 1.5625rem;
    border-radius: 0.9375rem 0.9375rem 0 0;
    max-width: 21.875rem;
    position: relative;
}

.home_sec3 .list_address span:before {
    background-image: url(../images/border_line.png);
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-size: 100% auto;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    pointer-events: none;
}

.home_sec3 .grid-container {
    display: flex;
    align-items: flex-end;
}

.home_sec3 .inner {
    margin-left: 3.125rem;
    position: relative;
}

.home_sec3 .inner img {
    display: block;
}

.home_sec3 .inner li {
    position: absolute;
    color: po;
    cursor: pointer;
}

.home_sec3 .inner li:before {
    background: linear-gradient(180deg, #92DCBC 0%, #6FDBC3 93.92%);
    width: 0.833rem;
    height: 0.833rem;
    border-radius: 50%;
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.home_sec3 .inner li:after {
    border: 0.0313rem solid #73B49D;
    width: 1.823rem;
    height: 1.823rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-border 1200ms ease-out infinite;
    content: '';
    border-radius: 50%;
}

.home_sec3 .wrap_content {
    padding: 0 0.625rem;
}

.home_sec3 .list_address li {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #005D64 0%, rgba(0, 91, 98, 0) 100%);
    border-radius: 3.125rem 0 0 3.125rem;
    font-size: 0.833rem;
    color: white;
    transition: .3s all;
    cursor: pointer;
}

.home_sec3 .list_address li .icon {
    background: #003539;
    width: 2.8125rem;
    height: 2.8125rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5625rem;
    border: 0.0625rem solid transparent;
    transition: .3s all;
}

.home_sec3 .list_address li:not(:last-child) {
    margin-bottom: 1.25rem;
}

.home_sec3 .list_address li.active, .home_sec3 .list_address li:hover {
    background: linear-gradient(90deg, #008F7E 0%, rgba(0, 143, 126, 0) 100%);
}

.home_sec3 .list_address ul {
    padding-right: 0.625rem;
    max-height: 50vh;
    overflow: auto;
    z-index: 2;
    position: relative;
}

.home_sec3 .list_address ul::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.3);
    background-color: #085456;
    border-radius: 6.25rem;
}

.home_sec3 .list_address ul::-webkit-scrollbar {
    width: 0.25rem;
    background-color: #008375;
    border-radius: 6.25rem;
}

.home_sec3 .list_address ul::-webkit-scrollbar-thumb {
    background-color: #008375;
    border-radius: 6.25rem;;
}

.home_sec3 .list_address li.active .icon, .home_sec3 .list_address li:hover .icon {
    border: 0.0625rem solid #DFB46F;
}

.home_sec3 .inner li:hover:before, .home_sec3 .inner li.active:before {
    background: linear-gradient(180deg, #FAD395 0%, #FAD395 93.92%);
}

.home_sec3 .inner li:hover:after, .home_sec3 .inner li.active:after {
    border: 0.0313rem solid #F6CE8F;
}

.home_sec3 .list_address > span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(180deg, #003D44 0%, #004440 100%);
    left: 0.0625rem;
    right: 0.0625rem;
    top: 0.0625rem;
    border-radius: 1.25rem;
    z-index: 1;
}

.home_sec3 .list_address:before, .home_sec3 .list_address:after {
    position: absolute;
    content: url(../images/la_1.png);
    bottom: -0.5rem;
    left: 3.875rem;
    transform: translateX(-100%);
}

.home_sec3 .list_address:after {
    content: url(../images/la_2.png);
    left: unset;
    right: 4.125rem;
    transform: translateX(100%);
}

.home_sec3:before {
    position: absolute;
    content: '';
    bottom: 0;
    background-image: url(../images/border_bottom_vitri.png);
    height: 12.4375rem;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}

.style_popup_mb {
    padding: 0;
    border-radius: 1.25rem;
    overflow: hidden;
    background: linear-gradient(180deg, #003D44 0%, #004A38 100%);
    max-width: 87.5rem;
}

.style_popup_mb .inner {
    display: flex;
    align-items: center;
}

.style_popup_mb .inner img {
    display: block;
}

.style_popup_mb .inner > * {
    width: 50%;
}

.style_popup_mb .inner .box_content {
    padding: 1.25rem 5%;
}

.style_popup_mb .inner .box_content .heading_h2 {
    font-size: 2.8125rem;
}

.style_popup_mb .inner .box_content .content {
    color: white;
    margin-bottom: 1.875rem;
}

.style_popup_mb .inner .box_content:before {
    position: absolute;
    content: url(../images/la_cay.png);
    bottom: -0.3125rem;
    right: 0;
}

.project_details_sec_3.home_sec4 .grid-container {
    align-items: flex-end;
}

.project_details_sec_3.home_sec4 .wrap_content {
    max-width: 43.75rem;
}

.project_details_sec_3.home_sec4 .wrap_content .heading_h2 {
    margin-bottom: 0;
}

.home_sec5 a {
    position: relative;
}

.home_sec5 .bg:before {
    z-index: 9;
    pointer-events: none;
}

.home_sec6 a.button_style {
    float: right;
    margin-top: 1.875rem;
}

.home_sec6 .content {
    max-width: 41.875rem;
}

.home_sec6 .heading_h2 {
    margin: 0;
}

.slider_project {
    margin-top: 3.125rem;
    /*width: calc(100% + calc(100vw - 85.75rem)/2);*/
    /*padding-right: calc(0rem + calc(100vw - 87.5rem)/2);*/
}

.slider_project .box_img {
    border-radius: 6.25rem 0rem;
    height: 18.125rem;
    overflow: hidden;
    margin-bottom: 1.875rem;
}

.slider_project .box_img img {
    transform: translateX(0rem);
    max-width: unset;
    width: calc(100% + 0.9375rem);
    height: 100%;
    object-fit: cover;
    transition: .5s all;
}

.slider_project .item:hover .box_img img {
    transform: translateX(-0.9375rem);
}

.slider_project .item {
    position: relative;
}

.slider_project h3 {
    display: flex;
    color: white;
    justify-content: space-between;
    font-family: var(--font-title-black);
    font-size: 1.5625rem;
    margin: 0;
    transition: .3s all;
}

.slider_project .item:hover h3 {
    color: #DFB46F;
}

.slider_project h3 svg {
    margin-left: 1.25rem;
    margin-right: 1.1875rem;
}

.slider_project:before {
    width: calc(0rem + calc(100vw - 87.5rem) / 2);
    height: 100%;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    z-index: 99;
}

.slider_project .swiper-slide {
    opacity: .5;
    transition: .3s all;
}

.slider_project .swiper-slide.swiper-slide-active, .slider_project .swiper-slide.swiper-slide-active + *, .slider_project .swiper-slide.swiper-slide-active + * + * {
    opacity: 1;
}

.icon-utilitis {
    background: linear-gradient(55.11deg, #003539 16.95%, #004B39 84.84%);
    border: 0.0625rem solid #DFB46F;
    width: 4.0625rem;
    height: 4.0625rem;
}

.utilities-list-item ul li a.active .icon-utilitis {
    width: 5.3125rem;
    height: 5.3125rem;
    background: linear-gradient(146.79deg, #DFB46F 16.21%, #FFE5BB 50.86%, #DFB46F 86.73%);
    border: 0.0625rem solid #DFB46F;
}

.decription-for-utilities-wrap {
    width: auto;
    max-width: 35.8125rem;
    text-align: right;
    margin: 0 calc(calc(100vw - 87.5rem) / 2) 0 auto;
}

.decription-for-utilities-wrap .heading_h2 {
    margin: 0;
    text-shadow: none;
}

.decription-for-utilities-wrap .content {
    font-size: 0.9375rem;
}

.home_sec7 .bg {
    z-index: 2;
    pointer-events: none;
}

.utilities-list {
    z-index: 99;
}

.utilities-list:before {
    width: 100%;
    height: 100%;
    background-image: url(../images/vong_tron.png);
    content: '';
    position: absolute;
    top: 0.1875rem;
    left: 0.25rem;
    background-size: cover;
}

/*.home_sec_8 .fp-tableCell {*/
/*    vertical-align: bottom;*/
/*}*/

.home_sec_8 .wrap_post .item_post {
    padding-bottom: 0;
    border-radius: 1.25rem 1.25rem 0 0;
}

.home_sec_8 .wrap_post .item_post .box_img {
    border-radius: 1.25rem 1.25rem 0 0;
}


.home_sec_8 .wrap_post .item_post:before {
    border-radius: 1.25rem 1.25rem 0 0;
}

section.home_sec_8 {
    margin-top: 0;
}

.home_sec_8 .bg {
    background-size: cover;
}

.home_sec_9 .wrap_items {
    display: flex;
    margin: 0 -1.823rem;
}

.home_sec_9 .wrap_items .item {
    width: calc(50% - 4.375rem);
    margin: 0 1.823rem;
    position: relative;
}

.home_sec_9 .wrap_items .item .box_img {
    height: 21.4375rem;
    width: 100%;
    overflow: hidden;
    box-shadow: 0rem 0.25rem 1.875rem rgba(4, 83, 84, 0.1);
    border-radius: 1.25rem;
    margin-bottom: 1.25rem;
}

.home_sec_9 .wrap_items .item .box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home_sec_9 .wrap_items .item .box_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    transition: .3s all;
}

.home_sec_9 .wrap_items .item .box_content h3 {
    margin: 0;
    font-family: var(--font-title-black);
    font-size: 2.8125rem;
}

.home_sec_9 .wrap_items .item:hover .box_content {
    color: #F9DBAC;
}

.home_sec_9 .grid-33 {
    padding-top: 2.8125rem;
}

.heading_h2 {
    text-shadow: none !important;
}

.home_sec_9 .bg:before {
    background-image: url(../images/before_gal.png);
    height: 19.0625rem;
    width: 100%;
    bottom: 0;
    top: unset;
}

.footer_page .fp-tableCell {
    vertical-align: bottom;
}

.footer_page div#form_dk {
    background: linear-gradient(180deg, rgba(0, 99, 74, 0) 4.06%, rgba(0, 68, 55, 0.7) 40.71%, #002323 100%);
    padding: 2.75rem 6.875rem 21vh;
    position: relative;
}

.footer_page div#form_dk:before {
    position: absolute;
    content: url(../images/bf_form.png);
    bottom: -0.9375rem;
    right: -8.125rem;
}

.footer_page div#form_dk .heading_h2 {
    margin-bottom: 0;
}

.footer_page h2.heading_h2 {
    margin: 0;
}

.footer_page .box_content {
    padding-top: 3.125rem;
}

section {
    position: relative;
}

nav#site-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s all;
    z-index: 9;
    opacity: 0;
    pointer-events: none;
    background-image: url(../images/bg_menu.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.site-logo {
    opacity: 1;
    transition: .5s all;
    top: 0.625rem;
}

.site-logo.active {
    opacity: 0;
    pointer-events: none;
}

header#masthead {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    padding: 1.0625rem 3.75rem;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    background: transparent;
    align-items: flex-start;
}

.inside-header {
    display: flex;
    flex-wrap: nowrap;
    padding: 0;
}

.toggle_menu {
    color: #F9DBAC;
    font-family: var(--font-title-bold);
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 99;
}

.wrap_contact_right {
    position: relative;
    z-index: 99;
}

.toggle_menu svg {
    margin-right: 0.9375rem;
}

nav#site-navigation.active {
    opacity: 1;
    pointer-events: unset;
}

.site-logo img {
    transition: .3s all;
    height: 7.5rem;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    max-width: unset;
}

.wrap_contact_right ul {
    display: flex;
    align-items: center;
}

.wrap_contact_right ul a {
    display: flex;
    align-items: center;
    color: #F9DBAC;
    font-size: 1.5rem;
    font-family: var(--font-title-bold);
    opacity: 1;
    transition: .3s all;
    transform: scale(1);
}

.wrap_contact_right ul li:not(:last-child) {
    margin-right: 0.625rem;
}

.site-logo {
    position: fixed;
    top: 0.625rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
}

header#masthead:before {
    background: linear-gradient(180deg, rgba(0, 52, 42, 0.7) 0%, rgba(0, 87, 67, 0.3) 50.46%, rgba(0, 88, 67, 0) 100%);
    width: 100%;
    height: 11rem;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    z-index: -1;
    pointer-events: none;
}

.wrap_contact_right ul li:not(:last-child) {
    margin-right: 1.25rem;
}

nav#site-navigation li {
    display: block;
}

.main-navigation .main-nav > ul {
    display: block;
    text-align: center;
}

.main-navigation .main-nav ul li a {
    font-family: var(--font-title);
    color: #DFB46F !important;
    font-size: 1.8rem;
    text-transform: uppercase;
    line-height: 4.125rem;
    min-width: 21.875rem;
    opacity: 1;
    transition: .3s all;
    transform: scale(1);
}

.main-navigation .main-nav ul li a:hover,
.wrap_contact_right ul a:hover {
    /*opacity: .8;*/
    /*transform: scale(.9);*/
    background-image: url(../images/bg_active.png);
    background-size: 100% 100%;
    background-position: center;
}

.main-navigation .main-nav ul li {
    margin: 0.3125rem 0;
}

.menu-item-has-children .dropdown-menu-toggle {
    display: none;
}

.main-navigation .main-nav ul li.menu-item-has-children > a {
    padding-right: 1.25rem;
}

.main-navigation .main-nav ul li[class*="current-menu-"] > a {
    font-family: var(--font-title-bold);
    /*background-image: url(../../images/bg_active.png);*/
    background-size: 100% 100%;
    background-position: center;
    background: linear-gradient(270deg, #dfb46f00 0%, #DFB46F 50.35%, #dfb46f00 100%) !important;
    color: #00634B !important;
}

nav#site-navigation {
    flex-wrap: wrap;
    justify-content: center;
}

form.search-form input {
    width: 43.9375rem;
    border: 0.0625rem solid rgba(255, 255, 255, 0.4);
    border-radius: 6.25rem;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.7) !important;
    outline: none;
    height: 3.5625rem;
    padding: 0 1.875rem;
    background-image: url(../images/search.svg) !important;
    background-repeat: no-repeat !important;
    background-position: top 0.625rem right 0.9375rem !important;
    padding-right: 6.25rem;
}

form.search-form {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 5%;
}

input.search-submit {
    display: none;
}

.main-navigation .inside-navigation {
    justify-content: center;
}

.home.fp-viewing-gfx .site-logo img {
    height: 20.625rem;
    filter: brightness(1) invert(0);
}

.load_page {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
    width: 100%;
    display: flex;
    pointer-events: none;
    /*background: #7c8f15;*/

}

@keyframes opa {
    to {
        /*fill: linear-gradient(180deg, #DFB46F 0%, #FFE1B1 26.74%, #EBC588 63.72%);*/
        opacity: 0;
    }
}

.load_page.active {
    animation-delay: .5s;
    animation-name: opa;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.55, .25, .43, .96);
}

.load_page > * {
    width: 50%;
    display: flex;
    align-items: center;
}

.load_page img {
    display: block;
    max-width: unset;
    min-height: 100vh;
    transition: 1s all;
    transform: translateX(0);
}

.load_page .wrap_right {
    justify-content: flex-end;
}

.load_page.active .wrap_left img {
    transform: translateX(-100%);
}

.load_page.active .wrap_right img {
    transform: translateX(100%);
}

.load_home_page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: 1s all;
    opacity: 1;
}

.load_home_page.active {
    opacity: 0;
    pointer-events: none;
}

.footer_page {
    overflow: hidden;
}

.tien_ich_page .bg:before {
    background-image: url(../images/bg_tien_idch.png);
}

#fp-nav a {
    height: 2rem !important;
}

#fp-nav ul li, .fp-slidesNav ul li {
    height: 2rem;
    width: 0.125rem;
    margin: 0.9375rem 0;
}

#fp-nav ul li a, .fp-slidesNav ul li a {
    border-radius: 0;
}

#fp-nav ul li a span, .fp-slidesNav ul li a span {
    height: 2rem !important;
    border-radius: 0.625rem !important;
    width: 0.125rem !important;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 !important;
}

#fp-nav ul li a.active span, #fp-nav ul li:hover a.active span, .fp-slidesNav ul li a.active span, .fp-slidesNav ul li:hover a.active span {
    margin: 0 !important;
    background: #F9DBAC;
    transform: unset !important;
}

#fp-nav ul li .fp-tooltip {
    font-size: 0.9375rem;
    color: #F9DBAC;
    font-family: var(--font-title-black);
    top: 50%;
}

body.search {
    background: white;
}

body.search section.section.post_details .heading_h2 {
    color: #00634B !important;
    background: linear-gradient(270deg, #DFB46F 31.03%, #FFD89B 50.35%, #DFB46F 73.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: unset;
    margin-bottom: 0;
}

div#load_search {
    display: flex;
    flex-wrap: wrap;
    margin: 3.125rem -1.25rem 0;
}

div#load_search .item {
    width: calc(25% - 2.5rem);
    margin: 0 1.25rem 2.5rem;
}

div#load_search .item .box_img {
    height: 14.0625rem;
    border-radius: 0.625rem;
    overflow: hidden;
    margin-bottom: 0.625rem;
}

div#load_search .item .box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

div#load_search .item span {
    font-size: 0.875rem;
    color: #333333;
    display: block;
    margin-bottom: 0.625rem;
}

div#load_search .item h3 {
    font-family: var(--font-title-black);
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    font-size: 1.875rem;
}

div#load_search .item .content {
    font-size: 0.875rem;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.contact_sec_1 a {
    transition: .3s all;
}

.contact_sec_1 a:hover {
    color: #eac07e !important;
}

.single-project .project_details_sec_3.project_sec_3 .grid-container {
    align-items: self-end;
    padding-bottom: 15%;
}

.utilities-circle h3 {
    font-size: 2.5rem;
    position: absolute;
    top: 50%;
    right: 9.375rem;
    transform: translate(0%, -50%);
    color: white;
    font-family: var(--font-title-black);
    margin: 0;
}

.about_sec_3 .inner .wrap_content .heading_h2 {
    margin: 0;
}

.about_sec_8 h2.heading_h2 {
    margin-bottom: 3.125rem;
}

.faqs .active .wrap_title span:after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.news_page .wrap_post .item_post {
    margin-bottom: 1.875rem;
}

.single-post .item_post:hover *.content {
    color: #333333 !important;
}

.recruitment_sec_2 .content li::marker {
    color: #DFB46F;
}

.recruitment_sec_2 .content ul {
    margin-left: 1.25rem;
}

div#load_content_td .inner .content_ut .box_inner {
    position: relative;
}

div#load_content_td .inner .content_ut .box_inner:before {
    height: 17.0625rem;
    background: linear-gradient(180deg, #ffffff00 73.08%, #004e3c 100%);
    width: 100%;
    content: '';
    position: absolute;
    bottom: 0;
}

.project_sec_7:before {
    background: linear-gradient(180deg, #ffffff00 73.08%, #014748 100%);
    width: 100%;
    height: 100vh;
    content: '';
    position: absolute;
    bottom: 0;
    z-index: 2;
}

.copyright {
    position: absolute;
    z-index: 99;
    bottom: 0.625rem;
    left: calc(calc(100vw - 87.5rem) / 2);
    font-size: 0.8125rem;
    margin: 0 !important;
}

.icon-utilitis-wrap .icon-utilitis {
    box-shadow: 0 0 1.5rem transparent;
}

.icon-utilitis-wrap .icon-utilitis:hover {
    box-shadow: 0 0 1.5rem #e5d3b2;
}

.page-template-project div#fp-nav {
    display: none !important;
}

div#load_content_td .item.nop_ho_so {
    padding-bottom: 0;
}

.form_ut .wpcf7 form .wpcf7-response-output {
    display: inline-block;
    width: 100%;
}

ul.button_fixed {
    position: fixed;
    z-index: 9999;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

ul.button_fixed svg {
    display: block;
}

ul.button_fixed a {
    width: 70px;
    height: 4.4375rem;
    background: #003D44;
    border: 0.0625rem solid #FCD597;
    border-radius: 30.4412rem 0rem 0rem 30.4412rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0.125rem 0;
}

@keyframes trin {

    from {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    20%, 32%, 44%, 56%, 68% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    23%, 35%, 47%, 59%, 71% {
        transform: rotate3d(0, 0, 1, 15deg);
    }
    26%, 38%, 50%, 62%, 74% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    29%, 41%, 53%, 65%, 77% {
        transform: rotate3d(0, 0, 1, -15deg);
    }
    80% {
        transform: rotate3d(0, 0, 1, 0deg);
    }

}

.wrap_contact_right ul li:first-child a img {
    animation-name: trin;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.home_sec5 a {
    display: flex;
    justify-content: center;
    position: relative;
    height: 100vh;
}

.home_sec5 a > img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

span.button_360 {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 999;
    transform: translate(-50%, -50%);
}

span.box_button {
    position: absolute;
    top: 76.6%;
    left: 57.4%;
}

.home_sec5 a > img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

span.button_360:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    animation: pulse-border 1000ms ease-out infinite;
    z-index: -1;
    border: 0.0938rem solid #e8bf7e;
    background: #e8bf7e;
}

.single-project header .site-logo {
    opacity: 1;
    transition: .3s all;
}

.main-navigation ul ul {
    position: unset !important;
    height: 0;
    display: block;
    float: unset;
    opacity: 1;
    margin: 0 !important;
    width: auto;
    background: transparent;
    box-shadow: none;
    text-align: center;
    /*max-height: 0;*/
    transition: .5s all;
    overflow: hidden !important;
}

.main-navigation ul ul a {
    font-size: 1.4375rem !important;
}

/*.single-project header.sticky .site-logo{*/
/*    opacity: 0;*/
/*}*/
/*.single-project.fp-viewing-du-an header .site-logo {*/
/*    opacity: 1;*/
/*}*/
@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.home_sec6 .arrow_slider {
    left: -7.5rem;
}

.home_sec6 .arrow_slider.next {
    right: -7.5rem;
}

header .site-logo {
    opacity: 1;
    transition: .3s all;
}

header.sticky .site-logo {
    opacity: 0;
    pointer-events: none;
}

.project_details_sec_5.project_sec_6 {
    margin-top: 0;
    min-height: unset;
    overflow: hidden;
}

.project_details_sec_5.project_sec_6 .grid-container {
    min-height: unset;
    max-width: 85%;
}

.product_slide .box_content ul a {
    background: #FFFFFF;
    color: #00322E;
}
.product_slide .arrow_slider_text.next {
    left: unset;
    right: 160px;
}
.main-navigation .main-menu > ul > li:hover ul {
    height: 20.625rem;
}

.main-navigation .main-menu > ul > li ul {
    transition: .5s !important;
    height: 0;
    overflow: hidden;
}

.main-navigation .main-nav > ul > li:hover ul {
    height: auto;
}

.main-navigation .main-nav > ul {
    padding-right: 1.25rem;
    max-height: 60vh;
    overflow: auto;
}

.main-navigation .main-nav > ul::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.3);
    background-color: #015c4b;
}

.main-navigation .main-nav > ul::-webkit-scrollbar {
    width: 0.125rem;
    background-color: #FAAF18;
}

.main-navigation .main-nav > ul::-webkit-scrollbar-thumb {
    background-color: #FAAF18;
}

.hide_logo_section .site-logo {
    opacity: 0 !important;
    pointer-events: none;
    transition: .3s all;
}

.hide_logo_section.fp-viewing-du-an .site-logo {
    opacity: 1 !important;
    pointer-events: unset;
}

.home_sec5 .wrap {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home_sec5 a {
    display: inline-flex;
    align-items: center;
    height: auto;
}

.home_sec5 a > img {
    position: unset;
    width: auto;
    height: auto;
    transform: unset;
    max-width: 100%;
    max-height: 100%;
    object-fit: unset;
}

.popup_inner {
    max-width: 62.5rem;
}

.popup_img img {
    display: block;
}

.popup_img * {
    outline: none;
}

.fancybox-content {
    padding: 0;
}

.fancybox-close-small {
    fill: white;
    background: #015c4b !important;
    border-radius: 50%;
    right: 0.625rem !important;
    top: 0.625rem !important;
}

.fancybox-close-small svg path {
    fill: white;
}

.popup_inner.popup_form {
    display: flex;
    align-items: center;
    background: #00634B;
}

.popup_inner.popup_form > * {
    width: 50%;
}

.popup_inner.popup_form img {
    display: block;
}

.popup_inner.popup_form .box_form {
    padding: 0 1.5625rem;
    box-sizing: border-box;
}

.popup_inner.popup_form .box_form h3 {
    color: white;
}

.popup_inner.popup_form .wrap_img {
}

.popup_inner.popup_form .wrap_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 80vh;
}

.wrap_mat_bang {
    position: absolute;
    width: 100%;
    height: 100%;
}

ul.menu_wpml {
    display: flex;
    align-items: center;
    margin: -6px 0 0 21px;
}

.project_sec_8 .group_content {
    flex-wrap: wrap;
}

.project_sec_8 .group_content h2.heading_h2 {
    margin-bottom: 20px;
}

ul.menu_wpml a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #F9DBAC;
    justify-content: center;
    margin-right: 10px;
}

li.menu-item-vi {
    order: -1;
}

li.menu-item-zh-hans {
    order: 3;
}

a.generate-back-to-top {
    display: none;
}

section.project_sec_4 .grid-container {
    position: absolute;
    top: 160px;
    z-index: 9;
    left: 50%;
    transform: translateX(-50%);
}

.project_sec_4 .box_img img {
    max-height: 100vh;
    object-fit: cover;
}

.project_sec_6 .bg {
    transform: scale(1.2);
}

.content.bottom {
    margin: 10px 0 0 0;
    font-family: var(--font-bold);
}

.content.bottom a {
    float: unset
}

.project_sec_8 .group_content {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.button_fixed a svg {
    max-width: 64%;
    height: auto;
}

@media only screen and (min-width: 1200px) {
    .fp-section.fp-table, .fp-slide.fp-table, .fp-tableCell {
        max-height: 100vh !important;
    }
}

@media only screen and (max-width: 1199px) {
    .hero-style {
        height: auto;
        padding-bottom: 56.25%;
    }

    section.home_sec2 {
        padding: 3.125rem 0;
    }

    .home_sec3 {
        padding-top: 3.125rem;
    }

    .project_details_sec_3 .grid-container {
        min-height: 26.042rem;
    }

    .grid-100 {
        width: 100%;
    }

    .home_sec5 .wrap {
        height: auto;
    }

    .slider_project {
        width: 100%;
    }

    .home_sec6 {
        padding: 3.125rem 0;
    }

    .wrap_slider {
        display: inline-block;
        max-width: 100%;
    }

    section.home_sec_8 {
        padding-bottom: 3.125rem;
    }

    section.home_sec_9 {
        padding: 3.125rem 0;
    }

    section.about_sec_9 {
        padding: 3.125rem 0;
    }

    .footer_page div#form_dk {
        /* padding: 60px 60px 6.90625rem; */
        padding: 4.75rem 3.875rem 25vh;
    }

    ul.button_fixed svg {
        max-width: 50%;
    }

    .utilities-list-item ul li {
        width: 11rem;
        height: 11rem;
    }

    .decription-for-utilities-wrap {
        margin: 0 calc(calc(100vw - 40.6155rem) / 2) 0 auto;
    }

    .decription-for-utilities-wrap {
        margin: 0 calc(calc(100vw - 40.6155rem) / 2) 0 auto;
        max-width: 20.8125rem;
    }

    section {
        overflow: hidden;
    }

    ul.button_fixed svg {
        max-width: 60%;
    }

    .hero-style {
        height: auto;
        padding-bottom: 56.25%;
    }

    section.about_sec_2 {
        padding: 60px 0 0;
    }

    .about_sec_3 {
        height: 500px;
    }

    .about_sec_3 .box_tab {
        height: 360px;
        display: flex;
        align-items: flex-end;
    }

    .about_sec_3 .inner li a span.icon img {
        max-width: 36%;
        max-height: 36%;
        width: auto;
        height: auto;
    }

    section.about_sec_4 {
        padding: 161px 0;
    }

    .about_sec_5 {
        padding: 150px 0;
    }

    .about_sec_5 .bg:before {
        display: none;
    }

    section.about_sec_6 {
        padding-top: 60px;
    }

    section.about_sec_7 {
        padding: 60px 0;
    }

    .slider_team h3 {
        font-size: 20px;
    }

    section.about_sec_8 {
        padding: 60px 0;
    }

    .slider_partner .item img {
        max-width: 60%;
        max-height: 60%;
    }

    .item_post .box_img {
        position: relative;
    }

    .wrap_post .item_post {
        width: 50%;
    }

    .wrap_post_top .item_post:nth-child(1) .box_img {
        height: auto;
    }

    section.project_page {
        height: 500px;
        position: relative;
    }

    .project_page .box_content {
        height: 100%;
    }

    .project_page .box_content .heading_h2 {
        font-size: 2.5rem;
    }

    .view_more svg {
        width: 60px;
    }

    section.project_details_sec_2 {
        min-height: 400px;
    }

    .project_details_sec_2 li img {
        max-width: 125px;
    }

    .project_details_sec_3 .grid-container {
        min-height: 500px;
    }

    .ulilities-bg img {
        object-fit: cover;
    }

    section.project_details_sec_8 {
        padding: 60px 0;
    }

    section.project_details_sec_7 {
        padding: 60px 0 0;
    }

    .utilities-list-item ul li {
        width: 20rem;
        height: 20rem;
    }

    .slider_product_style_2 .arrow_slider_text svg {
        width: 73px;
    }

    .project_sec_6 {
        padding: 60px 0;
    }

    .project_details_sec_6 {
        padding: 60px 0;
    }

    .slider_image_project h3 {
        font-size: 19px;
        justify-content: space-between;
    }

    .slider_image_project {
        padding: 0;
        width: 100%;
    }

    div#load_gallery_product {
        max-width: 60vw;
    }

    .single-project .project_details_sec_3.project_sec_3 .grid-container {
    }

    .project_sec_2 .item .icon img {
        max-width: 70%;
        max-height: 70%;
    }

    .project_sec_2 {
        min-height: 600px;
    }

    .project_sec_3 {
        height: auto;
    }

    .project_sec_3 .wrap_content h2:before {
        background-size: 100% 100%;
    }

    .project_sec_4 {
        padding-top: 12.5rem;
        margin-top: -124px;
    }

    .project_sec_4 .box_img:before {
        display: none;
    }

    .project_sec_4 .box_img {
        margin-top: 30px;
    }

    .project_sec_5 .group_content {
        margin: 0 auto 16.375rem;
    }

    .project_sec_5 {
        min-height: 70rem;
    }

    .project_sec_6, .project_sec_6 .grid-container {
        min-height: 40.8125rem;
    }

    ul.menu_type_project a:before {
        background-position: center;
    }

    .project_sec_8 ul.menu_type_project {
        margin-bottom: 0;
    }

    .project_sec_8 {
        margin-top: 0;
    }

    .project_sec_4 {
        margin-top: -14rem;
    }

    section.recruitment_sec_1 {
        padding: 150px 0;
    }

    section.recruitment_sec_2 {
        padding: 100px 0;
    }

    .recruitment_sec_2 .bg:before {
        display: none;
    }

    section.recruitment_sec_3 {
        padding: 80px 0;
    }

    .recruitment_sec_2 .bg:before {
        display: none;
    }

    section.recruitment_sec_3 {
        padding: 80px 0;
    }

    .popup_td {
        width: 100vw;
        height: 100vh;
        top: 0;
        position: fixed;
    }

    .project_sec_1 {
        padding-bottom: 56.25%;
    }

    .project_sec_1 img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    section.project_sec_4 .grid-container {
        position: unset;
        transform: unset;
    }

    .slider_tien_ich .item h3 {
        bottom: 2rem;
        font-size: 1.5rem;
    }

    .project_sec_8 .grid-45 .content {
        font-size: 1.5rem;
        max-width: 100%;
    }

    .faqs .content {
    }

    .faqs .wrap_title {
    }

    .project_details_sec_8 .content {
        font-size: 1.5rem;
    }

    .project_sec_1 img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .project_sec_1 {
        padding-bottom: 56.25%;
    }

    section.project_sec_4 .grid-container {
        position: unset;
        transform: unset;
    }
}

@media only screen and (max-width: 991px) {
    .grid-container {
        max-width: 37.5rem;
    }

    .home_sec3 .grid-container > * {
        width: 50%;
    }

    .home_sec3 .grid-container {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .home_sec3 .inner {
        margin: 0;
    }

    .home_sec3 .wrap_img {
        padding-top: 10.417rem;
    }

    .heading_h2 {
    }

    .heading_h2 {
        font-size: 2rem;
    }

    span.button_360:before {
        width: 4.5rem;
        height: 4.5rem;
    }


    section.home_sec_9 .grid-container > * {
        width: 100%;
    }

    .wrap_slider {
        max-width: 100%;
    }

    .home_sec_9 .wrap_items .item .box_img {
        height: auto;
        padding-bottom: 100%;
        position: relative;
    }

    .home_sec_9 .wrap_items .item .box_img img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .utilities-circle {
        width: 19.375rem;
        height: 19.375rem;
    }

    .home_sec3 .content {
        margin-bottom: 1.5rem;
    }

    .home_sec3 .list_address ul {
        max-height: 290px;
    }

    .project_details_sec_3 {
        overflow: unset;
    }

    .style_popup_mb .inner .box_content .heading_h2 {
        font-size: 1.2rem;
    }

    .style_popup_mb {
        max-width: 680px;
    }

    .style_popup_mb .inner .box_content .content {
        margin-bottom: .875rem;
    }

    .style_popup_mb .inner {
        height: 100%;
    }

    .slider_project .box_img {
        height: auto;
        padding-bottom: 90%;
        position: relative;
    }

    .slider_project .box_img img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .slider_project h3 {
        font-size: 1.2625rem;
    }

    .utilities-list-item ul li {
        width: 10rem;
        height: 10rem;
    }

    .icon-utilitis {
    }

    .item_post .box_img {
        height: auto;
        padding-bottom: 56.25%;
    }

    .item_post .box_img img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .home_sec_8 .wrap_post .item_post .box_img {
        overflow: hidden;
        position: relative;
    }

    .project_sec_8 .group_content {
        margin-bottom: 3rem;
    }

    .item_post .box_content h3 {
        font-size: 1.2rem;
        height: 3rem;
    }

    .home_sec_9 .wrap_items .item .box_content h3 {
        font-size: 1.2rem;
    }

    .home_sec_9 .wrap_items .item .box_content h3 {
        padding-top: 0 !important;
    }

    section.home_sec_9 .grid-container > * {
        padding-top: 0;
    }

    .home_sec_9 .grid-33 {
        margin-bottom: 30px;
    }

    .about_sec_9 .wrap_slider {
        max-width: 100%;
    }

    .about_sec_9 .arrow_slider {
        left: -5rem;
    }

    .about_sec_9 .arrow_slider.right {
    }

    .about_sec_9 .arrow_slider.next {
        right: -5rem;
    }

    .about_sec_9 .arrow_slider svg {
        width: 64px;
        height: auto;
    }

    .contact_sec_1 .box_content {
        padding-right: 0;
    }

    .footer_page div#form_dk {
        padding: 2.75rem 1.5rem 25vh;
    }

    .home_sec_9 .bg:before {
        height: 9.0625rem;
    }

    .home_sec6 .arrow_slider {
        left: -5rem;
    }

    .arrow_slider svg {
        width: 64px;
    }

    .home_sec6 .arrow_slider.next {
        right: -5rem;
    }

    a.scroll_down svg {
        width: 40px;
    }

    a.scroll_down {
        bottom: 20px;
    }

    .has-inline-mobile-toggle .mobile-menu-control-wrapper {
        display: none !important;
    }

    .site-logo img {
        height: 4.5rem;
    }

    .wrap_contact_right ul a {
        font-size: 0;
    }

    .wrap_contact_right ul a img {
        width: 31px;
    }

    .main-navigation .main-nav > ul {
        display: block !important;
    }

    .main-navigation .main-nav ul li a {
        font-size: 1.5rem;
    }

    .icon-utilitis {
        width: 3rem;
        height: 3rem;
    }

    .icon-utilitis-wrap img {
        max-width: 50%
    }

    .utilities-list-item ul li a.active .icon-utilitis {
        width: 3.2rem;
        height: 3.2rem;
    }

    .utilities-list-item ul li a.active .icon-utilitis {
    }

    ul.button_fixed a {
        width: 2.9375rem;
        height: 3.4375rem;
    }

    .wrap_slider {
        max-width: 100% !important;
    }

    .slider_team .box_img img {
        height: 10.875rem;
    }

    .slider_team h3 {
        font-size: 18px;
    }

    .post_details .grid-container {
        max-width: 720px;
    }

    .banner_post h2 {
        font-size: 3.0625rem;
    }

    .image_page .wrap {
        flex-wrap: wrap;
        justify-content: center;
    }

    .item_gallery {
        width: calc(calc(100% / 2) - 20px);
        margin: 0 10px;
    }

    .item_gallery .box_img {
        height: auto;
        padding-bottom: 56.25%;
        position: relative;
        overflow: hidden;
        border-radius: 10px;
    }

    .item_gallery .box_img img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        left: 0;
        top: 0;
        transform: unset;
    }

    .wrap_gallery {
        margin: 0 -10px;
    }

    .item_gallery_top > * {
        width: 100% !important;
    }

    .item_gallery_top {
        flex-wrap: wrap;
    }

    .item_gallery_top .box_img {
        border-radius: 0 !important;
        padding-bottom: 56.25%;
        position: relative;
        height: auto;
    }

    .item_gallery_top .box_img img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px 20px 0 0;
    }

    .item_gallery_top .box_content {
        border-radius: 0 0 20px 20px;
        padding: 30px;
        border: 1px solid rgb(249 219 172 / 50%);
        border-top: 0;
    }

    div#load_gallery {
        max-width: 90%;
    }

    .about_sec_3 .inner li a span.icon {
        width: 4.5rem;
        height: 4.5rem;
    }

    .about_sec_3 .inner li a span.icon:after {
        width: 3.875rem;
        height: 3.875rem;
    }

    .about_sec_3 .inner .wrap_content {
        top: 5.25rem;
        max-width: 17.375rem;
    }

    .about_sec_3 .inner li span.box_content > b {
        font-size: 1.2rem;
    }

    .about_sec_3 .inner {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .about_sec_2 .content {
        padding-right: 20px;
        max-height: 21.25rem;
    }

    .about_sec_3 .box_tab {
        height: 300px;
    }

    .about_sec_3 {
        height: 500px;
    }

    .about_sec_4 .box_content a.play {
        flex: 0 0 auto;
        width: 4.625rem;
        height: 4.625rem;
        margin-right: 2.8125rem;
    }

    .about_sec_4 .box_content h3 {
        font-size: 2rem;
    }

    .about_sec_4 .box_content a.play:after {
        width: 8.375rem;
        height: 8.375rem;
    }

    .about_sec_4 .box_content a.play:before, .about_sec_4 .box_content a.play:after {
        width: 5.5625rem;
        height: 5.5625rem;
    }

    .about_sec_4 .box_content {
        padding-bottom: 5rem;
    }

    .about_sec_5 .box_content .content {
        font-size: 1.2rem;
    }

    .about_sec_5 {
        padding: 100px 0;
    }

    .slider_history .box_img img {
        height: 19.0625rem;
    }

    .slider_history .item .box_content {
        display: none;
    }

    .slider_history .swiper-slide-active .item .box_content {
        display: block;
    }

    .project_page .box_content .heading_h2 {
        font-size: 1.5rem;
    }

    .project_page .box_content {
        padding: 2rem;
        width: 20rem;
        flex-wrap: wrap;
        align-content: space-between;
    }

    .project_page .box_content ul {
        left: 2rem;
        right: 2rem;
        position: unset;
        width: 100%;
    }

    .project_details_sec_2 .bg:before {
        height: 100px;
        background-position: bottom center;
    }

    .project_details_sec_3 .box_img {
        max-width: 100%;
        width: 100%;
        margin-top: 20px;
    }

    .project_details_sec_3 .wrap > * {
        width: 100%;
    }

    .project_details_sec_3 .wrap {
        flex-wrap: wrap;
    }

    .project_details_sec_3 {
        padding-bottom: 40px;
    }

    .project_details_sec_3 .grid-container {
        min-height: 300px;
    }

    .project_details_sec_3 .wrap_content {
        max-width: 400px;
        padding-bottom: 0;
    }

    .project_sec_6 .grid-container {
        flex-wrap: wrap;
    }

    .project_sec_6 .grid-container > * {
        width: 100% !important;
    }

    .slider_product_style_2 {
        width: 100%;
    }

    .slider_product_style_2 .item h3 {
        font-size: 1.2rem;
    }

    .project_sec_6 .heading_h2:before {
        display: none;
    }

    .project_sec_6 .content {
        max-width: 100%;
        margin: 0 0 30px;
    }

    ul.menu_gallery_project a {
        font-size: 1rem;
        margin: 0 10px;
    }

    .project_details_sec_6 .grid-container > * {
        width: 100%;
    }

    .project_details_sec_6 .grid-container .grid-25 {
        text-align: center;
    }

    ul.menu_gallery_project {
        display: flex;
        justify-content: center;
        margin: 0 0 20px;
    }

    ul.menu_gallery_project a:before {
        display: none;
    }

    .project_details_sec_6 .bg:before {
        height: 100px;
        background-position: bottom center;
    }

    .project_sec_2 {
        padding-top: 5rem;
    }

    .project_sec_2 .grid-container > * {
        width: 100%;
    }

    .project_sec_2 .box_content .heading_h2:before {
        display: none;
    }

    .project_sec_2 .box_content .heading_h2 + .content {
        margin-left: 0;
    }

    .project_sec_2 .box_content .heading_h2 {
        padding-top: 0;
    }

    .project_sec_2 .list_items {
        padding-left: 0;
        display: flex;
        flex-wrap: wrap;
    }

    .project_sec_2 .list_items > * {
        width: 50%;
    }

    .project_sec_2 .item .icon:after {
        top: -1.2rem;
        left: -1.2rem;
        right: -1.2rem;
        bottom: -1.2rem;
    }

    .project_sec_2 .item .icon {
        flex: 0 0 auto;
        width: 2.958rem;
        height: 2.958rem;
    }

    .project_sec_2 .item h3 {
        font-size: 1.2rem;
    }

    .project_sec_2 .item .icon {
        margin-right: 2rem;
    }

    .project_sec_4 {
        margin-top: -7rem;
        background-position: top left -105px;
        margin-top: -9rem;
    }

    .project_sec_5 .group_content {
        margin: 0 auto 5.375rem;
    }

    .project_sec_5 {
        min-height: unset;
        padding-bottom: 200px;
    }

    .project_sec_6 {
        margin-top: -100px;
    }

    .project_sec_8 {
        margin-top: -100px;
    }

    .project_sec_8 .wrap_cs {
        margin-top: 100px;
    }

    ul.menu_type_project a {
        font-size: 1.2rem;
        margin: 0 10px;
        min-width: 8.4375rem;
    }

    .faqs .wrap_title .num {
        margin-right: 10px;
    }

    section.section.project_sec_6 .bg {
        background-size: 150% 150%;
    }

    section.section.project_sec_6 {
        margin-top: 0;
        padding-bottom: 80px;
        min-height: unset;
    }

    .project_sec_5 {
        padding-bottom: 60px;
    }

    .project_sec_5 .group_content {
    }

    .project_sec_7 {
        margin-top: 0;
    }

    .project_sec_8 {
        padding-bottom: 100px;
    }

    .recruitment_sec_2 .grid-container > * {
        width: 100%;
    }

    .recruitment_sec_2 .grid-50 > img {
        max-width: 100%;
        margin: 30px 0 0 0;
    }

    section.recruitment_sec_2 {
        padding: 60px 0;
    }

    ul.table_td li.wrap_title {
        display: none;
    }

    ul.table_td li {
        flex-wrap: wrap;
        border: 1px solid rgb(255 255 255 / 20%);
    }

    ul.table_td {
        padding-right: 0;
    }

    ul.table_td li .phong_ban:before {
        content: 'PhÃ²ng ban: ';
    }

    ul.table_td li > * {
        width: 50% !important;
        border: none !important;
    }

    ul.table_td li .vi_tri:before {
        content: 'Vá»‹ trÃ­: ';
    }

    ul.table_td li .dia_diem:before {
        content: 'NÆ¡i lÃ m viá»‡c: ';
    }

    ul.table_td li .song_luong:before {
        content: 'Sá»‘ lÆ°á»£ng: ';
    }

    ul.table_td li {
        margin-bottom: 20px;
        text-align: left;
    }

    ul.table_td li .vi_tri {
        padding-left: 10px;
    }

    ul.table_td li .song_luong, ul.table_td li .ung_tuyen {
        text-align: left;
    }

    ul.table_td li > * {
        padding: 15px !important;
    }

    div#load_content_td .inner h3.heading_h2 {
        font-size: 2rem;
    }

    div#load_content_td {
        max-width: 80%;
    }

    .project_sec_2 .item {
        margin-bottom: 4rem;
    }

    .project_sec_5 {
        padding: 5rem 0;
    }

    .project_sec_8 {
        margin-top: 0;
    }

    .project_sec_8 .wrap_cs {
        margin-top: 0;
    }

    .project_sec_8 .grid-45 .content {
        font-size: 1rem;
    }

    ul.menu_type_project {
        bottom: 2rem;
    }
}

@media only screen and (max-width: 767px) {
    header#masthead {
        padding:15px  10px;
    }

    .toggle_menu svg {
        width: 25px;
    }

    .site-header .header-image {
        height: 3.5rem;
    }

    .wrap_contact_right ul a img {
        width: 25px;
    }

    .wrap_contact_right ul li:not(:last-child) {
        margin-right: 1rem;
    }

    .home_sec3 .grid-container > * {
        width: 100%;
    }

    .home_sec3 .wrap_img {
        padding-top: 0;
    }

    .home_sec3 .list_address {
        padding: 3.125rem 0.9375rem 2.125rem 1.5625rem;
    }

    .home_sec3 .inner li:after {
        width: 1.523rem;
        height: 1.523rem;
    }

    .home_sec3 .inner li:before {
        width: .5rem;
        height: .5rem;
    }

    .home_sec3 .list_address li .icon {
        width: 2rem;
        height: 2rem;
    }

    .home_sec3 .list_address li .icon img {
        max-width: 60%;
        max-height: 54%;
        width: auto;
        height: auto;
    }

    .home_sec3 .list_address li:not(:last-child) {
        margin-bottom: 1rem;
    }

    span.button_360:before {
        width: 2rem !important;
        height: 2rem;
    }

    .slider_project h3 {
        font-size: .8rem;
    }

    .slider_project h3 svg {
        width: 26px;
        flex: 0 0 auto;
        margin-left: 10px;
    }

    .slider_project .box_img {
        border-radius: 50px 0 50px 0;
    }

    .item_post .box_content {
        padding: 0;
    }

    .item_post .box_content .content {
        margin-bottom: 10px;
    }

    .item_post .box_content h3 {
        margin-bottom: 10px;
    }

    .project_sec_8 .group_content {
        margin-bottom: 20px;
    }

    .home_sec_9 .wrap_items .item {
        width: calc(50% - 20px);
        margin: 0 10px;
    }

    .home_sec_9 .wrap_items {
        margin: 0 -10px;
    }

    div#form_dk h3.heading_h2 {
        font-size: 2rem;
    }

    div#form_dk .content {
        margin-bottom: 10px;
    }

    .wrap_form input, .wrap_form textarea {
    }

    .home_sec6 a.button_style {
        float: left;
    }

    ul.list_location li span:before {
        width: 2rem;
        height: 2rem;
    }

    ul.list_location li span {
        width: 1rem;
        height: 1rem;
    }

    .main-navigation .main-nav ul li a {
        line-height: 3.2rem;
    }

    .main-navigation .main-nav ul ul li a {
        font-size: 1.2rem !important;
    }

    .main-navigation .main-nav > ul {
        padding-right: 0;
    }

    .load_home_page svg {
        max-width: 60vw;
        width: auto;
        height: auto;
    }

    .load_home_page svg {
        max-width: 60vw;
        width: auto;
        height: auto;
    }

    .slider_project .box_img {
        overflow: hidden;
    }

    .home_sec6 .arrow_slider {
        display: none;
    }

    .home_sec7 {
        height: 450px;
    }

    .ulilities-bg {
        height: 100%;
    }

    .ulilities-bg img {
        height: 100%;
        object-fit: cover;
    }

    .decription-for-utilities-wrap {
        margin: 0;
        max-width: 150px;
        margin-left: auto;
        padding-right: 20px;
    }

    ul.button_fixed {
        bottom: 0;
        top: unset;
        transform: unset;
        width: 100%;
        display: flex;
    }

    ul.button_fixed li {
        width: 100%;
    }

    ul.button_fixed li a {
        width: 100%;
        height: 36px;
        border-radius: 0 !important;
        margin: 0;
    }

    ul.button_fixed svg {
        max-height: 50%;
    }

    .slider_gt {
        margin: auto;
    }

    .about_sec_9 .wrap_slider {
        max-width: 70% !important;
    }

    .about_sec_9 .arrow_slider {
        left: -4rem;
    }

    .about_sec_9 .arrow_slider.next {
        right: -4rem;
    }

    .about_sec_9 .arrow_slider svg {
        width: 45px;
    }

    .decription-for-utilities-wrap .heading_h2 {
        font-size: 20px;
    }

    .decription-for-utilities-wrap .content {
        font-size: 12px;
        text-align: justify;
    }

    .ulilities-content {
        bottom: 50%;
        transform: translateY(50%);
    }

    .ulilities-bg {
        background: black;
    }

    .ulilities-bg img {
        opacity: .5;
    }

    .popup_inner {
        max-width: 100vw;
    }

    .popup_inner.popup_form {
        flex-wrap: wrap;
    }

    .popup_inner.popup_form > * {
        width: 100%;
    }

    .popup_inner.popup_form .wrap_img img {
        max-height: 50vh;
        margin-bottom: 20px;
    }

    .popup_inner.popup_form .box_form h3 {
        font-size: 23px;
    }

    .popup_inner.popup_form .box_form {
        padding-bottom: 30px;
    }

    .project_details_sec_3 {
        overflow: hidden;
        background: black;
    }

    .project_details_sec_3.home_sec4 .wrap_content {
        padding-bottom: 20px;
    }

    .project_details_sec_3.home_sec4 .wrap_content .heading_h2 {
        font-size: 20px;
    }

    .project_details_sec_3 .wrap_content .content {
        font-size: 12px;
    }

    ul.list_location li .box_content {
        display: none;
    }

    .style_popup_mb .inner {
        flex-wrap: wrap;
    }

    .style_popup_mb .inner > * {
        width: 100%;
    }

    .project_details_sec_3 .bg {
        opacity: .7;
    }

    .project_details_sec_3 .wrap_content .content {
        max-width: 70%;
        margin-left: auto;
    }

    .slider_project .box_img {
        margin-bottom: 10px;
    }

    .wrap_post_top .item_post:nth-child(1) .box_content {
        order: -1;
        margin-top: 0;
    }

    .wrap_post_top .item_post:nth-child(1) {
        width: 50%;
    }

    .wrap_post_top .item_post:nth-child(2) {
        width: 50%;
    }

    .wrap_post_top .item_post {
        width: 100% !important;
        padding-left: 0;
        padding-right: 0;
    }

    .wrap_post_top {
        flex-wrap: wrap;
    }

    .wrap_post_top .item_post .box_content {
        margin-bottom: 20px !important;
    }

    .news_page {
        padding-top: 7rem;
        padding-bottom: 3rem;
    }

    .item_post .box_img {
        border-radius: 10px;
    }

    .item_post:before {
        display: none;
    }

    .banner_post .text_center {
        width: 90%;
        top: 50%;
    }

    .banner_post h2 {
        font-size: 2.0625rem;
    }

    .banner_post .wrap_img img {
        background-size: cover;
        background-position: top center;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .banner_post .wrap_img {
        position: relative;
        padding-bottom: 70%;
        display: block;
    }

    .post_details {
        padding-top: 40px;
    }

    .single-post section:not(.contact_sec_1) .heading_h2 {
        font-size: 25px;
    }

    .post_details .wrap {
        margin-top: 20px;
    }

    ul.list_terms a {
        font-size: 1rem;
        height: 2rem;
        padding: 0 1rem;
        margin: 0 5px;
    }

    .image_page .wrap ul.list_terms {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow: auto;
        padding-bottom: 10px;
        margin-bottom: 20px;
        margin-left: 0;
    }

    .image_page .wrap ul.list_terms li {
        flex: 0 0 auto;
    }

    .image_page {
        padding-top: 117px;
        padding-bottom: 50px;
    }

    .item_gallery {
        width: 100%;
        margin-bottom: 20px;
    }

    .item_gallery_top .box_content h3 {
        font-size: 1.2rem;
    }

    .item_gallery_top .box_content span {
        margin-bottom: 13px;
    }

    .item_gallery_top .box_content .view {
        font-size: 1rem;
        margin-top: 0;
    }

    .item_gallery h3 {
        padding: 0;
        font-size: 1.2rem;
    }

    .item_gallery:last-child {
        margin-bottom: 0;
    }

    .popup_gallery h3 {
        font-size: 1.2rem;
    }

    .wrap_slide_vertical {
        margin: 0;
    }

    .wrap_slide_vertical .item {
        height: 4rem;
    }

    .slider_history .swiper-slide-active .year .title {
        transform: translateY(-100%) scale(1.5);
        top: -1.125rem;
    }

    .slider_history .item .box_content {
        margin-top: 1.5rem;
    }

    .slider_history:before {
        top: 24.375rem;
    }

    section.about_sec_6 {
        padding-bottom: 60px;
    }

    .about_sec_2 .bg {
        background-position: bottom center;
    }

    .about_sec_2 img {
        margin-top: -6.375rem;
    }

    .about_sec_2 .content {
        margin-top: 30px;
    }

    .about_sec_3 .inner li {
        position: relative;
        top: unset;
        left: unset;
        width: 20%;
    }

    .about_sec_3 .inner li a {
        position: relative;
        bottom: unset;
        transform: unset !important;
        top: unset !important;
        left: unset !important;
        bottom: unset !important;
        width: 100%;
        justify-content: center;
    }

    .about_sec_3 .box_tab ul {
        display: flex;
    }

    .about_sec_3 .inner > img {
        display: none;
    }

    .about_sec_3 .box_tab {
        height: auto;
        margin-top: 50px;
    }

    .about_sec_3 {
        height: auto;
        padding-bottom: 84px;
    }

    .about_sec_3 .inner .wrap_content {
        position: relative;
        transform: unset;
        top: unset;
        left: unset;
        margin: 0;
        max-width: 100%;
        width: auto;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .about_sec_3 .inner li a span.icon {
        height: 100% !important;
        background: radial-gradient(37.77% 37.77% at 50.53% 50.53%, #F9D193 23.44%, #DFB46F 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
        width: 80% !important;
        padding-bottom: 80%;
    }

    .about_sec_3 .inner {
        max-width: 100%;
    }

    .about_sec_3 .inner li a span.box_content {
        position: absolute;
        margin: 0;
    }

    .about_sec_3 .inner li {
        top: unset !important;
        left: unset !important;
        text-align: center;
        justify-content: center;
        display: flex;
    }

    a {
    }

    .about_sec_3 .inner li a span.box_content {
        position: absolute;
        bottom: -10px !important;
        transform: translateY(100%) !important;
        text-align: center;
        margin: 0 !important;
    }

    .about_sec_3 .inner li a > * {
        width: 100% !important;
        top: unset !important;
        left: unset !important;
        right: unset !important;
        bottom: unset !important;
        transform: unset !important;
    }

    .about_sec_3 .inner li a span.icon:after {
        display: none;
    }

    .about_sec_3 .inner li a span.icon img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 90%;
    }

    .about_sec_3 .inner li span.box_content > b {
        margin: 0 !important;
        accent-color: aliceblue;
        margin: auto !important;
    }

    .about_sec_3 .inner li a .box_content * {
        margin: auto !important;
    }

    .about_sec_3 .inner li span.box_content > b {
        font-size: .9rem;
    }

    .about_sec_3 .inner li a .content {
        font-size: .7rem;
    }

    section.about_sec_4 {
        padding: 50px 0;
    }

    .about_sec_4 .box_content {
        padding-bottom: 0;
    }

    .about_sec_4 .box_content a.play:before, .about_sec_4 .box_content a.play:after {
        width: 3.5625rem;
        height: 3.5625rem;
    }

    .about_sec_4 .box_content a.play {
        width: 3rem;
        height: 3rem;
        margin-right: 1.5rem;
    }

    .about_sec_4 .box_content a.play svg {
        max-width: 39%;
    }

    .about_sec_4 .box_content h3 {
        font-size: 1.2rem;
    }

    .about_sec_5 .box_content .content {
        font-size: 1rem;
    }

    .about_sec_5 .box_content .content svg {
        margin: 1.8125rem auto 0;
    }

    .about_sec_5 {
        padding: 50px 0;
    }

    .slider_history .box_img img {
        height: auto;
        max-width: calc(100vw - 39px);
    }

    .slider_history .box_img:before {
        width: calc(100vw - 39px);
        height: 100px;
    }

    .about_sec_6 .arrow_slider {
        display: none;
    }

    .slider_history .swiper-slide-active .year .title {
        transform: translateY(-100%) scale(1.1);
        top: -0.8rem;
    }

    .slider_history .item .year .title {
        font-size: 1.4rem;
    }

    .slider_history:before {
        top: 14rem;
    }

    section.about_sec_7 {
        padding-bottom: 0;
    }

    .slider_partner .item {
        height: 4rem;
    }

    .slider_partner .item img {
        max-width: 80%;
        max-height: 80%;
        margin: auto;
    }

    .about_sec_8 h2.heading_h2 {
        margin-bottom: 2.125rem;
    }

    .swiper-pagination span {
        width: 2rem;
    }

    a {
        max-width: 100%;
        max-height: 100%;
    }

    .swiper-pagination {
        bottom: 10px !important;
    }

    .project_page .box_content {
        position: unset;
        width: 100%;
    }

    section.project_page {
        height: auto;
    }

    section.project_page .bg {
        position: unset !important;
        width: 100%;
        height: auto !important;
        padding-bottom: 50%;
    }

    .project_page .box_content .heading_h2 {
        font-size: 1.2rem;
    }

    .project_details_sec_1:after {
        height: 100px;
        background-position: bottom center;
    }

    .heading_h2 {
        font-size: 1.8rem;
    }

    a.scroll_down svg {
        width: 30px;
        height: auto;
        margin-top: 10px;
    }

    section.project_details_sec_2 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .project_details_sec_2 .bg:before {
        display: none;
    }

    .single-project .project_details_sec_3 {
        background: linear-gradient(180deg, #006F54 0%, #004848 57.2%, #003C44 100%);
        padding-top: 40px;
    }

    .project_sec_6 .group_content {
        margin-top: 0;
    }

    .slider_product_style_2 .arrow_slider_text {
        display: none;
    }

    .slider_product_style_2 .item h3 {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .product_slide .box_content ul a {
        font-size: 10px;
        height: 30px;
        min-width: 200px;
    }

    .product_slide .box_content ul li:not(:last-child) {
        margin-bottom: 6px;
    }

    ul.menu_gallery_project a {
        font-size: 1rem;
    }

    ul.menu_gallery_project > * {
        flex: 0 0 auto;
    }

    ul.menu_gallery_project {
        justify-content: flex-start;
        overflow: auto;
    }

    .slider_image_project .box_img {
        border-radius: 40px 0 40px;
    }

    .slider_image_project h3 {
        font-size: 14px;
    }

    .slider_image_project h3 svg {
        width: 30px;
    }

    .project_details_sec_7 .content_cs {
        padding: 20px;
        border-radius: 20px;
        margin-top: 20px;
    }

    .project_details_sec_7 .content_cs .content {
        padding-right: 20px;
    }

    .faqs .wrap_title .num {
        margin-right: 20px;
        font-size: 1rem;
        margin-right: 10px;
    }

    .faqs .active .wrap_title {
        border-radius: 20 p;
        font-size: .8rem !important;
    }

    .faqs .wrap_title {
        font-size: .8rem;
    }

    .project_details_sec_8 .bg:before {
        display: none;
    }

    @keyframes hu__hu__ {
        50% {
            transform: translateY(0.5rem)
        }
    }
    .project_sec_2 .bg {
        background-size: cover;
        background-position: top 0px right;
    }

    .project_sec_2 {
        margin-top: -14px;
    }

    .project_sec_2 .list_items > * {
        width: 100%;
    }

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

    .project_sec_2 .item .icon:after {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }

    .project_sec_4 {
        background-size: 150% 150%;
        background-position: bottom center;
        padding-top: 50px;
        margin-top: 0;
    }

    .project_sec_5 {
        padding-top: 50px;
    }

    .project_sec_5 .bg {
        transform: scale(1.5);
        background-position: top 43px center;
    }

    .slider_tien_ich .item {
        height: 10rem;
    }

    .project_sec_6, .project_sec_6 .grid-container {
        min-height: unset;
    }

    section.section.project_sec_6 {
        padding: 50px 0;
    }

    .project_sec_8 .wrap_cs {
        margin-top: 40px;
    }

    .project_sec_8 ul.menu_type_project {
        overflow: auto;
        justify-content: flex-start;
        margin: 0 20px;
        padding-bottom: 20px;
    }

    ul.menu_type_project a {
        font-size: .8rem;
        min-width: 5rem;
    }

    .project_sec_8 {
        margin-top: -120px;
        padding-bottom: 50px;
    }

    ul.menu_type_project a:before {
        width: 5.375rem;
    }

    .project_sec_8 .grid-55 .content {
        padding-right: 1rem;
    }

    .project_sec_8 .wrap_cs .grid-45 {
        margin-bottom: 30px;
    }

    .project_sec_9:before {
        height: 0;
    }

    .project_sec_7 .arrow_slider {
        display: none;
    }

    section.recruitment_sec_1 {
        padding: 100px 0 50px;
    }

    .recruitment_sec_2 h2.heading_h2 {
        margin: 0 0 20px;
    }

    .recruitment_sec_2 .content {
        padding-right: 0;
    }

    section.recruitment_sec_3 {
        padding: 60px 10px;
    }

    a.button_ut {
        height: 2rem;
    }

    a.button_ut span {
        font-size: 1rem;
    }

    div#load_content_td .inner {
        padding: 20px;
    }

    div#load_content_td .inner .content_ut > ul, div#load_content_td .inner > ul {
        flex-wrap: wrap;
    }

    div#load_content_td .inner .content_ut > ul li, div#load_content_td .inner > ul li {
        margin: 0 0 10px;
        width: 100%;
    }

    div#load_content_td .content {
        padding-right: 20px;
    }

    div#load_content_td .inner:before {
        display: none;
    }

    .contact_sec_1 {
        padding-top: 100px;
    }

    .contact_sec_1 .box_content {
        padding-right: 10px;
    }

    ul.phone_contact li a {
        font-size: 1.2rem;
    }

    .contact_sec_1 a {
        float: left;
    }

    .map iframe {
        height: 200px;
    }

    section.contact_sec_2 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    section.contact_sec_1.footer_page {
        padding-top: 0;
    }

    .contact_sec_1 span {
        text-align: left;
        display: inline-block;
        width: 100%;
    }

    .wrap_mat_bang {
        position: relative;
        padding-bottom: 45%;
    }

    ul.list_location li span {
        width: .5rem;
        height: .5rem;
    }

    ul.list_location li span:before {
        width: .8rem;
        height: .8rem;
    }

    .project_details_sec_3 {
        background: #003d44;
        padding-bottom: 0;
    }

    .project_details_sec_3 .bg {
        opacity: 1;
    }

    .project_details_sec_3 .grid-container {
        min-height: unset;
    }

    .project_details_sec_3.home_sec4 .wrap_content {
        margin: 40px 0;
        padding: 0;
        text-align: center;
    }

    .project_details_sec_3 .wrap_content .content {
        max-width: 100%;
    }

    .style_popup_mb .inner {
        display: block;
    }

    .slider_history .box_img {
        display: block;
        padding-bottom: 38%;
        position: relative;
        margin-bottom: 22px;
    }

    .slider_history .box_img img {
        position: absolute;
        top: 0;
        left: 50%;
        width: calc(100vw - 20px);
        transform: translateX(-50%);
    }


    .slider_history:before {
        display: none;
    }

    .slider_history .item .year:before {
        display: none;
    }

    .slider_history .item .year .title span {
        display: none;
    }

    .slider_history .item .year {
        border: none;
        height: auto;
    }

    .slider_history .item .box_content {
        margin-top: 0;
    }

    .slider_history .item .year .title {
        font-size: 1.6rem;
    }

    .about_sec_5 .box_content:before {
        opacity: 1 !important;
    }

    .project_sec_3 .wrap_content h2:before {
        display: none;
    }

    .project_details_sec_3 .wrap_content {
        max-width: 100%;
        margin-top: 30px;
        text-align: center;
    }

    .project_sec_3 .wrap_content h2 {
        padding-top: 0;
    }

    .project_details_sec_3 .wrap_content .content {
        padding-right: 0;
    }

    .single-project .project_details_sec_3.project_sec_3 .grid-container {
        padding-bottom: 40px;
    }

    .single-project .project_details_sec_3 {
        display: flex;
        flex-wrap: wrap;
    }

    .single-project .project_details_sec_3 .wrap_mat_bang {
        order: 2;
    }

    .project_sec_3:before {
        display: none;
    }

    .project_details_sec_3 .wrap_content {
        margin-top: 0;
    }

    .project_sec_2 {
        padding-bottom: 50px;
    }

    .project_details_sec_3 .wrap_content {
        padding-bottom: 30px;
    }

    .project_details_sec_3 .wrap_content {
        padding-bottom: 30px;
    }

    .project_details_sec_3 .box_img {
        margin: 30px -20px 0;
        width: calc(100% + 40px);
        max-width: calc(100% + 40px);
    }

    .slider_video {
        padding: 60px 0;
    }

    .slider_video .swiper-slide {
        transform: scale(1) !important;
    }

    .slider_video {
        padding: 0;
        margin-bottom: 40px;
    }

    .slider_video .box_img {
        height: 10rem;
    }

    .slider_video .box_img .icon_play {
        width: 4rem;
        height: 4rem;
    }

    .slider_video .box_img .icon_play svbg {
    }

    .slider_video .box_img .icon_play svg {
        max-width: 20px;
        max-height: 20px;
    }

    .video_page .arrow_slider {
        display: none;
    }

    .video_page {
        padding-top: 123px;
    }

    .wrap_post + .wrap_post_top > * {
        width: 50% !important;
        padding: 0.9375rem;
        margin-bottom: 1.875rem;
    }


    .wrap_post + .wrap_post_top {
        margin-bottom: 0;
    }


    .wrap_post + .wrap_post_top .item_post a:before, .wrap_post + .wrap_post_top .item_post a:after {
        content: '';
        background: linear-gradient(0deg, #ffffff 0%, rgba(223, 180, 111, 0) 82.99%);
        width: 0.0625rem;
        height: 120%;
        bottom: 0;
        left: 0;
        position: absolute;
        opacity: .2 !important;
    }

    .wrap_post .item_post a:before, .wrap_post .item_post a:after {
        opacity: .2 !important;
    }

    .wrap_post + .wrap_post_top .item_post a:after {
        left: unset;
        right: 0;
    }

    .toggle_menu {
        font-size: 0;
    }

    .home.fp-viewing-gfx .site-logo img {
        height: 6.625rem;
    }

    ul.menu_wpml a {
        height: 25px;
        width: 25px;
        margin-right: 7px;
    }

    ul.menu_wpml {
        margin: -1px 0 0 -1px;
    }

    ul.menu_wpml a img {
        max-width: 64%;
    }

    .toggle_menu svg {
        margin-right: 10px;
    }

    .product_slide .item:before, .product_slide .item:after {
        height: 50%;
    }

    .project_details_sec_7 .content_cs .inner:before,
    .project_details_sec_3 .item_tab:before {
        opacity: 0;
    }

    .project_sec_5 {
        margin-top: 0;
    }

    .slider_history .swiper-slide-active .item .box_content .inner {
        margin: 0 10px;
    }

    .copyright {
        left: 0;
        right: 0;
        bottom: 36px;
        text-align: center;
        background: red;
        padding: 5px;
        font-size: 10px;
        background: linear-gradient(55.11deg, #003539 16.95%, #004b39 84.84%);
    }

    section.contact_sec_1.footer_page {
        padding-bottom: 0px !important;
    }

    a.generate-back-to-top {
        display: block;
        z-index: 99;
        bottom: 90px;
        right: 10px;
    }

    .project_details_sec_3 .wrap_content {
        padding-bottom: 0;
    }

    .project_sec_4 {
        padding-top: 30px;
    }

    .slider_tien_ich .item h3 {
        font-size: .8rem;
        bottom: 1rem;
    }

    .project_sec_8 {
        margin-top: -10px;
    }

    .project_sec_7:before {
        height: 100%;
        bottom: 0;
    }

    .project_sec_8 .wrap_cs {
        margin-top: 0;
    }

    .project_sec_8 .grid-45 .content {
        font-size: 0.833rem;
    }

    .project_details_sec_8 .content {
        font-size: 1rem;
    }
}


.home_sec_pl .grid-container {
    align-items: center !important;
}