@charset "utf-8";


@font-face {
    font-family: "FormaDJRTxt";
    font-weight: 400;
    font-style: normal;
    src: url("../fonts/FormaDJRTxt-Bold.ttf");
}

@font-face {
    font-family: "FormaDJRTxt";
    font-weight: 700;
    font-style: normal;
    src: url("../fonts/FormaDJRTxt-ExBold.ttf");
}

/*
    16
    17
    18
    26
    29
    30

    55
*/



:root {
  --d-transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  --d-gradient: linear-gradient(90deg,rgba(20, 75, 116, 1) 0%, rgba(0, 102, 177, 1) 100%);
  --d-textg:linear-gradient(90deg,rgba(20, 75, 116, 1) 0%, rgba(0, 102, 177, 1) 100%);


  --d-padding: var(--bs-gutter-x,.75rem);
  --d-padding-md: var(--bs-gutter-x,.75rem);
  --d-padding-lg: var(--bs-gutter-x,.75rem);
  --d-padding-xl: var(--bs-gutter-x,.75rem);
  --d-padding-xxl: var(--bs-gutter-x,.75rem);

    --d-gutter: var(--bs-gutter-x,.75rem);
    --d-radius: 0.625rem;

    --fz-12: 12px;
    --fz-14: 13px;
    --fz-16: 13px;
    --fz-17: 14px;
    --fz-18: 15px;
    --fz-20: 16px;
    --fz-24: 17px;
    --fz-26: 17px;
    --fz-28: 18px;
    --fz-30: 20px;
    --fz-35: 22px;
    --fz-40: 24px;
    --fz-45: 27px;
    --fz-55: 30px;
    --fz-60: 32px;
    --fz-80: 40px;

    --iz-1: 36px;
    --iz-2: 32px;

    --color-1:#0066b1;
    --color-2:#f4811f;
}

@media (min-width:768px) {
    :root {
        --fz-26: 18px;
        --fz-28: 19px;
        --fz-30: 20px;

      --d-padding-xl: 1.5rem;
      --d-padding-xxl: 2rem;
    }
}



@media (min-width:1200px) {
   :root {
        --d-padding:  2.6vw;
        --d-padding-md:  3.9vw;
        --d-padding-lg:  6.25vw;
        --d-padding-xl: 13.75vw;
        --d-padding-xxl: 16.09375vw;

        --fz-14:14px;
        --fz-20 :1.041666666666667vw;
        --fz-24: 1.25vw;
        --fz-26: 1.354166666666667vw;
        --fz-28: 1.458333333333333vw;
        --fz-30: 1.5625vw;
        --fz-35: 1.822916666666667vw;
        --fz-40: 2.083333333333333vw;
        --fz-45: 2.34375vw;
        --fz-55: 2.58vw;
        --fz-60: 3.125vw;
        --fz-80: 4.166666666666667vw;
    }
    html {
        font-size: 0.8333333333333333vw;
    }
}
@media (min-width:1601px) {
    :root {
        --d-gutter: 50px;
        --fz-12: 0.625vw;
        --fz-14: 0.7291666666666667vw;
        --fz-16: 0.8333333333333333vw;
        --fz-17: 0.8854166666666667vw;
        --fz-18: 0.9375vw;


        --iz-1: 2.604166666666667vw;
        --iz-2: 1.5625vw;

    }
}

html.lenis,
html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important; /* If scroll-behavior is set to "smooth", scrolling will not work as expected. */
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}
.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

html::-webkit-scrollbar {
    width: 8px;
    background-color: #ffffff;
} 
html::-webkit-scrollbar-thumb {
    background-color: var(--color-1);
    border-radius: 4px;
}
/*FOR IE*/
html { 
    scrollbar-base-color: var(--color-1);
    scrollbar-face-color: var(--color-1);
    scrollbar-3dlight-color: var(--color-1);
    scrollbar-highlight-color: var(--color-1);
    scrollbar-track-color: #ffffff; 
    scrollbar-arrow-color: var(--color-1);
    scrollbar-shadow-color: var(--color-1);
    scrollbar-dark-shadow-color: var(--color-1);
}
/*FOR FF*/
html{
     scrollbar-color: var(--color-1) #ffffff;
    scrollbar-width: 8px;
}

body { font-family: 'Mona Sans', sans-serif;  margin: 0px; padding: 0px; font-size: var(--fz-18); line-height: 1.47; overflow-x: hidden; font-weight: 400; color: #555555;
    background: #fff;
}

/*----------------------
1.1. Typography
------------------------------*/
h1, h2, h3, h4, h5, h6 { font-family: 'Mona Sans', sans-serif;  margin: 0 0 0.7rem;  font-weight: 600; line-height: 1.4; }
h1 { font-size: var(--fz-55); }
h2,h1.sm { font-size: var(--fz-30); }
h2.lg,h3.xxl{ font-size: var(--fz-26);}
h3,h2.md { font-size: var(--fz-18); }
h4,h2.sm { font-size: var(--fz-17); margin-bottom: 0.7rem; }
h5 { font-size: var(--fz-16); margin-bottom: 0.7rem;  }
h6 { font-size: var(--fz-16); margin-bottom: 0.7rem; }
p { }
a {transition: var(--d-transition);  text-decoration: none; color: #333; }
a:hover, a:focus { text-decoration: none; outline: none; color:var(--color-1); }
ul, ol { margin: 0 auto 1rem; }
ul li, ol li { margin: 0 auto 0.5rem; }
blockquote { background: #f5f5f5; }
strong,b{font-weight: 700;}
*:focus,button:focus {
  outline: none;
}
.white-text,
.white-text h1,
.white-text h2,
.white-text h3,
.white-text h4,
.white-text h5,
.white-text h6,
.white-text p,
.white-text.section-header p { color: #fff; }
.uppercase { text-transform: uppercase; }
.underline { text-decoration: underline; }

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

.gutter-10 { margin-left: -10px; margin-right: -10px; }
.gutter-10 > [class*='col-'] { padding-right: 10px; padding-left: 10px; }
.gutter-5 { margin-left: -5px; margin-right: -5px; }
.gutter-5 > [class*='col-'] { padding-right: 5px; padding-left: 5px; }
.gutter-2 { margin-left: -2px; margin-right: -2px; }
.gutter-2 > [class*='col-'] { padding-right: 2px; padding-left: 2px; }
.gutter-0 { margin-left: 0px; margin-right: 0px; }
.gutter-0 > [class*='col-'] { padding-right: 0px; padding-left: 0px; }

.gutter-50,
.gutter-xxl,
.gutter-xl {   margin-right: calc(var(--bs-gutter-x) * -.5);margin-left: calc(var(--bs-gutter-x) * -.5);}
.gutter-50 > [class*='col-'],
.gutter-xxl > [class*='col-'],
.gutter-xl > [class*='col-'] {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}

@media (min-width:1200px)
{
    .gutter-50 { margin-left: -50px; margin-right: -50px; }
    .gutter-50 > [class*='col-'] { padding-right: 50px; padding-left: 50px; }

    .gutter-xxl { margin-left: -2.34375vw; margin-right: -2.34375vw; }
    .gutter-xxl > [class*='col-'] { padding-right: 2.34375vw; padding-left: 2.34375vw; }

    .gutter-xl { margin-left: -1.45vw; margin-right: -1.45vw; }
    .gutter-xl > [class*='col-'] { padding-right: 1.45vw; padding-left: 1.45vw; }
}


.relative{position: relative;}
.absolute{position: absolute;}
.overflow-hide{overflow: hidden;}
.cluster{display: inline-block;}
.d-radius {border-radius: var(--d-radius); overflow: hidden;}
/* =WordPress Core
-------------------------------------------------------------- */
.alignnone { margin: 5px 20px 20px 0; }
.aligncenter,
div.aligncenter { display: block; margin: 5px auto 1em auto; }
.alignright { float: right; margin: 5px 0 20px 20px; }
.alignleft { float: left; margin: 5px 20px 20px 0; }
.aligncenter { display: block; margin: 5px auto 5px auto; }
a img.alignright { float: right; margin: 5px 0 20px 20px; }
a img.alignnone { margin: 5px 20px 20px 0; }
a img.alignleft { float: left; margin: 5px 20px 20px 0; }
a img.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; /* Image does not overflow the content area */ text-align: center; }
.wp-caption.alignnone { margin: 5px 20px 20px 0; }
.wp-caption.alignleft { margin: 5px 20px 20px 0; }
.wp-caption.alignright { margin: 5px 0 20px 20px; }
.wp-caption img { border: 0 none; height: auto; margin: 0; max-width: 100%; padding: 0; width: auto; }
.wp-caption p.wp-caption-text { font-size: 13px; margin: 0; padding: 5px 5px 0px; }

/*End core*/
.editor-content img { max-width: 100%; height: auto; }
.editor-content img.media-object { max-width: none; }
.editor-content h2, .editor-content h3, .editor-content h4 { font-weight: 700; color: #fff; }
.editor-content h4 { font-size: var(--fz-17); }
.editor-content h3 { font-size: var(--fz-18); }
.editor-content h2 { font-size: var(--fz-26); color: #fff;}
.text-justify {
  text-align: justify;
}
.point-event-none{pointer-events: none;}
.point-event-auto{pointer-events: auto;}

/*-----------------
1.2. Button
-------------------------*/
.btn {
    border: 0;
    border-radius: 0px;
    background: transparent;
    border: 0px; font-size: var(--fz-20);
    margin: auto;
    padding: 1rem 3.375rem ;
    transition: var(--d-transition);
    text-decoration: none;
    font-weight: 400;

}
.btn *{
    transition: var(--d-transition);
}


.btn.btn-primary,
.btn.btn-default{
    position: relative;
    color: #57768c;
    display: inline-flex;
    border-radius: 3rem;
    padding: 0.6rem 3.875rem 0.6rem 2.375rem ;
    border:solid 1px rgba(191, 210, 218, 1);
}
.btn.btn-primary i,
.btn.btn-default i{
    position: absolute;
    top: 0.375rem;
    right: 0.375rem;
    bottom: 0.375rem;
    aspect-ratio: 1;
    display: block;
    background: #c6d4dd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: #414f59;
}
.item:hover .btn.btn-default,
.btn.btn-default:hover,
.item:hover .btn.btn-primary,
.btn.btn-primary:hover{
    background: var(--color-1);
    color: #fff;
    border-color: var(--color-1);
}

.btn.btn-primary{background: var(--color-1);}
.btn.btn-primary i{background: transparent; color: #fff}


.item:hover .btn.btn-default i,
.btn.btn-default:hover i,
.item:hover .btn.btn-primary i,
.btn.btn-primary:hover i{
    background: var(--color-2);;
    color: #fff;
}
.btn.btn-default span,
.btn.btn-default i{}

.btn.btn-icon{display: inline-flex; padding: 0;
    gap: 1rem;
    align-items: center;
}
.btn.btn-icon .icon{
    display: inline-flex;
    width: calc(1.6* var(--iz-2));
    aspect-ratio: 1;
    border-radius: 50%;
    border: solid 1px #fff;
    align-items: center;
    justify-content: center;
    transition: var(--d-transition);
}
.btn.btn-icon .icon img{
    max-width: calc(1* var(--iz-2));
    max-height: calc(1* var(--iz-2));
}
.btn.btn-icon:hover .icon{
    transform: rotate(90deg);
}
.btn-viewmore{

}


.btn .fa { }
.btn.btn-lg { font-size: 24px; line-height: 30px; padding: 22px 50px; }
.btn.btn-sm { font-size: 16px; padding: 8px 25px; }
.btn:hover, .btn:focus { color: var(--color-1); outline: none; box-shadow: none; /*background: transparent;*/ }
.btn.btn-icon:hover{}
.btn-link { font-weight: 800; font-size: 17px; color: var(--color-1); }
.btn.outline-btn { background: none; color: #006838; border: var(--color-1) solid 1px; padding: 5px 25px 5px 10px; font-weight: 400; position: relative;}
.btn.outline-btn:after{position: absolute; right: 6px; top: 12px; content: "\f103"; font: normal normal normal 14px/1 FontAwesome;}
.btn.outline-btn:hover { background: var(--color-1); color: var(--color-1); }
.btn-transparent { background: transparent; border: solid 1px var(--color-1); color: var(--color-1); font-size: 14px; }
.btn-transparent:hover { background: #f7e5cb; border: solid 1px #f7e5cb; }
.btn-back-home{}

/*-------------------------
1.3. dark-overlay
---------------------------------*/
.div_zindex { position: relative; z-index: 3; }
.div_zindex > * { position: relative; z-index: 1; }
.dark-overlay { background: rgba(0, 0, 0, 0.85) none repeat scroll 0 0; content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; }
.color-overlay { background: rgba(205, 56, 96, 0.9) none repeat scroll 0 0; content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; }
/*-------------------------------------
1.4. Space margins and padding
------------------------------------------------*/

/*-----------------
1.5. Form
---------------------------*/
.form-group { margin-bottom: 0.6rem; position: relative; }
.contact-info-wrapper .submit,
.form-popup-modal .submit {}
.footer-top .contact-form {margin-top: 20px;}
.form-group.has-error .help-block{color: #E2B063;}
.form-label { color: #111111; font-size: 14px; font-weight: 400; margin: 0 auto 8px; }
.form-control { background: transparent; border: 0 none; border-radius: 0px;  box-shadow: none; color: #57768c; font-size: var(--fz-17); height: 40px; line-height: 30px; padding: 0 15px; }
textarea.form-control { padding: 15px 20px; }
input.form-control:focus::-webkit-input-placeholder,
textarea.form-control:focus::-webkit-input-placeholder { opacity: 0; }
.form-control:hover { box-shadow: none; outline: none; }
.form-control:focus { box-shadow: none;  background: transparent; border-color: #8dba3f; outline: none; color: #57768c; }
.select { position: relative; }
.select select { appearance: none; -moz-appearance: none; -o-appearance: none; -webkit-appearance: none; -ms-appearance: none; }
.select::after { color: #878787; content: ""; cursor: pointer; font-family: fontawesome; font-size: 15px; padding: 12px 0; pointer-events: none; position: absolute; right: 15px; top: 0; }
.form-control option { padding: 10px; }
.control-label { color: #555; font-size: 15px; font-weight: 700; }
.radio label, .checkbox label { cursor: pointer; font-size: 14px; font-weight: 400; padding-left: 26px; position: relative; }
.radio input[type=radio],
.checkbox input[type=checkbox] { display: none; }
.radio label:before { background-color: transparent; border-style: solid; border-width: 1px; border-radius: 50%; content: ""; display: inline-block; height: 15px; left: 0; top: 4px; position: absolute; width: 15px; }
.checkbox label::before { background-color: rgba(0, 0, 0, 0); border: 1px solid #111111; content: ""; display: inline-block; height: 16px; left: 0; position: absolute; top: 4px; width: 16px; }
.radio input[type=radio]:checked + label:before { content: "\2022"; font-size: 15px; text-align: center; line-height: 11px; }
.checkbox input[type=checkbox]:checked + label:before { content: "\2713"; font-size: 12px; text-align: center; line-height: 14px; }
.black_input .form-control { background: #222; border-radius: 3px; color: #fff; border: #222 solid 1px; font-size: 17px; }
.checkbox, .radio { padding-top: 5px; }
.form-select{border-radius: 20px; border-color: #83A4D4; color: #57768C}
/*-----------------
1.6. Table
---------------------------*/
table { margin: 0 0 30px; width: 100%; }
table th, table td { border: 1px solid #cccccc; padding: 15px; padding: 18px; }
table th img, table td img { max-width: 100%; }
table thead { background: #eee; }
table thead th, table thead td { text-transform: uppercase; font-weight: 900; color: #111; }
/*-----------------
1.7. Accordion
---------------------------*/
.panel-group .panel { background: #fff; border: 0 none; border-radius: 0; box-shadow: none; margin-bottom: 25px; }
.panel-title { color: #fff; font-size: 24px; margin-bottom: 0; margin-top: 0; }
.panel-title a { display: block; padding: 10px 25px; position: relative; background: #cca759; font-size: 18px;}
.panel-title a.collapsed {  }
.panel-title a .question { width: 85px; height: 100%; content: ""; color: #fff; font-size: 39px; line-height: 1; text-align: center; position: absolute; top: 0px; left: 0px; background: var(--color-1); }
.panel-title a.collapsed .question { background: #252930; transition-duration: 0.3s; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; -webkit-transition-duration: 0.3s; }
.panel-title a .question span { position: absolute; top: 45%; left: 0px; right: 0px; transform: translateY(-50%); -moz-transform: translateY(-50%); -o-transform: translateY(-50%); -webkit-transform: translateY(-50%); }
.panel-default > .panel-heading { background: rgba(0, 0, 0, 0) none repeat scroll 0 0; border: 0px; border-radius: 0; box-shadow: none; color: #333; padding: 0; }
.panel-heading:hover .panel-title a .question { background: var(--color-1); }
.panel-heading:hover .panel-title a { border-color: var(--color-1); }
.panel-body { border: 0px solid rgba(255, 255, 255, 0.2); margin-top: -1px; padding: 15px 0px; }
.panel-body p { font-size: 17px; line-height: 30px; font-weight: 400; }
/*-----------------------------------------------------------
1.8. Section-background-color & sectino-heading
-------------------------------------------------------------------*/
section { position: relative; }

.section-title{
    font-style: normal;
    font-size: var(--fz-40);
    font-weight: 700;
    color: var(--color-1);
    margin-bottom: 0.75em;
    padding-top: 0.2em;
    line-height: 1.3;
    text-transform: uppercase;
    position: relative;
}
.section-title strong{color: var(--color-2); font-weight: 700;}


.section-title small{
    font-size: 0.875em;

}
.section-title strong{ font-weight: 700; }

.section-title em{
}
.section-title.xl{font-size: var(--fz-35);}
.section-title.lg{font-size: var(--fz-30);}
.section-title.md{font-size: var(--fz-26); padding-bottom: 0}
.section-title.md:before{display: none;}

.section-title.line-0{padding-bottom: 0}
.section-title.line-0:before{display: none; }
.section-subtitle{
    font-size: var(--fz-30); font-weight: 600;
    font-family: 'Montserrat';
    text-transform: uppercase;
}

.subtitle{
    color: #555555;
    font-size: var(--fz-26);
    font-weight: 700;
    margin-bottom: 0.8em;
}

.text-g{
    background: var(--d-textg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-top: 0.2em;
}
.section-title.color strong{
    color: var(--color-1);
}



.line{position: relative;}

.fit-ratio{position: relative; width: 100%; height: 0; padding-top: calc(100% * 9 / 16);}
.fit-ratio img{position: absolute; left: 0px; top: 0px; width: 100%; height: 100%; object-fit: cover;}


.section-description p:last-child{margin-bottom: 0;}



.secondary-bg { background: #00394B; color: #fff; }
.view-detail{margin-top: 45px; text-decoration: underline; font-style: italic; font-size: 24px;
        display: block;
}
section.dark{color: #fff;}
section.dark .section-title{color: #fff;}
section.dark .btn-default{color: rgba(215, 237, 253, 0.8); border-color: rgb(191, 210, 218,0.4);}
section.dark .section-title:before{background: #fff;}

.ellips{    text-overflow: ellipsis;display: -webkit-box; -webkit-box-orient: vertical;    overflow: hidden;}

.primary-bg { background: var(--color-1); color: #fff; }

.gray_bg { background: #fafaf9; }
.gray_bg_2 { background-color: #ededed !important; }
.section-padding { padding: 5rem 0; }
.section-padding-top{padding-top: 5rem;}
.section-padding-xl { padding: 6.25rem 0; }
.section-padding-sm { padding: 2.5rem 0; }

.section-top{
    margin-top: calc(var(--navH) - 1px);
}
#breadcrumbs {color: #57768c; font-size: var(--fz-18);}
#breadcrumbs i{margin: 0px 0.75rem;}
#breadcrumbs a:not(:hover){color: #57768c;}

.section-bg{position: absolute; left: 0px; top: 0px; width: 100%; height: 100%; pointer-events: none;}
.section-cover, .cover{background-size: cover; background-position: center center; background-repeat: no-repeat;}
.section-bg-1:before,
.section-bg-1:after{
    content: '';
    position: absolute;
    height: 50%;
    width: 100%;
    left: 0;
    background-size: 100% auto;
    background-repeat: no-repeat;

}
.section-bg-1:before{top: 0; background-image: url('../images/bg/s-top.webp'); background-position: center top;}
.section-bg-1:after{bottom: 0; background-image: url('../images/bg/s-bottom.webp'); background-position: center bottom;}
.section-bg img{width: 100%; height: 100%; object-fit: cover;}
.section-bg.bg-5{background-image: url('../images/bg/bg-5.jpg');}


@media (max-width:767px) {
    .cover-md{background: transparent !important;}
}


.fancybox-is-open.fancybox-container .fancybox-bg{ opacity: 1;}
.fancybox-container .fancybox-infobar{color: #fff; mix-blend-mode:normal;}
.fancybox-container .fancybox-bg{background: rgba(172, 135, 98, 0.95); }
.fancybox-container .fancybox-button{background: transparent; color: #fff;}
.fancybox-container .fancybox-navigation button{color: var(--color-1); background: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    width: 50px;
    height: 50px;
    padding: 0px;
    margin: 0px 15px;
    background-color: #fff;
    border-radius: 50%;
    background-size: auto 50%;
    border: solid 1px #fff;
    transition: var(--d-transition);
}
.fancybox-container .fancybox-navigation button:hover{background-color: var(--color-1);}
.fancybox-container .fancybox-navigation button:before{background: transparent}
.fancybox-container .fancybox-navigation button svg{display: none;}
.fancybox-container .fancybox-navigation .fancybox-button--arrow_left{
    background-image: url('../images/arrow-prev-xxl.svg');
}
.fancybox-container .fancybox-navigation .fancybox-button--arrow_right{
    background-image: url('../images/arrow-next-xxl.svg');
}
.fancybox-container .fancybox-navigation .fancybox-button--arrow_left:hover{
    background-image: url('../images/arrow-prev-xxl-color.svg');
}
.fancybox-container .fancybox-navigation .fancybox-button--arrow_right:hover{
    background-image: url('../images/arrow-next-xxl-color.svg');
}
@media (max-width:991px) {
    .fancybox-container .fancybox-navigation button{width: 30px; height: 30px; transition-duration: 0s}
}



.fancybox-slide .fancybox-image-wrap{
    /*max-height: calc(100vh - 140px);
    transform: translateX(-50%) translateY(-50%) !important;
    top: 50% !important;
    left: 50% !important;*/
}
.fancybox-container .fancybox-slide .fancybox-image-wrap .fancybox-image{
   object-fit: contain;
}
.fancybox-container .fancybox-caption-wrap{
    background: transparent;
}
.fancybox-container .fancybox-caption-wrap .fancybox-caption{color: #fff; text-align:center; text-transform:uppercase;
    border-top: 0;
 }
.fancybox-container .fancybox-caption-wrap strong.album-title{
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 2rem 1rem;
    font-weight: 400;
    font-size: var(--fz-30);
}
@media(max-width:1199px){
    .fancybox-slide--image .fancybox-close-small{right: 0 !important}
}
@media(max-width:767px){
    .fancybox-container .fancybox-caption-wrap strong.album-title{
        top: 1.5rem;
    }
}

.p-left{padding-left: var(--d-padding);}
.p-right{padding-right: var(--d-padding);}
.p-both{padding-left: var(--d-padding); padding-right: var(--d-padding);}

.p-left-md{padding-left: var(--d-padding-md);}
.p-right-md{padding-right: var(--d-padding-md);}
.p-both-md{padding-left: var(--d-padding-md); padding-right: var(--d-padding-md);}

.p-left-lg{padding-left: var(--d-padding-lg);}
.p-right-lg{padding-right: var(--d-padding-lg);}
.p-both-lg{padding-left: var(--d-padding-lg); padding-right: var(--d-padding-lg);}

.p-left-xl{padding-left: var(--d-padding-xl);}
.p-right-xl{padding-right: var(--d-padding-xl);}
.p-both-xl{padding-left: var(--d-padding-xl); padding-right: var(--d-padding-xl);}

.p-left-xxl{padding-left: var(--d-padding-xxl);}
.p-right-xxl{padding-right: var(--d-padding-xxl);}
.p-both-xxl{padding-left: var(--d-padding-xxl); padding-right: var(--d-padding-xxl);}

.m-left{margin-left: var(--d-padding);}
.m-right{margin-right: var(--d-padding);}
.m-both{margin-left: var(--d-padding); margin-right: var(--d-padding);}

.dropdown-menu{width: 100%;     border-color: var(--color-1);}
.dropdown-menu li a{color: #0b1c3e; cursor: pointer;}
.dropdown-menu li a:hover,
.dropdown-menu li a.active{background: transparent; color: #BE9978;}


/*--------------------
1.9. Tabs 
------------------------------*/

.tab-content {margin-top: 0px; padding: 0px;}

.nicescroll-rails{}


.zoom-in{display: block;}
.zoom-in img{-webkit-transform: scale(1); transform: scale(1);-webkit-transition: .5s ease-in-out; transition: .5s ease-in-out;}
.zoom-in:hover img{-webkit-transform: scale(1.1); transform: scale(1.1);}

.item-thumb.animation{ overflow: hidden;position: relative;display: block;}

.item-thumb.animation img {
    transition: transform 3s cubic-bezier(0, 0.6, 0.45, 1);
}
.item-thumb.animation:hover img,
.item:hover .item-thumb.animation img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.item-video .item-thumb:before{
    content: '';
    position: absolute;
    width: calc(var(--fz-45) * 2);
    aspect-ratio: 1;
    background-repeat:  no-repeat;
    background-position: center center;
    background-size: contain;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background-image: url('../images/icon-video.svg');
}


/*--------------------------------------------
1.10. parallex-background
---------------------------------------------------*/
.parallex-bg { background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; position: relative; }
/*------------------------
1.11. Modal
--------------------------------*/
.modal-header{background: #333333; color: #fff;}
.modal-header h4{color: #fff;}
.modal-header .close{color: #fff; opacity: 1;}
.modal-header .close:hover{opacity: 0.7;}
.modal-content{border-radius: 0px; background: rgba(255,255,255,1);}
.bootbox  .bootbox-body{color: #333333;}
.bootbox.modal .close{position: absolute; margin: 0px !important;
    right: -15px; top: -15px;
    border-radius: 50%;
    width: var(--iz-1); height: var(--iz-1);
    font-size: 26px; line-height: 0.8;
    background: var(--color-1) url('../images/icon-close.svg') no-repeat center center;
    color: #fff; border: 0;
    text-indent: -9999px;
    z-index: 4;
    display: block;

}
.bootbox.modal .close:hover{ background-color: #131313;}

.bootbox.popup-full .modal-body{padding: 0;}
.bootbox.popup-full .modal-dialog{
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}
.bootbox.popup-full .modal-content{
    min-height: 100%;
    border: 0;
    border-radius: 0;
    background: #fff url('../images/bg-menu-bottom.png') no-repeat center bottom;
    background-size: 100% auto;
}
.bootbox.popup-full .close{
    top: var(--fz-45);
    right: var(--d-padding);
}


body.ready .mask {
    pointer-events: none;
    z-index: -99999;
}
@media(max-width:991px){
    .mask .mask-bg .mask-logo{

    }
}


/*Stick*/
.fixed-btn{position: fixed; right: 30px; z-index: 6; opacity: 0; transition: var(--d-transition); transform: translateY(100px); }
.fixed-btn.show{transform: translateY(0px); opacity:1 }
.fixed-btn.center{top: 50%; transform: translateY(-50%);}
.fixed-btn.top{top: 40px;}
.fixed-btn.bottom{bottom: 1.2rem; left: auto; right: var(--d-padding); color: #fff;width: auto; }
.fixed-btn.left{right: auto; left: var(--d-padding);}
.fixed-btn{display: flex; flex-direction: column;}
.fixed-btn .svg,
.fixed-btn svg{max-width: 90%; height: auto;z-index: 2;}

.svg-ani svg path{
   fill: none !important;
   stroke: currentColor;
}


.fixed-social-btn{display: flex; margin-bottom: 0px; }
.fixed-social-btn a{color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;
    font-size:1.5rem;
     margin-right: 1.5rem;
}


.fixed-btn.fixed-action-btn{display: flex; transform: translateX(50%);}
.fixed-btn.fixed-action-btn a{
    width: var(--iz-1);
    height: var(--iz-1);
    border-radius: 50%; margin: 10px 0px; padding: 26% 15%; color: #fff;
    display: inline-flex; position: relative;
    justify-content: center;
    background: var(--color-1);
    border: solid 1px #fff;
}
.fixed-btn.fixed-action-btn a.zalo{
    padding: 0;
    margin-bottom: 0;
}
.fixed-btn.fixed-action-btn a.zalo .svg{max-width: 100%; width: 100%;}
.fixed-btn.fixed-action-btn a.zalo:hover .svg{}

.fixed-btn.fixed-action-btn a:before,
.fixed-btn.fixed-action-btn a:after{
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: 1;

    box-shadow: 0px 0px 0px 1.5px #DDBE7A inset;
    padding: 1.5px;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--d-transition);
}
.fixed-btn.fixed-action-btn a:after{
    margin: -4px;
}
.fixed-btn.fixed-action-btn a:hover{border-color: transparent;}
.fixed-btn.fixed-action-btn a:hover:before,
.fixed-btn.fixed-action-btn a:hover:after{
    transform: scale(1);
    opacity: 1;
}

.fixed-btn.fixed-action-btn a:hover{color: #fff;}
.fixed-btn.fixed-action-btn a span{
    transform: translateX(10px);
    opacity: 0;
    transition: var(--d-transition);
    text-transform: uppercase;
    position: absolute; height: 100%; top: 0px;
    right: calc(100% + 0.5rem);
    white-space: nowrap;
    pointer-events: none;
    display: inline-flex; align-items: center;
}
.fixed-btn.fixed-action-btn a:hover span{
    transform: translateX(0);
    opacity: 1;
}


.fixed-btn.bottom .copyright{font-size: var(--fz-12);}




.section-anchor {
    margin-left: var(--d-padding);
    padding: 0px 0.8rem 0px 0.8rem;
    font-size: var(--fz-14);
    color: #555555;
    text-transform: uppercase;
    border: solid 1px #d5d5d5;
    border-radius: 1.5rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--fz-80);
}
.section-anchor:before{
    content: '';
    width: 0.75rem;
    height: 0.75rem;
    background: url('../images/icon-anchor.svg') no-repeat center center;
    background-size: contain;
}
.dark .section-anchor{
    color: #fff;
    border-color: #fff;
}
.dark .section-anchor:before{
    background-image: url('../images/icon-anchor-white.svg');
}




/*================
2. Header
===========================*/

#header {
    background: #fff; position: fixed; top: 0; width: 100%; transition-duration: 0.3s;  z-index: 22;
    visibility: hidden;
    padding: 0.75rem ;
    padding-left: 0;
    pointer-events: none;
    transition: background-color  0s;
}
#header.show{opacity: 1; visibility: visible;}
body:not(.home-page):not(.menu-open) #header{
    border-bottom: solid 1px #f0f0f0;
}

.navbar-header { position: relative; z-index: 1; }
#header .navbar {padding-left: 0px; padding-right: 0px;align-items: center; padding: 0; }
#header .navbar-brand { margin: 0px 0; transition-duration: 0.3s;  
    width: 15.625vw; min-width:160px;
    height: auto; padding: 0px;
    pointer-events:auto;
}
#header .navbar-brand svg,
#header .navbar-brand img{width: 100%; height: auto; }
#header .navbar-brand object{pointer-events: none;}
/*@media (min-width: 1201px){*/
    #header:before{
        pointer-events: none;
        content: '';
        position: absolute;
        left: 0; top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg,rgba(49, 49, 49, 1) 0%, rgba(49, 49, 49, 0) 100%);
        opacity: 0;
        transition: var(--d-transition);
    }
    body.sticky #header:before{
        opacity: 1;
    }

/*}*/



#navigation { padding: 0px; position: relative; text-align: right;}
.desktop-menu ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
.desktop-menu ul li{
    margin: 0 0 0 2rem;
}
.desktop-menu ul li a{
    font-size: var(--fz-16); font-weight: 600;
    color: #4e6677;
    text-transform: uppercase;
}
.desktop-menu ul li:hover a{
    color: var(--color-2);
}
#header .header-right .btn{
    min-height: 2.5rem;
    height: calc(var(--fz-30) * 1.67);
    padding: 1rem 1.375rem 1rem 1.375rem ;
}
#header .header-right .btn.btn-icon{
    border-radius: 50%;
    height: calc(var(--fz-30) * 1.67);
    aspect-ratio: 1;
    border: solid 1px #c7ced3;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
}


#header .header-right {display: flex; align-items: center;
    color: #fff;
    pointer-events: auto;
    gap: 1.5rem;
}
#header .header-right > a{ position: relative;
    text-transform: uppercase; font-weight: 500;
    font-size: var(--fz-14);
}


#header .header-right a.svg-ani span{white-space: nowrap;}
#header .header-right .svg{height: 22px; width: auto; }
#header .header-right .dropdown-language{display: inline-flex;}
#header .header-right .dropdown-language > a{
    color: #4e6677; text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
#header .header-right .dropdown-language ul{ min-width: 60px; text-align: center;}
#header:not(.is-alternate) { -webkit-animation-fill-mode: both; -moz-animation-fill-mode: both; -ms-animation-fill-mode: both; -o-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-duration: 1s; -moz-animation-duration: 1s; -ms-animation-duration: 1s; -o-animation-duration: 1s; animation-duration: 1s; }


.header-bottom .navbar-toggler{
    border: 0px;  color: #fff;
    text-transform: uppercase; font-size: var(--fz-16); font-weight: 600; text-transform: uppercase;
     padding: 0.75rem 1.75rem; position: relative;
     background: #0066b1;
     display: inline-flex;
     gap: 0.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    transition: var(--d-transition);

}
.header-bottom .navbar-toggler:focus{outline: none;box-shadow: none;}
.header-bottom .navbar-toggler:hover{
    background: var(--color-2);
}


#header .navbar-toggler-icon {
    cursor: pointer;
    /* margin-bottom: 5px; */
    transition: 0.3s ease all;
    width: var(--fz-35);
    aspect-ratio: 1;
    background: url('../images/icon-logo.svg') no-repeat center center;
    background-size: contain;
}

body.menu-open #header .navbar-toggler{
    border: solid 1px #fff;
}
body.menu-open #header .navbar-toggler .navbar-toggler-icon {
    margin: 0;
    transition: 0.3s ease all;
    opacity: 1;
    background-image: url('../images/icon-close.svg');

}


@media(min-width:1200px){

}

#header .icon-hover-group .svg-dark{display: none;}

body.sticky #header .navbar-brand{

}

#header .header-right .search{position: relative;}
#header .header-right .search .btn:hover{background: var(--color-1); border-color: var(--color-1); color: #fff;}
#header .header-right .search .form-control{
    height: auto;
}
#header .header-right .search-form{position: absolute;
    background: #fff;
    border-radius: 3rem;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    min-width: 18rem;
    pointer-events: none;
    visibility: hidden;
    border:solid 1px #c7ced3;
    transition: var(--d-transition);
}
#header .header-right .search.show .search-form{pointer-events: auto; visibility: visible;}
#header .header-right .search-form .btn{
    background: #0066b1;
    border-radius: 50%;
    color: #fff;
    padding: 0.5rem;
    aspect-ratio: 1;
}


.swiper:not(.swiper-default) .slide-control{position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);    z-index: 2;
        display: flex;     align-items: center;
}
.swiper:not(.swiper-default) .slide-control .swiper-button-prev,
.swiper:not(.swiper-default) .slide-control .swiper-button-next,
.swiper:not(.swiper-default) .slide-control .swiper-pagination{position: static;}
.swiper .slide-control .swiper-pagination{display: flex;margin: 0px 0px; justify-content: center;}
.slide-control .swiper-button-next, .slide-control .swiper-button-prev{
    width:var(--iz-1);
    height:var(--iz-1);
    background-color: #e8edf0;
    background-size: 50% auto; background-repeat: no-repeat; background-position: center center;
    flex: 0 0 var(--iz-1);    margin: 0px; margin: 0px 10px;
    transition: var(--d-transition);
    border-radius: 50%;
}
.slide-control .swiper-button-next:after, .slide-control .swiper-button-prev:after{display: none;}
.slide-control .swiper-button-prev{background-image: url('../images/arrow-prev.svg'); left: 0}
.slide-control .swiper-button-next{background-image: url('../images/arrow-next.svg'); right: 0}
.slide-control .swiper-button-next:hover{
     background-color: #0066b1;
    background-image: url('../images/arrow-next-white.svg');
}
.slide-control .swiper-button-prev:hover{
     background-color: #0066b1;
    background-image: url('../images/arrow-prev-white.svg');
}
.slide-control .swiper-scrollbar{background: #B37D29 ; padding-top: 1px; height: 0px;}
.slide-control .swiper-scrollbar .swiper-scrollbar-drag{
    height: 3px; background: #E2B063;
    margin-top: -2px;
    border-radius: 0;
    cursor: pointer;

}

.slide-control-style-2 .swiper-button-next,
.slide-control-style-2 .swiper-button-prev{
    background-color: #fff;
    border: solid 1px #bfd2da;
}

.slide-control-style-2 .swiper-button-prev{ background-image: url('../images/arrow-prev-color.svg');}
.slide-control-style-2 .swiper-button-next{ background-image: url('../images/arrow-next-color.svg');}

.slide-control-style-3{}


.section-slide-style-2 .slide-control{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}
.section-slide-style-2 .slide-control .swiper-button-prev,
.section-slide-style-2 .slide-control .swiper-button-next,
.section-slide-style-2 .slide-control .swiper-pagination{
    position: static;
    margin: 0;
    margin-top: 2rem;
}
.section-slide-style-2 .swiper-pagination{}

.section-slide-style-3 .swiper-button-prev{ background-image: url('../images/arrow-prev-white.svg'); background-color: var(--color-1);
    transform: translateY(-50%);
}
.section-slide-style-3 .swiper-button-next{ background-image: url('../images/arrow-next-white.svg'); background-color: var(--color-1);
    transform: translateY(-50%);
}
.section-slide-style-3 .swiper-button-prev:hover,
.section-slide-style-3 .swiper-button-next:hover{  background-color: var(--color-2);}


.slide-control .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    width:1.5rem;
    height:1.5rem;
    margin:0 .1875rem;
    border-radius:50%;
    opacity:1;
    border:solid 1px transparent;
    position:relative;
    background:transparent;
}
.slide-control .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:before{
    content:'';position:absolute;background: #c6d5dd;
    border-radius:50%;width:0.9rem;aspect-ratio:1;left:50%;top:50%;transform:translate(-50%,-50%)
}
.slide-control .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active{
    border:solid 1px #c6d5dd;
}
.slide-control .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:hover:before,
.slide-control .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:before{
    background: var(--color-2);
}


.post-slide-cate.swiper{padding-bottom: 10px;}
.post-list .swiper .swiper-pagination{    position: absolute; bottom: 0; margin: 0px;    justify-content: center;}
.post-list .swiper .slide-control{transform: none; bottom: 0px;}
.swiper-pagination-bullets-dynamic{}

.swiper.swiper-default{}


.section-home-slide.with-video
{
     --plyr-color-main:var(--color-1);
}

.section-home-slide.with-video .video-background .plyr:before{
    pointer-events: none;
    position: absolute;
    z-index: 2;
    content: '';
    bottom: 0rem;
    left: 0;
    width: 100%;
    height: 18rem;
    background: linear-gradient(0deg,rgba(7, 41, 68, 1) 0%, rgba(6, 38, 64, 0.64) 60%, rgba(6, 38, 64, 0) 100%);
}

.section-home-slide .plyr--full-ui.plyr--video .plyr__control--overlaid{
    /*display: none;*/
}


.plyr iframe {
    transition: var(--d-transition);
}

.plyr.plyr--paused iframe {
    opacity: 0;
}
.plyr.plyr--youtube .plyr__poster{
    background-size:cover;
}
.plyr.plyr--youtube.plyr--paused.plyr__poster-enabled:not(.plyr--stopped) .plyr__poster{
    display: block; opacity: 1;
}

.video-background .plyr__video-embed iframe{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
}
@media (min-width:1200px){
    .section-home-slide .video-background {
        width: 100%;
        height: 100vh;
    }
    .section-home-slide .video-background .plyr {
        position: absolute;
        width: 100%;
        height: 100%;
    }
    .video-background .plyr__video-embed iframe{
        width: 100vw;
        height: 100vh;
    }

}
@media (min-width:1200px) and (min-aspect-ratio: 16/9) {
  .video-background .plyr__video-embed iframe {
    height: calc(100vw * 9 / 16);
  }
}
@media (min-width:1200px) and (max-aspect-ratio: 16/9) {
  .video-background .plyr__video-embed iframe {
    width: calc(100vh / (9 / 16));
  }
}


.parallax-slider {
  height: 100vh;
}
.parallax-slider .swiper-slide {
  position: relative;
  overflow: hidden;
}

.parallax-slider .img-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-position: center;
  background-size: cover;
}
.parallax-slider .img-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.parallax-slider .img-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-image: linear-gradient(rgba(8, 8, 8, 0.5), rgba(218, 96, 15, 0.7));
  display: none;
}

.parallax-slider .swiper-slide .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 10%;
}


/*nav controls*/
.parallax-slider .swiper-nav-ctrl{
    position: absolute;
    left: var(--fz-24);
    bottom: var(--fz-24);
    display: flex;
    gap: 1rem;
    color: #fff;
    align-items: center;
}
.parallax-slider .swiper-button-prev,
.parallax-slider .swiper-button-next,
.parallax-slider .swiper-pagination{
    position: static;
    transform: none;
    left: auto;
    bottom: auto;
    right: auto;
    top: auto;
    margin: 0;
}
.parallax-slider .swiper-pagination{
    font-size: var(--fz-14);
}
.parallax-slider .swiper-pagination .swiper-pagination-current{
    font-size: 2em;
    font-weight: 500;
}



.parallax-slider .swiper-button-next:after,
.parallax-slider .swiper-button-prev:after{
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    color: #fff;
    font-size: var(--fz-35);
}
.parallax-slider .swiper-button-next:after{
    content: '\f054';
}
.parallax-slider .swiper-button-prev:after{
     content: '\f053';
}




@media(min-width:1200px){
    body:not(.ready) #header .navbar-brand{opacity: 0;}
    body #header .navbar-brand{
        /*transition: var(--d-transition);*/
    }

}


.modal-form-popup .modal-content{background: var(--color-1);}
.form-popup-modal{

    border-radius: 5px;
    padding: var(--fz-30) var(--fz-30);
    position: relative;
    text-align: center;
    color:#fff;
}

.modal-form-popup .section-title{}
.form-popup{ 

}
.form-popup .inner{
   text-align: center;
}
.form-popup.show{/*opacity: 1;*/ }
.form-popup.show .inner{

}
.modal-form-popup .close{position: absolute; top: 10px; right: 10px; width: 40px; height: 40px; 
     background: var(--color-1);
     transition: var(--d-transition);
     opacity: 1;
     z-index: 4;
     border-radius: 50%;
}
.modal-form-popup .close:after{content: ''; position: absolute; left: 25%; top: 25%; width: 50%; height: 50%;
    background: url('../images/icon-close.svg') no-repeat center center; background-size: contain;
}
.modal-form-popup .close:hover{transform: rotate(180deg);}


.form-popup .form-control{
     border-bottom: 1px solid rgba(255,255,255,0.5);
    padding: 0px;
    border-radius: 0px;
    color: #fff;
}
.form-popup .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(255,255,255,0.5);
}
.form-popup .form-control::-moz-placeholder { /* Firefox 19+ */
  color: rgba(255,255,255,0.5);
}
.form-popup .form-control:-ms-input-placeholder { /* IE 10+ */
  color: rgba(255,255,255,0.5);
}
.form-popup .form-control:-moz-placeholder { /* Firefox 18- */
  color: rgba(255,255,255,0.5);
}
/*Modal*/
.modal-content .modal-logo{
    margin: 0px 0;
    transition-duration: 0.3s;
    height: auto;
    padding: 0px;
    position: fixed;
    top: 30px;
    width: 12.14vw;
    min-width: 90px;
}
@media (max-width: 1699px){
    .modal-content .modal-logo {
        width: 11vw;
        top: 10px;
    }    
}

.modal-content .form-popup,
.modal-content .form-popup .section-title{
     color:#fff;
}

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


.section-aboutus{
    background-image: url('../images/bg/overview.jpg');
    background-position: center bottom 5rem;
    overflow: hidden;

}
.section-aboutus .section-content-inner{
    min-height: calc(100vw * 1120 / 1920) ;
}
.section-aboutus .number-items{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.section-aboutus .section-items .other-item{
    flex-grow: 1;
}
.number-items .item{

}
.number-items .item .number{
    font-size: var(--fz-45);
    font-weight: 900;
    color: var(--color-1);
    white-space: nowrap;
}
.number-items .item .title{
    font-size: calc(var(--fz-45) / 2);
    color: #385b74;
}
.number-items .other-item .item{
    padding: var(--fz-35) var(--fz-35) var(--fz-20);
}
.number-items .first-item .item .number{
    font-size: calc(1.5 * var(--fz-45));
}


.number-items .other-item{position: relative;}
.number-items .other-item .line{
    --color:#a9c4d7;
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--color);
}
.number-items .other-item .line:before{
    content: ''; position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%,-50%);
    width:  0.5625rem;
    height:  0.5625rem;
    border-radius: 50%;
    background: var(--color);
}
.number-items .other-item .line:after{
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0px;
   height: 0px;
   border-style: solid;
   border-width: 0.5625rem 0 0.5625rem 1rem;
   border-color: transparent transparent transparent var(--color);
}

.section-service .bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: #fff;
}
.section-service .bg:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 50%;
    width: 100%;
    background: url('../images/bg/bg-service-top.png') no-repeat center center;
    background-size: cover;
}
.section-service .bg:after{
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    height: 0;
    width: 68.75vw;
    padding-top: calc(68.75vw * 564 / 1321);
    background: url('../images/bg/bg-service.png') no-repeat right bottom;
    background-size: cover;
}

.section-service .section-content{
    font-size: var(--fz-30);
    font-weight: 600;
    color: var(--color-1);
}
.section-service .section-content p{margin: 0}
.section-service .section-content strong{
    font-weight: 600;
    color: #00aced;
}
.section-service .section-content-inner .btn{
    margin-top: 4rem;
}

.service-items .item{
    /*background: #b5c7d4;*/
    border-radius: var(--d-radius);
    overflow: hidden;
}
.service-items .item .item-thumb{
    padding-top: calc(100% * 520 / 423);
}
.service-items .item .item-thumb:after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 40%;
    width: 100%;
    background: linear-gradient(0deg,rgba(20, 75, 116, 1) 0%, rgba(20, 75, 116, 0) 100%);
    opacity: 0.7;
    pointer-events: none;
}
.service-items .item .item-title{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: var(--fz-26) var(--fz-35) var(--fz-26) var(--fz-45);
    background: url('../images/icon-arrow-1.svg') no-repeat center left;
    background-size: auto var(--fz-35);
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

.section-branch{
    background-image: url('../images/bg/bg-system.jpg');
}
.section-branch .section-map{
    width: 35.67708333333333vw;
}
.section-branch .section-content-inner{
    position: absolute;
    padding-left: 30vw;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: column;
}
.section-branch .section-heading{
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #57768c;
    width: 50%;
}
.section-branch .section-heading .number{
    color: #0066b1;
    font-size: calc(1.8 * var(--fz-40));
    font-weight: 900;
}
.section-branch .section-content{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: auto;
    position: relative;
}
.section-branch .form-filter{
    background: #fff;
    padding: 0.2rem 2rem;
    border-radius: 2rem;
    border: solid 1px #f1f6fa;
    position: relative;
    margin: 1rem 0 2rem;
}
.section-branch .form-filter:after{
    pointer-events: none;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    content: "\f002";
}
.section-branch .form-filter .form-control{padding: 0}
.section-branch .section-scroll-wrapper{flex-grow: 1}
.section-branch .branch-items{
    padding: 1rem 2rem;
    flex-grow: 1;
}
.section-branch .branch-items ul{ padding-left: 1rem}
.section-branch .branch-items ul li{
    margin-bottom: 0.8rem;
}
.section-branch .branch-items ul li a{
    color: var(--color-1);
    font-size: var(--fz-20);
}
.section-branch .branch-items ul li:hover a{
    color: var(--color-2);
}
.section-branch .branch-items ul li::marker{
    color: #57768c;
}
.section-branch .branch-item-detail{
    position: absolute;
    top: 30%;
    left: 25%;
    background: #fff;
    color: #57768c;
    padding: var(--fz-35);
    border-radius: var(--d-radius);
    filter: drop-shadow(0px -3px 0px #0066b3);
    pointer-events: none;
    transition: var(--d-transition);
    transform: translateY(2rem);
    opacity: 0;
    visibility: hidden;
    max-width: 50vw;
}
.section-branch .branch-item-detail.show{
    pointer-events: auto;
    transform: translateY(0rem);
    opacity: 1;
    visibility: visible;
}
.modal-item-detail .close{
    position: absolute; margin: 0px !important;
    right: 1rem; top: 1rem;
    border-radius: 50%;
    width: var(--iz-1); height: var(--iz-1);
    font-size: calc(0.5 * var(--iz-1)); line-height: 0.8;
    background: var(--color-1) url('../images/icon-close.svg') no-repeat center center;
    color: #fff; border: 0;
    text-indent: -9999px;
    z-index: 4;
    display: block;

}
.branch-item-detail .logo{
    height: 3rem;
    width: 70%;
}
.branch-item-detail .logo img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.branch-item-detail .section-title{margin-top: 0.75em}
.branch-item-detail .contact-items{margin-bottom: 0}
.branch-item-detail .contact-items li,
.branch-item-detail .contact-items li a{
    color: #57768c;
}

@media(min-width: 768px){
    .section-branch .form-filter{width: 70%}
}


.section-project-slide .section-content-wrapper{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    pointer-events: none;
    text-align: center;
    z-index: 2;
}

.project-slide .swiper-slide,
.section-slide-content .section-content-wrapper {
    height: calc(100vw * 980 / 1920);
    position: relative;
}
.section-project-slide .swiper-slide-wrapper {
    overflow: hidden;
}
.project-slide .swiper-slide .item,
.section-slide-content .item{
    width: 40vw;
    min-width: 320px;
    position: absolute; z-index: 2;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: var(--d-padding-lg);
}
.project-slide .swiper-slide .item .title {
    text-transform: uppercase;
    font-weight: 400;
}
.project-slide .swiper-slide .item.item-content-left,
.section-slide-content .item.item-content-left {

}
.project-slide .swiper-slide .item.item-content-right,
.section-slide-content .item.item-content-right {
    left: auto;
    right: 0;
}
.project-slide .swiper-slide .item .description strong{font-weight: 400}


.project-slide .swiper-slide .bg,
.section-slide-content .bg {
    width: 100%;
    height: 100%;
}
.project-slide .swiper-slide .bg:before{
    content: '';
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: url('../images/bg/bg-projectslide.png') no-repeat center center;
    background-size: 100% 100%;
}
.project-slide .item .btn{
    margin-top: 2rem;
}
.project-slide .item:not(:item-hover) .btn:not(:hover) i{
    background: var(--color-1);
    color: #fff;
}


.section-project-slide .slide-control-style-1{
    position: absolute;
    bottom: 0;
    right: 0;
}
.section-project-slide .slide-control-style-1 .swiper-pagination.swiper-pagination-horizontal {
    bottom: 0.8rem;
    right: 0.8rem;
    left: auto;
    text-transform: uppercase;
    width: auto;
    background: rgba(9, 51, 82, 0.5);
    padding: 0;
    border-radius: var(--d-radius);
    display: flex;
    gap: 0.625rem;
}
.section-project-slide .slide-control-style-1 .swiper-pagination.swiper-pagination-horizontal .swiper-pagination-bullet {
    height: 6.5625rem;
    width: 11.625rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: solid 0.4rem transparent;
    background: transparent;
    opacity: 1;
    margin:0 !important;
    border-radius: calc(1.4 * var(--d-radius));
}
.section-project-slide .swiper-pagination-bullet img{
    position:absolute; left:0; top:0; width:100%; height:100%; object-fit:cover;
    border-radius: var(--d-radius);
    opacity: 0.7;
}
.section-project-slide .slide-control-style-1 .swiper-pagination.swiper-pagination-horizontal .swiper-pagination-bullet span{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0.5rem 1rem;
}

.section-project-slide .swiper-pagination-bullet:before {
    content: '';
    position: absolute;
    bottom: calc(100%);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
     width: 0;
    height: 0;
      border-style: solid;
      border-right: 8px solid transparent;
      border-left: 8px solid transparent;
      border-bottom: 10px solid #0066b1;
      border-top: 0;

}
.section-project-slide .slide-control-style-1 .swiper-pagination.swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: #0066b1;
}
.section-project-slide .swiper-pagination-bullet.swiper-pagination-bullet-active img {
    opacity: 1;
}
.section-project-slide .swiper-pagination-bullet.swiper-pagination-bullet-active span{
    opacity: 0;
}
.section-project-slide .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    opacity: 1;
}

.section-project-slide .section-title.with-logo{
    height: 3.25rem;
}
.section-project-slide .section-title.with-logo img{max-height: 100%;}

.section-shareholder{overflow: hidden;}
.section-shareholder:before{
    pointer-events: none;
    content: '';
    position: absolute;
    left: 32%;
    top: -15%;
    width: 33.8vw;
    aspect-ratio: 1;
    background: url('../images/bg/bg-codong.png') no-repeat center center;
}
.section-shareholder .section-image-wrapper {
    border-radius: var(--d-radius) 0 0 var(--d-radius);
    overflow: hidden;
}
.section-shareholder .section-items{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.section-shareholder .section-items .col-6{display: inline-flex; justify-content: center;}
.section-shareholder .section-content-inner{
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.section-shareholder .section-content-inner .section-frame{
    flex-grow: 1;
}
.section-shareholder .section-content-inner:after{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 0.1875rem;
    width: 150%;
    background: #0066b1;
}

.shareholder-items{}
.shareholder-items .item{display: flex; gap: 1.2rem;
    padding: 1rem;
    color: #fff;
    align-items: center;
}
.shareholder-items .item .item-thumb{
    --size: calc(2.4 * var(--fz-55));
    flex: 0 0  var(--size);
    width: var(--size);
    padding-top: var(--size);
}
.shareholder-items .item .item-thumb img{
    border: solid 0.4rem rgba(0, 102, 177,0.55);
}
.shareholder-items .item .title{

}
.shareholder-items .item .btn-act{
    display: flex; gap: 1rem;
    align-items: center;
}
.shareholder-items .item .btn-act .btn{ padding: 0 0.6rem 0.6rem; display:flex;   align-items: center; gap:1rem;
    border-bottom: solid 1px rgba(132, 208, 237,0.4);
    color: #84d0ed;
    margin: 0;
    text-transform: uppercase;
 }
 .shareholder-items .item .btn-act .btn:hover{
    color: #fff;
    border-color: rgba(132, 208, 237,1);
 }


.section-capacity{
    background: url('../images/bg/bg-capacity.jpg') no-repeat center center;
    background-size: cover;
}
 .section-capacity .capacity-content .section-image{
    width: 35.5%;
    margin: auto;
    aspect-ratio: 608 / 541;
    position: relative;
 }
 .section-capacity .section-image .bg{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 72%;
    aspect-ratio: 1;
    opacity: 1;

 }
  .section-capacity .section-image .bg .inner{
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
    background: url('../images/word.png') no-repeat center center;
    background-size: cover;

    animation-name: RotateBG2;
    animation-iteration-count: infinite;
    animation-duration: 30s;

  }
 .section-capacity .section-image img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.section-capacity .capacity-content{
    position: relative;
    padding: 2rem 0;
}


.capacity-items .item{text-align: left;}

.capacity-items .item .item-thumb{
    height: 3.854166666666667vw;
    min-height: 27px;
    display: inline-flex;
    align-items: center;
}
.capacity-items .item .item-thumb img{
    object-fit: contain;
    max-height: 100%;
    max-width: 100%;
}



.capacity-items .item{
    position: absolute;
    width: 40%;
}
.capacity-items .item .item-body{
    position: absolute;
    background: #fff;
    border-radius: var(--d-radius);
    filter: drop-shadow(0px -3px 0px #0066b3);
    padding: var(--fz-30) var(--fz-35);
    box-shadow: 0px -3px 0px 0px rgba(0, 102, 179, 0.004);
     color: #0066b1;
    font-size: var(--fz-20);
    pointer-events: none;
    opacity: 0;
    transition:none;
    top: calc(100% + 2rem);
    right: 0;
    width: 23.7vw;
    min-width: 300px;
    text-align: left !important;
}
.capacity-items .item:hover,
.capacity-items .item.show{z-index: 2}
.capacity-items .item:hover .item-body,
.capacity-items .item.show .item-body{
    opacity: 1;
    top: calc(100% + 1rem);

    transition: var(--d-transition);
}
.capacity-items .item[data-index='6'] .item-body,
.capacity-items .item[data-index='7'] .item-body,
.capacity-items .item[data-index='8'] .item-body,
.capacity-items .item[data-index='9'] .item-body,
.capacity-items .item[data-index='10'] .item-body{
    right: auto;
    left: 0;
}

.capacity-items .item[data-index='5'] .item-body,
.capacity-items .item[data-index='10'] .item-body{
    top:auto;
    bottom: calc(100% + 1rem);
}

.capacity-items .item:not([data-image=""]){cursor: pointer;}
.capacity-items .item[data-index='1'] {
    top: 0;
    text-align: right;
}
.capacity-items .item[data-index='2'] {
    top: 22%;
    text-align: right;
    padding-right: 8%;
}
.capacity-items .item[data-index='3'] {
    top: 50%;
    text-align: right;
    transform: translateY(-50%);
    padding-right: 10%;
}
.capacity-items .item[data-index='4'] {
    bottom: 22%;
    text-align: right;
    padding-right: 8%;
}
.capacity-items .item[data-index='5'] {
    bottom: 0;
    text-align: right;
}
.capacity-items .item[data-index='6'] {
    right: 0px;
    top: 0;
}

.capacity-items .item[data-index='7'] {
    right: 0px;
    top: 22%;
    padding-left: 8%;
}
.capacity-items .item[data-index='8'] {
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 10%;
}
.capacity-items .item[data-index='9'] {
    right: 0px;
    bottom: 22%;
    padding-left: 8%;
}
.capacity-items .item[data-index='10'] {
    right: 0px;
    bottom: 0;
}
.section-capacity .tab-content{margin-bottom: 3rem;}

.tab-sales-capacity .items{display: flex; align-items: center;     justify-content: center; flex-wrap: wrap;}
.tab-sales-capacity .item{
    display: flex;
    padding: 1.42rem var(--fz-45);
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}
.tab-sales-capacity .item img{
    max-width: 100%; max-height: 100%; height: calc(var(--fz-35) * 2 ); object-fit: contain;
}
.tab-sales-capacity .row-2 .item img{
    height: calc(var(--fz-35) * 2.2 );
}
.tab-sales-capacity .row-1 .item img{
    height:calc(var(--fz-35) * 3 );
}
.tab-sales-capacity .item .item-body {
    position: absolute;
    background: #fff;
    border-radius: var(--d-radius);
    filter: drop-shadow(0px -3px 0px #0066b3);
    padding: var(--fz-30) var(--fz-35);
    box-shadow: 0px -3px 0px 0px rgba(0, 102, 179, 0.004);
    color: #0066b1;
    font-size: var(--fz-16);
    pointer-events: none;
    opacity: 0;
    transition: none;
    top: calc(100% + 2rem);
    left: 50%;
    transform: translateX(-50%);
    width: 25vw;
    min-width: 300px;
}
.tab-sales-capacity .item:hover,
.tab-sales-capacity .item.show{z-index: 2}
.tab-sales-capacity .item:hover .item-body,
.tab-sales-capacity .item.show .item-body{
    opacity: 1;
    top: calc(100% + 1rem);

    transition: var(--d-transition);
}
.tab-sales-capacity .row-3 .item:hover .item-body,
.tab-sales-capacity .row-3 .item.show .item-body{
    top:auto;
    bottom: calc(100% + 1rem);
}
@media(min-width: 1200px){
    .tab-sales-capacity .item .item-body{
        width: 14vw;
        min-width: 250px;
    }
}


.tab-finance .section-image{
    display: inline-block;
    position: relative;
}
.section-capacity .tab-finance .section-image .bg{
    width: 48%;
}
.tab-finance .section-content img{width: 45.9375vw; min-width: 320px;
    position: relative;
    height: auto;
}




.section-capacity .section-info{margin-bottom: var(--fz-35);}


.nav-tabs-style-1{position: relative;
    display: inline-flex;
    padding: 0px 0.25rem;
    border: 0;
}
.nav-tabs-style-1:before{
    content: '';
    position: absolute;
    bottom: 0rem;
    left: 0;
    height: 0.5rem;
    width: 100%;
    background-color: rgba(87, 118, 140,0.2);
    border-radius: 0.5rem;
}
.nav-tabs-style-1 li{
   position: relative;
   margin: 0;
    padding: 0;
    border: 0;
}
.nav-tabs-style-1 li .nav-link{
    margin-bottom: 0;
    padding: 0.5rem var(--fz-55) 1.5rem;
    border-radius: 0;
    border: 0;
    font-size: var(--fz-16);
    color: #57768c;
    text-transform: uppercase;
    font-weight: 500;

}
.nav-tabs-style-1 li .nav-link:before{
     content: '';
    position: absolute;
    bottom: 0.125rem;
    left: 0;
    height: 0.25rem;
    border-radius: 0.25rem;
    width: 100%;
    background-color: #0066b1;
    pointer-events: none;
     opacity: 0;
     transition: var(--d-transition);
}
.nav-tabs-style-1 li .nav-link:after{
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0.25rem;

    width: 0;
      height: 0;
      border-style: solid;
      border:0;
      border-right: 0.5rem solid transparent;
      border-left: 0.5rem solid transparent;
      border-bottom: 0.625rem solid #0066b1;
      pointer-events: none;
      opacity: 0;
      transition: var(--d-transition);
}
.nav-tabs-style-1 .nav-item.show .nav-link:before, .nav-tabs-style-1 .nav-link.active:before,
.nav-tabs-style-1 .nav-item.show .nav-link:after, .nav-tabs-style-1 .nav-link.active:after{
    opacity: 1;
}
.nav-tabs-style-1 .nav-item:hover .nav-link, .nav-tabs-style-1 .nav-link:hover,
.nav-tabs-style-1 .nav-item.show .nav-link, .nav-tabs-style-1 .nav-link.active{
    border: 0;
    background: transparent;
    color: #0066b1;
}
.nav-tabs-style-1 .form-select{font-size: var(--fz-16);}



 /*HOME NEW*/



.post-list .item h3{font-size: var(--fz-24); margin:0 0 0.5rem 0; }

.post-list .item .item-control,
.post-list .item .item-control a{
    color: #57768c;
     font-size:var(--fz-16);
}
.post-list .item .item-control a:hover{
    color: var(--color-2);
}
.post-list .item .item-date{ color: #57768c; display:inline-flex; align-items:center;  }
.post-list .item .item-date i{margin-right: 0.5rem; }
.post-list .item .item-date strong{
    font-size: var(--fz-24);
    color: var(--color-2);
}

.post-list.items{padding-left: 0px;}

.post-list .item{margin-bottom: 2.5rem;
    display: block;   color: inherit;
    font-size: var(--fz-16);
    display: flex;
    flex-direction: column;
    position: relative;

}
.post-list .item:after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #dae3ea;
    pointer-events: none;
    transition: var(--d-transition);
}
.post-list .item:hover:after{
    background: #00aced;
    height: 5px;
}
.post-list .item .item-thumb{ padding-top: calc(100% * 374 / 587); border-radius: var(--d-radius);}

.post-list .item .item-thumb img{}
.post-list .item .item-body{ position: relative;
    display: flex;
    flex-direction: column;
    background: #fff; color: #5C5C5C;
    padding: 1rem 0.8rem 1rem;
    flex-grow: 1;
}
.post-list .item .item-body .item-control{margin-top: auto;}

.post-list .item h3 a{
    font-weight: 500;
    color: var(--color-1);
}
.post-list .item h3 a:hover{color: var(--color-2);}

.post-list .item h3 a,
.post-feature .item h3 a{ -webkit-line-clamp: 2;}
.post-list .item .description{ -webkit-line-clamp: 3; text-align: justify;
    margin-bottom: 0.5rem;
}

.post-slide .swiper-slide{
    height: auto;
    padding-bottom: 1rem;
}
.post-slide .swiper-slide .item{height: 100%}

.section-home-news .swiper .slide-control .swiper-pagination{}


.section-partner .bg{
    pointer-events: none;
    position: absolute;
    left: -9vw;
    top: -3rem;
    width: 30.10416666666667vw;
    height: 0;
    padding-top: calc(30.10416666666667vw * 804 / 804);
    background: url('../images/bg/bg-globe.jpg') no-repeat center center;
    background-size: contain;

    animation-name: RotateBG2;
    animation-iteration-count: infinite;
    animation-duration: 30s;

}
.section-partner .section-image{border-radius: var(--d-radius) 0 0  var(--d-radius);     overflow: hidden;}

.section-partner .item .item-thumb img{
    filter: grayscale(1);
    transition: var(--d-transition);
}
.section-partner .item:hover .item-thumb img{
    filter: grayscale(0);
}
.partner-slide .item{
    padding: 1rem;
    text-align: center;
}
.partner-slide .item .item-thumb{
   height: 3rem;
}
.partner-slide .item .item-thumb img{
    max-height: 100%;
    object-fit: contain;
}

.section-partner .partner-items-2{
    background: #f1f6fa;
    padding-top: 6rem;
    margin-top: -3rem;
    position: relative;
}

.partner-slide-2{
    height: 20rem;

}
.partner-slide-2 .swiper-slide{
   height: 10rem;
   padding: 1rem;
}
.partner-slide-2 .item{
     width: 100%;
    height: 100%;
}
.partner-slide-2 .item .item-thumb{
    width: 100%;
    height: 100%;
    position: relative;
    background: #FFF;
    border-radius: var(--d-radius);
}
.partner-slide-2 .item .item-thumb img{
    position: absolute;
    width: 70%;
    height: 60%;
    left: 15%;
    top: 20%;
    object-fit: contain;
}


@media (min-width:992px) {


}

.pagination{}
.pagination .page-numbers{list-style: none; margin: 60px auto 0px; padding: 0px;}
.pagination .page-numbers li{display: inline;}
.pagination .page-numbers li a,
.pagination .page-numbers li span{display: inline-flex; width: 36px; height: 36px; border-radius: 50%; border: solid 1px  #DDBE7A ; color: #DDBE7A ; opacity: 0.5;
    margin: 0px 5px; justify-content: center; align-items: center; font-weight: 500;
}
.pagination .page-numbers li a:hover,
.pagination .page-numbers li span{background:#DDBE7A ; color: #fff; opacity: 1;}


/*Footer*/
.fp-viewing-lien-he .fixed-btn.bottom{ }
#footer{position: relative;
    background-image: url('../images/bg/bg-footer.jpg') ;
}
#footer h5{
    font-size: var(--fz-18);
    text-transform: uppercase;
    font-weight: 600;
}
#footer a{
    color: #fff;
}
#footer ul li{
    margin-bottom: 1rem;
}
#footer a:hover{color: var(--color-2);}
.contact-items{list-style: none; padding: 0; margin-bottom: 2rem;}
.contact-items li{display: flex; gap: 0.75rem;}
.contact-items li,
.contact-items li a{color: #fff; font-weight: 300}
.contact-items li .icon{
    flex:0 0 var(--fz-24);
    width: var(--fz-24);
    color: #90c9f3;
}
.footer-menu-wrapper {gap: 2rem; justify-content: space-between;}
.footer-menu-wrapper .menu-items{padding-left: 1rem; margin-bottom: 2rem}
.footer-menu-wrapper .menu-items li{}
.menu-items li::marker {
    color: rgba(178, 222, 255,0.5);
}





#footer .contact-info-wrapper{ padding-top: 0px;
    background: rgba(0, 27, 83, 0.5);
    padding: 2rem 3rem;
}
#footer .contact-info-wrapper .section-content{font-style: italic;}
#footer a{}
#footer .fixed-social-btn a:hover{
    background: var(--d-textg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


#footer .form-inner{

    position: relative;
    overflow: hidden;
    text-align: center;
}



#footer .fixed-social-btn .inner{display: flex;
    margin-top: var(--fz-55);
}
#footer .logo-image{
    width: 16.041vw;
    min-width: 200px;
}
#footer .footer-logo img{  }
#footer .contact-info p{
    margin-bottom: 0.5rem;
}
#footer .contact-info p.hotline a{
    color: #b2deff;
    font-size: var(--fz-26);
    font-weight: 700;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}
#footer .contact-info p.hotline a:hover{color: #555555}

.social{
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}
.social a{
    width: var(--iz-1);
    height: var(--iz-1);
    border-radius: 50%;
    border: solid 1px #00aced;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00aced;
}
.social a:hover{
    border-color: var(--color-2);
    color: var(--color-2);
}
.social a img{
    max-width: 90%;
    max-height: 90%;
}

.section-history .section-content-wrapper{}
.section-history .section-heading{
    position: absolute;
    z-index: 4;
    padding-top: calc(4 * var(--fz-60));
    left: 0;
    top: 0;
    pointer-events: none;
}
.section-history .item{text-align: center;

}
.section-history .swiper-pagination-wrapper{
    position: relative;

}
.section-history .slide-control .swiper-pagination {
    white-space: nowrap;
    margin: 0;
}
.section-history .swiper-button-next.swiper-button-disabled,
.section-history .swiper-button-prev.swiper-button-disabled{    opacity: 1; pointer-events: none;}

.section-history .slide-control .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    width: 4.6875rem;
    height: auto;
    border-radius: 2rem;
    border:solid 1px #ace;
    pointer-events: auto;
    background: #fff;
}
.section-history .slide-control .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active{
    width: 38vw;
    opacity: 0;
    pointer-events: none;

}
.section-history .slide-control .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:before{
    display: none;
}
.section-history .slide-control{

    position: absolute;    z-index: 3; pointer-events: none;
    padding: 0px calc(1.5 * var(--iz-1));
    width: 100%;
    bottom: 30%;
    min-height: var(--iz-1);

}
.section-history .slide-control .slide-control-inner{
    overflow: hidden;
    width: 100%;
}
.section-history .slide-control .swiper-button-prev,
.section-history .slide-control .swiper-button-next{
    margin: 0;
    pointer-events: auto;
    top: 50%;
    transform: translateY(-50%);
}
.section-history .slide-control .swiper-button-prev{
    position: absolute;
    left: 0;
}
.section-history .slide-control .swiper-button-next{
     position: absolute;
    right: 0;
}
.section-history .section-slide .section-image{
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 2;
}
.section-history .section-slide .section-image img{
    height: calc(1.5 * var(--fz-60));
    width: auto;
}

.history-slide .swiper-slide{
    height: auto;
}
.history-slide .item{
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--fz-60);
    justify-content: space-between;
    padding-top: calc(2 * var(--fz-60) );
    background: #fff url('../images/bg/bg-history.jpg') no-repeat center bottom;
    background-size: 100% auto;
}
.history-slide .item:before{
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    border-bottom: dashed 1px #57768c;
    bottom: calc( 30% + var(--iz-1) /2 );
    pointer-events: none;

    /*clip-path:  polygon(0% 0%, 0% 100%, 25% 100%, 25% 0, 75% 0, 75% 100%, 25% 100%, 100% 100%, 100% 0%);*/
}
.history-slide .item .line{
    content: '';
    position: absolute;
    pointer-events: none;
    left: 50%;
    top: calc(2 * var(--fz-60) );
    height: 70%;
    width: 1px;
    background: #d9e4ec;
    z-index: 1;
}
.history-slide .item .line:before,
.history-slide .item .line:after{
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
}
.history-slide .item .line:before{
    width: 1rem;
    height: 1rem;
    border: solid 1px #d9e4ec;
    background: #fff;
}
.history-slide .item .line:after{
    width: 0.5rem;
    height: 0.5rem;
    background: #0066b1;
    top: 0.25rem;
}

.history-slide .item .number{
    position: absolute;     top: 0; left: 0;
    width: 100%;
    color: #f8fafb;
    font-weight: 500;
    line-height: 0.75em;
    pointer-events: none;
}
.history-slide .item .item-body,
.history-slide .item .item-image{
    position: relative;z-index: 2;
}
.history-slide .item .item-body{
    padding-left: calc(50% + 2rem);
    text-align: left;
}
.history-slide .item .item-body strong{color: var(--color-1); font-weight: 500}
.history-slide .item .item-image{
    width: 52vw;
    margin: auto auto 0;
}

.section-introduction{
    background: #f1f6fa;
}
.section-introduction .bg{
    pointer-events: none;
}
.section-introduction .bg:before,
.section-introduction .bg:after{
    content: '';
    position: absolute;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
}
.section-introduction .bg:before{
    width: 42.86458333333333vw;
    aspect-ratio: 823/ 777;
    left: 0;
    top: 0;
    background-image: url('../images/bg/introduction-bg-1.png');
}
.section-introduction .bg:after{
    width: 64.11458333333333vw;
    aspect-ratio: 1231/ 537;
    right: 0;
    bottom: 0;
    background-image: url('../images/bg/introduction-bg-2.png');
}
.section-introduction .section-content{
    column-count: 2;
    column-gap: calc(3 * var(--fz-60));
    padding: 0px calc(0.75 * var(--fz-60));
    color: #57768c;
}
.section-introduction .section-content strong{color: var(--color-1); font-weight: 500}
.section-introduction .section-image img{border-radius: var(--d-radius);}

.section-introduction .section-info{
    font-size: var(--fz-24);
    font-weight: 500;
    color: var(--color-1);
}
.section-introduction .section-info strong{
    font-weight: 500;
    color: #00aced;
}

.team-items .item{
    color: #57768c;
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 100%;
}
.team-items .item .title{
   margin-bottom: 0.2rem;
   color: var(--color-1);
}
.section-team .section-slide{position: relative;
    --st: 54%;
    --sh: 65%;

}
.section-team .section-slide:before{
    content: '';
    pointer-events: none;
    position: absolute;
    right: 0;
    bottom: 0;
    height: var(--sh);
    width: 65%;
    border-radius: calc(2 * var(--fz-60)) 0 0 0;
    background: url('../images/bg/bg-team.svg') no-repeat left bottom;
    background-size: 100% 100%;
}
.team-items .item .item-body{padding:1rem 0 2rem; display: flex; flex-direction: column; justify-content: center;

}
.team-items .item .description{display: none; margin-top: var(--fz-30);}
.team-items .item .description ul{
    padding-left: 1rem;
}
.team-items .item .item-body .btn{
    border-radius: 0;
    padding: 1rem 0.5rem;
    display: inline-flex;
    gap: 1rem;
    align-items: center;
    color: #84d0ed;
    border-bottom: solid 1px #84d0ed;
}
.team-items .item .item-body .btn:hover{border-color: #fff; color: #fff;}

.team-items .item-thumb{

    padding-top: calc(var(--st) * 430 / 307);
     flex:  0 0 var(--st);
     transform-origin: bottom;
}
.team-items .item-thumb{transform: scale(0.4);}
.team-items .item-thumb{}
.team-items .item-thumb img{object-fit: contain;}
.team-items .swiper-slide-active .item{

    flex-direction: row;
    align-items: flex-end;
    gap: 1rem;
}
.team-items .swiper-slide-active .item-thumb{

    transform: scale(1);
}
.team-items .swiper-slide-active .item-body{
    flex-grow: 1;
}
.team-items .swiper-slide{height: auto;}
.team-items .swiper-slide-active .item{height: 100%; text-align: left;}
.team-items .swiper-slide-active .item .item-body{height: var(--sh);}
.team-items .swiper-slide-active .item .description{display: block;}

.team-items .swiper-slide.swiper-slide-prev .item{
    padding-left: calc(1.5* var(--fz-60));
}
.team-items .swiper-slide.swiper-slide-next .item{
    padding-right: calc(1.5* var(--fz-60));
}


.team-items .swiper-slide:not(.swiper-slide-prev) .item,
.team-items .swiper-slide:not(.swiper-slide-prev) .item .title{color: #fff;}
.section-team .section-slide .slide-control{
    position: absolute;
    right: 8.5vw;
    bottom: calc(var(--sh) + var(--iz-1));
    display: flex;
    gap: 1.4rem;
}
.section-team .section-slide .slide-control .swiper-button-prev,
.section-team .section-slide .slide-control .swiper-button-next{position: static; margin: 0; transform: none;}
.section-team .team-item-detail{
    position: absolute;
    bottom: 0;
    left: 25%;
    background: #fff;
    color: #57768c;
    border-radius: var(--d-radius);
    filter: drop-shadow(0px -3px 0px #0066b3);
    pointer-events: none;
    transition: var(--d-transition);
    transform: translateY(2rem);
    opacity: 0;
    visibility: hidden;
    max-width: 50vw;
    box-shadow: 5px 8.66px 25px 0px rgba(124, 142, 155, 0.2);
    overflow: hidden;
}
.section-team .team-item-detail.show {
    pointer-events: auto;
    transform: translateY(0rem);
    opacity: 1;
    visibility: visible;
    z-index: 10;
}
.section-team .team-item-detail .item-detail{
    display: flex;
}
.section-team .team-item-detail .item-thumb{
    background: #dde3f3;
    flex:0 0 42.75%;
    padding: 1rem 2rem 0;
    display: inline-flex;
    align-items: end;
}
.section-team .team-item-detail .item-body{padding: var(--fz-35);    text-align: left;}
.section-team .team-item-detail .title{
    font-size: var(--fz-24);
    color: var(--color-1);
    margin-bottom: 0.2rem;
}
.section-team .team-item-detail .description{
    margin-top: var(--fz-30);
}
.section-team .team-item-detail .description ul {
    padding-left: 1rem;
}
.section-team .team-item-detail ul li::marker{
    color: var(--color-1);
}

.section-vm{
    background-image: url('../images/bg/bg-vm.jpg');
    min-height: calc(100vw * 880 / 1920);

}
.section-vm .vm-content{
    padding-top: 5vw;
}
.section-vm .section-image{
    width: 42.7vw;
    min-width: 300px;
    margin: auto;
    aspect-ratio: 820/629;
    position: relative;
}
.section-vm .section-image .inner{
    position: absolute;
    left: 50%;
    top: 23%;
    transform: translateX(-50%);
    border-radius: 50%;
    width: 50%;
    aspect-ratio: 1;
    overflow: hidden;
    border: solid 0.7rem rgba(181,222,252,0.1);
}
.section-vm .section-image .inner img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-vm .section-items .item{
    position: absolute;
    color: #fff;
    display: flex !important;
    gap: 2rem;
    width: 30vw;
    min-width: 250px;
    /*cursor: pointer;*/
}
.section-vm .section-items .item .title{font-size: var(--fz-35); font-weight: 600; transition: var(--d-transition);}
.section-vm .section-items .item:hover .title{color: var(--color-2);}
.section-vm .section-items .item .item-thumb{}
.section-vm .section-items .item .item-thumb img{
    width: 3.4375vw;
    min-width: 54px;
    aspect-ratio: 1/1;
    object-fit: contain;
}
.section-vm .section-items .item[data-index='1']{
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    width: 100%;
}
.section-vm .section-items .item[data-index='2']{
    top: 50%;
    left: 0;
    text-align: right;
}
.section-vm .section-items .item[data-index='2'] .item-thumb{
    order: 2;
}

.section-vm .section-items .item[data-index='3']{
    top: 50%;
    right: 0;
}
.section-vm .item .description ul,
.benefit-items .item .description ul{
    list-style: none;
    padding: 0;
}
.section-vm .item .description ul li,
.benefit-items .item .description ul li{position: relative;
    padding-left: 1.3625rem;
}
.section-vm .item .description ul li:before,
.benefit-items .item .description ul li:before{
    position: absolute;
    left: 0;
    top: 0.2rem;
    display: inline-flex;
    content: '';
    width: 0.5625rem;
    aspect-ratio: 9/16;
    background: url('../images/bullet-1.svg') no-repeat center center;
    background-size: contain;
}

.section-benefit{
   min-height: calc(100vw * 992 / 1920);
   position: relative;
   z-index: 2;
}
.section-benefit .bg{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100vw * 992 / 1920);
    background-image: url('../images/bg/bg-loiich.jpg');
    background-position: center bottom ;
    background-size: contain;
}
.section-benefit .section-content-wrapper{
    padding-left: 42vw;
}
.section-benefit .section-title,
.section-benefit .section-description{
    padding-right: 0.75rem;
}
.section-benefit .section-title .number{position: absolute; left: 0;
    color: rgb(235, 244, 251);
    font-weight: bold;
    font-size: calc(2.2 * var(--fz-60));
    line-height: 0.75em;
    transform: translateX(-100%);
}
.section-benefit .section-description{
    padding-left: 32%;
    margin: var(--fz-60) 0 calc(2 * var(--fz-60));
}
.benefit-items .item{
    background: #0066b1;
    border-radius: var(--d-radius);
    color: #fff;
    padding: var(--fz-30);
    overflow: hidden;
    position: relative;
}
.benefit-items .item:before{
    content: '';
    position: absolute;
    right: -1px;
    top: -1px;
    width: 40%;
    aspect-ratio: 342 / 267;
    background: url('../images/bg/bg-benefit-item.png') no-repeat top right;
    background-size: contain;
    pointer-events: none;
}
.benefit-items .item .number{color: #69c8ee; font-size: var(--fz-20); text-align: right; margin-bottom: 1.2rem;}
.benefit-items .item .number span{font-size: 2.25rem; font-weight: 500}
.benefit-items .item .title{font-size: var(--fz-26); margin-bottom: 1em;}
.benefit-slide .swiper-slide{height: auto;}
.benefit-slide .swiper-slide .item{height: 100%}

.section-award .section-content-wrapper{
    display: flex;
    min-height: 15vw;
    gap: 1rem;
}
.section-award .section-title{z-index: 2; white-space:  nowrap;}
.section-award .section-image{width: 20vw; min-width: 260px; position: relative; pointer-events: none;}
.section-award .section-image img{
    position: absolute;
    top: -120%;
    left: 50%;
    transform: translateX(-50%);
    width: 61.51vw;
    min-width: 320px;
    max-width: none;
}

.section-award .section-content {
    font-size: var(--fz-26);
    font-weight: 500;
    color: var(--color-1);
    position: relative;
}
.section-award .section-content strong{
    color: #00aced;
}
.section-award .section-content p{margin-bottom: 0}
.section-award .section-slide{margin-top: 15vw;}
.award-items .item .item-thumb{
    padding-top: calc(100% * 320 / 573);
    border-radius: var(--d-radius);
    overflow: hidden;
}
.award-items .item .item-body{padding: 1rem;}
.award-items .item .title{color: var(--color-1); font-size: var(--fz-24); font-weight: 500}

@media (min-width:1200px) {
    .section-award .section-title{
        order: 0;
    }
    .section-award .section-image{
        order: 1;
    }
    .section-award .section-content{
        order: 2;
    }
    .section-award .section-title,
    .section-award .section-content{padding-top: 7vw}
}

.service-detail-slide .item{border-radius: 0}
.service-detail-slide .item .item-thumb{
    padding-top: calc(100% * 910 / 1920);
}
.section-service-slide .item .item-body{
    position: absolute;
    top: var(--d-padding-lg);
    left: var(--d-padding-lg);
    width: 30%;
    min-width: 320px;
    padding:  var(--fz-45);
}
.section-service-slide .item  .number{
    font-size: calc(2.5 * var(--fz-40));
    line-height: 0.78em;
    color: #D9D9D9;
    font-weight: 600;
}
.section-service-slide .item .item-title{position: static;
    font-size: var(--fz-40);
    text-transform: uppercase;
    padding: 0.75em 0 0;
    background: transparent;
 }

.section-service-slide .item .frame{position: relative;
    margin-bottom: calc(1 * var(--fz-45));
    display: inline-block;
}
.section-service-slide .item .frame:before,
.section-service-slide .item .frame:after{
    content: '';
    position: absolute;
    width: 4.947916666666667vw;
    min-width: 75px;
    aspect-ratio: 95 / 59;
    background-size: 100%;
    background-repeat: no-repeat;
}
.section-service-slide .item .frame:before{
    top: calc(-1 * var(--fz-45));
    left:calc(-1 * var(--fz-45));
    background-image: url('../images/frame-icon-left.svg');

}
.section-service-slide .item .frame:after{
    bottom: calc(-1 * var(--fz-45));
    right:calc(-1 * var(--fz-45));
    background-image: url('../images/frame-icon-right.svg');
}
.section-service-slide .item .description ul{
    list-style: none;
    margin: 0;
    padding: 0;
    width: 70%;
    min-width: 285px;
}
.section-service-slide .item .description ul li{
    border-bottom: solid 1px #fff;
    padding: 0.5rem 0;
    color: #fff;
}
.section-service-slide .item .btn{padding: 1rem 0; display: inline-flex; gap: 1rem; color: #fff;
    font-size: var(--fz-18);
    font-weight: 700;
}
.section-service-slide .item .btn i{transform: rotate(45deg);}

.section-service-pillar{
    background-color: #00348D;
    background-image: url('../images/bg/bg-trucot.jpg');
}
.section-service-pillar .section-content {
    position: relative;
    padding: calc(1.5 * var(--fz-40)) 0 var(--fz-40);
}
.section-service-pillar .section-image{
    width: 36.875vw;
    margin: auto;
    aspect-ratio: 708 / 695;
    position: relative;
}
.pillar-items .item {
    position: absolute;
    width: 30%;
}
.pillar-items .item .item-body{
    position: absolute;
    background: #fff;
    border-radius: var(--d-radius);
    filter: drop-shadow(0px -3px 0px #0066b3);
    padding: var(--fz-30) var(--fz-35);
    box-shadow: 0px -3px 0px 0px rgba(0, 102, 179, 0.004);
    color: #0066b1;
    font-size: var(--fz-20);
    pointer-events: none;
    opacity: 0;
    transition: none;
    top: calc(100% + 2rem);
    right: 0;
    width: 23.7vw;
    min-width: 300px;
    text-align: left !important;
}
.pillar-items .item:hover,
.pillar-items .item.show{z-index: 2}

.pillar-items .item:hover .item-body,
.pillar-items .item.show .item-body{
    opacity: 1;
    top: calc(100% + 1rem);
    transition: var(--d-transition);
}
.pillar-items .item[data-index='3'] .item-body,
.pillar-items .item[data-index='4'] .item-body{
    top:auto;
    bottom: calc(100% + 1rem);
}

.pillar-items .item .heading{
    display: flex;
    gap: 1rem;
    color: #fff;
    font-size: var(--fz-20);
    text-transform: uppercase;
    align-items: center;
}
.pillar-items .item .heading .number{
    font-size: calc(3 * var(--fz-40));
    line-height: 0.78em;
    opacity: 0.4;
}

.pillar-items .item[data-index='1'] {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.pillar-items .item[data-index='2'] {
    top: 30%;
    left: 75%;
    width: 25%;
}
.pillar-items .item[data-index='2'] .heading {
    flex-direction: column;
    align-items: flex-start;
}
.pillar-items .item[data-index='3'] {
    bottom: 5%;
    left: 67%;
}
.pillar-items .item[data-index='4'] {
    bottom: 5%;
    right: 67%;
    text-align: right;
}
.pillar-items .item[data-index='4'] .heading .number{
    order: 2;
}
.pillar-items .item[data-index='5'] {
    top: 30%;
    right: 75%;
    width: 25%;
}
.pillar-items .item[data-index='5'] .heading {
    flex-direction: column;
    align-items: flex-end;
}

.ajax-load-project{min-height: 70vh}
.project-items .item .item-thumb{
    padding-top: calc(100% * 373 /585 );
}
.project-items .item .item-thumb{
    border-radius: var(--d-radius);

}
.project-items .item .item-stick{
    position: absolute;
    left: -0.5rem;
    top: 1.5rem;
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}
.project-items .item .item-stick .stick-btn{
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 0 var(--d-radius) var(--d-radius) 0;
    color: #fff;
    font-weight: 700;
    background: #F28021;
    gap: 0.5rem;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.project-items .item .item-stick .stick-btn:before{
    content: '';
    width: calc(var(--fz-24) / 2);
    height: var(--fz-24);
    background: url('../images/icon-hot.svg') no-repeat center center;
    background-size: contain;
}
.project-items .item .item-stick .stick-btn:after{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    display: inline-block;
      width: 0;
      height: 0;
      border-style: solid;
    border-width: 0px 0.5rem 0.5rem 0px ;
    border-color: transparent #9B6620 transparent transparent;

}
.project-items .item .item-body{padding: 1rem 0}
.project-items .item .title a{color: #1067B2; text-transform: uppercase; font-weight: 700}

.section-project-info .section-content-wrapper{
    background-image: url('../images/bg/bg-system.jpg');
    background-position: top center;
    background-size: cover;
}
.section-project-info .project-logo{
    max-width: 50%;
}
.section-project-info .project-info{
    font-size: var(--fz-30);
    font-weight: 600;
    color: var(--color-1);
}
.section-project-info .project-info strong{
    color: #00ACED;
    font-weight: 600;
}
.section-project-overview .section-items{
    position: relative;
}
.section-project-overview .section-items .line{
    position: absolute;
    left: calc(-1.4 *var(--fz-45));
    top: calc(1.4 *var(--fz-45));
    height: 1px;
    width: calc(100% + 2.8 *var(--fz-45));
    background: #D7E0E7;
}
.section-project-overview .section-items .line:before{
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0.5625rem 0 0.5625rem 1rem;
    border-color: transparent transparent transparent #1067B2;
}
.section-project-overview .section-items .items{
    display: flex;
    gap: 0;
    justify-content: space-between;
    position: relative;

}
.section-project-overview .section-items .items .item{
    text-align: center;
    display: flex;
    flex-direction: column;
}
.section-project-overview .section-items .items .item .title {
    font-size: var(--fz-20);
    text-transform: uppercase;
    padding-bottom: 1rem;
    position: relative;
    color: #57768C;
    flex: 1;
}
.section-project-overview .section-items .items .item .number {
    font-size: var(--fz-45);
    color: #1067B2;
    padding-bottom: 0.5rem;
    flex: 1;
    font-weight: 700;
}


.project-utility-items .item{
    border-radius: var(--d-radius);
    overflow: hidden;
}
.project-utility-items .item .item-thumb{
    padding-top: calc(100% * 504 / 451);
}
.project-utility-items .item .item-thumb:after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 40%;
    width: 100%;
    background: linear-gradient(180deg, rgba(9, 51, 82, 0) 10.87%, #093352 100%);
    opacity: 0.5;
    pointer-events: none;
}
.project-utility-items .item .item-title{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: var(--fz-26) var(--fz-30) var(--fz-26) ;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

.project-utility-items .swiper-wrapper {
    /*padding-left: 4.2vw;*/
}
.section-project-utilities .section-content-inner{
    padding-left: var(--d-padding);
}
.section-project-imagefull .item-body{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: var(--fz-55) 0 ;
}
.section-project-gallery .section-slide{
    padding-left: calc(1.2 * var(--iz-1));
    padding-right: calc(1.2 * var(--iz-1));
}
.section-project-gallery .slide-control .swiper-button-next,
.section-project-gallery .slide-control .swiper-button-prev{margin: 0}
.project-gallery-slide .item-thumb img{border-radius: var(--d-radius); overflow: hidden;}

.section-project-document{
    --thumbW: 70%;
}
.section-project-document .section-items{
    background: #1067B2;
    border-radius: 0 calc(var(--fz-45) * 3) 0 0;
    position: absolute;
    left: calc(var(--thumbW) - 10rem);
    bottom: 0;
    right: 0;
    padding: var(--fz-30) var(--fz-55);
    padding-left: 10rem;
}
.section-project-document .section-items ul{
    list-style: none;
    padding: 0;
}
.section-project-document .section-items ul li{position: relative;
    padding-left: 1.3625rem;
    color: #fff;
    font-size: var(--fz-24);
}
.section-project-document .section-items ul li:last-child{
    margin-bottom: 0;
}
.section-project-document .section-items ul li:before{
    position: absolute;
    left: 0;
    top: 0.36em;
    display: inline-flex;
    content: '';
    width: 0.5625rem;
    aspect-ratio: 9/16;
    background: url('../images/bullet-2.svg') no-repeat center center;
    background-size: contain;
}
.section-project-document .section-items ul li a{
    color: #fff;
}
.section-project-document .section-items ul li:hover a{
    color: var(--color-2);
}


.section-project-document .section-title{
    padding-left: var(--thumbW);
    margin-bottom: 0;
}
.section-project-document .section-content{
    position: relative;
    margin-top: calc(var(--fz-55) * -2);
}
.section-project-document .section-image{
    width: calc(var(--thumbW) - 4rem);
    pointer-events: none;
    position: relative;
    z-index: 2;
}




@keyframes kenburns_custom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/*=======================
11. Responsive-CSS
==============================*/
@media (min-width:768px) {

}
@media (min-width:1200px) {


}

.container-d,
.container-d-xxl,
.container-d-xl,
.container-d-lg,
.container-d-md{
    padding-left: var(--bs-gutter-x,.75rem);
    padding-right: var(--bs-gutter-x,.75rem);
}
@media(min-width:992px){
    .col-lg-46{  width: 46%;}
    .col-lg-54{  width: 54%;  }



    .container-fluid{padding-left: var(--d-padding); padding-right: var(--d-padding);}
   .container-d-md{padding-left: var(--d-padding-md); padding-right: var(--d-padding-md);}
   .container-d-lg{padding-left: var(--d-padding-lg); padding-right: var(--d-padding-lg);}
   .container-d-xl{padding-left: var(--d-padding-xl); padding-right: var(--d-padding-xl);}
   .container-d-xxl{padding-left: var(--d-padding-xl); padding-right: var(--d-padding-xl);}
   .container-d{padding-left: var(--d-padding-xl); padding-right: var(--d-padding-xl);}
}
@media (min-width:1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
        max-width: 980px;
    }

}
@media (min-width:1399px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
        max-width: calc(100vw - 20.9375vw);
    }
    .container-d-xxl{padding-left: var(--d-padding-xxl); padding-right: var(--d-padding-xxl);}
}
@media (min-width:1601px) {

    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{

    }


}

@media (max-width:1699px) {

     
}

@media (max-width:1699px) and (max-height:770px) {

}

@media (max-width:1599px) {
    .section-padding{padding: 3.75rem 0;}
    .section-padding-xl{padding: 3.75rem 0;}
    .section-padding-top{padding-top: 3.75rem;}
}
@media (max-width:1399px) {

    #header .header-right a.svg-ani{margin-left: 1rem;}
    .team-items .item,
    .team-items .item .title{
        font-size: var(--fz-16);
    }

}

@media (max-width:1299px) {
    #footer .footer-menu-wrapper .menu-items li{
        margin-bottom: 0.5rem;
    }
    #footer .footer-menu-wrapper .menu-items a{
        font-size: var(--fz-16);
    }


}

@media (max-width:1299px) and (max-height:580px) {

    
}

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

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

}
@media (min-width:1200px) {

}
@media (max-width:1199px) {
    .section-padding{padding: 40px 0;}
    .section-padding-top{padding-top: 40px;}

    #header .header-right{
        gap: 1rem;
    }
    .desktop-menu ul li{
        margin: 0 0 0 1rem;
    }
    .section-home-slide.with-video{
        padding-top: calc(var(--navH) - 1px);
    }

    .partner-slide-2{
        height: auto;
    }
    .section-shareholder{
        overflow: hidden;
    }
    .shareholder-items .item{gap: 0.75rem;}
    .shareholder-items .item .item-thumb{
        --size: calc(2 * var(--fz-35));
    }
    .shareholder-items .item .item-thumb img{border-width: 0.2rem;}
    .shareholder-items .item .title{font-size: var(--fz-18);}
    .shareholder-items .item .btn-act .btn{    padding: 0 0.3rem 0.3rem;     gap: 0.5rem; font-size: var(--fz-16);}

    .section-shareholder .p-left{padding-left: var(--d-padding); padding-right: var(--d-padding);}
    .section-shareholder .section-image-wrapper{border-radius: var(--d-radius);}

    .section-service .section-content-inner .btn{margin-top: 1rem; }

    .section-branch .section-map{
        width: 55vw;
    }
    .section-branch .branch-items ul li{
        margin-bottom: 0.5rem;
    }
    .section-vm .section-items .item{
        width: 36vw;
        gap: 1.5rem;
    }
    .section-vm .vm-content{
        padding-top: 7.5vw;
    }
    .section-vm .section-items .item{}

    .section-benefit .section-description{
        padding-left: 0;
    }
    .section-award .section-content-wrapper{flex-direction: column;
        padding-left: 30vw;
        padding-top: 5vw;
        gap: 0;
    }
    .section-award .section-image{
        position: absolute;
        left: 0;
        top: 0;
        aspect-ratio: 1;
    }
    .section-award .section-image img{
        top: -50%;
    }
    .section-award .section-slide{
        margin-top: 10vw;
    }

    .section-service-slide .item .item-body{
        padding-left: calc(1.5* var(--fz-45));
    }
    .section-service-slide .item .description ul li{
        margin-bottom: 0;
    }

    .pillar-items .item .heading{
        font-size: var(--fz-16);
    }

    .pillar-items .item[data-index='1']{
        width: 35%;
    }
    .pillar-items .item[data-index='2']{
        left: 70%;
    }
    .pillar-items .item[data-index='3']{
        left: 63%;
    }
    .pillar-items .item[data-index='4']{
        right: 63%;
    }
    .pillar-items .item[data-index='5']{
        right: 70%;
    }

    .section-project-overview .section-items{
        padding: 0 2rem;
    }
    .section-project-overview .section-items .line{
        left: 0;
        right: 0;
        width: 100%;
    }

}
@media (max-width:991px) {
    .btn{font-size: 1rem;}
    .btn.btn-primary i, .btn.btn-default i{
        font-size: 0.8rem;
    }
    .btn.btn-primary, .btn.btn-default{
        border-radius: 2rem;
        padding: 0.3rem 2.375rem 0.3rem 1.375rem;
    }
    .slide-control .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
        width: 1rem;
        height: 1rem;
        margin: 0 .12rem;
    }
    .slide-control .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:before{
        width: 0.6rem;
    }

    .fixed-btn.bottom .copyright{display: none;}
    #footer .contact-form{
        text-align: center;
    }

    .section-aboutus .number-items{
        flex-direction: column;
        align-items: start;
    }

    .section-capacity .section-tabs{
        display: flex;
        flex-direction: column;
    }
    .section-capacity .tab-content{
        order: 2;
        margin-bottom: 0;
        margin-top: 2rem;
    }

    .section-capacity .capacity-content{
        padding: 0;
    }
    .tab-sales-capacity .item img{}
    .tab-sales-capacity .row-2 .item img{  }
    .tab-sales-capacity .row-1 .item img{ }

    .section-vm .vm-content{
       padding-top: 6rem;
    }
    .section-award .section-content-wrapper{
        padding-top: 0;
    }

    .history-slide .item .item-image{
        width: 72vw;
    }

    .section-team .section-slide{
        --st: 40%;
        --sh: 50%;
    }
    .section-team .section-slide:before{
        width: 100%;
    }
    .section-team .team-item-detail .item-detail{
        flex-direction: column;
    }
    .section-team .team-item-detail .item-thumb{
        flex:0 0 100%;
        padding: 1rem 5rem 0;
    }


    .section-service-slide .item .description{
        display: none;
    }



}
@media (min-width:767px) and (max-width:991px) {


 }
@media (max-width:767px) {

    body #header .navbar-toggler .navbar-toggler-icon,
    body.menu-open #header .navbar-toggler .navbar-toggler-icon,
    #header .navbar-toggler-icon > span{
        transition-duration: 0s;
    }

    #header .header-right  span.title{display: none;}
    #header .header-right a.svg-ani span{}
    #header .header-right a.svg-ani{margin-left: 0.5rem; }

    #header .header-right .navbar-toggler > span{
        display: none;
    }
    #header .header-right > a.btn-register{
        display: none;
    }

    .parallax-slider .content{
        padding: 0px 3rem;
    }

    .post-list .item h3 a, .post-feature .item h3 a{
        -webkit-line-clamp: 3;
    }
    .post-list .item .description{display: none;}

    .footer-menu-wrapper{
        gap: 0;
    }
    .footer-menu-wrapper .col-auto{flex:  0 0 100%;}

    .shareholder-items .item{
        padding: 0.5rem;
    }
    .shareholder-items .item .title{
        font-size: var(--fz-14);
        margin-bottom: 0.25rem;
    }
    .shareholder-items .item .btn-act .btn{
        padding: 0;
        font-size: var(--fz-14);
    }
    .shareholder-items .item .item-thumb{
        display: none;
    }

    .number-items .other-item .line{display: none;}
    .number-items .other-item .item{
        padding: 0.5rem 0;
    }

    .section-branch .section-map{
        width: 70vw;
        margin: auto;
    }
    .section-branch .section-heading{
        width: 75%;
    }
    .section-branch .section-content-inner{
        position: static;
        padding-left: 0;
        height: auto;
    }
    .section-branch .section-content{
        max-height: 60vh;
    }
    .section-branch .branch-items{
        padding: 0rem 0 0.5rem 1rem;
    }

    .section-branch .branch-item-detail,
    .section-team .team-item-detail{
        left: 50%;
        transform: translateX(-50%);
        width: 24rem;
        max-width: 94%;
    }
    .section-branch .branch-item-detail.show,
    .section-team .team-item-detail.show{
        transform: translateX(-50%) translateY(0rem);
    }

    .section-project-slide .section-content-wrapper{
        position: static;
        background: var(--d-gradient);
    }
    .section-project-slide .slide-control-style-1{
        position: static;
            padding: var(--d-gutter) 0.5rem;
    }
    .section-project-slide .slide-control-style-1 .swiper-pagination.swiper-pagination-horizontal{
        position: static;
        gap: 0;
    }
    .section-project-slide .slide-control-style-1 .swiper-pagination.swiper-pagination-horizontal .swiper-pagination-bullet{
        width: 25%;
        height: auto;
        aspect-ratio: 4/3;
    }
    .section-project-slide .slide-control-style-1 .swiper-pagination.swiper-pagination-horizontal .swiper-pagination-bullet span{
        padding: 0.5rem 0.25rem;
        display: none;
    }
    .section-project-slide .section-title.with-logo{
        height: 2.25rem;
    }
    .project-slide .item .btn{margin-top: 0}
    .project-slide .swiper-slide .bg{}
    .project-slide .swiper-slide .item .description{display: none;}

    .footer-bottom .copyright{text-align: center;}

    .nav-tabs-style-1{    flex-wrap: nowrap;}
    .nav-tabs-style-1 li .nav-link{padding: 0.5rem 0.5rem 1.5rem}

    .section-capacity .capacity-content .section-image{
        width: 60%;
    }
    .capacity-items .item .item-thumb{

    }
    .capacity-items .item{width: 30%;}
    .capacity-items .item .item-thumb img{
        height: 100%;
        aspect-ratio: 1.8/1;
        object-fit: contain;
    }

    .capacity-items .item:hover .item-body,
    .capacity-items .item.show .item-body{
        left: 0;
        right: auto;
    }
    .capacity-items .item[data-index='6'] .item-body,
    .capacity-items .item[data-index='7'] .item-body,
    .capacity-items .item[data-index='8'] .item-body,
    .capacity-items .item[data-index='9'] .item-body,
    .capacity-items .item[data-index='10'] .item-body{
        left: auto;
        right: 0;
    }

    .tab-sales-capacity .item{
        padding: 0.5rem 0.5rem;
    }

    .section-vm .vm-content{
        padding-top: 0;
    }
    .section-vm .section-items .item {
        position: static;
        width: 100% !important;
        transform: none !important;
        text-align: left !important;
        flex-direction: column !important;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    .section-vm .section-items .item[data-index='2'] .item-thumb{
        order: 0;
    }
    .section-vm{
        background-color: var(--color-1);
        background-position: center top;
        background-size: 150% auto;

    }
    .section-vm .section-image{
        width: 80vw;
        margin-bottom: 5vw;
    }
    .section-team .section-slide:before{
        width: 100%;
    }

    .section-team .team-item-detail .item-thumb img{
        width: 12rem;
        margin: auto;
    }

    .section-benefit .section-title{
        text-align: center;
    }
    .section-benefit .section-title .number{
        position: static;
        display: block;
        transform: none;
        line-height: 1em;
        margin-bottom: 0.5rem;

    }


    .section-benefit .section-content-wrapper{
        padding-left: 0.75rem;
    }
    .section-benefit .section-description{
        margin: 1rem 0;
    }

    .section-award .section-image{
        min-width: 120px;
    }
    .section-award .section-image img{
        top:-20%;
        min-width: 400px;
    }

    .section-introduction .section-content{
        column-count:1;
    }

    .section-history .section-heading{
        position: static;
        padding: 0;
        text-align: center;
    }
    .history-slide .item{
        gap: 1rem;
    }
    .history-slide .item .item-body{
        padding-left: 0;
    }
    .history-slide .item .item-image{
        width: 80%;
    }
    .history-slide .item .line{display: none;}
    .section-history .slide-control .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active{
        width: 30vw;
    }
    .section-history .slide-control{
        bottom: 20%;
    }
    .history-slide .item:before{
        bottom: calc(20% + var(--iz-1) / 2);
    }

    .section-team .team-item-detail .item-thumb{
        flex:0 0 100%;
        padding: 1rem 2rem 0;
    }

    .section-team .section-slide {

    }
    .team-items .item .item-body{
        padding: 1rem 0 1rem;
    }
    .team-items .item .item-body .btn{
        font-size: var(--fz-14);
    }
    .team-items .swiper-slide-active .item .description .inner{display: none;}


    .section-service-slide .item .item-body{

    }
    .service-detail-slide .item .item-thumb{

    }
    .section-service-slide .item .number{
        font-size: var(--fz-40);
    }
    .section-service-slide .item .item-title{
        font-size: var(--fz-20);
    }

    /*.pillar-items .item{
        position: static;
        width: 100% !important;
        transform: none !important;
    }
    .pillar-items .item .heading{
        flex-direction: row !important;
    }
    .pillar-items .item[data-index='4'] .heading .number{
        order: 0;
    }*/

    .pillar-items .item{
        width: 36%;
    }
    .section-service-pillar .section-image{
        width: 50vw;
    }
    .pillar-items .item[data-index='1']{
        width: 45%;
    }
    .pillar-items .item[data-index='2']{
        left: 75%;
    }
    .pillar-items .item[data-index='5']{
        right: 75%;
    }
    .pillar-items .item .heading{
        font-size: 9px;
        gap: 0.4rem;
    }
    .pillar-items .item .heading .number{
        font-size: 36px;
    }

    .section-project-overview .section-items{
        padding-left: 0;
    }
    .section-project-overview .section-items .items{
        gap: 1rem;
        white-space: nowrap;
        overflow: auto;
    }
    .section-project-overview .section-items .items .item .title{
        font-size: var(--fz-16);
    }
    .section-project-imagefull .item-body{
        padding: 1rem 0;
    }

    .section-project-document .section-title{
        padding-left: 0;
    }
    .section-project-document .section-content{
        margin-top: 1rem;
    }
    .section-project-document .section-items{
        position: static;
        padding: 1rem 1rem;
    }
    .section-project-document .section-image{
        width: 75%;
    }

}
@media (max-width:575px) {

}


@keyframes stroke {
  to {
    stroke-dashoffset: 0;
  }
}


@keyframes StrokeLine {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -200;
    }
}
@keyframes StrokeLine2 {
    0% {
        stroke-dashoffset: -200;
    }
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes DrawStroke2 {
    0% {
        stroke-dashoffset: 5000;
    }
    to {
        stroke-dashoffset: 0;
    }
}
@keyframes DrawStroke3 {
    0% {
        stroke-dashoffset: 5000;
    }
    40% {
        stroke-dashoffset: 0;
    }
    60% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 5000;
    }
}

.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }
.driveInTop {
  -webkit-animation-name: driveInTop;
  animation-name: driveInTop;
  -webkit-animation-duration: 1s;
  animation-duration: 1s; }

@keyframes driveInTop {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: translate3d(0, -400px, 0);
    transform: translate3d(0, -400px, 0); }
  30% {
    opacity: 1; }
  60% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0); }
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } 
}
.blink {
  -webkit-animation-name: blink;
  animation-name: blink;
  -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  -webkit-animation-duration: 1s;
  animation-duration: 1s; }

@keyframes blink {
  0% {
    opacity: 1; }
  25% {
    opacity: 0; }
  50% {
    opacity: 1; }
  75% {
    opacity: 0; }
  100% {
    opacity: 1; } 
}
.swoopInTop {
  -webkit-animation-name: swoopInTop;
  animation-name: swoopInTop;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s; }

@keyframes swoopInTop {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: scaleY(1.5) translate3d(0, -400px, 0);
    transform: scaleY(1.5) translate3d(0, -400px, 0); }
  40% {
    opacity: 1;
    -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
    animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
    -webkit-transform: scaleY(1.2) translate3d(0, 0, 0);
    transform: scaleY(1.2) translate3d(0, 0, 0); }
  65% {
    -webkit-transform: scaleY(1) translate3d(0, 20px, 0);
    transform: scaleY(1) translate3d(0, 20px, 0); }
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
    animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
    -webkit-transform: scaleY(1) translate3d(0, 0, 0);
    transform: scaleY(1) translate3d(0, 0, 0); } 
}

@-webkit-keyframes Ringing-call {
    0% { }
    10% { -webkit-transform: rotate(10deg); -moz-transform: rotate(10deg); -o-transform: rotate(10deg); }
    20% { -webkit-transform: rotate(-10deg); -moz-transform: rotate(-10deg); -o-transform: rotate(-10deg); }
    30% { -webkit-transform: rotate(10deg); -moz-transform: rotate(10deg); -o-transform: rotate(10deg); }
    40% { -webkit-transform: rotate(-10deg); -moz-transform: rotate(-10deg); -o-transform: rotate(-10deg); }
    50% { -webkit-transform: rotate(10deg); -moz-transform: rotate(10deg); -o-transform: rotate(10deg); }
    60% { -webkit-transform: rotate(-10deg); -moz-transform: rotate(-10deg); -o-transform: rotate(-10deg); }
    70% { -webkit-transform: rotate(10deg); -moz-transform: rotate(10deg); -o-transform: rotate(10deg); }
    80% { -webkit-transform: rotate(-10deg); -moz-transform: rotate(-10deg); -o-transform: rotate(-10deg); }
    90% { -webkit-transform: rotate(10deg); -moz-transform: rotate(10deg); -o-transform: rotate(10deg); }
    100% { -webkit-transform: rotate(-10deg); -moz-transform: rotate(-10deg); -o-transform: rotate(-10deg); }
}

@keyframes RotateBG {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    33% {
        transform: rotate(90deg) scale(0.95);
        opacity: 0.3;
    }
    60% {
        transform: rotate(135deg) scale(1.05);
        opacity: 0.4;
    }
    80% {
        transform: rotate(35deg) scale(0.9);
        opacity: 1;
    }
    to {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
}
@keyframes RotateBG1 {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    60% {
        transform: rotate(90deg) scale(1);
        opacity: 0.6;
    }
    80% {
        transform: rotate(35deg) scale(0.9);
        opacity: 1;
    }
    to {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
}

@keyframes RotateBG2 {
    0% {
        transform: rotate(-11.17deg) scale(1);

    }
    33% {
        transform: rotate(90deg) scale(1);

    }
    60% {
        transform: rotate(135deg) scale(1.1);

    }
    80% {
        transform: rotate(35deg) scale(0.9);
        opacity: 1;
    }
    to {
        transform: rotate(-11.17deg) scale(1);
        opacity: 1;
    }
}


@media (max-width:991px) {
   
}


@media (max-width:767px) {
    
}


/* Custom ANIMATION  */
.flipInXCustom, .flipInYCustom{
    opacity: 0;
     -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

@keyframes flipInXCustom { 
    0% { 
        transform: rotateX(180deg); 
        opacity: 0; 
    } 
    100% { 
        transform: rotateX(0deg); 
        opacity: 1; 
    } 
} 
.flipInXCustom.go { 
    -webkit-backface-visibility: visible !important; 
    -webkit-animation-name: flipInXCustom; 
    backface-visibility: visible !important; 
    animation-name: flipInXCustom; 
}

@keyframes flipInYCustom { 
    0% { 
        transform: rotateY(180deg); 
        opacity: 0; 
    } 
    100% { 
        transform: rotateY(0deg); 
        opacity: 1; 
    } 
} 
.flipInYCustom.go { 
    -webkit-backface-visibility: visible !important; 
    -webkit-animation-name: flipInYCustom; 
    backface-visibility: visible !important; 
    animation-name: flipInYCustom; 
}


.scaleInY{opacity: 0; transform-origin: bottom;}
@-webkit-keyframes scaleInY { 
    0% { 
        opacity: 0; 
        -webkit-transform: scaleY(.1); 
    }
    100% { 
        opacity: 1; 
        -webkit-transform: scaleY(1); 
    } 
} 

@keyframes scaleInY { 
    0% { 
        opacity: 0; 
        transform: scaleY(.1); 
    } 
    100% { 
        opacity: 1; 
        transform: scaleY(1); 
    }
} 

.scaleInY.go { 
    -webkit-animation-name: scaleInY; 
    animation-name: scaleInY; 
}



.zoomIn{
    opacity: 0;
     -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

@keyframes zoomIn { 
    0% { 
        transform: scale(0);
        opacity: 0; 
    } 
    100% { 
        transform: scale(1); 
        opacity: 1; 
    } 
} 
.zoomIn.go { 
    -webkit-backface-visibility: visible !important; 
    -webkit-animation-name: zoomIn; 
    backface-visibility: visible !important; 
    animation-name: zoomIn; 
}

.stretchX{padding-left: var(--d-padding-xxl)}
@keyframes stretchX {
    0% {
        padding-left: var(--d-padding-xxl)
    }
    100% {
       padding-left: 0
    }
}

.stretchX.go {
    -webkit-animation-name: stretchX;
    animation-name: stretchX;
}


@-webkit-keyframes custom-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(359deg);
    transform: translateY(-50%) rotate(359deg);
  }
}
@keyframes custom-spin {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(359deg);
    transform: translateY(-50%) rotate(359deg);
  }
}

@-webkit-keyframes custom-spin-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: translateY(-50%) rotate(359deg);
  }
}
@keyframes custom-spin-2 {
  0% {
    -webkit-transform:  rotate(0deg);
    transform:  rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform:  rotate(359deg);
  }
}

@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0;
  }
}
@keyframes arrow-animation{
    0%{
        opacity:1;transform:translateY(0px)
    }
    49%{
        opacity:0;transform:translateY(10px)
    }
    50%{
        opacity:0;transform:translateY(-10px)
    }
    100%{
        opacity:1;transform:translateY(0)
    }
}

@keyframes scaleOut {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes scaleOutHome {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(0.85);
    }
}

@media (min-aspect-ratio: 1.6) and (max-aspect-ratio: 1.8) {
      @keyframes scaleOutHome {
        0% {
            opacity: 0;
            transform: scale(1.1);
        }
        to {
            opacity: 1;
            transform: scale(0.92);
        }
    }
}

@media (max-width:767px) {
    @keyframes scaleOut {
        0% {
            opacity: 0;
            transform: scale(1.2);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
}
@keyframes scaleOut2 {
    0% {
        opacity: 0;
        transform: scale(2);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes scaleToIn {
  0% {
    transform:  scale(1);
    opacity: 1;
  }
  100% {
    transform:  scale(2);
    opacity: 0;
  }
}

@keyframes bounceInDown
{60%,75%,90%,from,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0)}60%{opacity:1;transform:translate3d(0,25px,0)}75%{transform:translate3d(0,-10px,0)}90%{transform:translate3d(0,5px,0)}to{opacity:1}}
@keyframes bounceIn
{30%,60%,90%,from,to{animation-timing-function:cubic-bezier(.215,.61,.355,1);opacity:1}0%,to{transform:translate3d(0,0,0)}30%,90%{transform:translate3d(0,5px,0)}60%{transform:translate3d(0,-5px,0)}}



/*Overlay Menu*/

.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 21;
    background: var(--color-1);

    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.menu-logo-wrapper{
    position: absolute;
    left: 0;
    bottom: 0;
    height: 95vh;
    aspect-ratio: 1786 / 919;
    background: url('../images/bg/bg-menu.png') no-repeat center bottom;
    background-size: 100%;
    display: flex;

}
.menu-logo-wrapper .inner{
    padding: calc(var(--fz-60) * 2 ) 0;
    height: 100%;
    justify-content: space-between;
    position: absolute;
    left: 36%;
    transform: translateX(-50%);
}
.menu-social.social{justify-content: center;}
.menu-social.social a:not(:hover){border-color: #fff;color: #fff;}



body.menu-open #header{background: transparent;}
body.menu-open .desktop-menu{opacity: 0; pointer-events: none;}
body.menu-open #header .header-right .dropdown-language > a,
body.menu-open #header .header-right .btn.btn-icon{
    color: #fff;
}
body.menu-open #header .header-right .svg{
    filter: brightness(0) invert(1);
}

.overlay-menu:before{
    position: absolute;
    inset: 0;
    background: radial-gradient(56.53% 56.53% at 50% 50%, rgba(1, 31, 95, 0.00) 0%, #001645 100%);
}
.overlay-menu .bg{
    position: absolute; pointer-events: none;
    inset: 0;
}


.overlay-menu .menu-logo{
    pointer-events: none;
    width: 12.1875vw;
    z-index: 2;
}
.overlay-menu .menu-logo img{width: 100%; height: auto;
    opacity: 0;
}
.menu-open .overlay-menu .menu-logo img{
    animation: scaleOut;
    animation-duration: 1.5s;
    animation-delay: 0.75s;
    animation-fill-mode: forwards;
}
.overlay-menu .menu-social{
    opacity: 0;
    transition: var(--d-transition);
    transition-delay: 0.5s;
}
.menu-open .overlay-menu .menu-social{
    opacity: 1;

}



.overlay-menu .main-menu-container {
   
    text-align: left;
    display: flex;
    padding: 0;
    margin: 0; margin-left: auto;
    list-style-type: none;
    flex-direction: column;
}
.overlay-menu .main-menu-container::-webkit-scrollbar {
    display: none;
}

.overlay-menu .menu a {
    color: #fff;
    transition: all ease 0.4s;
    display: inline-block;
    font-size: var(--fz-28);
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
}
.overlay-menu .menu a:after{
    /*content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #E2B063;
    transition: var(--d-transition);*/
}
.overlay-menu .menu li:hover > a,
.overlay-menu .menu .current-menu-item > a{
    color: var(--color-2);
}
.overlay-menu .menu li:hover a:after{
    /*width: calc(100% );*/
}
/*.overlay-menu .menu .current_page_parent a{color: var(--color-1); }*/

.overlay-menu {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transition: all cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
    padding-bottom: 0px;
}

.overlay-menu .copyright{position: absolute; bottom: 30px; left: 0px; width: 100%;color: #fff;
    opacity: 0; transition: var(--d-transition); text-align: center;
}
body.menu-open .overlay-menu {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
}
body.menu-open .overlay-menu .copyright {
    opacity: 1;
    transition-delay: 1s;
}

.overlay-menu .menu{list-style: none; padding: 0px;  margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.overlay-menu .menu > li {
    opacity: 0;
    transform: translate(0, 50px);
    -webkit-transform: translate3d(0, 50px, 0);
    transition-delay: 0.6s;
    padding:0 var(--fz-26);
    margin: 0px;
    text-align: right;
}
.overlay-menu .menu > li a strong{font-size: 1.3em; font-weight: 600;}
body.menu-open .overlay-menu .menu li {
    transition: -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1) 1s, opacity cubic-bezier(0.165, 0.84, 0.44, 1) 1s;
    transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 1s, opacity cubic-bezier(0.165, 0.84, 0.44, 1) 1s;
    opacity: 1;
    transform: translate(0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    position: relative; /*padding-right: 45px;*/
    display: flex; 
    align-items: center;
}

.overlay-menu .sub-menu {
    position: absolute;
    top: 100%;
    flex-direction: column;
    padding: 0;
    border-radius: 0px 0px 10px 10px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(0, 10px);
    transition: all 0.4s ease;
    min-width: 200px;
}

.overlay-menu .menu > li:hover > ul, .overlay-menu .menu > li > ul.show {
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.overlay-menu .sub-menu li{
    margin: 1em 0;
}
.overlay-menu .sub-menu li a{
    color: #D1F2F8;
    font-size: var(--fz-20);
    text-transform: none;
    font-weight: 600;
    white-space: nowrap;
}

.overlay-menu .menu li.menu-item-has-children > a:after{
    content: '\f107';
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    margin-left: 0.6em;
    color: #fff;
    font-size: 1em ;
}


body.menu-open #header .navbar-brand{opacity: 0;}



body.menu-open{/*overflow: hidden !important;*/}
body.menu-open .overlay-menu .menu > li:nth-of-type(1) {
    transition-delay: 0.2s;
}
body.menu-open .overlay-menu .menu > li:nth-of-type(2) {
    transition-delay: 0.3s;
}
body.menu-open .overlay-menu .menu >  li:nth-of-type(3) {
    transition-delay: 0.4s;
}
body.menu-open .overlay-menu .menu > li:nth-of-type(4) {
    transition-delay: 0.5s;
}
body.menu-open .overlay-menu .menu > li:nth-of-type(5) {
    transition-delay: 0.6s;
}
body.menu-open .overlay-menu .menu > li:nth-of-type(6) {
    transition-delay: 0.7s;
}
body.menu-open .overlay-menu .menu > li:nth-of-type(7) {
    transition-delay: 0.8s;
}
body.menu-open .overlay-menu .menu > li:nth-of-type(8) {
    transition-delay: 0.9s;
}
body.menu-open .overlay-menu .menu > li:nth-of-type(9) {
    transition-delay: 1s;
}
body.menu-open .overlay-menu .menu > li:nth-of-type(10) {
    transition-delay: 1.1s;
}
body.menu-open .overlay-menu .menu > li:nth-of-type(11) {
    transition-delay: 1.2s;
}

body.menu-open .overlay-menu .menu.menu-other > li {
     transition-delay: 0.2s;
}
@media (max-width:1699px) {


}
@media (max-width:1399px) {


}

@media (max-width:1199px) {
    .overlay-menu .menu > li a{font-size: var(--fz-20);}
    .overlay-menu .sub-menu li a{font-size: var(--fz-16);}
}
@media (max-width:991px) {

    .overlay-menu{display: flex; flex-direction: column; padding-top:6rem;}
    .menu-logo-wrapper{
        position: static;
        order: 2;
        height: auto;
        background: transparent;
    }
    .menu-logo-wrapper .inner{
        height: auto;
        position: static;
        transform: none;
        width: 100%;
    }
    .overlay-menu .menu-logo{
       display: none;
    }

    .overlay-menu .main-menu-container{display: block; width: 100%;     text-align: center;}
    .overlay-menu .menu{flex-direction: column;}



    body .overlay-menu .menu li{

    }
    .overlay-menu .menu li{
        text-align: center;
        justify-content: center;
    }
    .overlay-menu .menu > li a{font-size: var(--fz-30);}
    .overlay-menu .sub-menu li a{font-size: var(--fz-20);}

    body.menu-open .overlay-menu .menu li{
        flex-direction: column;
    }
    .overlay-menu .sub-menu {
        max-height: 0px;
        overflow: hidden;
        transition: var(--d-transition);
        transition-duration: 0.4s;
        position: static;
        transform: none;
        visibility: visible;

        opacity: 1;
    }

    .overlay-menu  li.showsub > ul {
        max-height: 300px;
         pointer-events: auto;
    }
    .overlay-menu  li.showsub > ul li:last-child{margin-bottom: 0; padding-bottom: 0}



}
@media (max-width:767px) {
    #header .header-right{
        gap: 0.5rem;
    }
    .header-bottom .navbar-toggler{  padding: 0.5rem 0.5rem; height:  calc(var(--fz-30) * 1.67); min-height: 2.5rem; aspect-ratio: 1}

    .overlay-menu .menu > li{  }
    .overlay-menu .menu li{

    }
}


.plyr iframe[id^=youtube] {
    opacity: 1;
    -webkit-transition: all 500ms;
    transition: all 500ms;
}

.plyr.plyr--paused iframe[id^=youtube] {
    opacity: 0;
    -webkit-transition: all 150ms;
    transition: all 150ms;
}

.plyr--paused .plyr__poster {
    z-index: 2;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    opacity: 1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block !important;
}

@media(min-width:1200px){
    #section_video .item-video{
            position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    }
    #section_video .item-video .plyr--video{height: 100%;}
}



.animated.fadeInUp{
     -webkit-animation-duration: 1.5s; 
    animation-duration: 1.5s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
     -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
     -webkit-transform: translateY(200px); 
    transform: translateY(200px);
}
.animated.fadeInUp.go{
    -webkit-animation-name: fadeInUpMedium;
    animation-name: fadeInUpMedium;
}

@-webkit-keyframes fadeInUpMedium { 
    0% { 
        opacity: 0; 
        -webkit-transform: translateY(200px); 
    } 
    50%{
       opacity: 0.3; 
    }
    100% { 
        opacity: 1; 
        -webkit-transform: translateY(0); 
    } 
} 
@keyframes fadeInUpMedium { 
    0% { 
        opacity: 0; 
        transform: translateY(200px); 
    } 
    50%{
       opacity: 0.3; 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    } 
} 



.animated.revealText{
    opacity: 0;
    transform: translateX(0%);
    animation-duration: 1.5s; 
    animation-fill-mode: forwards;
}

.animated.revealText.go { 
    animation-name: revealText 
}

.animated.revealText2{
    opacity: 0;
    animation-duration: 2s; 
    animation-fill-mode: forwards;
}

.animated.revealText2.go { 
    animation-name: revealText2 
}

.animated.headerCarousel{
    opacity: 0;
    transform: translateY(150%);
    transition: transform .6s cubic-bezier(.65,.05,.36,1), opacity .6s cubic-bezier(.65,.05,.36,1);
}

.animated.headerCarousel.go {
    animation-name: headerCarousel;
}
.headerCarousel-wrapper{overflow: hidden; display: inline-block;     vertical-align: top;}

.animated.js-split-text .line{
    overflow: hidden;
}
.animated.js-split-text .word{
    opacity: 0;
    transform: translateY(150%);

}
.animated.js-split-text.go .word{
    animation-duration: 0.7s;
    animation-name: textSlideIn;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes textSlideIn {
  0% {
    opacity: 0;
    transform: translateY(150%);

   }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes revealText {
  0% {
    transform: translateX(17%);
    clip-path: inset(0px 50% 0px 50%);
    -webkit-clip-path: inset(0px 50% 0px 50%);
    
   }
  100% {
     clip-path: inset(0px 0px 0px 0px);
     -webkit-clip-path: inset(0px 0px 0px 0px);
     transform: translateX(0%);
     opacity: 1;
  }
}


@keyframes revealLine {
  0% {
    clip-path: inset(0px 50% 0px 50%);
    -webkit-clip-path: inset(0px 50% 0px 50%);
      opacity: 0;
    
   }
  100% {
     clip-path: inset(0px 0px 0px 0px);
     -webkit-clip-path: inset(0px 0px 0px 0px);
     opacity: 1;
  }
}

@keyframes revealText2 {
  0% {
    clip-path: inset(0px 100% 0px 0%);
    -webkit-clip-path: inset(0px 100% 0px 0%);
    
   }
  20% {
    clip-path: inset(0px 100% 0px 0%);
    -webkit-clip-path: inset(0px 100% 0px 0%);
    
   }
  40% {
      opacity: 1;
   }
  100% {
     clip-path: inset(0px 0px 0px 0px);
     -webkit-clip-path: inset(0px 0px 0px 0px);
      opacity: 1;
  }
}

@keyframes headerCarousel {
  0% {
    opacity: 0;
    transform: translateY(150%);

   }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.animated.scaleOutPic{
    transform: transform: scale(1.4);
    animation-duration: 2s;     
}
.animated.scaleOutPic.go { 
    animation-name: scaleOutPic 
}
@keyframes scaleOutPic {
  0% {
      
        transform: scale(1.4);
    }
    to {
       
        transform: scale(1);
    }
}

@keyframes bounce {
  0%, 100% {top: 54%; opacity: 0.5}
  25% {top: 60%; opacity: 1}
  50% {opacity: 0.8}
}

@keyframes scrollLine {
0% {
    transform-origin:right;
    transform:scaleX(0)
}
50% {
transform-origin:right;
transform:scaleX(1)
}
51% {
transform-origin:left;
transform:scaleX(1)
}
to {
    transform-origin:left;
    transform:scaleX(0)
}
}