.header--desktop,
.header--mobile {
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.10);
  transition: 0.4s;
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: #fff;
}

.header--desktop #header-search {
  width: 100%;
  max-width: 350px;
  height: 100%;
}

.header--desktop .header-other-item.btn--phone {
  background: #D72062;
  background: linear-gradient(270deg, #D72062 0%, #AD1D46 100%);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.header--desktop .header-other-item.btn--phone span {
  color: #fff;
}

#header-primary--menu .dmega--nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header-primary--menu .dmega--nav .menu--item-link {
  color: #363F6E;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

#header-primary--menu .dmega--nav .menu--item {
  position: relative;
  padding: 8px 10px;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}

#header-primary--menu .dmega--tab-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  height: 546px;
  overflow: hidden;
  margin-top: 12px;
}

#header-primary--menu .dmega--tab-title {
  overflow: auto;
  width: 100%;
  max-width: 260px;
  height: 546px;
  padding: 30px;
  background: #f7f9fd;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

#header-primary--menu .menu-tab--item {
  position: relative;
  border-radius: 4px;
  border: 1px solid #fff;
  background: #E2F0FF;
  width: 100%;
  max-width: 200px;
  height: 40px;
  border-radius: 4px;
  background: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

#header-primary--menu .menu-tab--item:after {
  position: absolute;
  right: 10px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #0D4E91;
  transition: all 0.2s ease-in-out;
}

#header-primary--menu .menu-tab--item a {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  height: auto;
  font-size: 14px;
  color: #595959;
  transition: all 0.3s ease-in-out;
}

#header-primary--menu .menu-tab--item.active--tab,
#header-primary--menu .menu-tab--item.active--tab:after,
#header-primary--menu .menu-tab--item:hover {
  color: #0D4E91;
  background: #E2F0FF;
  content: '';
}

#header-primary--menu .menu-tab--item:hover a,
#header-primary--menu .menu-tab--item.active--tab a {
  font-weight: 500;
  color: #0D4E91;
}



#header-primary--menu .dmega--tab-content {
  width: 100%;
  height: 100%;
  background-image: var(--wpr-bg-824fb582-a24b-41e3-a8b3-e2b8f71bdcfd);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left top;
}

#header-primary--menu .bmi--content {
  width: 100%;
  height: auto;
  padding: 60px 37px;
}

#header-primary--menu .dmega--tab {
  opacity: 0;
  visibility: hidden;
  display: none;
  position: absolute !important;
  z-index: 999999;
  width: 100%;
  left: 50%;
  transform: translate(-50%, 0px);
  box-shadow: 1rem 1rem 2rem rgba(0, 0, 0, 0.25);
  height: max-content;
  transition: all 0.3s ease-in;
  background: #00000073;
  height: 100vh;
}

#header-primary--menu .dmega--tab.active--menu {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

#header-primary--menu .dmega--tab .menu-tab--item,
#header-primary--menu .dmega--tab .bc-menu--tab {
  opacity: 0;
  visibility: hidden;
  display: none;
  transition: all 0.3s ease-in;
}

#header-primary--menu .dmega--tab .menu-tab--item.show--menu,
#header-primary--menu .dmega--tab .bc-menu--tab.show--menu {
  opacity: 1;
  visibility: visible;
  display: flex;
}

#header-primary--menu .dmega--tab-content .menu-content-item {
  width: 100%;
  height: 480px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 40px;
  overflow: auto;

}

#header-primary--menu .dmega--tab-content .menu-content-title {
  color: #0D4E91;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  padding: 3px 0;
  border-bottom: 1px solid #0D4E9180;
}

#header-primary--menu .dmega--tab-content .box-menu-link {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  align-items: center;
  column-gap: 36px;
  grid-row-gap: 16px;
}

#header-primary--menu .menu-content-link--sub {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  color: #434343;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.1s ease-in-out;
}

#header-primary--menu .menu-content-link--sub:hover {
  border: 1px solid #fff;
  background: #E2F0FF;
  color: #0D4E91;
}

#header-primary--menu .menu--item.icon--active::after {
  content: '';
  background: transparent;
  width: 0;
  height: 0;
  border-bottom: 10px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999999;
  opacity: 1;
}

@media only screen and (min-width:1023px) {
  .header--mobile, header.header-mobile {
    display: none !important;
  }
}

@media only screen and (max-width:1023px) {
  .header--desktop {
    display: none !important;
  }

  .header--mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    height: 100%;
    max-height: 90px;
  }

  .header--mobile .mega-menu--mobile {
    position: fixed;
    top: 0;
    left: 0;
    background: #f8faff;
    height: 100vh;
    width: 100vw;
    z-index: 999999999999;
    box-shadow: 0 10px 10px rgb(0 0 0 / 40%);
    overflow: hidden;
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }

  .header--mobile .mmmb-box--main {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }

  .header--mobile .mbm--head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    width: 100%;
    height: 75px;
    padding: 15px 24px;
    border-bottom: 1px solid #E3E7EF;
  }

  .header--mobile .mbm--head-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
  }

  .header--mobile .mbm--head-logo img {
    width: 100%;
    max-width: 120px;
    height: auto;
    object-fit: contain;
  }

  .header--mobile .mbm--head-logo span {
    width: 200px;
    color: #0D4E91;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .header--mobile .mbm--main {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 250px);
    overflow: auto;
  }

  .header--mobile .mbm-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 30px;
  }

  .item-menu-footer-f {
    display: flex;
    width: 100%;
    max-width: 200px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    border: 1px solid #F3F3F4;
    background: #FFF;
    font-size: 12px;
  }

  .flex-item-footer {
    display: flex;
    gap: 12px;
  }

  .size-footer-mb {
    font-size: 11px !important;
  }

  .header--mobile .mbm-footer ul {
    border-top: 1px solid #E3E7EF;
    padding-top: 16px;
    display: grid;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    grid-template-columns: 140px 140px;
  }

  .header--mobile .mbm-footer ul li {
    display: flex;
    width: 100%;
    max-width: 140px;
    height: 36px;
    padding: 12px 6px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    background: #fff;
    font-size: 12px;
  }

  .header--mobile .mmb-nav--item {
    display: flex;
    width: 100%;
    height: 40px;
    padding: 12px 16px;
    align-items: center;
    gap: 10px;
    border-bottom: 0.5px solid #BFBFBF;
  }

  .header--mobile .mbm--main .mmb-nav--item:nth-child(2) {
    border-bottom: 0.5px solid transparent;
  }

  .header--mobile .mmb-nav--item a {
    color: #434343;
    font-size: 14px;
    font-weight: 500;
  }

  .header--mobile .msmb-nav--item {
    width: 100%;
    height: 32px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
  }

  .header--mobile .msmb-nav--item a {
    color: #0D4E91;
    font-size: 12px;
    font-weight: 500;
  }

  .header--mobile .box-msmb-nav {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-items: center;
    justify-content: start;
    gap: 8px;
    padding: 5px 20px;
  }

  .header--mobile .box-msmb-nav li {
    display: flex;
    width: 100%;
    max-width: 75px;
    height: 36px;
    padding: 12px 6px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0px 1px 2px 0px rgba(70, 70, 70, 0.10);
  }

  .header--mobile .box-msmb-nav-item a {
    color: #595959;
    text-align: center;
    font-size: 10px;
    font-weight: 400;
  }

  .header--mobile .box-msmb-nav li:hover,
  .header--mobile .box-msmb-nav li:focus {
    background: #E5F2FF;
  }

  .header--mobile .box-msmb-nav li:hover a,
  .header--mobile .box-msmb-nav li:focus a {
    color: #0D4E91;
  }

  .header--mobile .mbms--head {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    width: 100%;
    height: 75px;
    padding: 15px 24px;
    border-bottom: 1px solid #E3E7EF;
  }

  .header--mobile .mbms--head span {
    color: #0D4E91;
    font-size: 16px;
    font-weight: 700;
  }

  .header--mobile .mbms--main {
    padding: 10px;
    padding-bottom: 180px;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: auto;
    height: 100%;
    max-height: 100vh;
  }

  .header--mobile .mbms--main .box-msmb-navs {
    display: flex;
    flex-direction: column;
  }

  .header--mobile .mbms--main .box-msmb-navs .title {
    color: #0D4E91;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    padding: 12px 22px;
  }

  .header--mobile .mbms--main .box-msmb-navs a {
    color: #434343;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    padding: 12px 26px;
  }

  .header--mobile .mbms--main .box-msmb-navs a:hover,
  .header--mobile .mbms--main .box-msmb-navs a:focus {
    color: #0D4E91;
    background: #E5F2FF;
  }

  .header--mobile .mm-mb--box {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 100px;
  }

  .header--mobile .mmmb-box--sub {
    opacity: 0;
    display: none;
    visibility: hidden;
    transition: all 0.5s ease-out;
    left: 0;
    transform: translateX(-100%);
    position: relative;
  }

  .header--mobile .box-msmb-navs {
    display: none !important;
  }

  .header--mobile .box-msmb-navs.active {
    display: flex !important;
  }

  .header--mobile .mmmb-box--sub.active,
  .header--mobile .mega-menu--mobile.active {
    opacity: 1;
    display: block;
    visibility: visible;
    transform: translateX(0);
  }

  .header--mobile .mbm-footer ul li:hover,
  .header--mobile .mbm-footer ul li:focus {
    background: #E5F2FF;
  }

  .header--mobile .mbm-footer ul li:hover a,
  .header--mobile .mbm-footer ul li:hover span {
    color: #0D4E91 !important;
  }
}

@media only screen and (min-width:650px) {
  .header--mobile .mbm--head-logo span {
    width: 100%;
    font-size: 18px;
  }

  .header--mobile .mbm--head-logo img {
    max-width: 90px;
  }

  .header--mobile .mmb-nav--item a,
  .header--mobile .msmb-nav--item a {
    font-size: 16px;
  }

  .header--mobile .box-msmb-nav-item a {
    font-size: 14px;
  }

  .header--mobile .box-msmb-nav li,
  .header--mobile .mbm-footer ul li {
    max-width: 98%;
  }

  .header--mobile .box-msmb-nav {
    gap: 16px;
  }

  .header--mobile .mbm-footer ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
}

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

#header-logo {
    max-width: 15%;
}

.header-main-inner>*:not(:last-child) {
    margin-right: 15px;
}

#header-seo {
    flex: 1;
}

#header-seo>* {
    font-size: 18px;
    font-weight: 700;
    color: #343F6D;
}

.header-search-inner {
    background: #F0F0F0;
    display: flex;
    padding: 6px 8px;
    border-radius: 3px;
    align-items: center;
}

.header-search-inner * {
    border: none;
    background: transparent;
    box-shadow: none;
    font-size: 12px;
    padding: 0;
}

.header-search-inner *:focus {
    box-shadow: none;
    background: transparent;
}

#header-search {
    max-width: 18%;
}

#header-search input::placeholder {
    color: #C0C0C0;
    font-style: italic;
}

.header-search-inner input {
    padding: 5px;
    margin-right: 40px;
}

.header-other-item * {
    color: #343F6D;
}

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

.header-other-item span {
    margin-left: 5px;
}

.header-main {
    padding: 15px 0;
}

.header-bottom {
    background: #fff;
}

.header-bottom-menu>.menu-item>.menu-link {
    color: #fff;
}

.header-bottom-menu {
    display: flex;
    justify-content: center;
}

.header-bottom-menu>*:not(:last-child) {
    margin-right: 66px;
}

.header-bottom-menu>.menu-item>.menu-link {
    padding: 10px 0;
    display: block;
    font-weight: 600;
    transition: .3s linear;
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
}

.header-bottom-menu>.menu-item>.menu-link:hover {
    border-bottom: 2px solid #fff;
}

.home main {
    padding-top: 0;
}

.slide-hero img {
    width: 100%;

    object-fit: cover;
}

.mega-menu {
    position: absolute;
    top: 45px;
    width: 100%;
    left: 0;
    background: #fff var(--wpr-bg-221b54e6-56f3-44c8-a6c8-7885ed7cf2e4) center center / cover;
    z-index: 99;
    padding: 0 15px;
    visibility: hidden;
    opacity: 0;
    transition: .3s linear;
}

.header-bottom-menu>.menu-item:hover .sub-menu {
    visibility: visible;
    opacity: 1;
}

.header-bottom {
    position: relative;
}

.mega-menu-inner {
    display: flex;
    justify-content: space-between;
}

.mega-menu-inner>* {
    padding: 15px;
}

.mega-menu-tab {
    background: var(--wpr-bg-44ca8567-7dc5-4f67-af6a-c42f1ec45c75) center center / cover;
    position: relative;
    z-index: 999;
    padding: 15px 0;
    width: 25%;
}

.mega-menu-tab>* {
    height: 100%;
}

.menu-tab-title>li>a {
    padding: 10px 15px;
    display: block;
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
}

.menu-tab-title>li:not(:last-child) {
    margin-bottom: 5px;
}

.menu-tab-title>li:hover a,
.menu-tab-title>li.active a {
    background: rgba(173, 0, 66, 0.50);
}

.mega-menu-content {
    flex: 1;
    padding-top: 60px;
}

.menu-content-title {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 18px;
}

.mega-menu-image {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mega-menu-content>* {
    width: 100%;
    text-align: center;
}

.menu-tab-child {
    display: flex;
    justify-content: space-between;
}

.menu-tab-child>* {
    width: 100%;
}
.menu-tab-content>*:not(:last-child) {
    margin-bottom: 15px;
}

.menu-tab-content:not(.active) {
    display: none;
}
.mega-menu-child {
    position: absolute;
    width: 75%;
    display: flex;
    right: 0;
    height: 100%;
}
.menu-tab-title {
    position: relative;
}



.mega-menu-tab:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ad004252;
    z-index: -1;
}



ul.menu-tab-title * {
    z-index: 4;
}


.tab-branch-wraper p {
    margin-bottom: 0;
}

.tab-branch-title ul {
    --f-columns: 3;
    --f-gap: 20px;
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--f-gap));
    margin-bottom: calc(-1 * var(--f-gap));
}

.tab-branch-title ul>* {
    margin-left: var(--f-gap);
    margin-bottom: var(--f-gap);
    width: calc((100% / var(--f-columns) - var(--f-gap)));
}

.tab-branch-title ul {
    display: flex;
}

.tab-branch-title ul>*.active a {
    color: #343F6D;
    font-weight: 600;
}

.tab-branch-title ul>*.active {
    border-bottom: 2px solid #343F6D;
}

.tab-branch-title ul>* {
    text-align: center;
}

.tab-branch-wraper>*:not(:last-child) {
    margin-bottom: 10px;
}

.tab-branch-title ul>*.active a,
.tab-branch-title ul>*:hover a {
    color: #343F6D;
    font-weight: 600;
}

.tab-branch-title ul>*.active,
.tab-branch-title ul>*:hover {
    border-bottom: 2px solid #343F6D;
}

.tab-branch-title ul>* {
    text-align: center;
    padding: 6px 11px;
}

.tab-branch-wraper>*:not(:last-child) {
    margin-bottom: 10px;
}

.branch-content-item-head span {
    font-size: 16px;
    color: #343F6D;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 10px;
}

.branch-content-item-head {
    display: flex;
    align-items: center;
}

.branch-content-item>*:not(:last-child) {
    margin-bottom: 8px;
}

.tab-branch-content>*:not(:last-child) {
    margin-bottom: 8px;
}

.tab-branch-content-wrap {
    max-height: calc(320px - 60px);
    overflow: auto;
}

.tab-branch-content-wrap::-webkit-scrollbar {
    width: 3px;
}

.tab-branch-content-wrap::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.tab-branch-content-wrap::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
}

.tab-branch-content:not(.active) {
    display: none;
}

.tab-branch-title ul>li>a {
    display: block;
    font-size: 14px;
    padding: 5px;
    color: #AAAAAA;
}

.section {
    padding: 80px 0;
}

#advantage {
    background: var(--wpr-bg-06d19834-057c-4d00-8214-066350244ca7) center center / cover;
}

.title-main h2 {
    font-size: 60px;
    color: var(--secondary-yale-blue);
    font-weight: bold;
}

.badge-title {
    background: #D72262;
    color: #fff;
    padding: 10px;
    display: inline-block;
    border-radius: 12px;
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
}

.title-main>*:not(:last-child) {
    margin-bottom: 20px;
}
.section-slide .flickity-page-dots .dot {
    background: #0D4E9180 !important;
    opacity: 0.5 !important;
}

.section-slide .flickity-page-dots .dot.is-selected {
    background: #0D4E91 !important;
    width: 32px !important;
    border-radius: 10px !important;
    opacity: 1 !important;
}
#service-home .item-service .i-ser-desc p {
    font-weight: 700;
}
#advantage .flickity-page-dots {
    bottom: 35px !important;
}

.advatage-item.carousel-cell {
    min-height: 590px;
}

.section-slide {
    overflow: hidden;
}

.title-badge-inline>* {
    display: inline-block;
}

.title-badge-inline>*:not(:last-child) {
    margin-right: 15px;
}

.activity-desc,
.ele-desc {
    width: 765px;
    margin: auto;
    max-width: 100%;
}

.activity-head>*:not(:last-child) {
    margin-bottom: 12px;
}

.activity-list {
    --f-columns: 5;
    --f-gap: 20px;
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--f-gap));
    margin-bottom: calc(-1 * var(--f-gap));
    align-items: center;
}

.activity-list>* {
    margin-left: var(--f-gap);
    margin-bottom: var(--f-gap);
    width: calc((100% / var(--f-columns) - var(--f-gap)));
}

.activity-img {
    border-radius: 12px;
    height: 350px;
    object-fit: cover;
    width: 100%;
}
.slide-activity.slide-layout-1 .activity-item:first-child{
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 3;
}

/* .activity-item:nth-child(even) .activity-img:first-child {
    height: 140px;
}

.activity-item:nth-child(even)>*:not(:last-child) {
    margin-bottom: 20px;
} */

/* #activity .container>*:not(:last-child) {
    margin-bottom: 40px;
} */

.activity-list-slide .flickity-page-dots {
    bottom: -40px !important;
}

#infrastructure {
    background: var(--wpr-bg-38d99140-b222-4994-9ebf-5c23a9eca64d) center center / cover;
}

.dng-tab-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dng-tab-nav ul>*:not(:last-child) {
    margin-right: 32px;
}

.dng-tab-nav ul li a {
    color: #8C8C8C;
    font-size: 20px;
}

.infrastructure-tab {
    margin-top: 32px;
}

.infrastructure-tab>*:not(:last-child) {
    margin-bottom: 60px;
}

.infrastructure-slide-nav-wrap .carousel-cell {
    width: 25%;
    margin-right: 10px;


}

.infrastructure-slide-img {
    width: 100%;
    height: 330px;
    object-fit: cover;

}

.infrastructure-slide-nav-wrap .infrastructure-slide-img {
    height: 220px;
}

.infrastructure-tab .dng-tab-nav ul .active a {
    color: var(--secondary-yale-blue);
    font-weight: bold;
    border-bottom: 2px solid;
    padding-bottom: 10px;
}

.infrastructure-slide-inner-mask {
    clip-path: polygon(50% 0%, 100% 10%, 100% 43%, 100% 99%, 64% 89%, 34% 89%, 0 100%, 0% 43%, 0 11%);
}

.infrastructure-slide-nav-inner {
    /* background: url(https://cdn.diemnhangroup.com/seoulcenter/2023/10/video-thumb-mask.png) no-repeat center center / cover;
    height: 300px; */
    padding-top: 30px;
}
.bg-slide-infrastructure {
    width: 100%;
    position: absolute;
    margin-top: 540px;
    z-index: 9;
}
.infrastructure-body {
    position: relative;
}
.infrastructure-slide-nav-wrap {
    z-index: 99 !important;
}
.infrastructure-slide-wrap .infrastructure-slide {
    max-width: 45%;
    margin: auto;
    border: 6px solid #D72262;
    border-radius: 15px 15px 0 0;
}

.infrastructure-slide-wrap {
    position: relative;
    z-index: 1;
}

.infrastructure-slide-nav-wrap {
    position: relative;
    z-index: 2;
    margin-top: -20px;
}

.dng-tab-content-item:not(.active) {
    display: none;
}

#branch {
    background: var(--wpr-bg-7fe22ef5-52a9-493e-88e9-094ec2bc6e90) no-repeat center center/cover;
}

.button-outline {
    background: transparent;
    border: 1px solid #D72262;
    color: #D72262;
    font-weight: bold;
}

#btnFindBranchNear {
    text-transform: none;
    font-size: 16px;
    border-radius: 40px;
}


.button-outline:hover {
    background: #D72262;
    color: #fff;
}

.button-outline:hover svg path,
.button-outline:hover circle {
    fill: #fff;
    stroke: #fff;
}

.branch-list {
    background: #fff;
    border-radius: 20px;

}
.branch-list > * {
    padding: 10px;
}
#branch .container>*:not(:last-child) {
    margin-bottom: 60px;
}

.branch-wrap>*:not(:last-child) {
    margin-bottom: 20px;
}

.branch-map iframe {
    width: 100%;
    border-radius: 16px;
    height: 600px;
}

.branch-gallery-wrap {
    --f-columns: 3;
    --f-gap: 20px;
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--f-gap));

}

.branch-gallery-wrap>* {
    margin-left: var(--f-gap);

    width: calc((100% / var(--f-columns) - var(--f-gap)));
}

.branch-gallery-item img {
    height: 115px;
    width: 100%;
    border-radius: 16px;
}

.branch-media>*:not(:last-child) {
    margin-bottom: 24px;
}

.branch-gallery-item span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    z-index: 2;
}

.branch-gallery-item {
    position: relative;
}

.branch-gallery-wrap>*:last-child {
    cursor: pointer;
}

.branch-gallery-wrap>*:last-child:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(140, 140, 140, 0.60);
    border-radius: 16px;
    z-index: 1;
}

.branch-tab-nav > * {
    background: #F3F3F4;
    border-radius: 12px;
    padding: 5px;
}

.branch-tab-nav>ul>li.active a {
    background: #fff;
    border-radius: 12px;
    color: var(--secondary-yale-blue);
    font-weight: bold;
}

.branch-tab-nav>ul>li>a {
    text-align: center;
    padding: 10px 5px;
    display: block;
    font-size: 14px;
}

.branch-tab-nav>ul>li:not(:last-child) {
    margin-right: 15px;
}

.branch-tab-nav>ul>li {
    width: 100%;
}

.branch-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.branch-item-image {
    width: 30%;
    margin-right: 15px;
}

.branch-item-image img {
    width: 100%;
    border-radius: 20px;
    height: 150px;
}

.branch-item-text {
    flex: 1;
}

.branch-item-text h3 {
    font-weight: bold;
    font-size: 20px;
}

.branch-item-text>*:not(:last-child) {
    margin-bottom: 15px;
}

.branch-item-meta {
    display: flex;
}

.branch-item-meta span {
    margin-left: 10px;
}

.branch-item-cta {
    border: 1px solid;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    border-radius: 5px;
}

.branch-item-cta>*:not(:last-child) {
    margin-right: 15px;
    border-right: 1px solid;
    padding-right: 15px;
}

.branch-item-cta a {
    color: var(--primary-color);
    display: block;
    width: 100%;
    text-align: center;
}

.branch-list>*:not(:last-child) {
    margin-bottom: 15px;
}

.branch-items>*:not(:last-child) {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #ccc;
}

.branch-tab-content {
    height: calc(700px - 95px);
    overflow: auto;
}

.branch-tab-content::-webkit-scrollbar {
    width: 5px;
}

.branch-tab-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.branch-tab-content::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
}
.branch-item:hover  .branch-item-text h3{
   color:var(--primary-color)
}
.branch-search {
    display: flex;
    justify-content: space-between;
    border: 1px solid #ECECED;
    margin: 0 10px;
    border-radius: 10px;
    padding: 8px;
}

.branch-search input {
    border: none;
    width: 100%;
}

.branch-search-input {
    flex: 1;
    margin: 0 15px;
}
.branch-tab-nav {
    padding-bottom: 0;
}
.branch-content-item-body {
    color: #333;
}
.hide-pc {
    display: none;
}
.activity-list>* {
    margin-left: 15px;
}
body.page-template-page-home-v3 main {
    padding-top: 0!important;
}
.sc-technology {
    padding-bottom: 0;
}
#certificate .item-certificate {
    min-height: 350px;
}
.flickity-page-dots .dot.is-selected:not(.slide-hero .flickity-page-dots .dot.is-selected){
    background: #0D4E91 !important;
    width: 32px !important;
    border-radius: 10px !important;
    opacity: 1 !important;
}
.flickity-page-dots .dot:not(.slide-hero .flickity-page-dots .dot) {
    background: #0D4E9180 !important;
    opacity: 0.5 !important;
}
.slide-hero .flickity-page-dots {
    bottom: 50px;
}
.branch-gallery-wrap {
    height: 115px;
    overflow: hidden;
}
.info-experience {
    position: absolute;
    bottom: 23px;
    left: 300px;
}
#team-experts .slider-team .info-doctor {
    padding-top: 60px;
}
#team-experts .slider-team .img-doctor {
    width: 50%;
    position: relative;
}

#team-experts .slider-team .info-doctor {
    flex: 1;
}
#service-home .description-service {
    text-align: justify;
}
#form-advise-new .col-form-right {
    background: var(--wpr-bg-289fa6f4-5075-4b5c-a637-11756dd9fc6a) no-repeat center center / 100% 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    border-radius: 40px 0 40px 0;
}

#form-advise-new .col-form-right .title-form {
    font-size: 24px;
    font-weight: bold;
    color: #0D4E91;
}
#form-advise-new .col-form-right .form-group label {
    display: block;
    font-size: 20px;
    color: var(--secondary-yale-blue);
    font-weight: 500;
}
#form-advise-new .col-form-right .form-group > *:not(:last-child) {
    margin-bottom: 8px;
}
#form-advise-new .col-form-right .form-group .button-form-submit {
    background: #fff;
    color: var(--secondary-yale-blue);
    font-weight: bold;
    margin: auto;
    display: block;
    box-shadow: 0px 2.37956px 2.37956px 0px rgba(0, 0, 0, 0.10);
    border-radius: 40px;
    padding: 16px 30px;
    text-transform: none;
    font-size: 16px;
}

#form-advise-new .col-form-right .form-group .button-form-submit:hover {
    background: var(--secondary-yale-blue);
    color: #Fff;
}
#service-home {
    background-image: var(--wpr-bg-a03cb6af-cbeb-404d-9d6d-d3d15d11726c);
    background-size: 100%;
    background-repeat: no-repeat;
    padding: 73px 0;
}
#service-home .info-service {
    display: grid;
    align-items: center;
    align-content: center;
    padding-right: 42px;
}
#service-home .info-service h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0D4E91;
    letter-spacing: 0.095px;
    text-transform: capitalize;
    margin-bottom: 30px;
}
#service-home .info-service h2 span {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 0.16px;
    color: #D72262;
    text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff,
               1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
    text-transform: uppercase;

}
#service-home .description-service, #certificate .info-certificate {
    color: #363F6E;
    font-size: 20px;
     font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.03px;
}
#service-home .list-services{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
#service-home .list-services .item-service{
    display: grid;
    justify-items: center;
    margin-bottom: 32px;
}
#service-home .item-service img {
    border-radius: 12px;
    border: 10px solid #fff;
    height: 223px;
    object-fit: cover;
}
#service-home .item-service h3{
    display: flex;
    min-width: 200px;
    width: fit-content;
    height: 58px;
    max-width: 280px;
    padding: 12px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.05);
    margin-top: -30px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.03px;
    color: #0D4E91;
}
#service-home .item-service h3 span {
    color: #D72262;
    text-transform: uppercase;
}
#service-home .loadmore-service a, #blogs-event .loadmore-blogs a{
    display: flex;
    width: 140px;
    height: 42px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 40px;
    background: #D72262;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.024px;
    color: #fff;
}
#service-home .grid-center {
    display: grid;
    justify-items: center;
}

#team-experts{
    background-image: var(--wpr-bg-dad43dae-433f-4deb-83e8-a66f49654cec);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 67px 91px 27px 152px ;
    overflow: hidden;
    padding-bottom: 0;
}
#team-experts .info-team{
    text-align: center;
}
#team-experts .info-team h2 {
    color: #0D4E91;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 0.095px;
}
#team-experts .info-team p{
    color: #D72262;
    text-shadow: 0px 2px 3px rgba(255, 255, 255, 0.40);
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 0.16px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}
#team-experts .info-team p span, #certificate .info-certificate h2 span  {
    color: #FFF;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.1px;
    display: flex;
    height: 52px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    background: #D72262;
    width: fit-content;
}
#team-experts .slider-team {
    display: flex;
    gap: 46px;
    height: 560px;
}
#team-experts .slider-team .info-experience ul{
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 4.195px;
    background: #0D4E91;
    color: #FFF;
}
#team-experts .info-experience .number-experience{
    font-size: 24px;
    font-weight: 700;
}
#team-experts .info-experience .content-experience{
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.008px;
}
#team-experts .slider-team .info-doctor>p{
    color: #0D4E91;
    font-size: 24px;
    font-weight: 700;
    text-align:left;
}
#team-experts .slider-team .info-doctor, #strength .description-strength {
    color: #363F6E;
    text-align: justify;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.03px;
}
#team-experts .slider-team .img-doctor img {
    object-fit: contain;
    max-width: 100%;
    width: 100%;
    height: 100%;
}
#team-experts .description-doctor{
    max-height: 315px;
    overflow-y: scroll;
    padding-right: 15px;
}
#team-experts .description-doctor::-webkit-scrollbar{
    width: 6px;
    background-color: #F5F5F5;
}
#team-experts .description-doctor::-webkit-scrollbar-thumb {
    background-color: #D72262;
}

#team-experts .flickity-page-dots {
    left: 150px !important;
}
#certificate {
    background-image: var(--wpr-bg-10b36a3b-3d1d-4bec-a72b-d61e8ecfb4f0);
    background-size: 100%;
    background-repeat: no-repeat;
    padding: 92px 88px 135px 88px ;
    background-size: cover;
}
#certificate .item-certificate{
}
#certificate .img-certificate img {
    height: 442.5px;
    object-fit: cover;
    width: 100%;
}
#certificate .info-certificate h2 {
    color:  #0D4E91;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 0.15px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}
#certificate .info-certificate {
    margin-bottom: 40px;
    text-align: center;
}
#certificate .flickity-page-dots {
    bottom: -80px !important;
}
#blogs-event {
    padding: 72px 118px;
}
#blogs-event .info-blogs {
    margin-bottom: 40px;
}
#blogs-event .info-blogs h2{
    color: #D72262;
    text-align: center;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 0.15px;
    margin-bottom: 12px;
}
#blogs-event .info-blogs p{
    color: #363F6E;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.03px;
}
#blogs-event .info-blogs {
    margin-bottom: 40px;
}
#blogs-event .loadmore-blogs {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
#blogs-event .col-blogs-left .img-blogs {
    border-radius: 0px 60px;
    width: 100%;
    height: 66.66666666666667%;
    object-fit: cover;
}
#blogs-event .col-blogs-right .img-blogs {
    border-radius: 0px 40px;
    width: 100%;
    height: 66.66666666666667%;
    object-fit: cover;
}
#blogs-event .col-blogs-right .title-posts{
    color:  #434343;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.024px;
    margin-top: 20px;
}
#blogs-event .col-blogs-left .title-posts {
    color:  #D72262;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.03px;
    margin-top: 20px;
}
#blogs-event .col-blogs-left .description-posts{
    color: #363F6E;
    text-align: justify;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.03px;
}
#blogs-event .loadmore-link{
    color: #0D4E91;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.024px;
}
#blogs-event .loadmore-link:after{
    width: 32px;
    height: 2px;
    background: #0D4E91;
}
#video-client {
    padding: 68px 100px;
    padding-bottom: 100px;
}
#video-client .slider-video-client{
    width: 33.33%;
    margin-right: 10px;
}
#video-client .slider-video-client iframe{
    border-radius: 15px;
}
#video-client .info-video-client h2 {
    color: #D72262;
    text-align: center;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 0.15px;
    margin-bottom: 12px;
}
#video-client .info-video-client p {
    color: #363F6E;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.03px;
    margin-bottom: 40px;
}
#video-client .flickity-page-dots{
    bottom: -50px !important;
}
#form-advise-new {
    background: var(--wpr-bg-b5d07769-f98e-4aed-9dff-6865936bf609) no-repeat center center / cover;
    min-height: 800px;
    padding: 150px 0 100px 0;
}
.technology-item {
    position: relative;
}
body.page-template-page-shortcode main {
    padding-top: 0!important;
}
.info-video iframe {
    border-radius: 10px;
    height: 310px;
}
.advantage-text .title-main h2 {font-size: 42px;}
.event--s {
  padding: 40px 5px;
}

.event--s .box-title {
  text-align: center;
  padding: 13px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.event--s .box-title .desc {
  width: 100%;
  max-width: 850px;
  text-align: center;
  padding: 10px 0;
}

.box-post--e {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.box-post--e .item-post:nth-child(1) {
  grid-area: 1 / 1 / 3 / 3;
}

.box-post--e .item-post:nth-child(2) {
  grid-area: 1 / 3 / 2 / 4;
}

.box-post--e .item-post:nth-child(3) {
  grid-area: 1 / 4 / 2 / 5;
}

.box-post--e .item-post:nth-child(4) {
  grid-area: 2 / 3 / 3 / 4;
  ;
}

.box-post--e .item-post:nth-child(5) {
  grid-area: 2 / 4 / 3 / 5;
}

.box-post--e .item-post:not(:nth-child(1)) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.box-post--e .item-post:nth-child(1) {
  position: relative;
  border-radius: 10px;
}

.box-post--e .item-post:nth-child(1) .post-image,
.box-post--e .item-post:nth-child(1) .post-image a,
.box-post--e .item-post:nth-child(1) img {
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
}

.box-post--e .item-post:nth-child(1) .box-content {
  border-radius: 0 0 10px 10px;
  padding: 10px 5px;
}

.box-post--e .item-post:hover {
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.10);
  border-radius: 10px;

}

.box-post--e .item-post .post-title h4,
.box-post--e .item-post .post-desc p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: auto;
}

.box-post--e .item-post:not(:nth-child(1)) img {
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
}

.item-post .post-image>a {
  width: 100%;
  height: auto;
}

.item-post .post-image>a img {
  width: 100%;
  height: auto;
}

.box-post--e .item-post:nth-child(1) .post-image>a img {
  width: 100%;
  height: 100%;
  max-height: 392px;
  border-radius: 0px 40px;
}

.box-post--e .item-post:not(:nth-child(1)) .post-image>a img {
  width: 100%;
  height: 190px;
  border-radius: 0px 40px;
}

.box-post--e .item-post .post-title h4 {
  font-size: 16px;
  color: #363F6E;
}

.box-post--e .item-post:nth-child(1) .post-title h4 {
  color: #D72262;
  font-size: 20px;
  font-weight: 700;
}

.box-post--e .item-post:not(:nth-child(1)) .post-desc {
  display: none;
}

.read-more {
  color: #0D4E91;
  font-size: 16px;
  font-weight: 400;
  border-bottom: 1px solid #0D4E91;
}

.box-post--e .item-post .post-desc {
  padding-top: 5px;
  color: #363F6E;
  text-align: justify;
  font-size: 18px;
  font-weight: 400;
}

.box-post--e .item-post .post-desc p {
  margin: 0;
}

.box-post--e .item-post:hover {
  border-radius: 0px 40px;
}

.box-post--e .item-post .box-content {
  padding: 10px 5px 20px 10px;
}

.i-ser-desc {
  display: flex;
  width: 100%;
  height: 58px;
  max-width: max-content;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #FFF;
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.05);
  margin-top: -25px;
  padding: 10px;
}
.i-ser-desc p{
  color:  #0D4E91;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}
.i-ser-desc h4{
  color:  #D72262;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  text-transform:uppercase;
}
.button-form-submit[disabled] {
    opacity: 0.5;
    pointer-events: none;
}
#form-advise-new {
    position: relative;
}

.form-advise-img {
    position: absolute;
    bottom: 0;
    left: 0;
}
.dng-footer--logogroup>h4 {
    text-align: left;
    font-style: italic;
    font-weight: 400;
}

.dng-footer--logogroup {
    padding: 0;
}

.dng-footer--logogroup>h4 {
    text-align: left;
    font-style: italic;
    font-weight: 400;
}

.box-dngf--logo {
    display: flex;
    padding: 10px 0 0 0;
}

.dng-footer--logogroup a {
    border: 1px solid #aaa;
}

.dng-footer--logogroup a, .dng-footer--logogroup a>img {
    width: 100px;
    height: 40px;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
    .box-dngf--logo {
        display: grid !important;
    }
}
#header.sticky {
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: #fff;
    transition: opacity 0.1s ease-in-out;
    animation: jumpDownAnimation 0.5s;
}
@keyframes jumpDownAnimation {
    0% {
      transform: translateY(-100%);
    }
    100% {
      transform: translateY(0);
    }
}
.menu-tab-child{
  --f-columns: 3;
  --f-gap: 20px;
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(-1 * var(--f-gap));
  margin-bottom: calc(-1 * var(--f-gap));
}
.menu-tab-child > * {
  margin-left: var(--f-gap);
  margin-bottom: var(--f-gap);
  width: calc((100% / var(--f-columns) - var(--f-gap)));
}
.header-search-mobile {
    display: none;
}
/* style update section blogs-event 8/1/2024 */
.button-blogs {
    display: flex;
    width: 169px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: #D72262;
    color: #FFF;
    font-family: SVN-Gilroy;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.024px;
    text-transform: uppercase;
}
.button-blogs:hover{
    color: #FFF;
}
.title-post a {
    color: #D72262;
    font-family: SVN-Gilroy;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 0.03px;
}
.decs-post {
    color: #363F6E;
    text-align: justify;
    font-family: SVN-Gilroy;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.28px;
    letter-spacing: 0.024px;
}
.readmore-post {
    color: #0D4E91;
    font-family: SVN-Gilroy;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.024px;
}
.line-blogs {
    background: var(--Neutral-nutral-5, #D9D9D9);
    width:100%;
    size:5px;
    align:center;
}
.item-post {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}
.list-posts .thumbnail-post {
    max-width: 191px;
    max-height: 142px;
}
.list-posts .decs-post{
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.012px;
}
.item-first {
    margin-bottom: 50px;
}
.item-first .title-post {
    margin-top: 24px;
    margin-bottom: 5px;
    height: 55px;
}
.load-more-posts {
    display: flex;
    width: 140px;
    height: 42px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 40px;
    background: #D72262;
    color: #FFF;
    text-align: center;
    font-family: SVN-Gilroy;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.024px;
}
.item-first .thumbnail-post {
	max-height: 386px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.item-post .thumbnail-post {
	min-height: 142px;
	min-width: 191px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
    .button-blogs {
        width: 230px;
    }
    .list-posts .thumbnail-post {
        max-width: 100px;
        max-height: 85px;
    }
    .item-post {
        gap: 11px ;
        margin-bottom: 16px; 
    }
    .title-post,.decs-post,.readmore-post {
        font-size: 14px;
        line-height: 21px;
        letter-spacing: 0.014px;
        margin-bottom: 0px;
    }
    .item-first {
        margin-bottom: 16px;
    }
    #blogs-event .tab-slide {
        display: flex;
        justify-content: center;
    }
    #blogs-event .tab-posts button {
        background-color: inherit;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        transition: 0.3s;
        font-size: 17px;
        text-transform: math-auto;
        box-shadow:none;
        padding: 5px 20px 20px 0;
    }
    #blogs-event .tab-posts button.active {
        font-weight: 700;
    }
    #blogs-event .tabcontent {
        display: none;
        border-top: none;
    }
    #blogs-event .tablinks {
        color: #0D4E91;
        font-family: SVN-Gilroy;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height:  21px;
        letter-spacing: 0.014px;
    }
    .item-first .thumbnail-post {
        max-height: 214px;
    }
    .item-post .thumbnail-post {
        min-height: 87px;
        min-width: 96px;
    }
    .tablinks {
        text-transform: inherit;
    }
    .load-more-posts {
        display:none;
    }
    .button-blogs {
        width: 270px;
    }
    .title-post a {
        font-size: 14px;
        line-height: 21px;
        letter-spacing: 0.014px;
    }
}
.button-blogs-right {
    float: right;
    margin-bottom: 16px;
}

.slider-certificate {width: 100%;display: grid;grid-template-columns: 1fr 1fr 1fr 1fr;gap: 16px;margin-right: 16px;}
.sliders-certificate .flickity-button{
	display: block;
	box-shadow: none;
	color: black;
	background: transparent;
}
.sliders-certificate .flickity-button:hover{
    background: transparent;
}
.sliders-certificate .flickity-prev-next-button.next {right: -35px}
.sliders-certificate .flickity-prev-next-button.previous{left: -35px;}
.sliders-certificate .flickity-prev-next-button .flickity-button-icon{width: 40%;height: 40%;}
#blogs-event .title-post {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

.slide-activity{
    height: 620px;
    display: grid;
    justify-content: center;
    gap: 12px;
    grid-template-columns: 620px 1fr 1fr;
    grid-template-rows: 300px 300px;
}
.activity-item {
    height: auto;
    flex: 0 0 calc(33.33% - 12px);
}
.slide-activity.slide-layout-2{grid-template-columns: 1fr 1fr 1fr;}
.slide-activity.slide-layout-2 .activity-item:nth-child(3){grid-column-start: 2;grid-column-end: 2;grid-row-start: 1;grid-row-end: 3;}
section#activity {
    background: var(--wpr-bg-20db73f6-6f3d-4c30-9a14-2751e5ea142f);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
section#activity.slide-layout-2 {
    background: var(--wpr-bg-d5542fd9-f3c1-40de-a79c-e7b05860e39f);
}

@media screen and (max-width: 768px) {
    .slide-activity{
        height: 281px;
        grid-template-columns: 281px 1fr 1fr;
        grid-template-rows: 138.687px 138.687px;
        gap: 10px;
        /* width: 620px !important; */
        margin-right: 10px;
        width: auto !important;
    }
    .activity-item {
        min-width: 138.687px;
        min-height: 138.687px;
    }
    section#activity .container{
        padding-right: 0 !important;
    }
    section#activity{
        overflow: auto;
    }
}


.shaking-image {
    position: relative;
    animation: shake 1s infinite alternate;
  }

  @keyframes shake {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-20px);
    }
  }

  .button-active-form {
    /* display: none; */
    position: fixed;
    bottom: 65px;
    padding: 10px 0;
    left: 20px;
  }

  .button-active-form #button-survey {
    max-width: 200px;
  }

  .button-active-form #button-survey:hover {
    cursor: pointer;
  }

  #fp-survey {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 99999;
    background: #0009;
  }

  .fps-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 80vw;
  }

  .fps-close {
    right: -35px;
    position: absolute;
    top: -35px;
    cursor: pointer;
  }

  .fps-close>svg>path {
    fill: #fff;
  }

  .fps-content iframe {
    border-radius: 15px !important;
  }

  .active-fs {
    display: block !important;
  }

  .button-active-form .button-close {
    width: 15px;
    float: right;
    top: -30px;
    position: absolute;
    right: 0px;
    display: none;
  }

  .button-active-form .button-close:hover {
    cursor: pointer;
  }

  @media (max-width:768px) {
    .button-active-form {
      bottom: 115px;
      transform: translateX(-86%);
      transition: .3s all;
    }
    .button-active-form.active {
        transform: translateX(0%);
    }
    .button-active-form.active .button-close{
        display: block;
    }
    .button-active-form #button-survey {
      max-width: 167px;
    }

    .button-active-form {
      /* left: -104px; */
    }
  }

  @media screen and (min-width: 1024px) {
    .button-active-form .button-close {
        display: block;
        top: -40px;
    }
    .button-active-form{
        display: none;
    }
    .button-active-form.active{
        display: block;
    }
  }