:root {
  --color-primary: #209972;
  --color-secondary: #01377d;
  --color-secondary-light: #1B9DD0;
  --color-success: #28a745;
  --color-info: #17a2b8;
  --color-warning: #ffc107;
  --color-danger: #dc3545;
  --color-gray: #6c757d;
  --color-light: #fff;
  --color-white: #fff;
  --color-dark: #000;
  --color-black: #000;
  --color-default: #666666;
  --color-border: #d6d6d6;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 600;
  --fw-black: 900;
  --typo-xs: 18px;
  --typo-sm: 22px;
  --typo-md: 24px;
  --typo-lg: 30px;
  --typo-xl: 34px;
  --typo-default: 20px;
  --rounded: 0.375rem;
  --rounded-md: 0.675rem;
  --shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0px 30px 60px rgba(0, 0, 0, 0.1);
}

.text-primary {
  color: var(--color-primary) !important;
}

.text-secondary {
  color: var(--color-secondary) !important;
}

.text-success {
  color: var(--color-success) !important;
}

.text-info {
  color: var(--color-info) !important;
}

.text-warning {
  color: var(--color-warning) !important;
}

.text-danger {
  color: var(--color-danger) !important;
}

.text-gray {
  color: var(--color-gray) !important;
}

.text-light {
  color: var(--color-light) !important;
}

.text-dark {
  color: var(--color-dark) !important;
}

.text-default {
  color: var(--color-default) !important;
}

.fw-light {
  font-weight: var(--fw-light);
}

.fw-normal {
  font-weight: var(--fw-regular);
}

.fw-medium {
  font-weight: var(--fw-medium);
}

.fw-bold {
  font-weight: var(--fw-bold);
}

.typo-xs {
  font-size: var(--typo-xs);
}

.typo-sm {
  font-size: var(--typo-sm);
}

.typo-md {
  font-size: var(--typo-md);
}

.typo-lg {
  font-size: var(--typo-lg);
}

.typo-xl {
  font-size: var(--typo-xl);
}

.typo-default {
  font-size: var(--typo-default);
}

html,
body {
  min-height: 100%;
}

html {
  position: relative;
}

body {
  font-family: "Noto Sans Thai", sans-serif;
  background-color: #fff;
  line-height: 1;
  word-break: break-word;
  color: var(--color-default);
  font-size: var(--typo-default);
  display: block;
}

.container {
  width: 1210px;
}

.gutters-10 {
  margin: 0 -5px;
}
.gutters-10 > div {
  padding: 0 5px;
}

.gutters-20 {
  margin: 0 -10px;
}
.gutters-20 > div {
  padding: 0 10px;
}

.gutters-40 {
  margin: 0 -20px;
}
.gutters-40 > div {
  padding: 0 20px;
}

.gutters-60 {
  margin: 0 -30px;
}
.gutters-60 > div {
  padding: 0 30px;
}

img {
  max-width: 100%;
}

.icon {
  position: relative;
}
.icon > img {
  display: block;
}

a:focus,
button:focus {
  outline: none;
}

.btn,
.link {
  text-decoration: none;
  transition: all 200ms ease;
}

.btn:focus,
.btn:hover,
.link:focus,
.link:hover {
  text-decoration: none;
}

input,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.item-list {
  margin: 0;
  padding: 0;
}
.item-list > li {
  list-style: none;
  float: left;
}
.item-list.fluid > li {
  width: 100%;
}
.item-list::before, .item-list::after {
  content: " ";
  display: table;
}
.item-list::after {
  clear: both;
}

.nav-list {
  margin: 0;
  padding: 0;
}
.nav-list > li {
  list-style: none;
  float: left;
}
.nav-list.fluid > li {
  width: 100%;
}
.nav-list::before, .nav-list::after {
  content: " ";
  display: table;
}
.nav-list::after {
  clear: both;
}

.title {
  margin: 0;
}

.subtitle {
  margin: 0;
}

.desc {
  margin: 0;
}

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

.transition-speed {
  transition: all 200ms ease;
}

.transition-delay {
  transition-delay: 100ms;
}

ul.list-group {
  padding: 0;
}
ul.list-group > li {
  list-style: none;
}

.row-0 {
  margin: 0;
}
.row-0 > div {
  padding: 0;
}

.row-10 {
  margin: 0 -5px;
}
.row-10 > div {
  padding: 0 5px;
}

.row-20 {
  margin: 0 -10px;
}
.row-20 > div {
  padding: 0 10px;
}

.row-40 {
  margin: 0 -20px;
}
.row-40 > div {
  padding: 0 20px;
}

.row-R > div {
  float: right;
}

.row-table {
  display: table;
  width: 100%;
}
.row-table > div {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  padding: 0;
}
.row-table .col {
  width: auto;
}
.row-table .col-auto {
  width: 1%;
}
.row-table.vlign-top > div {
  vertical-align: top;
}

.section-middle {
  display: table;
  width: 100%;
  height: 100vh;
}
.section-middle > div {
  display: table-cell;
  vertical-align: middle;
}

figure {
  margin: 0;
  position: relative;
}
figure.cover {
  margin: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
figure.cover img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
figure.contain {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
figure.contain img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
figure img {
  width: 100%;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
figure.ratio {
  margin: 0;
}
figure.ratio .img-ratio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
figure.ratio .img-ratio.ratio-9x16 {
  --bs-aspect-ratio: calc(16 / 9 * 100%);
}

.cover {
  position: relative;
  overflow: hidden;
  margin: 0;
}
.cover .img-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.contain {
  position: relative;
  overflow: hidden;
  margin: 0;
}
.contain .img-contain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.iframe-container {
  position: relative;
  padding-top: 56%;
  overflow: hidden;
}
.iframe-container iframe,
.iframe-container object,
.iframe-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-container {
  position: relative;
  padding-top: 57%;
  overflow: hidden;
}
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption),
.visually-hidden:not(caption) {
  position: absolute !important;
}

.thumbnail {
  background: transparent;
}
.thumbnail .lazy {
  transition: all 400ms ease;
}
.thumbnail .ratio > img {
  -o-object-fit: cover;
     object-fit: cover;
}

.mySwiper.swiper {
  width: 100%;
  height: 100%;
}
.mySwiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mySwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.prevent-select {
  -webkit-user-select: none; /* Safari */ /* IE 10 and IE 11 */
  -moz-user-select: none;
       user-select: none; /* Standard syntax */
}

.text-stroke {
  color: var(--color-default);
  -webkit-text-fill-color: var(--color-white); /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 0.028em;
  -webkit-text-stroke-color: var(--color-default);
}

.grid-divider {
  overflow-x: hidden;
  position: relative;
}
.grid-divider > [class*=col]:nth-child(n+2) {
  position: relative;
}
.grid-divider > [class*=col]:nth-child(n+2):after {
  content: "";
  background-color: var(--color-default);
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  height: auto;
  left: -1px;
}

.back-to-prev .link {
  color: var(--color-default);
}

.hero-banner .ratio {
  --bs-aspect-ratio: 33.333%;
}

.head-banner .ratio {
  --bs-aspect-ratio: 33.333%;
}

.breadcrumb-block {
  margin-bottom: 20px;
}

.breadcrumb {
  background-color: transparent;
  margin: 0;
  padding: 0;
  border-radius: 0;
}
.breadcrumb li + li:before {
  font-family: "Material Symbols Rounded";
  content: "\e5e1";
  padding: 0 10px;
  float: left;
  position: relative;
  top: 2px;
  font-size: 14px;
  color: var(--color-light);
}
.breadcrumb li:nth-child(3) .link {
  max-width: 180px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-align: left;
}
.breadcrumb .link {
  font-size: var(--typo-xs);
  float: left;
}
.breadcrumb .link.-nolimit {
  max-width: inherit;
}
.breadcrumb .link.active {
  color: var(--color-primary);
}
.breadcrumb .link .icon {
  top: -2px;
  margin-right: 10px;
  height: 22px;
  display: inline-block;
}
.breadcrumb .link {
  color: var(--color-light);
}

@media (max-width: 991px) {
  .breadcrumb-block {
    margin-bottom: 10px;
  }
  .breadcrumb .link .icon {
    margin-right: 5px;
  }
  .breadcrumb li + li::before {
    padding: 0 5px;
    top: 1px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-block {
    overflow: auto;
  }
  .breadcrumb {
    display: flex;
    flex-wrap: nowrap;
  }
  .breadcrumb li {
    display: flex;
    flex-wrap: nowrap;
  }
  .breadcrumb li + li::before {
    top: 0px;
  }
  .breadcrumb .link {
    font-size: 16px;
    white-space: nowrap;
    display: block;
  }
  .breadcrumb .link .icon {
    top: -1px;
  }
}
@media (max-width: 575px) {
  .breadcrumb li:nth-child(3) .link {
    max-width: 100px;
  }
}
.btn {
  background: none;
  position: relative;
  padding: 0 10px;
  min-width: 180px;
  height: 60px;
  line-height: 60px;
  border: none;
  border-radius: 0;
  font-size: var(--typo-default);
  font-weight: var(--fw-regular);
}
.btn.fluid {
  min-width: inherit;
  width: 100%;
}
.btn:focus {
  box-shadow: none;
}
.btn:not(:disabled):not(.disabled).active:focus,
.btn:not(:disabled):not(.disabled):active:focus,
.show > .btn.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-primary,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background: linear-gradient(to left, #2ab170 0%, #01377d 50%, #2ab170 100%);
  background-size: 200%;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 1em 100%, 0 calc(100% - 1em));
          clip-path: polygon(0 0, 100% 0, 100% 100%, 1em 100%, 0 calc(100% - 1em));
  transition: all 0.4s ease-in-out;
}

.btn-primary:hover,
.btn-primary:active:hover,
.btn-primary.active:hover,
.btn-primary:active:focus,
.btn-primary.actitve:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.btn-primary:focus:hover,
.btn-primary.focus:hover {
  color: #fff;
  background-position: right center; /* change the direction of the change here */
}

.btn-primary.disabled,
.btn-primary.disabled:hover {
  color: #fff;
  background: linear-gradient(to left, #01377d 0%, #2ab170 100%);
  background-size: auto 200%;
  opacity: 0.5;
}

.btn-outline-light,
.btn-outline-light:focus,
.btn-outline-light.focus,
.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active,
.show > .btn-outline-light.dropdown-toggle {
  color: #fff;
  background-color: transparent;
  border-color: var(--color-light);
}

.btn-outline-light:hover,
.btn-outline-light:active:hover,
.btn-outline-light.active:hover,
.btn-outline-light:active:focus,
.btn-outline-light.actitve:focus,
.btn-outline-light:active.focus,
.btn-outline-light.active.focus,
.btn-outline-light:focus:hover,
.btn-outline-light.focus:hover {
  color: var(--color-black);
  background-color: var(--color-light);
  border-color: transparent;
}

.btn-outline-light.disabled,
.btn-outline-light.disabled:hover {
  color: #fff;
  background-color: transparent;
  border-color: var(--color-light);
  opacity: 0.5;
}

.btn-light,
.btn-light:focus,
.btn-light.focus,
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
  color: var(--color-primary);
  background-color: var(--color-light);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 1em 100%, 0 calc(100% - 1em));
          clip-path: polygon(0 0, 100% 0, 100% 100%, 1em 100%, 0 calc(100% - 1em));
}

.btn-light:hover,
.btn-light:active:hover,
.btn-light.active:hover,
.btn-light:active:focus,
.btn-light.actitve:focus,
.btn-light:active.focus,
.btn-light.active.focus,
.btn-light:focus:hover,
.btn-light.focus:hover {
  color: var(--color-light);
  background-color: var(--color-primary);
}

.btn-light.disabled,
.btn-light.disabled:hover {
  color: var(--color-primary);
  background-color: var(--color-light);
  opacity: 0.5;
}

.editor-content {
  margin-top: 30px;
  font-size: var(--typo-default);
  color: var(--color-dark);
  line-height: 1.6em;
  margin-bottom: 30px;
}
.editor-content p {
  margin-bottom: 20px;
}
.editor-content p:last-child {
  margin-bottom: 0;
}
.editor-content img {
  height: auto !important;
}

@media (max-width: 1440px) {
  .editor-content {
    margin: 50px 0 30px 0;
  }
}
@media (max-width: 1199px) {
  .editor-content p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .editor-content {
    margin: 30px 0 30px 0;
  }
  .editor-content p {
    margin-bottom: 13px;
    font-size: 16px;
  }
}
.form-default .form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-default .form-label {
  margin-bottom: 10px;
  font-weight: var(--fw-regular);
  font-size: var(--typo-xs);
  color: var(--color-default);
  line-height: 1.2em;
}

.form-default .form-control {
  line-height: 1.2em;
  padding: 10px 15px;
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 0;
  box-shadow: none;
  font-size: var(--typo-default);
  color: var(--color-default);
  font-weight: var(--fw-regular);
}
.form-default .form-control::-moz-placeholder {
  color: var(--color-gray);
  opacity: 1;
}
.form-default .form-control::placeholder {
  color: var(--color-gray);
  opacity: 1;
}

.form-default .form-note {
  position: absolute;
  top: 100%;
  left: 20px;
  margin-top: 4px;
  font-size: var(--typo-xs);
  color: var(--color-gray);
}

.form-default .form-control:focus {
  border-color: var(--color-border);
  text-shadow: none;
}

.form-default .block-control {
  position: relative;
}

.form-default .has-error .form-control:focus {
  box-shadow: none;
}

.form-default .has-success .form-control:focus {
  box-shadow: none;
}

.form-default .floating-label {
  color: var(--color-default);
  font-size: var(--typo-xs);
  position: absolute;
  pointer-events: none;
  left: 15px;
  top: 9px;
  transition: all 200ms ease-out;
}

.form-default .form-control:focus ~ .floating-label,
.form-default .form-control:not(:focus):valid ~ .floating-label {
  color: var(--color-default);
  font-size: var(--typo-xs);
  left: 0;
  top: -22px;
}

.form-control-feedback {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background-size: 100%;
}

.form-control-feedback:before {
  display: none;
}

.form-control-feedback.glyphicon-ok {
  background: url("../img/icon/checked.png") center no-repeat;
  background-size: 16px;
}

.form-control-feedback.glyphicon-remove {
  background: url("../img/icon/cancel.png") center no-repeat;
  background-size: 16px;
}

.radio-control {
  position: relative;
  display: inline-block;
}

.radio-control .icon {
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-border);
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}

.radio-control .title {
  margin: 0;
  font-size: var(--typo-default);
  font-weight: var(--fw-regular);
  color: var(--color-default);
  padding-left: 30px;
  line-height: 1.2em;
  display: block;
}

.radio-control input[type=radio] {
  margin-top: 0;
  position: absolute;
  z-index: 5;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
}

.radio-control input[type=radio]:checked ~ .icon {
  border-color: transparent;
  border-color: var(--color-border);
}

.radio-control input[type=radio]:checked ~ .icon:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: var(--color-default);
  border-radius: 50%;
}

.checkbox-control {
  position: relative;
  display: inline-block;
}

.checkbox-control .icon {
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-border);
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0;
}

.checkbox-control .title {
  margin: 0;
  font-size: var(--typo-default);
  font-weight: var(--fw-regular);
  color: var(--color-default);
  padding-left: 30px;
  line-height: 1.2em;
  display: block;
}

.checkbox-control input[type=checkbox] {
  margin-top: 0;
  position: absolute;
  z-index: 5;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
}

.checkbox-control input[type=checkbox]:checked ~ .icon {
  border-color: transparent;
  background-color: var(--color-default);
}

.checkbox-control input[type=checkbox]:checked ~ .icon:before {
  font-family: "feahter";
  content: "\e83f";
}

.form-search .btn-link {
  background: transparent;
  outline: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
.form-search .btn-link:not(:disabled):not(.disabled).active:focus, .form-search .btn-link:not(:disabled):not(.disabled):active:focus,
.form-search .btn-link .show > .btn-link.dropdown-toggle:focus {
  box-shadow: none;
}
.form-search .btn-link svg.feather {
  stroke-width: 3px;
}

.form-select {
  min-width: 300px;
}
.form-select .control-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  z-index: 1;
  font-size: var(--typo-sm);
  font-weight: var(--fw-bold);
  color: var(--color-light);
  margin-bottom: 0;
}
.form-select .select2-container .select2-selection--single {
  border-radius: 0;
}
.form-select .select2-container .select2-selection--single .select2-selection__rendered {
  font-size: var(--typo-sm);
  font-weight: var(--fw-medium);
  color: var(--color-light);
}
.form-select .select2-container .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: end;
}
.form-select .select2-container .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.form-select .select2-container .select2-selection--single .select2-selection__arrow::before {
  content: "\e5cf";
  font-family: "Material Symbols Rounded";
  font-size: 30px;
  color: var(--color-default);
}
.form-select .select2-container.select2-container--open .select2-selection--single .select2-selection__arrow::before {
  content: "\e5ce";
}

.select2-container--option-filter .select2-dropdown {
  border: 1px solid var(--color-primary);
  border-top: none;
  background-color: var(--color-light);
  box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.08);
  border-radius: 0;
}

.select2-container--option-filter .select2-results__option {
  font-size: var(--typo-sm);
  font-weight: var(--fw-medium);
  padding: 20px 30px;
  line-height: 1.3em;
}

.select2-container--option-filter .select2-results__option:hover {
  background-color: var(--color-secondary);
  color: var(--color-light);
}

.select2-container--option-filter .select2-results__option--selected {
  background-color: var(--color-border) !important;
}
.select2-container--option-filter .select2-results__option--selected:hover {
  color: var(--color-default);
}

.select2-container--option-document .select2-dropdown {
  border: none;
  background-color: var(--color-light);
  box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.08);
  border-radius: 0;
}

.select2-container--option-document .select2-results__options {
  padding: 0 20px 0 30px;
  margin: 30px 20px 30px 0;
  max-height: 210px;
  overflow-y: auto;
}
.select2-container--option-document .select2-results__options::-webkit-scrollbar {
  width: 5px;
}
.select2-container--option-document .select2-results__options::-webkit-scrollbar-track {
  background: var(--color-border);
  border-radius: 7px;
}
.select2-container--option-document .select2-results__options::-webkit-scrollbar-thumb {
  background: #29AF70;
  border-radius: 7px;
}
.select2-container--option-document .select2-results__options::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

.select2-container--option-document .select2-results__option {
  font-size: var(--typo-xs);
  font-weight: var(--fw-bold);
  transition: all 200ms ease;
  padding-left: 30px !important;
}
.select2-container--option-document .select2-results__option:hover {
  color: var(--color-primary);
}
.select2-container--option-document .select2-results__option:not(:last-child) {
  padding: 0 0 15px 0;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
}

.select2-container--option-pagination .select2-dropdown {
  border: 1px solid var(--color-border);
  background-color: var(--color-light);
  box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.08);
  border-radius: 0;
}

.select2-container--option-pagination .select2-results__options {
  margin: 10px 10px 15px 0;
  max-height: 150px;
  overflow-y: auto;
}
.select2-container--option-pagination .select2-results__options::-webkit-scrollbar {
  width: 2px;
}
.select2-container--option-pagination .select2-results__options::-webkit-scrollbar-track {
  background: var(--color-border);
  border-radius: 5px;
}
.select2-container--option-pagination .select2-results__options::-webkit-scrollbar-thumb {
  background: #29AF70;
  border-radius: 5px;
}
.select2-container--option-pagination .select2-results__options::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

.select2-container--option-pagination .select2-results__option {
  font-size: 18px;
  font-weight: var(--fw-bold);
  transition: all 200ms ease;
  padding-left: 20px;
}
.select2-container--option-pagination .select2-results__option:hover {
  color: var(--color-primary);
}

.select2-container--option-calendar .select2-dropdown {
  border: none;
  background-color: var(--color-light);
  box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.08);
  border-radius: 0;
}

.select2-container--option-calendar .select2-results__option {
  font-size: var(--typo-default);
  font-weight: var(--fw-medium);
  padding: 15px 30px;
}

.select2-container--option-calendar .select2-results__option:hover {
  background-color: var(--color-secondary);
  color: var(--color-light);
}

.select2-container--option-calendar .select2-results__option--selected {
  background-color: var(--color-border) !important;
}
.select2-container--option-calendar .select2-results__option--selected:hover {
  color: var(--color-default);
}

.modal .modal-title {
  font-size: var(--typo-xl);
  line-height: 1.22;
  margin: 0;
}
.modal .modal-content {
  border: none;
  border-radius: 0;
  box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.16);
}
.modal .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background: transparent;
  outline: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
}
.modal .btn-close .material-symbols-rounded {
  font-size: 48px;
}

.popup-modal .modal-content {
  border: none;
  border-radius: 0;
  box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.16);
}
.popup-modal .modal-body {
  padding: 0;
}
.popup-modal .btn-close {
  color: var(--color-light);
  filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.7));
}
.popup-modal .cover,
.popup-modal .iframe-container,
.popup-modal .video-container {
  padding-top: 57%;
}
.popup-modal .video-container video {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.popup-modal .popup-slide .swiper-button-prev,
.popup-modal .popup-slide .swiper-rtl .swiper-button-next {
  left: -80px;
}
.popup-modal .popup-slide .swiper-button-next,
.popup-modal .popup-slide .swiper-rtl .swiper-button-prev {
  right: -80px;
}
.popup-modal .popup-slide .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.popup-modal .popup-slide .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  color: var(--color-light);
  background: var(--color-light);
  filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.2));
}
.popup-modal .popup-slide .swiper-horizontal > .swiper-pagination-bullets,
.popup-modal .popup-slide .swiper-pagination-bullets.swiper-pagination-horizontal,
.popup-modal .popup-slide .swiper-pagination-custom,
.popup-modal .popup-slide .swiper-pagination-fraction {
  bottom: 30px;
}
.popup-modal .popup-slide .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
}

@media (min-width: 376px) {
  .popup-modal .btn-close {
    padding: 0;
  }
  .modal .btn-close .material-symbols-rounded {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .popup-modal .modal-dialog {
    max-width: 860px;
  }
}
@media (min-width: 1200px) {
  .popup-modal .modal-dialog {
    max-width: 1024px;
  }
}
.pagination-block {
  margin-top: 45px;
}

.default-pagination .pagination-label {
  display: flex;
  align-items: center;
}
.default-pagination .pagination-label strong {
  display: block;
  min-width: 45px;
  height: 45px;
  text-align: center;
  line-height: 43px;
  border-radius: 50%;
  margin: 0 10px;
  background-color: var(--color-dark);
  font-weight: var(--fw-regular);
  font-size: var(--typo-default);
  color: var(--color-light);
}
.default-pagination .pagination {
  margin: 0;
}
.default-pagination .pagination li {
  display: inline-block;
  vertical-align: middle;
}
.default-pagination .pagination li.jump-page .form-select {
  min-width: 100px;
}
.default-pagination .pagination li.jump-page .form-group {
  margin-bottom: 0;
}
.default-pagination .pagination li.jump-page .select2-container .select2-selection--single {
  background: linear-gradient(to left, #01377d 0%, #2ab170 100%);
  border: none;
  height: 40px;
}
.default-pagination .pagination li.jump-page .select2-container .select2-selection--single .select2-selection__rendered {
  font-size: 16px;
  line-height: 40px;
  padding-left: 20px;
  padding-right: 15px;
}
.default-pagination .pagination li.jump-page .select2-container .select2-selection--single .select2-selection__arrow {
  right: 10px;
}
.default-pagination .pagination li.jump-page .select2-container .select2-selection--single .select2-selection__arrow::before {
  font-size: 18px;
  color: var(--color-light);
}
.default-pagination .pagination li.active .link {
  color: var(--color-light);
  border-color: transparent;
  background: none;
  background-color: var(--color-primary);
}
.default-pagination .pagination li + li {
  margin-left: 10px;
}
.default-pagination .pagination .page-item .link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 5px;
  text-align: center;
  background-color: var(--color-transparent);
  font-weight: var(--fw-regular);
  font-size: 16px;
  color: var(--color-dark);
  border: 1px solid var(--color-primary);
  text-decoration: none;
}
.default-pagination .pagination .page-item .link:hover {
  color: var(--color-primary);
}
.default-pagination .pagination .page-item .link.active {
  color: var(--color-light);
  background: none;
  background: linear-gradient(#01377d 0%, #2ab170 100%);
}
.default-pagination .pagination .page-item .link.link-text {
  border-color: transparent;
  background-color: transparent;
}
.default-pagination .pagination .page-item .link.link-text:hover {
  border-color: transparent;
  background-color: transparent;
}
.default-pagination .pagination .page-arrow .link {
  position: relative;
  border-color: var(--color-border);
}
.default-pagination .pagination .page-arrow span {
  font-family: "Material Symbols Rounded";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.default-pagination .pagination .page-arrow.-start span::before {
  content: "\e5e0";
}
.default-pagination .pagination .page-arrow.-end span::before {
  content: "\e5e1";
}
.default-pagination .pagination .first-page .link,
.default-pagination .pagination .last-page .link {
  font-weight: var(--fw-regular);
  font-size: 16px;
  line-height: 43px;
  color: var(--color-dark);
  text-decoration: none;
  border: none;
}

@media (max-width: 767px) {
  .pagination-block {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .default-pagination .pagination-label {
    justify-content: center;
    margin-bottom: 20px;
    font-size: 18px;
  }
  .default-pagination .pagination {
    justify-content: center;
  }
  .default-pagination .pagination li + li {
    margin-left: 5px;
  }
  .default-pagination .pagination .first-page .link,
  .default-pagination .pagination .last-page .link {
    display: none;
  }
  .default-pagination .pagination .page-item .link {
    font-size: 14px;
    min-width: 30px;
    height: 30px;
  }
  .default-pagination .pagination .page-item:nth-child(6),
  .default-pagination .pagination .page-item:nth-child(7) {
    display: none;
  }
  .default-pagination .pagination li.jump-page .form-select {
    min-width: 80px;
  }
  .default-pagination .pagination li.jump-page .select2-container .select2-selection--single {
    height: 30px;
  }
  .default-pagination .pagination li.jump-page .select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 14px;
    line-height: 30px;
    padding-left: 10px;
  }
  .default-pagination .pagination li.jump-page .select2-container .select2-selection--single .select2-selection__arrow {
    right: 5px;
  }
  .select2-container--option-pagination .select2-results__option {
    font-size: 14px;
    padding-left: 10px;
  }
}
.select2-container .select2-selection--single {
  height: 50px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 50px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px;
}

div.swal2-popup {
  border-radius: 0;
  width: 26em;
  padding-bottom: 40px;
  color: var(--color-default);
  background-color: var(--color-light);
}

div.swal2-icon {
  margin-top: 40px;
  margin-bottom: 0;
}

h2.swal2-title {
  padding-top: 15px;
  font-size: var(--typo-default);
  font-weight: var(--fw-regular);
  color: var(--color-primary);
}

div.swal2-html-container {
  margin-top: 15px;
  margin-bottom: 10px;
  margin-left: 3em;
  margin-right: 3em;
  font-size: var(--typo-default);
  font-weight: var(--fw-regular);
  color: var(--color-primary);
  overflow: visible;
  line-height: 1.4em;
}

.swal2-actions .btn {
  margin: 0 5px;
}

.whead {
  margin-bottom: 20px;
}
.whead .title {
  margin: 0;
  font-size: var(--typo-default);
  font-weight: var(--fw-bold);
  line-height: 1.2em;
}

.relate-content .relate-list {
  position: relative;
}

.gallery-content .gallery-list {
  position: relative;
}

.swiper-default .swiper-button-next,
.swiper-default .swiper-button-prev {
  color: var(--color-secondary);
  height: 55px;
}
.swiper-default .swiper-button-next:after,
.swiper-default .swiper-button-prev:after {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: "liga";
  -moz-osx-font-smoothing: grayscale;
}
.swiper-default .swiper-button-prev:after,
.swiper-default .swiper-rtl .swiper-button-next:after {
  content: "\e5e0";
  position: relative;
  left: 8px;
}
.swiper-default .swiper-button-next:after,
.swiper-default .swiper-rtl .swiper-button-prev:after {
  content: "\e5e1";
}
.swiper-default .swiper-button-next::after,
.swiper-default .swiper-button-prev::after {
  font-size: 55px;
}
.swiper-default .swiper-button-prev,
.swiper-default .swiper-rtl .swiper-button-next {
  left: -60px;
}
.swiper-default .swiper-button-next,
.swiper-default .swiper-rtl .swiper-button-prev {
  right: -60px;
}
.swiper-default .swiper-horizontal > .swiper-pagination-bullets,
.swiper-default .swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-default .swiper-pagination-custom,
.swiper-default .swiper-pagination-fraction {
  bottom: 40px;
}
.swiper-default .swiper-pagination-bullet {
  position: relative;
  width: 20px;
  height: 20px;
  background: var(--color-default);
  opacity: 1;
  transition: all 200ms ease;
}
.swiper-default .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: transparent;
  border: 1px solid;
  opacity: 0;
  visibility: hidden;
  transition: all 200ms ease;
}
.swiper-default .swiper-pagination-bullet-active {
  color: var(--color-primary);
  background: var(--color-primary);
}
.swiper-default .swiper-pagination-bullet-active::after {
  opacity: 1;
  visibility: visible;
}
.swiper-default .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-default .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 7.5px;
}
.swiper-default .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-default .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  margin: 0 20px;
}
.swiper-default .autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--swiper-theme-color);
}
.swiper-default .autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--swiper-theme-color);
  fill: none;
  stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

.attachSwiper .swiper-slide.swiper-slide-active + .swiper-slide-next {
  opacity: 1;
}

.default-slick .slick-prev {
  left: -35px;
  z-index: 1;
}
.default-slick .slick-next {
  right: -35px;
}
.default-slick .slick-prev::before,
.default-slick .slick-next::before {
  color: var(--color-default);
}
.default-slick .slick-list {
  margin: 0 -10px;
  overflow: visible;
}
.default-slick .slick-list .slick-slide {
  padding: 0 10px;
}
.default-slick .slick-slide {
  opacity: 0;
  visibility: hidden;
  transition: all 200ms ease;
}
.default-slick .slick-slide.slick-active {
  opacity: 1;
  visibility: visible;
}
.default-slick .slick-dots {
  bottom: -35px;
}
.default-slick.slick-dotted.slick-slider {
  margin-bottom: 50px;
}

.attach-list .title {
  line-height: 1.2em;
}
.attach-list .desc {
  line-height: 1.2em;
}

.nav-lang a,
.nav-lang button {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  filter: grayscale(1);
  transition: all 200ms ease;
}
.nav-lang a .flag,
.nav-lang button .flag {
  transition: all 200ms ease;
  width: 100%;
  height: auto;
}
.nav-lang a.active,
.nav-lang button.active {
  filter: grayscale(0);
}

.hamburger {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  padding: 10px;
}
.hamburger .bar {
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  margin: auto;
  border-radius: 2px;
  background-color: var(--color-primary);
  transition: All 200ms ease;
}
.hamburger .bar:nth-child(1) {
  top: 4px;
}
.hamburger .bar:nth-child(2) {
  top: 0;
  bottom: 0;
}
.hamburger .bar:nth-child(3) {
  top: 0;
  bottom: 0;
}
.hamburger .bar:nth-child(4) {
  bottom: 4px;
}
.hamburger.is-active .bar:nth-child(1) {
  top: 0;
  opacity: 0;
}
.hamburger.is-active .bar:nth-child(2) {
  top: 0;
  bottom: 0;
  transform: rotate(45deg);
}
.hamburger.is-active .bar:nth-child(3) {
  top: 0;
  bottom: 0;
  transform: rotate(-45deg);
}
.hamburger.is-active .bar:nth-child(4) {
  bottom: 0;
  opacity: 0;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}

:root {
  --mcscroll-w: 8px;
}

.mCustomScrollbar .mCSB_scrollTools {
  width: var(--mcscroll-w);
  top: 5px;
  right: 0;
  bottom: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.mCustomScrollbar .mCSB_scrollTools .mCSB_draggerRail {
  background-color: rgba(67, 67, 67, 0.1);
}
.mCustomScrollbar .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCustomScrollbar .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCustomScrollbar .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCustomScrollbar .mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: var(--color-primary);
}
.mCustomScrollbar .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCustomScrollbar .mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: var(--color-primary);
}
.mCustomScrollbar .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: var(--mcscroll-w);
}
.mCustomScrollbar .mCSB_scrollTools .mCSB_draggerRail {
  width: var(--mcscroll-w);
}

.full-dropdown-menu {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  display: block !important;
  position: fixed !important;
  top: 100px;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background: transparent;
  /* Note: currently only Safari supports backdrop-filter */
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  --webkit-backdrop-filter: blur(50px);
  background-color: rgba(255, 255, 255, 0.5);
  transform: translate(0, 100%);
  transition: all 400ms ease-in-out;
  z-index: -1;
}
.full-dropdown-menu.show {
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}

.container-dropdown-menu {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.submenu-grid .submenu-col:not(:first-child) {
  width: 75%;
}
.submenu-grid .submenu-col:not(:first-child) .nav-list > li {
  width: 33.3333333333%;
}

.submenu-col {
  float: left;
  width: 25%;
  border-right: 1px solid rgba(42, 177, 112, 0.2);
  position: relative;
}
.submenu-col:not(:first-child) {
  width: 37.5%;
}
.submenu-col .link {
  display: block;
  line-height: 1.2em;
  padding: 1rem 1.25rem;
  color: var(--color-secondary);
}
.submenu-col .link.active {
  color: var(--color-light);
  font-weight: var(--fw-bold);
  background: linear-gradient(to left, #01377d 0%, #2ab170 100%);
}
.submenu-col .link:hover {
  color: var(--color-light);
  background: var(--color-primary);
}
.submenu-col .has-submenu .link::after {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: "liga";
  -moz-osx-font-smoothing: grayscale;
  content: "\e5cc";
  position: relative;
  display: inline;
  float: right;
  top: -4px;
}
.submenu-col .back-menu {
  display: none;
  font-size: 18px;
  color: var(--color-primary);
  padding: 15px;
  padding-left: 40px;
  border-bottom: 1px solid #ebebeb;
}
.submenu-col .back-menu::before {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: "liga";
  -moz-osx-font-smoothing: grayscale;
  content: "\e5cb";
  position: absolute;
  display: inline;
  top: 10px;
  left: 8px;
  font-size: 26px;
}
.submenu-col ul.nav-list > li + li {
  border-top: 1px solid rgba(42, 177, 112, 0.2);
}

.submenu-grid .sub1menu ul.nav-list {
  border-top: 1px solid rgba(42, 177, 112, 0.2);
}
.submenu-grid .sub1menu ul.nav-list > li {
  border-top: 0;
  border-bottom: 1px solid rgba(42, 177, 112, 0.2);
  border-right: 1px solid rgba(42, 177, 112, 0.2);
}
.submenu-grid .sub1menu ul.nav-list > li:nth-child(3n+0) {
  border-right: 0;
}

.sub2menu {
  display: none;
}
.sub2menu.open {
  display: block;
}

.sub3menu {
  display: none;
}
.sub3menu.open {
  display: block;
}

.submenu-col,
.submenu-col .scroll-wrapper,
.submenu-col .mCustomScrollbar {
  height: calc(100vh - 100px);
}

.submenu-thumb {
  padding: 1rem;
}
.submenu-thumb .cover {
  padding-bottom: 100%;
}
.submenu-thumb .cover img {
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 1200px) {
  .container-dropdown-menu {
    max-width: inherit;
    width: 1210px;
  }
}
@media (min-width: 1441px) {
  .container-dropdown-menu {
    max-width: inherit;
    width: 1310px;
  }
}
@media (max-width: 1199px) {
  .submenu-col:first-child {
    display: none;
  }
  .submenu-col:not(:first-child) {
    width: 50%;
  }
  .submenu-grid .submenu-col:not(:first-child) {
    width: 100%;
    border-left: 1px solid rgba(42, 177, 112, 0.2);
  }
}
@media (max-width: 991px) {
  .container-dropdown-menu {
    padding-left: 0;
    padding-right: 0;
  }
  .main-menu .dropdown-menu {
    position: relative !important;
    transform: none !important;
    z-index: 1;
  }
  .full-dropdown-menu.show {
    top: auto !important;
  }
  .submenu-col {
    float: none;
    width: 100%;
  }
  .submenu-col:not(:first-child) {
    width: 100%;
  }
  .submenu-row > div:nth-child(1) {
    display: none;
  }
  .sub1menu.hide-mobile {
    position: absolute;
    left: -100%;
  }
  .sub2menu.hide-mobile {
    position: absolute;
    left: -100%;
  }
  .sub2menu .back-menu {
    display: block;
  }
  .sub3menu .back-menu {
    display: block;
  }
  .sub3menu {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 100%;
    background-color: #fff;
    display: block;
    opacity: 0;
    transition: all 200ms ease;
  }
  .sub3menu.open {
    position: relative;
    left: 0;
    opacity: 1;
  }
  .submenu-col {
    border-right: transparent;
  }
  .submenu-grid .submenu-col:not(:first-child) .nav-list > li {
    width: 100%;
  }
  .submenu-grid .sub1menu ul.nav-list {
    border-top: 0;
  }
  .submenu-grid .sub1menu ul.nav-list > li {
    border-right: 0;
    border-bottom: 0;
  }
  .submenu-grid .sub1menu ul.nav-list > li + li {
    border-top: 1px solid rgba(42, 177, 112, 0.2);
  }
  .layout-header .full-dropdown-menu .submenu-col .mCustomScrollbar {
    max-height: 500px;
  }
}
.layout-structure .content {
  padding: 40px 30px;
  font-size: 20px;
  line-height: 1.5;
}
.layout-structure .font20 {
  font-size: 20px;
}
.layout-structure .typo-xs {
  font-size: 16px;
  width: 100%;
}
.layout-structure .card-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}
.layout-structure .card-bottom .contact .text-nowrap {
  margin-right: 10px;
}
.layout-structure .card-bottom .title-name {
  margin-bottom: 7px;
}
.layout-structure .image-cover {
  width: 220px;
}
.layout-structure .image-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.layout-structure .structure-column {
  padding: 40px 40px 40px 60px;
  font-size: 20px;
}
.layout-structure .title {
  font-size: 36px;
  color: var(--color-secondary);
  margin: 50px 0 15px 0;
}
.layout-structure .title:first-child {
  margin-top: 20px;
}
.layout-structure .item {
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.1));
  padding: 10px 20px;
  margin-bottom: 20px;
  color: var(--color-black);
}
.layout-structure .item a {
  text-decoration: none;
  color: var(--color-black);
}
.layout-structure .item a:hover {
  color: var(--color-primary);
}
.layout-structure .item .col-9 {
  padding: 0;
}
.layout-structure .opacity img {
  opacity: 0.1;
}
.layout-structure .item-wrapper {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.25em), calc(100% - 2.25em) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.25em), calc(100% - 2.25em) 100%, 0 100%);
  background-color: var(--color-light);
  border: 1px solid #ebebeb;
  line-height: 1.5;
}

@media screen and (max-width: 1440px) {
  .layout-structure .title {
    font-size: 32px;
  }
  .layout-structure .image-cover {
    width: 180px;
  }
}
@media screen and (max-width: 1200px) {
  .layout-structure .item-wrapper .card-bottom .title-name {
    font-size: var(--typo-md);
  }
  .layout-structure .item-wrapper .card-bottom .font20 {
    font-size: var(--typo-xs);
  }
  .layout-structure .item-wrapper .card-bottom .contact {
    font-size: var(--typo-xs);
  }
  .layout-structure .image-cover {
    width: 160px;
  }
}
@media screen and (max-width: 768px) {
  .layout-structure .item-wrapper .card-bottom .title-name {
    font-size: var(--typo-md);
  }
  .layout-structure .item-wrapper .card-bottom .font20 {
    font-size: var(--typo-xs);
  }
  .layout-structure .item-wrapper .card-bottom .contact {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .layout-structure .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 3rem;
    margin: 0;
  }
  .layout-structure .title {
    margin: 20px 0;
    font-size: var(--typo-lg);
  }
  .layout-structure .item-wrapper {
    display: table;
    padding: 20px 20px 40px 20px;
    width: 100%;
  }
  .layout-structure .item-wrapper .card-bottom {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .layout-structure .item-wrapper .card-bottom .title-name {
    font-size: var(--typo-md);
  }
  .layout-structure .item-wrapper .card-bottom .font20 {
    font-size: var(--typo-xs);
    margin-bottom: 20px;
  }
  .layout-structure .item-wrapper .card-bottom .contact {
    font-size: 16px;
  }
  .layout-structure .item-wrapper .card-top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  .layout-structure .item-wrapper .image-cover {
    width: 100%;
  }
  .layout-structure .bottom-content {
    text-align: center;
  }
  .layout-structure .text-back {
    bottom: 0;
  }
  .layout-structure .title {
    text-align: center;
  }
}
.layout-experts .content {
  padding: 40px 30px;
  font-size: 20px;
  line-height: 1.5;
}
.layout-experts .font20 {
  font-size: 18px;
}
.layout-experts .typo-xs {
  font-size: 16px;
  width: 100%;
}
.layout-experts .card-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}
.layout-experts .card-bottom .title-name {
  margin-bottom: 7px;
}
.layout-experts .card-bottom .contact .text-nowrap {
  margin-right: 10px;
}
.layout-experts .image-cover {
  width: 220px;
}
.layout-experts .image-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.layout-experts .structure-column {
  padding: 40px 40px 40px 60px;
  font-size: 20px;
}
.layout-experts .title {
  font-size: 36px;
  color: var(--color-secondary);
  margin-bottom: 15px;
}
.layout-experts .title:first-child {
  margin-top: 20px;
}
.layout-experts .item {
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.1));
  padding: 10px 20px;
  margin-bottom: 20px;
  color: var(--color-black);
}
.layout-experts .item a {
  text-decoration: none;
  color: var(--color-black);
}
.layout-experts .item a:hover {
  color: var(--color-primary);
}
.layout-experts .item .col-9 {
  padding: 0;
}
.layout-experts .opacity img {
  opacity: 0.1;
}
.layout-experts .item-wrapper {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.25em), calc(100% - 2.25em) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.25em), calc(100% - 2.25em) 100%, 0 100%);
  background-color: var(--color-light);
  border: 1px solid #ebebeb;
  line-height: 1.5;
}

@media screen and (max-width: 1200px) {
  .layout-experts .image-cover {
    width: 180px;
  }
  .layout-experts .item-wrapper .card-bottom .title-name {
    font-size: var(--typo-md);
  }
  .layout-experts .item-wrapper .card-bottom .font20 {
    font-size: var(--typo-xs);
  }
  .layout-experts .item-wrapper .card-bottom .contact {
    font-size: var(--typo-xs);
  }
}
@media screen and (max-width: 768px) {
  .layout-experts .item-wrapper .card-bottom .title-name {
    font-size: var(--typo-md);
  }
  .layout-experts .item-wrapper .card-bottom .font20 {
    font-size: 16px;
  }
  .layout-experts .item-wrapper .card-bottom .contact {
    font-size: var(--typo-xs);
  }
}
@media (max-width: 576px) {
  .layout-experts .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 3rem;
    margin: 0;
  }
  .layout-experts .title {
    font-size: var(--typo-lg);
    margin: 20px 0 10px 0;
  }
  .layout-experts .item-wrapper {
    display: table;
    padding: 20px 20px 40px 20px;
    width: 100%;
  }
  .layout-experts .item-wrapper .card-bottom {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .layout-experts .item-wrapper .card-bottom .title-name {
    font-size: var(--typo-md);
  }
  .layout-experts .item-wrapper .card-bottom .font20 {
    font-size: var(--typo-xs);
    margin-bottom: 20px;
  }
  .layout-experts .item-wrapper .card-bottom .contact {
    font-size: var(--typo-xs);
  }
  .layout-experts .item-wrapper .card-top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  .layout-experts .item-wrapper .image-cover {
    width: 100%;
  }
  .layout-experts .bottom-content {
    text-align: center;
  }
  .layout-experts .text-back {
    bottom: 0;
  }
  .layout-experts .title {
    text-align: center;
  }
}
.our-history-info {
  margin-bottom: 60px;
}
.our-history-info .thumbnails {
  width: 670px;
}
.our-history-info .content {
  display: inline-grid;
  gap: 20px;
  text-align: right;
  width: 0px;
  margin-left: -215px;
  padding-bottom: 70px;
  line-height: 1.3;
}
.our-history-info .content .title {
  font-size: 70px;
  color: var(--color-secondary);
}
.our-history-info .content .subtitle {
  font-size: 50px;
  font-weight: var(--fw-black);
  color: var(--color-primary);
}
.our-history-info .content .desc {
  font-size: var(--typo-md);
  line-height: 1.4em;
  width: -moz-max-content;
  width: max-content;
}

.history-timeline {
  position: relative;
}
.history-timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 100%;
  border-radius: 5px;
  background-color: #29b16f;
  opacity: 0.3;
}
.history-timeline > .row {
  align-items: end;
  margin: 0 -50px;
  margin-bottom: 160px;
}
.history-timeline > .row:last-child {
  margin-bottom: 0;
}
.history-timeline > .row > div {
  padding: 0 50px;
}
.history-timeline > .row .timeline-dot::before {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  outline: 6px solid var(--color-primary);
  background-color: var(--color-light);
}
.history-timeline .h-bigger {
  font-size: 120px;
  font-weight: var(--fw-black);
  line-height: normal;
  color: var(--color-primary);
}
.history-timeline .timeline-list li {
  font-size: var(--typo-md);
  color: var(--color-primary);
}
.history-timeline .timeline-list li:not(:last-child) {
  margin-bottom: 15px;
}
.history-timeline .timeline-list li p {
  color: var(--color-default);
  line-height: 1.4em;
}
.history-timeline .thumbnails {
  margin-top: 30px;
}
.history-timeline .thumbnails img {
  width: 100%;
}

.each-year .swiper {
  padding-bottom: 50px;
}
.each-year .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
}
.each-year .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
  width: 16px;
  height: 16px;
  border-radius: 20px;
}
.each-year .nav-link {
  font-size: var(--typo-sm);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  text-align: center;
  transition: all 0.4s ease-in-out;
}
.each-year .nav-link:hover, .each-year .nav-link.active {
  background: linear-gradient(to left, #2ab170 0%, #01377d 50%, #2ab170 100%);
  background-size: 200%;
  color: var(--color-light);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 1em 100%, 0 calc(100% - 1em));
          clip-path: polygon(0 0, 100% 0, 100% 100%, 1em 100%, 0 calc(100% - 1em));
}
.each-year .nav-link:hover::before, .each-year .nav-link.active::before {
  background-color: transparent;
}
.each-year .nav-link::before {
  opacity: 1;
  visibility: visible;
}
.each-year .editor-content {
  margin-top: 80px;
}

.document-download-list {
  width: 100%;
  margin-bottom: 60px;
}
.document-download-list.-layout-grid {
  display: table;
  margin: 0 -20px;
  margin-top: -20px;
}
.document-download-list.-layout-grid .item {
  float: left;
  width: 33.3333333333%;
  padding: 10px 20px;
}
.document-download-list.-layout-grid .item-wrapper {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.25em), calc(100% - 2.25em) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.25em), calc(100% - 2.25em) 100%, 0 100%);
}
.document-download-list.-layout-grid .item-wrapper::before {
  display: none;
}
.document-download-list.-layout-grid .item-wrapper:hover {
  background: linear-gradient(#2ab170 30%, #01377d 100%);
}
.document-download-list.-layout-grid .thumbnail {
  width: 100%;
}
.document-download-list.-layout-grid .thumbnail .cover {
  padding-top: 300px;
}
.document-download-list.-layout-grid .head {
  width: auto;
}
.document-download-list.-layout-grid .content {
  padding: 40px 30px;
}
.document-download-list.-layout-grid .box {
  margin-top: 40px;
}
.document-download-list.-layout-grid .box .item-list li {
  width: 100%;
}
.document-download-list.-layout-grid .box .item-list li + li {
  padding: 0;
  margin-left: 0;
  margin-top: 10px;
  border: none;
}
.document-download-list.-layout-grid .action {
  margin-top: 30px;
}
.document-download-list.-layout-grid .action .-read-more {
  margin-right: 40px;
}
.document-download-list.-layout-grid .action .-web-link {
  margin-top: 50px;
}
.document-download-list.-layout-grid .action .-web-link:hover {
  text-decoration: underline;
}
.document-download-list .item {
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.1));
}
.document-download-list .item:not(:last-child) {
  margin-bottom: 20px;
}
.document-download-list .item-wrapper {
  position: relative;
  display: block;
  background-color: var(--color-light);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 2.25em 100%, 0 calc(100% - 2em));
          clip-path: polygon(0 0, 100% 0, 100% 100%, 2.25em 100%, 0 calc(100% - 2em));
  transition: all 0.4s ease-in-out;
}
.document-download-list .item-wrapper::before {
  content: "";
  position: absolute;
  background: url(../img/static/obj-download.webp) no-repeat bottom right;
  width: 150px;
  height: 150px;
  background-size: contain;
  bottom: 0;
  right: 0;
}
.document-download-list .item-wrapper:hover {
  background: linear-gradient(to left, #01377d 0%, #2ab170 100%);
}
.document-download-list .item-wrapper:hover .head * {
  color: var(--color-light);
  fill: var(--color-light);
}
.document-download-list .item-wrapper:hover .box * {
  color: var(--color-light);
  fill: var(--color-light);
}
.document-download-list .thumbnail {
  width: 200px;
}
.document-download-list .thumbnail .cover {
  padding-top: 100%;
}
.document-download-list .head {
  margin-bottom: 20px;
  width: 700px;
}
.document-download-list .head .title {
  font-size: var(--typo-md);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 1.3em;
  -webkit-line-clamp: 1;
  min-height: 1.3em;
  margin-bottom: 10px;
}
.document-download-list .head .date {
  color: var(--color-dark);
  font-weight: var(--fw-bold);
}
.document-download-list .content {
  padding: 0 30px;
}
.document-download-list .box .item-list li {
  width: -moz-max-content;
  width: max-content;
}
.document-download-list .box .item-list li + li {
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid var(--color-border);
}
.document-download-list .box .icon {
  margin-right: 10px;
}
.document-download-list .box .txt {
  font-size: 20px;
  color: var(--color-dark);
}
.document-download-list .box .type {
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--color-default);
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
}
.document-download-list .box.-download svg * path {
  fill: #2ab170;
}
.document-download-list .action .link {
  color: var(--color-primary);
  display: block;
}
.document-download-list .action .link:hover {
  text-decoration: underline;
}

.layout-view .btn-group {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.layout-view .btn-group > button {
  outline: none;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid var(--color-border);
  transition: all 300ms ease-in-out;
}
.layout-view .btn-group > button:first-child {
  margin-right: 10px;
}
.layout-view.layout-list .btn-group button:last-child {
  border-color: transparent;
  background-color: var(--color-primary);
}
.layout-view.layout-list .btn-group button:last-child span * {
  fill: var(--color-light);
}
.layout-view.layout-grid .btn-group button:first-child {
  border-color: transparent;
  background-color: var(--color-primary);
}
.layout-view.layout-grid .btn-group button:first-child span * {
  fill: var(--color-light);
}

@media (max-width: 1440px) {
  .document-download-list.-layout-grid .content {
    padding: 30px 25px;
  }
  .document-download-list .head .title {
    font-size: 22px;
  }
  .document-download-list .head .date {
    font-size: 18px;
  }
  .document-download-list .box .txt {
    font-size: 18px;
  }
  .document-download-list .action .link {
    font-size: 18px;
  }
  .document-download-list.-layout-grid .box {
    margin-top: 30px;
  }
  .document-download-list.-layout-list .action {
    margin-top: 20px;
  }
  .our-history-info .thumbnails {
    width: 560px;
  }
  .our-history-info .content {
    gap: 10px;
  }
  .our-history-info .content .title {
    font-size: 60px;
  }
  .our-history-info .content .subtitle {
    font-size: 40px;
  }
  .history-timeline .h-bigger {
    font-size: 80px;
  }
  .history-timeline .timeline-list li {
    font-size: var(--typo-sm);
  }
  .history-timeline .thumbnails {
    margin-top: 10px;
  }
}
@media (max-width: 1199px) {
  .layout-view .btn-group > button {
    width: 60px;
    height: 60px;
  }
  .layout-view .btn-group > button svg {
    width: 25px;
  }
  .document-download-list.-layout-grid .item {
    width: 50%;
  }
  .document-download-list .item {
    padding: 10px;
  }
  .document-download-list .item:not(:last-child) {
    margin-bottom: 0;
  }
  .document-download-list .thumbnail {
    width: 250px;
  }
  .document-download-list .head {
    width: auto;
  }
  .document-download-list .box .item-list li {
    width: 100%;
  }
  .document-download-list .box .item-list li + li {
    padding-left: 0;
    margin-left: 0;
    margin-top: 10px;
    border: none;
  }
  .our-history-info {
    margin: 0;
  }
  .our-history-info .thumbnails {
    width: 400px;
  }
  .our-history-info .content {
    margin-left: auto;
    text-align: start;
  }
  .our-history-info .content .title {
    font-size: 50px;
  }
  .our-history-info .content .subtitle {
    font-size: 30px;
  }
  .history-timeline .h-bigger {
    font-size: 50px;
  }
  .each-year .tab-content .editor-content {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .layout-view .btn-group > button {
    width: 50px;
    height: 50px;
  }
  .document-download-list .content {
    padding: 0 20px;
  }
  .document-download-list .head .title {
    font-size: 20px;
  }
  .document-download-list .head .date {
    font-size: 16px;
  }
  .document-download-list .box .txt {
    font-size: 16px;
  }
  .document-download-list .action .link {
    font-size: 16px;
  }
  .document-download-list .action .link svg {
    width: 18px;
  }
  .document-download-list.-layout-grid .box {
    margin-top: 20px;
  }
  .document-download-list.-layout-grid {
    margin: 0 -7.5px;
    margin-top: -7.5px;
  }
  .document-download-list.-layout-grid .item {
    padding: 7.5px;
  }
  .document-download-list.-layout-grid .content {
    padding: 25px 20px;
  }
  .document-download-list.-layout-grid .action {
    margin-top: 25px;
  }
  .history-timeline .timeline-dot::before {
    content: "";
    display: none;
  }
  .history-timeline {
    position: relative;
  }
  .history-timeline::before {
    content: "";
    display: none;
  }
  .our-history-info {
    margin: 0;
  }
  .our-history-info .thumbnails {
    width: 400px;
  }
  .our-history-info .content {
    margin-left: auto;
    text-align: start;
    display: flex;
    width: 100%;
    flex-direction: column;
    padding-bottom: 40px;
  }
  .our-history-info .content .title {
    font-size: 40px;
  }
  .our-history-info .content .subtitle {
    font-size: 25px;
  }
  .our-history-info .content .desc {
    width: auto;
  }
  .our-history-info .content .desc br {
    display: none;
  }
  .history-timeline .timeline-list {
    padding-left: 20px;
  }
  .history-timeline .thumbnails {
    margin: 0 0 20px 0;
  }
  .history-timeline > .row > div {
    padding: 0;
  }
  .history-timeline .row {
    margin: 0;
  }
  .history-timeline .timeline-list p {
    font-size: 24px;
  }
  .history-timeline .h-bigger {
    font-size: 40px;
    text-align: center;
    margin: 40px 0 20px 0;
  }
  .each-year .swiper {
    padding-bottom: 10px;
  }
  .each-year .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
  }
  .each-year .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    width: 16px;
    height: 16px;
    border-radius: 20px;
  }
  .detail-body .each-year .swiper:not(.gallery-slide .swiper) .swiper-pagination {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .layout-view .btn-group {
    margin-top: 10px;
  }
  .layout-view .btn-group > button {
    width: 40px;
    height: 40px;
  }
  .layout-view .btn-group > button svg {
    width: 18px;
  }
  .history-timeline .timeline-list p {
    font-size: 20px;
  }
  .our-history-info .content .title {
    font-size: 40px;
  }
  .our-history-info .content .subtitle {
    font-size: 30px;
  }
  .our-history-info .content .desc {
    font-size: 24px;
    text-wrap: wrap;
    max-width: 600px;
  }
  .history-timeline .h-bigger {
    font-size: 40px;
    text-align: center;
    margin: 40px 0 15px 0;
  }
  .each-year .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
  }
  .each-year .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    width: 14px;
    height: 14px;
    border-radius: 20px;
  }
}
@media (max-width: 575px) {
  .document-download-list.-layout-grid .item {
    width: 100%;
  }
  .history-timeline .h-bigger {
    font-size: 32px;
    text-align: center;
  }
  .history-timeline .timeline-list p {
    font-size: 16px;
  }
  .our-history-info .content {
    line-height: 1;
    padding-bottom: 40px;
  }
  .our-history-info .content .title {
    font-size: var(--typo-md);
  }
  .our-history-info .content .subtitle {
    font-size: var(--typo-md);
  }
  .each-year .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
  .each-year .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    width: 12px;
    height: 12px;
    border-radius: 20px;
  }
  .our-history-info .thumbnails {
    width: 100%;
  }
  .our-history-info .content .desc {
    font-size: 18px;
  }
  .history-timeline .h-bigger {
    font-size: 24px;
    text-align: center;
    margin: 20px 0 10px 0;
  }
  .history-timeline .timeline-list li p br {
    display: none;
  }
  .detail-body .each-year .swiper:not(.gallery-slide .swiper) .swiper-pagination {
    margin-top: 10px;
  }
}
.policy-website {
  line-height: 1.5;
  font-weight: var(--fw-regular);
}
.policy-website .title {
  color: var(--color-primary);
  font-size: var(--typo-xl);
  font-weight: var(--fw-bold);
}
.policy-website .policy-content {
  margin: 0;
}
.policy-website .policy-content .title {
  color: var(--color-secondary);
  margin: 30px 0 15px 0;
}
.policy-website .policy-content .number {
  color: var(--color-light);
  background-color: #01377d;
  min-width: 40px;
  min-height: 40px;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  display: flex;
  margin-right: 20px;
}
.policy-website .policy-content ul {
  padding: 0;
}
.policy-website .policy-content li {
  list-style: none;
  padding-left: 60px;
  margin-bottom: 20px;
}
.policy-website .policy-content .special-policy {
  padding-left: 40px;
}

@media screen and (max-width: 1199px) {
  .policy-website {
    font-size: var(--typo-sm);
  }
  .policy-website .title {
    font-size: var(--typo-md);
  }
  .policy-website .policy-content {
    margin: 0;
  }
  .policy-website .policy-content li {
    margin-bottom: 20px;
    padding-left: 0;
  }
}
@media screen and (max-width: 991px) {
  .policy-website {
    font-size: var(--typo-sm);
  }
  .policy-website .title {
    font-size: var(--typo-md);
  }
  .policy-website .policy-content .title {
    font-size: var(--typo-md);
  }
  .policy-website .policy-content {
    margin: 0;
  }
  .policy-website .policy-content li {
    margin-bottom: 20px;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .policy-website {
    font-size: var(--typo-sm);
  }
  .policy-website .title {
    font-size: var(--typo-md);
  }
  .policy-website .policy-content {
    margin: 0;
  }
  .policy-website .policy-content li {
    margin-bottom: 20px;
    padding-left: 0;
  }
}
@media screen and (max-width: 575px) {
  .policy-website {
    font-size: var(--typo-xs);
  }
  .policy-website .title {
    font-size: var(--typo-md);
  }
  .policy-website .headline {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
}
.policy-privacy {
  line-height: 1.5;
  font-weight: var(--fw-regular);
}
.policy-privacy .title {
  color: var(--color-primary);
  font-size: var(--typo-xl);
  font-weight: var(--fw-bold);
}
.policy-privacy .policy-content .margin-policy li {
  margin-bottom: 10px;
}
.policy-privacy .policy-content .title {
  color: var(--color-secondary);
  margin: 30px 0 15px 0;
}
.policy-privacy .policy-content .number {
  color: var(--color-light);
  background-color: #01377d;
  min-width: 40px;
  min-height: 40px;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  display: flex;
  margin-right: 20px;
}
.policy-privacy .policy-content ul {
  padding: 0;
}
.policy-privacy .policy-content li {
  list-style: none;
  padding-left: 60px;
  margin-bottom: 20px;
  text-decoration: none;
}
.policy-privacy .policy-content .special-policy {
  padding-left: 40px;
}

@media screen and (max-width: 991px) {
  .policy-privacy {
    font-size: var(--typo-xs);
  }
  .policy-privacy .policy-content .title {
    font-size: var(--typo-md);
    margin: 30px 0 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .policy-privacy {
    font-size: var(--typo-xs);
  }
  .policy-privacy .policy-content li {
    margin-bottom: 20px;
    padding-left: 0;
  }
}
@media screen and (max-width: 575px) {
  .policy-privacy {
    font-size: var(--typo-xs);
  }
  .policy-privacy .policy-content {
    margin-top: 20px;
  }
  .policy-privacy .policy-content .title {
    font-size: var(--typo-md);
    margin: 20px 0 5px 0;
  }
  .policy-privacy .headline {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
}
.organize-layout .organize-content {
  text-align: center;
}

.layout-dcio .top-dcio {
  position: relative;
  padding: 100px 0;
}
.layout-dcio .top-dcio .logo-person {
  position: relative;
  overflow: hidden;
  top: 0;
  height: 70%;
}
.layout-dcio .top-dcio .person-dcio {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}
.layout-dcio .top-dcio .bg-cio {
  position: absolute;
  background-image: url("../img/background/bg-cio.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.layout-dcio .top-dcio .bg-text {
  position: absolute;
  background: linear-gradient(to top, #01377D, #2AB170);
  height: 180px;
  width: 100vw;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 1;
}
.layout-dcio .top-dcio .bg-text-img {
  position: absolute;
  opacity: 0.2;
  width: 100%;
  height: 180px;
  background-image: url("../img/background/bg-text.webp");
  background-size: cover;
  background-position: center;
}
.layout-dcio .top-dcio .text-name {
  position: relative;
  color: white;
  width: 100%;
  height: 100%;
  top: 0;
}
.layout-dcio .top-dcio .position-name {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
.layout-dcio .top-dcio .name {
  font-weight: bold;
  font-size: 40px;
  margin-bottom: 15px;
}
.layout-dcio .top-dcio .position-work {
  font-size: var(--typo-md);
}
.layout-dcio .contact-dcio {
  padding: 50px 0;
}
.layout-dcio .contact-dcio .title-contact h3 {
  color: var(--color-secondary);
  font-size: 36px;
  font-weight: bold;
}
.layout-dcio .contact-dcio .d-contact p {
  font-size: var(--typo-md);
}

.layout-mission .title-content {
  margin: 50px 0;
}
.layout-mission .title-content h5 {
  font-size: var(--typo-lg);
  color: var(--color-secondary);
  font-weight: bold;
}
.layout-mission .text-block {
  display: flex;
  align-items: start;
  margin-bottom: 20px;
  font-size: var(--typo-lg);
}
.layout-mission .number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--typo-default);
  color: var(--color-white);
  background: var(--color-secondary);
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  margin-right: 20px;
}
.layout-mission .text p {
  color: var(--color-black);
  font-size: var(--typo-md);
  margin: 0;
  line-height: 1.5em;
}

.layout-vision .title-content {
  text-align: center;
}
.layout-vision .title-content h2 {
  font-weight: bold;
  font-size: 48px;
}
.layout-vision .content {
  position: relative;
  padding: 100px 0;
}
.layout-vision .text-content {
  text-align: center;
  color: var(--color-secondary);
}
.layout-vision .text-content h2 {
  font-weight: bold;
  font-size: 48px;
}
.layout-vision .text-content p {
  font-size: 40px;
  line-height: 1.5em;
}
.layout-vision .image-content {
  text-align: center;
  margin-left: 150px;
}
.layout-vision .bg-city {
  position: absolute;
  background-image: url("../img/background/bg-city.webp");
  background-size: cover;
  background-position: center;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}

.layout-logo .editor-content {
  margin-top: 0;
}
.layout-logo .background-logo {
  position: relative;
  padding: 400px 0;
}
.layout-logo .logo {
  text-align: center;
}
.layout-logo .center {
  margin-top: 100px;
}
.layout-logo .content {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.layout-logo .title-text {
  text-align: center;
  color: var(--color-secondary);
  padding: 0 10px;
}
.layout-logo .title-text h2 {
  font-size: 48px;
  margin-top: 10px;
  font-weight: bold;
}
.layout-logo .background-sky {
  position: absolute;
  background-image: url("../img/background/bg-sky.webp");
  background-size: cover;
  background-position: center;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}

.layout-swiper .whead .title {
  color: var(--color-secondary);
  font-size: 36px;
  padding-top: 50px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--color-primary);
  font-size: 36px;
  border-bottom: 2px solid #29B171;
}
.layout-swiper .document-download-list {
  margin-top: 50px;
}
.layout-swiper .document-download-list .item {
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.1));
  color: var(--color-black);
}
.layout-swiper .desc {
  color: var(--color-black);
  font-weight: bold;
  font-size: var(--typo-sm);
  margin-bottom: 25px;
  line-height: 1.5em;
}
.layout-swiper .type-file {
  color: var(--color-black);
  font-size: 16px;
}
.layout-swiper .type-file .item-list li + li {
  padding-left: 10px;
  margin-left: 10px;
  border-left: 1px solid rgba(67, 67, 67, 0.4);
}
.layout-swiper .swiper-wrapper {
  margin-bottom: 80px;
}
.layout-swiper .swiper-slide {
  padding: 25px 0;
  height: 180px;
}
.layout-swiper .swiper-pagination-bullet {
  opacity: 1;
  background: var(--color-border);
  height: 20px;
  width: 20px;
}
.layout-swiper .swiper-pagination-bullet-active {
  background: #2AB170;
  height: 20px;
  width: 20px;
}

@media (max-width: 1440px) {
  .layout-dcio .top-dcio .person-dcio img {
    width: 300px;
  }
  .layout-dcio .top-dcio .name {
    font-size: 36px;
  }
  .layout-swiper .type-file .item-list li {
    width: 100%;
  }
  .layout-swiper .type-file .item-list li + li {
    margin-left: 0;
    margin-top: 10px;
    padding: 0;
    border: none;
  }
  .layout-vision .text-content h2 {
    font-size: 42px;
  }
  .layout-vision .text-content p {
    font-size: 34px;
  }
  .layout-logo .logo {
    width: 300px;
    margin: 0 auto;
  }
  .layout-logo .title-text h2 {
    font-size: 40px;
  }
}
@media (max-width: 1199px) {
  .layout-dcio .top-dcio {
    padding: 30px 0;
  }
  .layout-dcio .top-dcio .bg-text {
    height: 150px;
  }
  .layout-dcio .top-dcio .name {
    font-size: 34px;
  }
  .layout-dcio .contact-dcio .title-contact h3 {
    font-size: var(--typo-md);
  }
  .layout-dcio .contact-dcio .d-contact p {
    font-size: var(--typo-sm);
  }
  .layout-mission .text p {
    font-size: var(--typo-sm);
  }
  .layout-vision .content {
    padding: 60px 0;
  }
  .layout-vision .title-content img {
    width: 40px;
  }
  .layout-vision .text-content h2 {
    font-size: var(--typo-xl);
  }
  .layout-vision .text-content p {
    font-size: var(--typo-lg);
  }
  .layout-vision .text-content img {
    width: 40px;
  }
  .layout-vision .title-content h2 {
    font-size: var(--typo-xl);
  }
  .background-logo .title-text h2 {
    font-size: 36px;
  }
  .layout-swiper .whead .title {
    font-size: 32px;
  }
  .layout-vision .image-content {
    margin: 0 auto;
    max-width: 70%;
    position: relative;
    right: -40px;
  }
  .layout-logo .background-logo {
    padding: 250px 0;
  }
  .layout-logo .center {
    margin-top: 50px;
  }
  .layout-logo .logo {
    width: 250px;
  }
  .layout-logo .title-text h2 {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  .layout-vision .image-content {
    margin-left: 100px;
  }
  .background-logo .background-logo {
    padding: 300px 0;
  }
  .layout-logo .logo img {
    width: 320px;
  }
  .layout-logo .title-text h2 {
    font-size: 32px;
  }
  .layout-logo .center {
    margin-top: 150px;
  }
  .layout-swiper .desc {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .layout-logo .background-logo {
    padding: 220px 0;
  }
  .layout-logo .center {
    margin-top: 90px;
  }
  .layout-logo .logo {
    width: 200px;
  }
  .layout-logo .title-text h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .layout-dcio .top-dcio .person-dcio {
    margin-bottom: 0;
  }
  .layout-dcio .top-dcio .name {
    font-size: var(--typo-lg);
  }
  .layout-dcio .top-dcio .position-work {
    font-size: var(--typo-default);
  }
  .layout-dcio .top-dcio .bg-text {
    height: 110px;
  }
  .layout-dcio .top-dcio .bg-text-img {
    height: 150px;
  }
  .layout-mission .title-content h5 {
    font-size: var(--typo-md);
  }
  .layout-vision .image-content {
    margin-left: 75px;
  }
  .layout-logo .logo img {
    width: 300px;
  }
  .layout-swiper .swiper-wrapper {
    margin-bottom: 20px;
  }
  .layout-swiper .desc {
    margin-bottom: 10px;
    font-size: var(--typo-default);
  }
  .layout-swiper .type-file .item-list li {
    width: auto;
  }
  .layout-swiper .type-file .item-list li + li {
    padding-left: 10px;
    margin-left: 10px;
    margin-top: 0;
    border-left: 1px solid rgba(67, 67, 67, 0.4);
  }
  .layout-logo .background-logo {
    padding: 150px 0;
  }
  .layout-logo .center {
    margin-top: 10px;
  }
  .layout-logo .logo {
    width: 180px;
  }
  .layout-logo .title-text h2 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .layout-dcio .top-dcio .name {
    font-size: var(--typo-md);
    margin-bottom: 0px;
  }
  .layout-dcio .top-dcio .position-work {
    font-size: 16px;
  }
  .layout-dcio .contact-dcio .title-contact h3 {
    font-size: var(--typo-sm);
  }
  .layout-dcio .contact-dcio .d-contact p {
    font-size: 16px;
  }
  .layout-mission .title-content {
    margin: 10px 0;
  }
  .layout-mission .text {
    width: 100%;
  }
  .layout-mission .text p {
    font-size: 16px;
    line-height: 1.5em;
  }
  .layout-mission .number {
    font-size: 16px;
    margin: 20px 0;
  }
  .layout-mission .text-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .layout-vision .text-content h2 {
    font-size: var(--typo-md);
  }
  .layout-vision .text-content p {
    font-size: var(--typo-sm);
  }
  .layout-vision .text-content img {
    width: 30px;
  }
  .layout-vision .title-content img {
    width: 30px;
  }
  .layout-vision .image-content {
    display: none;
  }
  .layout-logo .logo img {
    width: 250px;
  }
  .layout-vision .title-content h2 {
    font-size: var(--typo-lg);
  }
  .layout-swiper .whead .title {
    font-size: 24px;
  }
  .layout-swiper .desc {
    font-size: 18px;
  }
  .layout-swiper .type-file .item-list li {
    width: 100%;
  }
  .layout-swiper .type-file .item-list li + li {
    margin-left: 0;
    margin-top: 10px;
    padding: 0;
    border: none;
  }
  .layout-swiper .swiper-wrapper {
    margin-bottom: 80px;
  }
}
.organizational-chart {
  position: relative;
}
.organizational-chart .parallelogram-container {
  position: relative;
  height: 300px;
}
.organizational-chart .parallelogram {
  height: 300px;
  -webkit-clip-path: polygon(0% 1%, 75% 1%, 100% 100%, 25% 100%);
          clip-path: polygon(0% 1%, 75% 1%, 100% 100%, 25% 100%);
  background: repeating-linear-gradient(rgb(208, 166, 23) 0px, rgb(208, 166, 23) 8px, white 8px, white 16px);
  z-index: 1;
}
.organizational-chart .parallelogram-vertical-borders {
  height: 300px;
  -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 100%, 25% 100%);
          clip-path: polygon(0% 0%, 75% 0%, 100% 100%, 25% 100%);
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='rgb(208, 166, 23)' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}
.organizational-chart .small-parallelogram {
  position: absolute;
  background: white;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0.3% 1%, 74.5% 1%, 99.5% 99%, 25.2% 99%);
          clip-path: polygon(0.3% 1%, 74.5% 1%, 99.5% 99%, 25.2% 99%);
  z-index: 3;
}
.organizational-chart.line-h-100::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(100% - 125px);
  background: #C6C6C6;
}
.organizational-chart .chart-section {
  display: table;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  overflow: hidden;
}
.organizational-chart .chart-section.needs-line-chart ul {
  display: table;
}
.organizational-chart .chart-section.needs-line-chart ul::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: #C6C6C6;
}
.organizational-chart .chart-section.needs-line-chart ul + ul {
  margin-top: 40px;
}
.organizational-chart .chart-section.needs-line-chart ul .chart-hidden {
  margin-left: -1px;
  background-color: var(--color-light);
}
.organizational-chart .chart-section.needs-line-chart ul .chart-hidden .chart-box {
  opacity: 0;
}
.organizational-chart .chart-section.needs-multi-line-chart ul {
  display: flex;
  padding-top: 20px;
}
.organizational-chart .chart-section.needs-multi-line-chart ul::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 75%;
  height: 1px;
  background: #C6C6C6;
}
.organizational-chart .chart-section.needs-multi-line-chart ul + ul {
  margin-top: 20px;
}
.organizational-chart .chart-section.needs-multi-line-chart ul:nth-child(4)::before {
  width: 50%;
  margin-right: 37.5%;
}
.organizational-chart .chart-section.needs-multi-line-chart ul:last-child {
  justify-content: center;
}
.organizational-chart .chart-section.needs-multi-line-chart ul:last-child::before {
  width: 25%;
}
.organizational-chart .chart-section.needs-multi-line-chart .dot::before {
  content: "";
  width: 1px;
  height: 15px;
  background-color: #C6C6C6;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.organizational-chart .chart-section.II {
  margin-top: 30px;
}
.organizational-chart .chart-section.III {
  width: 100%;
  margin-top: 60px;
}
.organizational-chart .chart-section.III ul {
  margin: 0 -140px;
}
.organizational-chart .chart-section.III li {
  width: 50%;
  padding: 0 140px;
}
.organizational-chart .chart-section.IV {
  width: 100%;
  margin-top: 60px;
}
.organizational-chart .chart-section.IV ul {
  margin: 0 -10px;
}
.organizational-chart .chart-section.IV li {
  width: 25%;
  padding: 0 10px;
}
.organizational-chart .chart-section.IV .chart-box {
  min-width: 100%;
  width: 100%;
}
.organizational-chart .chart-section .txt {
  font-size: 20px;
  font-weight: bold;
  padding: 20px 0;
}
.organizational-chart .chart-section .txt-main {
  font-size: 30px;
}
.organizational-chart .chart-section .text-secondary-light {
  color: #1B9DD0;
}
.organizational-chart .chart-section ul {
  margin: 0;
  padding: 0;
  position: relative;
}
.organizational-chart .chart-section ul::before, .organizational-chart .chart-section ul::after {
  content: " ";
  display: table;
}
.organizational-chart .chart-section ul::before {
  width: 100%;
}
.organizational-chart .chart-section ul li {
  position: relative;
  list-style: none;
  float: left;
}
.organizational-chart .chart-section .chart-box {
  position: relative;
  min-width: 500px;
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-light);
  border: 1px solid transparent;
  text-decoration: none;
  transition: all 200ms ease;
}
.organizational-chart .chart-section .chart-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
}
.organizational-chart .chart-section .chart-box .dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--color-primary);
  border: 2px solid #EFEFEF;
}
.organizational-chart .chart-section .chart-box .dot.-right {
  right: -7.5px;
}
.organizational-chart .chart-section .chart-box .dot.-left {
  left: -7.5px;
}
.organizational-chart .chart-section .chart-box .dot.-top {
  top: -7.5px;
  transform: translateY(0);
}
.organizational-chart .chart-section .chart-box .dot.dot-secondary {
  background-color: #1B9DD0;
}
.organizational-chart .chart-section .borde-dashed {
  border-style: dashed;
}
.organizational-chart .chart-section .borde-dashed::before {
  margin: -1px;
  height: calc(100% + 2px);
}
.organizational-chart .chart-section .chart-box-secondary {
  border-color: var(--color-secondary);
}
.organizational-chart .chart-section .chart-box-secondary::before {
  background-color: var(--color-secondary);
}
.organizational-chart .chart-section .chart-box-primary {
  border-color: var(--color-primary);
}
.organizational-chart .chart-section .chart-box-primary::before {
  background-color: var(--color-primary);
}
.organizational-chart .chart-section .chart-box-main {
  background: linear-gradient(to left, #01377d 0%, #2ab170 100%);
  border: none;
}
.organizational-chart .chart-section .chart-box-main::before {
  display: none;
}
.organizational-chart .chart-section .chart-box-secondary-light {
  border-color: #1B9DD0;
}
.organizational-chart .chart-section .chart-box-secondary-light::before {
  background-color: #1B9DD0;
}

@media (max-width: 1600px) {
  .organizational-chart .chart-section .txt-main {
    font-size: 26px;
  }
  .organizational-chart .chart-section .chart-box {
    min-width: 475px;
  }
}
@media (max-width: 1199px) {
  .organizational-chart .chart-section .txt-main {
    font-size: 24px;
  }
  .organizational-chart .chart-section .chart-box {
    min-width: 410px;
  }
  .organizational-chart .chart-section.III ul {
    margin: 0 -60px;
  }
  .organizational-chart .chart-section.III li {
    padding: 0 60px;
  }
}
@media (max-width: 991px) {
  .organizational-chart.line-h-100::before {
    height: 100%;
  }
  .organizational-chart br {
    display: none;
  }
  .organizational-chart .chart-section .txt-main {
    font-size: 18px;
  }
  .organizational-chart .chart-section .txt {
    font-size: 16px;
    padding: 15px;
  }
  .organizational-chart .chart-section .chart-box {
    min-width: 100%;
    min-height: 80px;
  }
  .organizational-chart .chart-section.II {
    margin-top: 10px;
  }
  .organizational-chart .chart-section.III {
    width: auto;
    margin-top: 20px;
  }
  .organizational-chart .chart-section.III ul {
    margin: 0;
    width: 100%;
  }
  .organizational-chart .chart-section.III li {
    padding: 0;
    width: 100%;
  }
  .organizational-chart .chart-section.III li + li {
    margin-top: 15px;
  }
  .organizational-chart .chart-section.needs-line-chart ul .chart-hidden {
    display: none;
  }
  .organizational-chart .chart-section.needs-line-chart ul:nth-child(3) {
    display: block;
    margin: 0;
  }
  .organizational-chart .chart-section.needs-line-chart ul li {
    margin-top: 15px;
  }
  .organizational-chart .chart-section.needs-line-chart ul .chart-hidden ~ li {
    margin-top: 15px;
  }
  .organizational-chart .chart-section.needs-line-chart ul + ul {
    margin-top: 0;
  }
  .organizational-chart .chart-section.needs-line-chart ul::before {
    display: none;
  }
  .organizational-chart .chart-section.needs-multi-line-chart ul {
    display: block;
  }
  .organizational-chart .chart-section.needs-multi-line-chart ul + ul {
    padding: 0;
    margin: 0;
  }
  .organizational-chart .chart-section.needs-multi-line-chart ul::before {
    display: none;
  }
  .organizational-chart .chart-section.IV {
    margin: 0;
  }
  .organizational-chart .chart-section.IV ul {
    margin: 0;
  }
  .organizational-chart .chart-section.IV li {
    width: 100%;
    margin-top: 15px;
    padding: 0;
  }
  .organizational-chart .chart-section .chart-box .dot::before {
    display: none;
  }
  .organizational-chart .chart-section {
    width: 100%;
  }
  .organizational-chart .chart-section .chart-box::before {
    width: 6px;
  }
  .organizational-chart .chart-section ul {
    width: 100%;
  }
  .organizational-chart .chart-section ul li {
    width: 100%;
  }
  .organizational-chart .chart-section .chart-box .dot {
    width: 12px;
    height: 12px;
  }
}
.layout-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: var(--color-light);
  z-index: 1001;
  transition: height 400ms ease;
}
.layout-header .top-bar {
  position: relative;
  z-index: 10;
}
.layout-header .top-bar > .container {
  position: relative;
}
.layout-header .top-bar .nav-lang {
  position: absolute;
  top: 15px;
  right: 15px;
  transition: all 400ms ease;
}
.layout-header .top-bar .nav-lang .nav-label {
  font-size: 16px;
  color: #999999;
  margin-right: 15px;
}
.layout-header .navbar {
  padding: 25px 15px;
}
.layout-header .navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}
.layout-header .navbar-brand .brand-logo {
  width: 78px;
  transition: width 200ms ease;
}
.layout-header .navbar-brand .brand-logo img {
  width: 100%;
  height: auto;
}
.layout-header .navbar-brand .brand-txt {
  margin-left: 15px;
}
.layout-header .navbar-brand .brand-txt .title {
  font-size: 20px;
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  padding-top: 4px;
}
.layout-header .navbar-brand .brand-txt .subtitle {
  font-size: 13px;
  color: var(--color-primary);
  line-height: 1.25em;
  margin-top: 5px;
}
.layout-header .main-menu {
  position: relative;
}
.layout-header .main-menu .nav-link {
  color: var(--color-default);
  font-size: 16px;
  padding: 12px 15px;
  transition: all 200ms ease-in-out;
}
.layout-header .main-menu .nav-link.active {
  color: var(--color-light);
  background: linear-gradient(to left, #01377d 0%, #2ab170 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0.75em 100%, 0 calc(100% - 0.75em));
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0.75em 100%, 0 calc(100% - 0.75em));
}
.layout-header .main-menu .dropdown .nav-link.dropdown-toggle {
  padding-right: 30px;
}
.layout-header .main-menu .dropdown .nav-link.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0;
  vertical-align: 0.255em;
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: "liga";
  -moz-osx-font-smoothing: grayscale;
  content: "\e5cf";
  position: absolute;
  top: 50%;
  right: 6px;
  border: none;
  transform: translate(0, -50%);
}
.layout-header .main-menu .dropdown.show .nav-link {
  color: var(--color-light);
  background: linear-gradient(to left, #01377d 0%, #2ab170 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0.75em 100%, 0 calc(100% - 0.75em));
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0.75em 100%, 0 calc(100% - 0.75em));
}
.layout-header .main-menu .dropdown.show .nav-link.dropdown-toggle::after {
  content: "\e5ce";
}
.layout-header .nav-search {
  margin-left: 10px;
}
.layout-header .nav-search svg.feather {
  stroke-width: 3px;
}
.layout-header .nav-search .form-search .btn-link {
  color: var(--color-primary);
  text-align: right;
  line-height: 40px;
  height: 40px;
}
.layout-header .nav-search .form-control {
  width: 0;
  padding: 0;
  border: transparent;
}
.layout-header .nav-search .close-search {
  color: var(--color-default);
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  z-index: 1;
  display: none;
}
.layout-header .nav-search.open {
  position: absolute;
  right: 0;
}
.layout-header .nav-search.open .form-search {
  position: relative;
  border: 1px solid var(--color-border);
  width: 840px;
  overflow: hidden;
  background-color: #fff;
}
.layout-header .nav-search.open .form-search .btn-link {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
  z-index: 1;
}
.layout-header .nav-search.open .form-control {
  width: 100%;
  padding: 0 15px;
  font-size: 20px;
}
.layout-header .nav-search.open .input-group {
  padding-left: 40px;
  padding-right: 40px;
}
.layout-header .nav-search.open .close-search {
  display: block;
}
.layout-header .navbar-toggler {
  padding: 4px;
  position: fixed;
  top: 20px;
  right: 12px;
  z-index: 4;
}
.layout-header .navbar-toggler:not(.collapsed) {
  opacity: 1;
}
.layout-header .navbar-toggler:not(.collapsed) .hamburger .bar:nth-child(1) {
  top: 0;
  opacity: 0;
}
.layout-header .navbar-toggler:not(.collapsed) .hamburger .bar:nth-child(2) {
  top: 0;
  bottom: 0;
  transform: rotate(45deg);
}
.layout-header .navbar-toggler:not(.collapsed) .hamburger .bar:nth-child(3) {
  top: 0;
  bottom: 0;
  transform: rotate(-45deg);
}
.layout-header .navbar-toggler:not(.collapsed) .hamburger .bar:nth-child(4) {
  bottom: 0;
  opacity: 0;
}
.layout-header.tiny {
  height: 100px;
}
.layout-header.tiny .nav-lang a,
.layout-header.tiny .nav-lang button {
  height: 26px;
  line-height: 26px;
  width: 26px;
}
.layout-header.tiny .top-bar .nav-lang {
  transform: translateY(-100px);
}
.layout-header.tiny .navbar {
  padding-top: 19px;
  padding-bottom: 19px;
}
.layout-header.tiny .navbar > .align-items-lg-end {
  align-items: center !important;
}
.layout-header.tiny .navbar-brand .brand-logo {
  width: 54px;
}
.layout-header.tiny .navbar-brand .brand-txt .title {
  font-size: 14px;
}
.layout-header.tiny .navbar-brand .brand-txt .subtitle {
  font-size: 10px;
}
.layout-header.tiny .full-dropdown-menu {
  top: 100px !important;
}

.layout-header-fullmap .btn {
  font-weight: var(--fw-bold);
}

@media (max-width: 1600px) {
  .layout-header {
    height: 122px;
  }
  .layout-header .navbar {
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .layout-header .navbar-brand .brand-logo {
    width: 68px;
  }
  .layout-header .navbar-brand .brand-txt .title {
    font-size: 18px;
  }
  .layout-header .navbar-brand .brand-txt .subtitle {
    font-size: 12px;
  }
  .layout-header .main-menu .nav-link {
    font-size: 15px;
  }
  .layout-header .top-bar .nav-lang .nav-label {
    font-size: 15px;
  }
  .layout-header .nav-lang a,
  .layout-header .nav-lang button {
    width: 28px;
    height: 28px;
    line-height: 28px;
  }
  .layout-header.tiny .navbar-brand .brand-logo {
    width: 50px;
  }
}
@media (max-width: 1440px) {
  .layout-header {
    height: 110px;
  }
  .layout-header .navbar {
    padding-bottom: 20px;
    padding-top: 20px;
  }
  .layout-header .top-bar .nav-lang {
    top: 10px;
  }
  .layout-header .nav-lang a,
  .layout-header .nav-lang button {
    height: 26px;
    width: 26px;
    line-height: 26px;
  }
  .layout-header .navbar-brand .brand-logo {
    width: 58px;
  }
  .layout-header .navbar-brand .brand-txt .title {
    font-size: 17px;
  }
  .layout-header .navbar-brand .brand-txt .subtitle {
    font-size: 11px;
  }
  .layout-header .main-menu .nav-link,
  .layout-header .top-bar .nav-lang .nav-label {
    font-size: 14px;
  }
  .layout-header .form-search .btn-link svg {
    width: 22px;
    height: 22px;
  }
  .layout-header .nav-search.open .form-control {
    font-size: 18px;
  }
  .layout-header.tiny {
    height: 85px;
  }
  .layout-header.tiny .navbar {
    padding-bottom: 15px;
    padding-top: 15px;
  }
  .layout-header.tiny .navbar-brand .brand-logo {
    width: 44px;
  }
  .layout-header.tiny .navbar-brand .brand-txt .title {
    font-size: 12px;
  }
  .layout-header.tiny .navbar-brand .brand-txt .subtitle {
    font-size: 9px;
  }
  .layout-header.tiny .full-dropdown-menu {
    top: 85px !important;
  }
}
@media (max-width: 1199px) {
  .layout-header {
    height: 102px;
  }
  .layout-header .top-bar .nav-lang {
    top: 8px;
  }
  .layout-header .top-bar .nav-lang .nav-label {
    margin-right: 5px;
  }
  .layout-header .nav-lang a,
  .layout-header .nav-lang button {
    height: 24px;
    width: 24px;
    line-height: 24px;
  }
  .layout-header .navbar-brand .brand-logo {
    width: 50px;
  }
  .layout-header .navbar-brand .brand-txt .title {
    font-size: 14px;
  }
  .layout-header .navbar-brand .brand-txt .subtitle {
    font-size: 10px;
  }
  .layout-header .main-menu .nav-link {
    padding: 10px;
  }
  .layout-header .main-menu .nav-link,
  .layout-header .top-bar .nav-lang .nav-label {
    font-size: 13px;
  }
  .layout-header .form-search .btn-link svg {
    height: 20px;
    width: 20px;
  }
  .layout-header .nav-search {
    margin-left: 7px;
  }
}
@media (max-width: 991px) {
  .layout-header .navbar {
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .layout-header .top-bar .nav-lang .nav-label {
    display: none;
  }
  .layout-header .navbar-brand .brand-logo {
    width: 46px;
  }
  .layout-header .navbar-brand .brand-txt .title {
    font-size: 13px;
  }
  .layout-header .navbar-brand .brand-txt .subtitle {
    font-size: 9px;
    margin-top: 3px;
  }
  .layout-header {
    height: 75px;
  }
  .layout-header .navbar-nav .nav-link {
    padding: 15px;
  }
  .layout-header .main-menu .dropdown.show .nav-link {
    -webkit-clip-path: none;
            clip-path: none;
  }
  .layout-header .submenu-col .link {
    padding: 15px;
  }
  .layout-header .main-menu .dropdown .nav-link.dropdown-toggle::after {
    font-size: 26px;
    top: 12px;
    transform: none;
  }
  .layout-header .navbar-nav .nav-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-light);
    background: var(--color-secondary);
  }
  .layout-header .top-bar .nav-lang {
    position: absolute;
    top: 24px;
    right: 55px;
  }
  .layout-header .navbar-collapse {
    margin: 0 -15px;
    background: var(--color-secondary);
    overflow: auto;
    position: absolute !important;
    top: 75px;
    height: calc(100vh - 75px);
    width: 100%;
    display: block;
    transition: all 400ms ease-in-out;
    transform: translateX(100%);
  }
  .layout-header .navbar-collapse.show {
    transform: translateX(0);
  }
  .layout-header .main-menu {
    overflow: hidden;
    padding-top: 52px;
  }
  .layout-header .main-menu .nav-link.active {
    -webkit-clip-path: none;
            clip-path: none;
  }
  .layout-header .full-dropdown-menu {
    top: 0 !important;
    height: 0;
    background: #fff;
  }
  .layout-header .full-dropdown-menu.show {
    height: auto;
  }
  .layout-header .full-dropdown-menu .submenu-col,
  .layout-header .full-dropdown-menu .submenu-col .mCustomScrollbar,
  .layout-header .full-dropdown-menu .submenu-col .mCS_destroyed,
  .layout-header .full-dropdown-menu .submenu-col .scroll-wrapper {
    height: auto;
  }
  .layout-header .full-dropdown-menu .submenu-col.sub1menu {
    display: none;
  }
  .layout-header .full-dropdown-menu.show .submenu-col.sub1menu {
    display: block;
  }
  .layout-header .full-dropdown-menu .submenu-col .link.active {
    color: var(--color-light);
    background: var(--color-primary);
  }
  .layout-header .main-menu .nav-link {
    font-size: 18px;
  }
  .layout-header .nav-search {
    position: absolute;
    top: 0;
    margin: 0;
    width: 100%;
  }
  .layout-header .nav-search .form-control {
    width: 100%;
    padding: 0 15px;
  }
  .layout-header .nav-search .close-search {
    display: none !important;
  }
  .layout-header .nav-search .form-search .btn-link {
    display: block;
  }
  .layout-header .nav-search .form-search {
    background-color: #fff;
    border: 1px solid var(--color-border);
    overflow: hidden;
    position: relative;
    width: 100% !important;
  }
  .layout-header .nav-search .form-search .btn-link {
    left: 12px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  .layout-header .nav-search .form-control {
    padding-left: 40px;
    font-size: 18px;
    height: 50px;
  }
  .layout-header-fullmap .action > .row {
    margin: 0 -7.5px;
  }
  .layout-header-fullmap .action > .row > div {
    padding: 0 7.5px;
  }
  .layout-header-fullmap .btn {
    height: 48px;
    line-height: 48px;
    min-width: 150px;
    font-size: 16px;
  }
  .layout-header .nav-lang {
    padding: 10px 15px 15px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .layout-header .nav-lang .nav-label {
    font-size: 18px;
    color: var(--color-light);
    margin-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .layout-header {
    height: 71px;
  }
  .layout-header .navbar-brand .brand-logo {
    width: 44px;
  }
  .layout-header .navbar-brand .brand-txt .title {
    font-size: 12px;
  }
  .layout-header .navbar-brand .brand-txt .subtitle {
    font-size: 8px;
  }
  .layout-header .navbar-collapse {
    height: calc(100vh - 71px);
    top: 71px;
  }
  .layout-header-fullmap .action {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    height: 80px;
    padding: 10px;
    display: flex;
    align-content: center;
  }
  .layout-header-fullmap .action > .row {
    width: 100%;
    margin: auto;
  }
  .layout-header-fullmap .btn {
    min-width: 100%;
  }
  .layout-header .main-menu .nav-link {
    font-size: 16px;
  }
  .layout-header .nav-lang .nav-label {
    font-size: 16px;
  }
  .layout-header .main-menu .dropdown .nav-link.dropdown-toggle::after {
    font-size: 22px;
  }
}
.layout-footer {
  position: relative;
}
.layout-footer .link {
  color: var(--color-default);
}
.layout-footer .link:hover {
  color: var(--color-secondary);
}
.layout-footer .contact .icon {
  padding-top: 4px;
  margin-right: 15px;
  max-width: 37px;
  width: 100%;
  height: auto;
}
.layout-footer .contact .desc {
  font-size: 18px;
  font-weight: var(--fw-regular);
  line-height: 1.4em;
}
.layout-footer .social ul.item-list > li + li {
  margin-left: 5px;
}
.layout-footer .social .link .icon {
  height: 22px;
  width: 50%;
}
.layout-footer .social .link .rounded-0 {
  background-color: var(--color-gray);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0.6em 100%, 0 calc(100% - 0.6em));
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0.6em 100%, 0 calc(100% - 0.6em));
}
.layout-footer .social .link .icon {
  filter: grayscale(1) brightness(100) invert(1);
}
.layout-footer .social .link.tele .rounded-0 {
  background-color: #0e629d;
}
.layout-footer .social .link.fb .rounded-0 {
  background-color: #092b89;
}
.layout-footer .social .link.tw .rounded-0 {
  background-color: #14171a;
}
.layout-footer .social .link.yt .rounded-0 {
  background-color: #f61c0d;
}
.layout-footer .social .link.line .rounded-0 {
  background-color: #21ce24;
}
.layout-footer .social .link:hover {
  opacity: 0.75;
}
.layout-footer .ipv6 {
  width: 90px;
}
.layout-footer .ipv6 img {
  width: 100%;
  height: auto;
}
.layout-footer .followus .social {
  margin-left: 15px;
}
.layout-footer .policy ul.item-list {
  margin: 0 -10px;
}
.layout-footer .policy ul.item-list > li {
  padding: 0 10px;
}
.layout-footer .policy ul.item-list > li + li {
  border-left: 1px solid var(--color-default);
}
.layout-footer .sitemap {
  color: var(--color-secondary);
}
.layout-footer .sitemap:hover {
  color: var(--color-primary);
}
.layout-footer .copyright {
  margin: 0;
  font-size: 16px;
}
.layout-footer .visitors {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.layout-footer .visitors .box {
  margin-left: 13px;
  border: 1px solid;
  border-radius: var(--rounded);
  line-height: 30px;
  padding: 0 10px;
}
.layout-footer .footer-content {
  position: relative;
  background-color: var(--color-light);
  background-image: url("../img/background/bg-footer.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: luminosity;
}
.layout-footer .footer-top {
  padding: 60px 0;
}
.layout-footer .footer-top .title {
  font-size: 48px;
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  margin: 0;
}
.layout-footer .footer-top .title .link {
  color: var(--color-secondary);
}
.layout-footer .footer-top .subtitle {
  font-size: 36px;
  font-weight: var(--fw-regular);
  color: var(--color-primary);
  margin-bottom: 0;
  margin-top: 10px;
}
.layout-footer .footer-top .subtitle .icon {
  margin-top: -2px;
  margin-right: 10px;
  width: 43px;
  height: auto;
}
.layout-footer .footer-top .col-left {
  text-align: left;
}
.layout-footer .footer-top .col-right {
  text-align: right;
}
.layout-footer .footer-middle {
  border-top: 1px solid #cccccc;
  margin-top: -1px;
  padding: 60px 0;
}
.layout-footer .footer-middle > .row {
  margin: -30px -15px;
}
.layout-footer .footer-middle > .row > div {
  padding: 30px 15px;
}
.layout-footer .footer-bottom {
  border-top: 1px solid #cccccc;
  margin-top: -1px;
  padding: 20px 0;
  font-size: 16px;
}
.layout-footer .footer-bar {
  font-size: var(--typo-xs);
  font-weight: var(--fw-regular);
  color: var(--color-light);
  background: linear-gradient(to right, #01377d 0%, #2ab170 100%);
  padding: 10px 0;
}

.fix-msg .link {
  position: fixed;
  right: 40px;
  bottom: 90px;
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 1em 100%, 0 calc(100% - 1em));
          clip-path: polygon(0 0, 100% 0, 100% 100%, 1em 100%, 0 calc(100% - 1em));
  background: linear-gradient(#006aff 0%, #00b2ff 100%);
  z-index: 10;
}

@media (max-width: 1600px) {
  .layout-footer .footer-top .title {
    font-size: 38px;
  }
  .layout-footer .footer-top .subtitle {
    font-size: 32px;
  }
  .layout-footer .footer-top .subtitle .icon {
    width: 40px;
  }
  .layout-footer .contact .icon {
    max-width: 36px;
    margin-right: 12px;
  }
  .layout-footer .contact .desc {
    font-size: 16px;
  }
  .layout-footer .ipv6 {
    width: 85px;
  }
  .layout-footer .policy {
    font-size: 15px;
  }
  .layout-footer .sitemap {
    font-size: 15px;
  }
  .layout-footer .footer-bar {
    font-size: 15px;
  }
  .layout-footer .copyright {
    font-size: 15px;
  }
  .layout-footer .visitors {
    font-size: 15px;
  }
  .layout-footer .footer-middle .text-follow-us {
    font-size: 18px;
  }
}
@media (max-width: 1540px) {
  .layout-footer .footer-top {
    padding: 50px 0;
  }
  .layout-footer .footer-top .title {
    font-size: 38px;
  }
  .layout-footer .footer-top .subtitle {
    font-size: 28px;
  }
  .layout-footer .footer-top .subtitle .icon {
    width: 36px;
  }
  .layout-footer .footer-middle {
    padding: 50px 0;
  }
  .fix-msg .link {
    width: 60px;
    height: 60px;
    right: 15px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0.75em 100%, 0 calc(100% - 0.75em));
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0.75em 100%, 0 calc(100% - 0.75em));
  }
  .fix-msg .link svg {
    width: 25px;
  }
}
@media (max-width: 1440px) {
  .fix-msg .link {
    bottom: 40px;
  }
}
@media (max-width: 1199px) {
  .layout-footer .footer-top {
    padding: 40px 0;
  }
  .layout-footer .footer-top .title {
    font-size: 34px;
  }
  .layout-footer .footer-top .subtitle {
    font-size: 24px;
  }
  .layout-footer .footer-top .subtitle .icon {
    width: 34px;
  }
  .layout-footer .footer-middle > .row {
    margin: -20px -10px;
  }
  .layout-footer .footer-middle > .row > div {
    padding: 20px 10px;
  }
  .layout-footer .contact .desc {
    font-size: 16px;
  }
  .layout-footer .contact .icon {
    max-width: 34px;
  }
  .layout-footer .ipv6 {
    width: 80px;
  }
  .layout-footer .social .link .rounded-0 {
    height: 44px;
    width: 44px;
  }
  .layout-footer .policy ul.item-list {
    margin: 0;
  }
  .layout-footer .policy ul.item-list > li {
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .layout-footer .policy ul.item-list > li + li {
    border-left: none;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
  .layout-footer .footer-bar,
  .layout-footer .policy,
  .layout-footer .sitemap {
    font-size: 14px;
  }
  .layout-footer .followus {
    font-size: var(--typo-xs);
  }
  .layout-footer .footer-bottom > .row {
    display: block;
  }
  .layout-footer .footer-bottom .policy {
    margin: 0 auto;
  }
  .layout-footer .footer-bottom .sitemap {
    display: block;
    text-align: center;
    margin-top: 25px;
  }
  .layout-footer .visitors .box {
    line-height: 34px;
  }
}
@media (max-width: 991px) {
  .layout-footer .footer-middle {
    padding: 40px 0;
  }
  .layout-footer .footer-bottom {
    padding: 30px 0;
  }
  .layout-footer .policy ul.item-list {
    margin: 0;
  }
  .layout-footer .policy ul.item-list > li {
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .layout-footer .policy ul.item-list > li + li {
    border-left: none;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
  .layout-footer .footer-bar {
    padding: 20px 0;
  }
  .layout-footer .copyright {
    text-align: center;
  }
  .layout-footer .visitors {
    justify-content: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
@media (max-width: 767px) {
  .layout-footer .footer-top {
    padding: 30px 0;
  }
  .layout-footer .footer-middle {
    padding: 30px 0;
  }
  .layout-footer .footer-top .col-left,
  .layout-footer .footer-top .col-right {
    width: 100%;
    text-align: center;
  }
  .layout-footer .footer-top .title {
    font-size: 30px;
  }
  .layout-footer .footer-top .subtitle {
    margin-top: 5px;
  }
  .layout-footer .footer-top > .row > div + div {
    margin-top: 20px;
  }
  .layout-footer .footer-middle > .row {
    margin: -10px 0;
  }
  .layout-footer .footer-middle > .row > div {
    padding: 10px 0;
  }
  .layout-footer .ipv6 {
    width: 70px;
  }
  .layout-footer .followus {
    margin-top: 20px;
    margin-left: 20px;
  }
  .layout-footer .footer-bar {
    font-size: 12px;
  }
  .layout-footer .footer-bar .copyright {
    line-height: 1.4em;
  }
  .layout-footer .footer-bottom .policy .link {
    line-height: 1.5em;
  }
}
@media (max-width: 575px) {
  .layout-footer .ipv6 {
    margin: 0 auto;
  }
  .layout-footer .followus {
    margin-left: 0;
    margin-top: 0;
  }
  .layout-footer .followus > .row {
    flex-direction: column;
    justify-content: center !important;
  }
  .layout-footer .followus .social {
    margin-top: 15px;
  }
  .fix-msg .link svg {
    width: 20px;
  }
}
.default-body {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.default-body .whead {
  margin: 50px 0;
}
.default-body .whead .title {
  font-size: 36px;
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
}
.default-body .whead .subtitle {
  font-size: 36px;
  font-weight: var(--fw-regular);
  line-height: 1.3em;
  color: var(--color-primary);
}
.default-body .whead .-rss {
  font-size: var(--typo-md);
  font-weight: var(--fw-bold);
  color: var(--color-default);
  display: flex;
  align-items: center;
}
.default-body .whead .-rss:hover {
  color: var(--color-dark);
}
.default-body .whead .-rss span {
  width: auto;
  display: inline-block;
  text-transform: uppercase;
}
.default-body .whead .-rss span.icon {
  margin-right: 10px;
}
.default-body .bg-fluid {
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.default-body .bg-fluid img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.layout-body {
  position: relative;
}

.line {
  margin-top: 30px;
  margin-bottom: 30px;
  width: 80px;
  height: 2px;
  background: currentColor;
}

.card {
  border-radius: 0;
}

.nav-default .nav-link {
  position: relative;
  border: none;
  background-color: transparent;
  padding: 1rem 1.25rem;
  transition: all 200ms ease;
}
.nav-default .nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0.8em 100%, 0 calc(100% - 0.8em), 0 0, 2px 2px, 2px calc(100% - 0.8em - 0.83px), calc(0.8em + 0.83px) calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), calc(100% - 2px) 2px, 2px 2px);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0.8em 100%, 0 calc(100% - 0.8em), 0 0, 2px 2px, 2px calc(100% - 0.8em - 0.83px), calc(0.8em + 0.83px) calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), calc(100% - 2px) 2px, 2px 2px);
  opacity: 0;
  visibility: hidden;
  transition: all 200ms ease;
}
.nav-default .nav-link.active {
  background-color: var(--color-light);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0.8em 100%, 0 calc(100% - 0.8em));
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0.8em 100%, 0 calc(100% - 0.8em));
}
.nav-default .nav-link.active::before {
  opacity: 1;
  visibility: visible;
}
.nav-default.flex-column .nav-link {
  text-align: left;
}

.default-header {
  position: relative;
}
.default-header .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 240px;
  position: relative;
  z-index: 10;
  text-align: center;
}
.default-header .title {
  text-transform: uppercase;
  font-size: 36px;
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1em;
  text-align: left;
}
.default-header .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.default-header .graphic > div {
  position: absolute;
  top: 0;
  right: 50%;
  margin-right: -780px;
  padding-top: 20px;
}

.default-filter {
  margin-bottom: 60px;
}
.default-filter .head {
  background: linear-gradient(to left, #01377d 0%, #2ab170 100%);
  padding: 25px;
  margin-bottom: 50px;
}
.default-filter .body {
  margin-bottom: 50px;
}
.default-filter .form-group {
  margin-bottom: 0;
}
.default-filter .form-search .control-label {
  font-size: var(--typo-lg);
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  margin-bottom: 15px;
}
.default-filter .form-search .form-control {
  font-size: var(--typo-md);
  padding: 10px 30px;
  height: 70px;
  border: none;
  background-color: var(--color-light);
  box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.08);
}
.default-filter .form-search .form-control::-moz-placeholder {
  color: var(--color-border);
}
.default-filter .form-search .form-control::placeholder {
  color: var(--color-border);
}
.default-filter .form-search .search {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  background-color: var(--color-light);
  z-index: 1;
}
.default-filter .form-search .search .link {
  display: block;
}
.default-filter .form-select {
  width: 300px;
}
.default-filter .form-select .control-label {
  color: var(--color-default);
}
.default-filter .form-select .select2-container .select2-selection--single {
  height: 70px;
  background-color: var(--color-light);
  border: 1px solid var(--color-primary);
  padding: 0 30px 0 120px;
}
.default-filter .form-select .select2-container .select2-selection--single .select2-selection__rendered {
  color: var(--color-default);
  line-height: 70px;
}
.default-filter .form-select.-select-group .select2-container .select2-selection--single {
  padding: 0 30px;
}
.default-filter .form-select.-select-group .select2-container .select2-selection--single .select2-selection__rendered {
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  padding-left: 0;
}

.document-filter {
  margin-bottom: 40px;
}
.document-filter .form-default {
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
}
.document-filter .form-group {
  margin-bottom: 0;
}
.document-filter .form-select {
  min-width: 180px;
}
.document-filter .form-select .control-label {
  font-size: var(--typo-sm);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}
.document-filter .form-select .select2-container .select2-selection--single {
  height: 70px;
  border: 1px solid var(--color-primary);
  padding: 0 20px;
}
.document-filter .form-select .select2-container .select2-selection--single .select2-selection__rendered {
  font-size: var(--typo-sm);
  font-weight: var(--fw-bold);
  line-height: 70px;
  color: var(--color-primary);
  padding: 0;
}
.document-filter .form-select .select2-container .select2-selection--single .select2-selection__arrow::before {
  color: var(--color-default);
}
.document-filter .form-select-year .select2-container .select2-selection--single {
  padding: 0 20px 0 60px;
}

a {
  position: relative;
}

.fontContantTbManage {
  display: none;
  position: absolute;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.8);
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  font-weight: 600;
  opacity: 1;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 2px;
  margin-top: 10px;
  color: #fff !important;
  font-size: 12px;
  text-align: center;
  line-height: 1.2em;
  padding: 5px 8px;
  overflow: visible !important;
}

.fontContantTbManage::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(0, 0, 0, 0.8);
}

a:hover .fontContantTbManage {
  display: block !important;
}

picture {
  display: inline-block;
}

@media (max-width: 1600px) {
  .line {
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .default-body .whead .title {
    font-size: 34px;
  }
  .default-header .graphic > div {
    margin-right: 0;
    right: 0;
    padding-top: 0;
  }
  .default-header .title {
    font-size: 34px;
  }
  .form-select .control-label {
    font-size: 20px;
    left: 20px;
  }
  .default-filter .form-search .search svg {
    width: 28px;
  }
  .default-filter {
    margin-bottom: 50px;
  }
  .default-filter .form-select .select2-container .select2-selection--single {
    height: 70px;
  }
  .default-filter .form-select .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 70px;
    font-size: 20px;
  }
  .select2-container--option-filter .select2-results__option {
    font-size: 20px;
    padding: 18px 20px;
  }
  .nav-default.flex-column .nav-link {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .default-filter .head {
    padding: 20px;
    margin-bottom: 40px;
  }
  .default-filter .head > .row {
    margin: 0 -10px;
  }
  .default-filter .head > .row > div {
    padding: 0 10px;
  }
  .default-filter .form-select.-select-group .select2-container .select2-selection--single {
    padding: 0 20px;
  }
  .default-filter .form-search .form-control {
    font-size: var(--typo-sm);
    padding: 10px 20px;
    height: 60px;
  }
  .default-filter .form-search .search svg {
    width: 24px;
  }
  .default-filter .form-select .select2-container .select2-selection--single {
    height: 60px;
  }
  .default-filter .form-select .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 58px;
  }
}
@media (max-width: 1199px) {
  .default-body {
    padding: 50px 0;
  }
  .default-body .whead .title {
    font-size: 32px;
  }
  .default-body .whead .-rss span {
    font-size: 22px;
  }
  .default-header .title {
    font-size: 32px;
  }
  .default-filter .head {
    padding: 20px;
    margin-bottom: 30px;
  }
  .default-filter .body {
    margin-bottom: 30px;
  }
  .default-filter .head > .row {
    margin: 0 -10px;
  }
  .default-filter .head > .row > div {
    padding: 0 10px;
  }
  .default-filter .form-search .form-control {
    height: 56px;
    padding: 10px 20px;
    font-size: 20px;
  }
  .default-filter .form-search .search {
    right: 15px;
  }
  .default-filter .form-search .search svg {
    width: 24px;
  }
  .default-filter {
    margin-bottom: 40px;
  }
  .default-filter .form-select .select2-container .select2-selection--single {
    height: 56px;
    padding: 0 20px 0 100px;
  }
  .default-filter .form-select.-select-group .select2-container .select2-selection--single {
    padding: 0 20px;
  }
  .default-filter .form-select .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 54px;
  }
}
@media (max-width: 991px) {
  .default-header .wrapper {
    height: 190px;
  }
  .default-header .graphic {
    display: none;
  }
  .default-header .title {
    font-size: 30px;
  }
  .default-body {
    padding: 30px 0;
  }
  .default-body .whead .title {
    font-size: 30px;
  }
  .default-body .whead .-rss span {
    font-size: 18px;
  }
  .form-select .control-label {
    font-size: 16px;
    left: 15px;
  }
  .form-select .select2-container .select2-selection--single .select2-selection__arrow {
    right: 8px;
  }
  .form-select .select2-container .select2-selection--single .select2-selection__arrow::before {
    font-size: 26px;
  }
  .default-filter .head {
    padding: 15px 13px;
    margin-bottom: 25px;
  }
  .default-filter .body {
    margin-bottom: 25px;
  }
  .default-filter .head > .row {
    margin: 0 -7.5px;
  }
  .default-filter .head > .row > div {
    padding: 0 7.5px;
  }
  .default-filter .body .whead > .row {
    margin: 0 -7.5px;
  }
  .default-filter .body .whead > .row > div {
    padding: 0 7.5px;
  }
  .default-body .whead .-rss span.icon {
    margin-right: 5px;
  }
  .default-body .whead .-rss span.icon svg {
    width: 20px;
  }
  .default-filter .form-search .form-control {
    height: 48px;
    font-size: 18px;
    padding: 10px 15px;
  }
  .default-filter .form-search .search svg {
    width: 20px;
  }
  .default-filter {
    margin-bottom: 20px;
  }
  .default-filter .form-default > .row {
    margin: 0 -6px;
  }
  .default-filter .form-default > .row > div {
    padding: 0 6px;
  }
  .default-filter .form-select .select2-container .select2-selection--single {
    height: 48px;
    padding: 0 16px 0 75px;
  }
  .default-filter .form-select .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 48px;
    font-size: 16px;
  }
  .default-filter .form-select.-select-group .select2-container .select2-selection--single {
    padding: 0 15px;
  }
  .select2-container--option-filter .select2-results__option {
    font-size: 16px;
    padding: 12px 15px;
  }
}
@media (max-width: 767px) {
  .line {
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .default-body .whead .title {
    font-size: 28px;
  }
  .default-header .wrapper {
    height: 180px;
  }
  .default-header .title {
    font-size: 28px;
  }
  .default-filter {
    margin-bottom: 15px;
  }
  .default-filter .form-select {
    width: 100%;
  }
  .default-filter .body {
    margin-bottom: 20px;
  }
  .default-filter .form-group {
    margin-bottom: 10px;
    min-width: auto;
  }
}
@media (max-width: 575px) {
  .nav-default .nav-link {
    padding: 0.75rem 1rem;
  }
  .default-header .title {
    font-size: 26px;
  }
  .default-body .whead .title {
    font-size: 24px;
  }
  .default-body .whead .-rss span.icon svg {
    font-size: 16px;
  }
  .default-body .whead .-rss span {
    font-size: 16px;
  }
  .default-filter .body .whead > .row {
    margin: 0 -5px;
  }
  .default-filter .body .whead > .row > div {
    padding: 0 5px;
  }
}
.global-container-home {
  overflow: hidden;
}

.top-graphic {
  position: relative;
}
.top-graphic .swiper-default {
  overflow: hidden;
}
.top-graphic .swiper-default .swiper-pagination-bullet {
  color: var(--color-light);
  background: var(--color-light);
  filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.4));
}
.top-graphic .item .link {
  position: inherit;
}
.top-graphic .cover,
.top-graphic .iframe-container,
.top-graphic .video-container {
  padding-top: 40%;
}
.top-graphic .video-container video {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.top-graphic .contain {
  padding-top: 38%;
}
.top-graphic .contain img {
  width: 100%;
}
.top-graphic .fill-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: blur(50px);
}

.section .whead .title {
  font-size: 48px;
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
}
.section .whead .subtitle {
  font-size: 36px;
  font-weight: var(--fw-regular);
  line-height: 1.3em;
  color: var(--color-primary);
}

#banner.guides-current-element ~ .top-graphic {
  z-index: 99997;
}

.wg-services {
  padding: 80px 0 140px 0;
  background-image: url("../img/background/bg-services.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  min-height: 600px;
}

.service-category {
  margin-top: 30px;
  margin-bottom: 30px;
}
.service-category .service-category-list {
  position: relative;
  margin: -20px;
}
.service-category .service-category-list .item {
  padding: 20px;
}
.service-category .service-category-list .swiper-default {
  overflow: visible;
}
.service-category .service-category-list .swiper-default .swiper-slide .item {
  opacity: 0;
  visibility: hidden;
  transition: all 200ms ease;
}
.service-category .service-category-list .swiper-default .swiper-slide.swiper-slide-visible .item, .service-category .service-category-list .swiper-default .swiper-slide.swiper-slide-visible.swiper-slide-fully-visible .item {
  opacity: 1;
  visibility: visible;
}
.service-category .service-category-list .swiper-default .swiper-button-next,
.service-category .service-category-list .swiper-default .swiper-button-prev {
  height: 44px;
}
.service-category .service-category-list .swiper-default .swiper-button-next::after,
.service-category .service-category-list .swiper-default .swiper-button-prev::after {
  font-size: 44px;
}
.service-category .btn {
  position: relative;
  font-size: var(--typo-sm);
  color: var(--color-secondary);
  border: 1px solid transparent;
  height: 60px;
  line-height: 58px;
  width: 100%;
  min-width: 100px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 1em 100%, 0 calc(100% - 1em));
          clip-path: polygon(0 0, 100% 0, 100% 100%, 1em 100%, 0 calc(100% - 1em));
}
.service-category .btn::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-secondary);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 1em 100%, 0 calc(100% - 1em), 0 0, 2px 2px, 2px calc(100% - 1em - 0.83px), calc(1em + 0.83px) calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), calc(100% - 2px) 2px, 2px 2px);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 1em 100%, 0 calc(100% - 1em), 0 0, 2px 2px, 2px calc(100% - 1em - 0.83px), calc(1em + 0.83px) calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), calc(100% - 2px) 2px, 2px 2px);
}
.service-category .btn.active, .service-category .btn.selected {
  color: var(--color-light);
  background: var(--color-secondary);
}
.service-category .btn.active::before, .service-category .btn.selected::before {
  display: none;
}
.service-category .btn.active::after, .service-category .btn.selected::after {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: "liga";
  -moz-osx-font-smoothing: grayscale;
  content: "\f508";
  display: inline;
  font-size: 34px;
  position: relative;
  top: 10px;
  margin-right: -5px;
}

.service-list {
  margin: -20px;
}
.service-list .item {
  padding: 20px;
}
.service-list .item .card {
  color: var(--color-default);
  border: none;
  border-radius: var(--rounded-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.service-list .item .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#01377d 0%, #2ab170 100%);
  transition: all 200ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.service-list .item .card .card-body {
  z-index: 1;
}
.service-list .item .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
}
.service-list .item .thumbnail {
  padding-top: 5px;
  width: 100px;
}
.service-list .item .thumbnail .contain {
  padding-top: 100%;
}
.service-list .item .thumbnail .thumb-hover {
  display: none;
}
.service-list .item .title {
  font-size: 16px;
  font-weight: var(--fw-regular);
  text-align: center;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 1.5em;
  -webkit-line-clamp: 2;
  min-height: 3em;
  margin-top: 20px;
  margin-bottom: 0;
}
.service-list .item:hover .card {
  color: var(--color-light);
}
.service-list .item:hover .card::before {
  opacity: 1;
  visibility: visible;
}
.service-list .item:hover .thumbnail .thumb-img {
  display: none;
}
.service-list .item:hover .thumbnail .thumb-hover {
  display: block;
}
.service-list .swiper-default {
  overflow: visible;
}
.service-list .swiper-default.swiper-grid {
  height: 820px;
}
.service-list .swiper-default .swiper-slide .item {
  opacity: 0;
  visibility: hidden;
  transition: all 200ms ease;
}
.service-list .swiper-default .swiper-slide.swiper-slide-visible .item, .service-list .swiper-default .swiper-slide.swiper-slide-visible.swiper-slide-fully-visible .item {
  opacity: 1;
  visibility: visible;
}
.service-list .swiper-default .swiper-horizontal > .swiper-pagination-bullets,
.service-list .swiper-default .swiper-pagination-bullets.swiper-pagination-horizontal,
.service-list .swiper-default .swiper-pagination-custom,
.service-list .swiper-default .swiper-pagination-fraction {
  position: relative;
  bottom: auto;
  margin-top: 40px;
  margin-bottom: 20px;
}
.service-list .swiper-default .swiper-pagination-bullet {
  color: var(--color-light);
  background: var(--color-light);
}

.wg-research {
  overflow: hidden;
}
.wg-research .wg-research-main {
  padding: 80px 0;
}

.wg-research-group {
  position: relative;
}
.wg-research-group .whead {
  margin-bottom: 0;
}
.wg-research-group .whead .title {
  font-size: 40px;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 1.4em;
  -webkit-line-clamp: 1;
  max-height: 1.4em;
}
.wg-research-group .whead .subtitle {
  font-size: 30px;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 1.4em;
  -webkit-line-clamp: 1;
  max-height: 1.4em;
  margin-top: 10px;
}
.wg-research-group .whead .total {
  font-size: 80px;
  font-weight: var(--fw-black);
  margin-top: 70px;
}
.wg-research-group .whead .unit {
  font-size: 26px;
  margin-top: 20px;
}
.wg-research-group .whead .unit span {
  font-size: 38px;
  position: relative;
  top: 10px;
  margin-left: 10px;
  transition: all 200ms ease;
}
.wg-research-group .graphic {
  width: 450px;
  position: absolute;
  bottom: 0;
  pointer-events: none;
}
.wg-research-group .bg-obj {
  position: absolute;
  pointer-events: none;
  transition: all 400ms ease-in-out;
}
.wg-research-group.-left {
  text-align: right;
  color: var(--color-primary);
  background: #F8F8F8;
}
.wg-research-group.-left .whead {
  padding: 40px;
  padding-left: 300px;
}
.wg-research-group.-left .whead .title {
  color: var(--color-primary);
}
.wg-research-group.-left .whead .subtitle {
  color: var(--color-primary);
}
.wg-research-group.-left > .row {
  flex-direction: row-reverse;
}
.wg-research-group.-left .graphic {
  left: -50px;
}
.wg-research-group.-left .graphic img {
  width: 100%;
  height: 100%;
}
.wg-research-group.-left .bg-obj {
  bottom: 0;
  right: 30%;
}
.wg-research-group.-left .bg-obj img {
  width: 100%;
  height: 220px;
}
.wg-research-group.-right {
  text-align: left;
  color: var(--color-secondary-light);
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.05) 100%);
  background-repeat: no-repeat;
  background-size: 70%;
  background-position: left;
}
.wg-research-group.-right .whead {
  padding: 40px;
  padding-right: 300px;
}
.wg-research-group.-right .whead .title {
  color: var(--color-secondary-light);
}
.wg-research-group.-right .whead .subtitle {
  color: var(--color-secondary-light);
}
.wg-research-group.-right .graphic {
  right: -40px;
}
.wg-research-group.-right .graphic img {
  width: 100%;
  height: 100%;
}
.wg-research-group.-right .bg-obj {
  bottom: 0;
  left: 30%;
}
.wg-research-group.-right .bg-obj img {
  width: 100%;
  height: 220px;
}
.wg-research-group .card {
  border: none;
  background: var(--color-primary);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 2.5em 100%, 0 calc(100% - 2.5em));
          clip-path: polygon(0 0, 100% 0, 100% 100%, 2.5em 100%, 0 calc(100% - 2.5em));
}
.wg-research-group:hover .bg-obj {
  transform: scale(1.2);
}
.wg-research-group:hover .whead .unit span {
  transform: translateX(5px);
}

.wg-research-list {
  padding-bottom: 80px;
  background: url("../img/background/bg-wg-research.webp");
  background-repeat: no-repeat;
  background-position: top center;
}
.wg-research-list .wg-research-group {
  overflow: hidden;
  filter: drop-shadow(0px 30px 60px rgba(0, 0, 0, 0.1));
}
.wg-research-list .wg-research-group .card {
  color: var(--color-light);
}
.wg-research-list .wg-research-group .card .whead .title {
  color: var(--color-light);
}
.wg-research-list .wg-research-group .card .whead .subtitle {
  color: var(--color-light);
}
.wg-research-list .wg-research-group .card-body {
  padding: 60px;
}
.wg-research-list .wg-research-group .bg-obj {
  position: absolute;
  pointer-events: none;
  bottom: 0;
  right: 0;
  max-width: 200px;
}
.wg-research-list .wg-research-group .bg-obj img {
  width: 100%;
  height: auto;
}
.wg-research-list > .item:nth-child(3n+1) .wg-research-group .card,
.wg-research-list .swiper-wrapper .swiper-slide:nth-child(3n+1) .wg-research-group .card {
  background: linear-gradient(#1b9dd0 0%, #98e7f4 100%);
}
.wg-research-list > .item:nth-child(3n+2) .wg-research-group .card,
.wg-research-list .swiper-wrapper .swiper-slide:nth-child(3n+2) .wg-research-group .card {
  background: linear-gradient(#01377d 0%, #1b9dd0 100%);
}
.wg-research-list > .item:nth-child(3n+3) .wg-research-group .card,
.wg-research-list .swiper-wrapper .swiper-slide:nth-child(3n+3) .wg-research-group .card {
  background: linear-gradient(#2ab170 0%, #7fd349 100%);
}
.wg-research-list .swiper-default {
  overflow: visible;
}
.wg-research-list .swiper-default .swiper-slide .item {
  opacity: 0;
  visibility: hidden;
  transition: 200ms ease;
}
.wg-research-list .swiper-default .swiper-slide.swiper-slide-visible .item, .wg-research-list .swiper-default .swiper-slide.swiper-slide-visible.swiper-slide-fully-visible .item {
  opacity: 1;
  visibility: visible;
}

.wg-about {
  position: relative;
  color: var(--color-light);
  background: var(--color-primary);
  background-image: url("../img/background/bg-wg-about.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.wg-about .content {
  padding-right: 80px;
}
.wg-about .content .whead .title {
  color: var(--color-light);
}
.wg-about .content .whead .subtitle {
  color: var(--color-light);
}
.wg-about .content .desc {
  font-size: var(--typo-sm);
  line-height: 1.5em;
  max-width: 410px;
}
.wg-about .content .line {
  background: var(--color-light);
}
.wg-about .content .action {
  margin-top: 50px;
}
.wg-about .wg-about-group-list {
  width: 620px;
}
.wg-about .graphic {
  position: absolute;
  bottom: -160px;
  left: 50%;
  margin-left: -350px;
  pointer-events: none;
}
.wg-about .graphic img {
  width: -moz-max-content;
  width: max-content;
  height: 100%;
}

.wg-about-group .card {
  color: var(--color-light);
  border: none;
  background: var(--color-primary);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 2em 100%, 0 calc(100% - 2em));
          clip-path: polygon(0 0, 100% 0, 100% 100%, 2em 100%, 0 calc(100% - 2em));
}
.wg-about-group .card-body {
  padding: 35px;
}
.wg-about-group .title {
  font-size: var(--typo-lg);
  font-weight: var(--fw-bold);
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 1.4em;
  -webkit-line-clamp: 2;
  min-height: 2.8em;
  margin-bottom: 15px;
}
.wg-about-group .grphic-obj {
  width: 80px;
  transition: all 400ms ease-in-out;
}
.wg-about-group .grphic-obj .contain {
  padding-top: 100%;
}
.wg-about-group .action {
  margin-top: 15px;
}
.wg-about-group .action span {
  font-size: 38px;
  position: relative;
  top: 10px;
  margin-left: 10px;
  transition: all 200ms ease;
}
.wg-about-group:hover .grphic-obj {
  transform: scale(1.1);
}
.wg-about-group:hover .action span {
  transform: translateX(5px);
}

.wg-about-group-list .swiper .swiper-wrapper .swiper-slide {
  opacity: 0;
  transition: all 400ms ease;
}
.wg-about-group-list .swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.wg-about-group-list .swiper .swiper-wrapper .swiper-slide > .row > div {
  margin-left: auto;
}
.wg-about-group-list .swiper .swiper-wrapper .swiper-slide > .row > div:nth-child(3n+1) .wg-about-group .card {
  background: linear-gradient(#2ab170 0%, #7fd349 100%);
}
.wg-about-group-list .swiper .swiper-wrapper .swiper-slide > .row > div:nth-child(3n+2) .wg-about-group .card {
  background: linear-gradient(#1b9dd0 0%, #98e7f4 100%);
}
.wg-about-group-list .swiper .swiper-wrapper .swiper-slide > .row > div:nth-child(3n+3) .wg-about-group .card {
  background: linear-gradient(#01377d 0%, #1b9dd0 100%);
}

.wg-news {
  padding: 160px 0 80px 0;
  background-color: #ffffff;
  background-image: url("../img/background/bg-wg-news.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: luminosity;
}
.wg-news .line {
  background-color: var(--color-primary);
}
.wg-news .wg-news-nav {
  padding-right: 40px;
}
.wg-news .wg-news-nav .action {
  margin-top: 40px;
}
.wg-news .wg-news-tab {
  width: 1000px;
  padding-right: 140px;
}
.wg-news .wg-news-list {
  margin: 0 -15px;
}
.wg-news .wg-news-list .item {
  padding: 0 15px;
  transition: all 200ms ease;
}
.wg-news .wg-news-slide .swiper {
  overflow: visible;
}
.wg-news .wg-news-slide .swiper-wrapper {
  pointer-events: none;
}
.wg-news .wg-news-slide .swiper-slide .item {
  opacity: 0;
  visibility: hidden;
}
.wg-news .wg-news-slide .swiper-slide.swiper-slide-visible, .wg-news .wg-news-slide .swiper-slide.swiper-slide-visible.swiper-slide-fully-visible, .wg-news .wg-news-slide .swiper-slide.swiper-slide-visible.swiper-slide-fully-visible + .swiper-slide {
  pointer-events: visible;
}
.wg-news .wg-news-slide .swiper-slide.swiper-slide-visible .item, .wg-news .wg-news-slide .swiper-slide.swiper-slide-visible.swiper-slide-fully-visible .item, .wg-news .wg-news-slide .swiper-slide.swiper-slide-visible.swiper-slide-fully-visible + .swiper-slide .item {
  opacity: 1;
  visibility: visible;
}
.wg-news .wg-news-slide .swiper-default .swiper-button-next,
.wg-news .wg-news-slide .swiper-default .swiper-button-prev {
  position: relative;
  border: 2px solid var(--color-border);
  width: 60px;
  height: 60px;
  top: auto;
  bottom: auto;
  float: left;
  margin-top: 30px;
}
.wg-news .wg-news-slide .swiper-default .swiper-button-prev {
  left: auto;
  margin-left: 15px;
}
.wg-news .wg-news-slide .swiper-default .swiper-button-next {
  right: auto;
}
.wg-news .wg-news-slide .swiper-default .swiper-button-next:after,
.wg-news .wg-news-slide .swiper-default .swiper-button-prev:after {
  font-size: 40px;
}

.wg-lab .content,
.wg-contact .content {
  position: relative;
  z-index: 1;
  padding: 80px 40px;
}
.wg-lab .bg,
.wg-contact .bg {
  position: absolute;
  top: 0;
  width: 50vw;
  height: 100%;
  pointer-events: none;
}
.wg-lab .bg img,
.wg-contact .bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.wg-lab .content {
  padding-left: 0 !important;
}
.wg-lab .bg {
  left: 0;
  width: 55vw;
}
.wg-lab .bg-obj {
  margin: 20px 0;
  width: 135px;
}
.wg-lab .bg-obj img {
  width: 100%;
  height: auto;
}
.wg-lab .action {
  margin-top: 25px;
}

.wg-contact .whead {
  margin-bottom: 30px;
}
.wg-contact .content {
  padding-right: 0 !important;
  color: var(--color-light);
}
.wg-contact .content .link {
  color: var(--color-light);
}
.wg-contact .content .link:hover {
  opacity: 0.7;
}
.wg-contact .content .whead .title {
  color: var(--color-light);
}
.wg-contact .content .whead .subtitle {
  color: var(--color-light);
}
.wg-contact .content .contact-list .icon {
  margin-right: 15px;
  max-width: 37px;
  padding-top: 4px;
  filter: grayscale(1) brightness(100);
  width: 100%;
  height: auto;
}
.wg-contact .bg {
  right: 0;
  width: 45vw;
}
.wg-contact .contact-list > .row + .row {
  margin-top: 20px;
}
.wg-contact .contact-list .desc {
  line-height: 1.5em;
}

@media (max-width: 1600px) {
  .section .whead .title {
    font-size: 44px;
  }
  .section .whead .subtitle {
    font-size: 32px;
  }
  .service-category .btn {
    font-size: var(--typo-default);
  }
  .service-list .item .thumbnail {
    width: 90px;
  }
  .service-list .item .card-body {
    padding: 25px 20px;
  }
  .service-list .swiper-default.swiper-grid {
    height: 750px;
  }
  .wg-research-group .whead .title {
    font-size: 36px;
  }
  .wg-research-group .whead .subtitle {
    font-size: 28px;
  }
  .wg-research-group .whead .total {
    font-size: 70px;
  }
  .wg-research-group .graphic {
    width: 400px;
  }
  .wg-research-group.-left .bg-obj img {
    height: 160px;
  }
  .wg-research-group.-right .bg-obj img {
    height: 160px;
  }
  .wg-research-group.-left .whead {
    padding-left: 240px;
  }
  .wg-research-group.-right .whead {
    padding-right: 240px;
  }
  .wg-research-list .wg-research-group .card-body {
    padding: 50px;
  }
  .wg-about .graphic {
    bottom: -140px;
    margin-left: -480px;
    width: 850px;
  }
  .wg-news .wg-news-tab {
    width: 880px;
    padding-right: 170px;
  }
  .wg-lab .bg {
    width: 56vw;
  }
  .wg-contact .bg {
    width: 44vw;
  }
}
@media (max-width: 1540px) {
  .section .whead .title {
    font-size: 36px;
  }
  .section .whead .subtitle {
    font-size: 26px;
  }
  .wg-services {
    padding: 70px 0 90px;
  }
  .service-category .btn {
    height: 54px;
    line-height: 54px;
  }
  .service-category .btn {
    font-size: var(--typo-xs);
  }
  .service-category .btn.active:after,
  .service-category .btn.selected:after {
    font-size: 30px;
    top: 9px;
  }
  .service-category .service-category-list {
    margin: -15px;
  }
  .service-category .service-category-list .item {
    padding: 15px;
  }
  .service-list {
    margin: -15px;
  }
  .service-list .item {
    padding: 15px;
  }
  .service-list .item .thumbnail {
    width: 80px;
  }
  .service-list .item .title {
    font-size: 15px;
  }
  .service-list .swiper-default.swiper-grid {
    height: 690px;
  }
  .wg-research .wg-research-main {
    padding: 70px 0;
  }
  .wg-research-group .whead .title {
    font-size: 28px;
  }
  .wg-research-group .whead .subtitle {
    font-size: 20px;
    margin-top: 5px;
  }
  .wg-research-group .whead .total {
    font-size: 50px;
    margin-top: 50px;
  }
  .wg-research-group .whead .unit {
    font-size: 18px;
    margin-top: 10px;
  }
  .wg-research-group .whead .unit span {
    font-size: 26px;
    margin-left: 5px;
  }
  .wg-research-group .graphic {
    width: 300px;
  }
  .wg-research-group.-left .whead {
    padding: 30px 30px 30px 160px;
  }
  .wg-research-group.-right .whead {
    padding: 30px 160px 30px 30px;
  }
  .wg-research-group.-left .graphic {
    left: -20px;
  }
  .wg-research-group.-right .graphic {
    right: -30px;
  }
  .wg-research-group.-left .bg-obj img,
  .wg-research-group.-right .bg-obj img {
    height: 125px;
  }
  .wg-research-list {
    padding-bottom: 0;
    margin-bottom: 100px;
    background-size: cover;
    background-position: bottom center;
    height: 251px;
  }
  .wg-research-group .card {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 2em 100%, 0 calc(100% - 2em));
            clip-path: polygon(0 0, 100% 0, 100% 100%, 2em 100%, 0 calc(100% - 2em));
  }
  .wg-research-list .wg-research-group .card-body {
    padding: 40px;
  }
  .wg-research-list .wg-research-group .bg-obj {
    max-width: 140px;
  }
  .wg-about-group .title {
    font-size: 28px;
  }
  .wg-about .content .desc {
    font-size: 16px;
  }
  .wg-about .content .action {
    margin-top: 40px;
  }
  .wg-about-group .action {
    font-size: 18px;
  }
  .wg-about-group .action span {
    font-size: 26px;
    margin-left: 5px;
    top: 7px;
  }
  .wg-about-group .grphic-obj {
    width: 70px;
  }
  .wg-news {
    padding: 150px 0 70px;
  }
  .wg-news .wg-news-list .item {
    padding: 0 10px;
  }
  .wg-news .wg-news-nav .action {
    margin-top: 30px;
  }
  .wg-news .wg-news-tab {
    padding-right: 230px;
    width: 900px;
  }
  .wg-news .wg-news-slide .swiper-default .swiper-button-next,
  .wg-news .wg-news-slide .swiper-default .swiper-button-prev {
    width: 48px;
    height: 48px;
  }
  .wg-news .wg-news-slide .swiper-default .swiper-button-next:after,
  .wg-news .wg-news-slide .swiper-default .swiper-button-prev:after {
    font-size: 28px;
  }
  .wg-lab .bg-obj {
    margin: 20px 0;
    width: 100px;
  }
  .wg-lab .bg {
    width: 56vw;
  }
  .wg-contact .bg {
    width: 44vw;
  }
  .wg-contact .content .contact-list .icon {
    margin-right: 12px;
  }
  .wg-contact .contact-list .desc {
    font-size: 16px;
  }
  .wg-contact .content,
  .wg-lab .content {
    padding: 70px 30px;
  }
}
@media (max-width: 1199px) {
  .section .whead .title {
    font-size: 34px;
  }
  .section .whead .subtitle {
    font-size: 24px;
  }
  .wg-services {
    padding: 60px 0 120px 0;
  }
  .service-list .swiper-default .swiper-horizontal > .swiper-pagination-bullets,
  .service-list .swiper-default .swiper-pagination-bullets.swiper-pagination-horizontal,
  .service-list .swiper-default .swiper-pagination-custom,
  .service-list .swiper-default .swiper-pagination-fraction {
    margin-top: 30px;
  }
  .wg-research .wg-research-main {
    padding: 60px 0;
  }
  .wg-research-group .whead .title {
    font-size: 28px;
  }
  .wg-research-group .whead .subtitle {
    font-size: 22px;
  }
  .wg-research-group .whead .total {
    font-size: 48px;
  }
  .wg-research-group .graphic {
    width: 280px;
  }
  .wg-research-group.-right .whead {
    padding-right: 140px;
  }
  .wg-research-group.-left .bg-obj img,
  .wg-research-group.-right .bg-obj img {
    height: 120px;
  }
  .wg-research-group.-left .bg-obj {
    right: 32%;
  }
  .wg-research-group.-right .bg-obj {
    left: 32%;
  }
  .wg-research-list {
    padding-bottom: 60px;
    margin-bottom: 0;
    height: auto;
  }
  .wg-research-list .wg-research-group .bg-obj {
    max-width: 140px;
  }
  .wg-about .graphic {
    bottom: -108px;
    margin-left: -380px;
    width: 660px;
  }
  .wg-about .wg-about-group-list {
    width: 525px;
  }
  .wg-about-group .card-body {
    padding: 30px;
  }
  .wg-about-group .title {
    font-size: var(--typo-md);
  }
  .wg-about-group .action {
    font-size: var(--typo-xs);
  }
  .wg-about-group .grphic-obj {
    width: 60px;
  }
  .wg-news {
    padding: 120px 0 60px;
  }
  .wg-news .wg-news-tab {
    padding-right: 160px;
    width: 690px;
  }
  .wg-news .wg-news-list {
    margin: 0 -10px;
  }
  .wg-news .wg-news-list .item {
    padding: 0 10px;
  }
  .wg-contact .content,
  .wg-lab .content {
    padding: 60px 30px;
  }
}
@media (max-width: 991px) {
  .top-graphic .cover,
  .top-graphic .iframe-container,
  .top-graphic .video-container {
    padding-top: 480px;
  }
  .wg-services {
    padding: 50px 0 110px;
  }
  .service-category .service-category-list {
    margin: -10px;
  }
  .service-category .service-category-list .item {
    padding: 10px;
  }
  .service-list {
    margin: -10px;
  }
  .service-list .item {
    padding: 10px;
  }
  .service-list .swiper-default.swiper-grid {
    height: 660px;
  }
  .wg-research .wg-research-main {
    padding: 50px 0;
  }
  .wg-research-group .graphic {
    width: 273px;
  }
  .wg-research-group.-right .graphic {
    right: 0;
  }
  .wg-research-group .whead .subtitle {
    margin-top: 5px;
  }
  .wg-research-group .whead .total {
    font-size: 40px;
    margin-top: 40px;
  }
  .wg-research-group:hover .bg-obj {
    transform: none;
  }
  .wg-research-group .card {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 1.5em 100%, 0 calc(100% - 1.5em));
            clip-path: polygon(0 0, 100% 0, 100% 100%, 1.5em 100%, 0 calc(100% - 1.5em));
  }
  .wg-research-group .whead .unit {
    font-size: 18px;
  }
  .wg-research-group .whead .unit span {
    font-size: 30px;
  }
  .wg-research-group.-left {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.05) 100%);
  }
  .wg-research-group.-right .whead {
    padding-right: 50px;
  }
  .wg-research-group.-left .whead {
    padding-left: 40px;
  }
  .wg-research-group.-left .bg-obj img,
  .wg-research-group.-right .bg-obj img {
    height: 100px;
  }
  .wg-research-list {
    padding-bottom: 50px;
  }
  .wg-research-list .wg-research-group .card-body {
    padding: 30px;
  }
  .wg-research-list .wg-research-group .bg-obj {
    max-width: 100px;
  }
  .wg-about {
    color: var(--color-secondary);
  }
  .wg-about .content {
    padding: 50px 230px 30px 0;
  }
  .wg-about {
    background-size: 260%;
  }
  .wg-about .content .whead {
    padding: 0;
  }
  .wg-about .content .whead .subtitle,
  .wg-about .content .whead .title {
    color: var(--color-secondary);
  }
  .wg-about .content .line {
    background-color: var(--color-secondary);
  }
  .wg-about .content .desc {
    max-width: 100%;
  }
  .wg-about .content .action {
    margin-top: 20px;
  }
  .wg-about-group .action span {
    font-size: 30px;
  }
  .wg-about .wg-about-group-list {
    margin-left: auto;
  }
  .wg-about .graphic {
    margin-left: -530px;
  }
  .wg-news {
    padding: 100px 0 50px;
  }
  .wg-news .wg-news-nav {
    position: relative;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .wg-news .wg-news-nav .nav-default {
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap;
    overflow: auto;
  }
  .wg-news .wg-news-nav .nav-default .nav-link {
    white-space: nowrap;
  }
  .wg-news .wg-news-nav .action {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 15px;
  }
  .wg-news .wg-news-tab {
    padding-right: 0;
    width: auto;
  }
  .wg-news .wg-news-nav .nav-default .nav-link {
    font-size: 16px;
  }
  .wg-contact .content,
  .wg-lab .content {
    padding: 50px 20px;
  }
  .wg-lab .content .whead .title,
  .wg-contact .content .whead .title {
    font-size: 30px;
  }
  .wg-contact .contact-list .desc {
    font-size: 16px;
  }
  .wg-lab .bg {
    width: 50vw;
  }
  .wg-contact .bg {
    width: 50vw;
  }
}
@media (max-width: 767px) {
  .top-graphic .cover,
  .top-graphic .iframe-container,
  .top-graphic .video-container {
    padding-top: 380px;
  }
  .section .whead .title {
    font-size: 30px;
  }
  .section .whead .subtitle {
    font-size: 22px;
  }
  .wg-services {
    padding: 40px 0 100px;
  }
  .wg-research .wg-research-main {
    padding: 40px 0;
  }
  .wg-research-list {
    padding-bottom: 40px;
  }
  .wg-research-group .whead .title {
    font-size: 24px;
  }
  .wg-research-group .whead .subtitle {
    font-size: 20px;
  }
  .wg-research-group .graphic {
    width: 210px;
  }
  .wg-research-group.-left .whead,
  .wg-research-group.-right .whead {
    padding: 10px 15px;
  }
  .wg-about-group .title {
    font-size: 22px;
  }
  .wg-about {
    background-size: 350%;
  }
  .wg-about .content {
    padding-top: 40px;
    padding-right: 0;
  }
  .wg-about .content .desc {
    font-size: 16px;
  }
  .wg-news {
    padding: 80px 0 40px 0;
  }
  .wg-news .wg-news-nav .action {
    margin-top: 5px;
  }
  .wg-contact .content,
  .wg-lab .content {
    padding: 40px 0;
  }
  .wg-contact .bg,
  .wg-lab .bg {
    width: 100vw;
  }
  .wg-lab .bg {
    left: -15px;
  }
  .wg-contact .bg {
    right: -15px;
  }
  .section.section-v > .container > .row > div {
    position: relative !important;
  }
  .wg-about .wg-about-group-list {
    width: auto;
  }
  .wg-about .graphic {
    width: 540px;
    margin-left: -450px;
    bottom: -88px;
  }
}
@media (max-width: 575px) {
  .top-graphic .cover,
  .top-graphic .iframe-container,
  .top-graphic .video-container {
    padding-top: 280px;
  }
  .section .whead .title {
    font-size: 28px;
  }
  .section .whead .subtitle {
    font-size: 20px;
  }
  .service-category .btn {
    font-size: 16px;
    height: 50px;
    line-height: 50px;
  }
  .service-category .btn.active::after,
  .service-category .btn.selected::after {
    font-size: 28px;
  }
  .service-category .service-category-list {
    margin: -7.5px;
  }
  .service-category .service-category-list .item {
    padding: 7.5px;
  }
  .service-list {
    margin: -7.5px;
  }
  .service-list .item {
    padding: 7.5px;
  }
  .service-list .item .thumbnail {
    width: 60px;
  }
  .service-list .item .card-body {
    padding: 20px 15px;
  }
  .service-list .swiper-default.swiper-grid {
    height: 370px;
  }
  .service-list .swiper-default .swiper-horizontal > .swiper-pagination-bullets,
  .service-list .swiper-default .swiper-pagination-bullets.swiper-pagination-horizontal,
  .service-list .swiper-default .swiper-pagination-custom,
  .service-list .swiper-default .swiper-pagination-fraction {
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .wg-research-group .whead .title {
    font-size: 22px;
  }
  .wg-research-group .whead .subtitle {
    font-size: 18px;
  }
  .wg-research-group .whead .total {
    font-size: 36px;
    margin-top: 10px;
  }
  .wg-research-group .whead .unit {
    font-size: 16px;
  }
  .wg-research-group .whead .unit span {
    font-size: 26px;
    top: 8px;
  }
  .wg-research-group .graphic {
    width: 170px;
  }
  .wg-research-group.-left .bg-obj img,
  .wg-research-group.-right .bg-obj img {
    height: 85px;
  }
  .wg-research-group .card {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 1em 100%, 0 calc(100% - 1em));
            clip-path: polygon(0 0, 100% 0, 100% 100%, 1em 100%, 0 calc(100% - 1em));
  }
  .wg-research-list .wg-research-group .card-body {
    padding: 20px;
  }
  .wg-research-group .whead .unit span {
    margin-left: 5px;
  }
  .wg-about-group .action {
    font-size: 16px;
  }
  .wg-about-group .action span {
    font-size: 26px;
    margin-left: 5px;
    top: 8px;
  }
  .wg-about .graphic {
    bottom: -72px;
    margin-left: -344px;
    width: 440px;
  }
  .wg-about .content {
    text-align: center;
  }
  .wg-about .content .line {
    margin: 15px auto;
  }
  .wg-news .wg-news-list {
    margin: 0 -7.5px;
  }
  .wg-news .wg-news-list .item {
    padding: 0 7.5px;
  }
  .wg-news .whead .line {
    margin: 15px auto;
  }
  .wg-news .wg-news-slide .swiper-default .swiper-button-next,
  .wg-news .wg-news-slide .swiper-default .swiper-button-prev {
    height: 42px;
    width: 42px;
  }
  .wg-news .wg-news-slide .swiper-default .swiper-button-next::after,
  .wg-news .wg-news-slide .swiper-default .swiper-button-prev::after {
    font-size: 24px;
  }
  .wg-news .wg-news-nav .action {
    margin-top: 100px;
    left: 0;
    text-align: center;
  }
  .wg-news .wg-news-nav .nav-default {
    margin-top: 35px;
  }
}
@media (max-width: 475px) {
  .wg-research .wg-research-main {
    text-align: center;
  }
  .wg-research .wg-research-main > .container > .row {
    display: block;
  }
  .wg-research .wg-research-main .action {
    margin-top: 20px;
  }
}
.detail-head {
  margin-bottom: 40px;
}
.detail-head .headline {
  line-height: 1.1em;
  margin-bottom: 0;
}

.detail-body .whead {
  margin-top: 0;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #29B171;
}
.detail-body .whead .title {
  font-size: 36px;
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
}
.detail-body .swiper:not(.gallery-slide .swiper) .swiper-slide {
  transition: all 0.4s ease-in-out;
}
.detail-body .swiper:not(.gallery-slide .swiper) .swiper-slide-active,
.detail-body .swiper:not(.gallery-slide .swiper) .swiper-slide-next {
  opacity: 1;
}
.detail-body .swiper:not(.gallery-slide .swiper) .swiper-pagination {
  position: relative;
  bottom: auto;
  margin-top: 50px;
  margin-bottom: 20px;
}
.detail-body .swiper:not(.gallery-slide .swiper) .swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background-color: var(--color-border);
  transition: all 0.2s ease-in-out;
}
.detail-body .swiper:not(.gallery-slide .swiper) .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}
.detail-body .document-download-list {
  margin-bottom: 80px;
}
.detail-body .document-download-list .item-wrapper {
  cursor: pointer;
}
.detail-body .document-download-list .item-wrapper::after {
  background: linear-gradient(to left, #01377d 0%, #2ab170 100%);
}
.detail-body .document-download-list .item-wrapper:hover svg * {
  stroke: var(--color-light);
}
.detail-body .document-download-list .item-wrapper:hover .desc {
  color: var(--color-light);
}
.detail-body .document-download-list .item-wrapper:hover .type-file .item-list li {
  color: var(--color-light);
}
.detail-body .document-download-list .item-wrapper:hover .type-file .item-list li + li {
  border-color: rgba(255, 255, 255, 0.3333333333);
}
.detail-body .document-download-list .link {
  position: relative;
  z-index: 1;
  display: block;
  padding: 30px 20px 30px 35px;
}
.detail-body .document-download-list .link::before {
  display: none;
}
.detail-body .document-download-list .icon {
  position: relative;
  top: 5px;
}
.detail-body .document-download-list .desc {
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 1.5em;
  -webkit-line-clamp: 1;
  min-height: 1.5em;
  margin-bottom: 10px;
}
.detail-body .document-download-list .type-file .item-list li {
  font-size: 16px;
  color: var(--color-dark);
}
.detail-body .document-download-list .type-file .item-list li + li {
  padding-left: 10px;
  margin-left: 10px;
  border-left: 1px solid rgba(67, 67, 67, 0.4);
}
.detail-body .news-area .swiper {
  overflow: visible;
}
.detail-body .news-area .swiper .swiper-slide .link {
  opacity: 0;
  visibility: hidden;
}
.detail-body .news-area .swiper .swiper-slide.swiper-slide-visible .link {
  opacity: 1;
  visibility: visible;
}

.default-bar {
  margin-bottom: 40px;
}
.default-bar .whead {
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 2px solid #29B171;
}
.default-bar .whead .title {
  font-size: var(--typo-xl);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  line-height: 1.5em;
  padding-right: 30px;
}
.default-bar .box {
  color: var(--color-dark);
  font-weight: var(--fw-medium);
}
.default-bar .social-list {
  display: flex;
  align-items: center;
}
.default-bar .social-list .item-list {
  margin: 0 -2.5px;
  padding-left: 15px;
}
.default-bar .social-list .item-list li {
  padding: 0 2.5px;
}
.default-bar .social-list .item-list li:last-child {
  margin-left: 5px;
  padding-left: 7.5px;
  border-left: 1px solid var(--color-dark);
}
.default-bar .social-list .link {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
}
.default-bar .social-list .link:hover {
  border-color: var(--color-primary);
}

.vdo {
  margin: 30px auto 60px;
}

.gallery-slide {
  position: relative;
}
.gallery-slide .gallery-swiper-2 .cover {
  padding-top: 600px;
}
.gallery-slide .gallery-swiper-2 .cover a {
  position: unset;
}
.gallery-slide .gallery-slider-nav {
  margin-top: -150px;
  margin-left: 100px;
  max-width: 500px;
}
.gallery-slide .gallery-slider-nav .swiper .swiper-slide {
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 200ms ease-in-out;
}
.gallery-slide .gallery-slider-nav .swiper .swiper-slide:hover {
  border-color: var(--color-primary);
}
.gallery-slide .gallery-slider-nav .swiper .swiper-slide-thumb-active {
  border: 3px solid var(--color-primary);
}
.gallery-slide .gallery-slider-nav .cover {
  padding-top: 78px;
}

.layout-detail-bottom {
  padding: 30px 0;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}
.layout-detail-bottom .btn {
  font-weight: var(--fw-medium);
  background-color: var(--color-light);
  height: 50px;
  line-height: 50px;
  min-width: 200px;
  padding: 0 20px;
}
.layout-detail-bottom .btn-comment {
  border: 1px solid #2AB170;
  color: #2AB170;
}
.layout-detail-bottom .btn-comment .icon {
  margin-right: 5px;
}
.layout-detail-bottom .btn-comment:hover {
  background-color: #2AB170;
  color: var(--color-light);
}
.layout-detail-bottom .btn-comment:hover .icon svg * {
  fill: var(--color-light);
}
.layout-detail-bottom .btn-back {
  min-width: 120px;
  border: 1px solid #E5E5E5;
  color: #AAAAAA;
}
.layout-detail-bottom .btn-back:hover {
  background-color: #f5f5f5;
}

.detail-body .swiper:not(.gallery-slide .swiper) .swiper-slide-next .item {
  opacity: 1;
  pointer-events: visible;
  visibility: visible;
}

@media (max-width: 1600px) {
  .detail-body .document-download-list .type-file .item-list li {
    width: 100%;
  }
  .detail-body .document-download-list .type-file .item-list li + li {
    margin-left: 0;
    margin-top: 10px;
    padding: 0;
    border: none;
  }
  .detail-body .document-download-list .link {
    padding: 25px 20px 25px 30px;
  }
  .detail-body .document-download-list .desc {
    margin-bottom: 5px;
  }
  .detail-body .swiper:not(.gallery-slide .swiper) .swiper-pagination {
    margin-top: 40px;
  }
}
@media (max-width: 1440px) {
  .default-bar .whead .title {
    font-size: 32px;
  }
  .detail-body .whead .title {
    font-size: 32px;
  }
  .detail-body .whead {
    margin-bottom: 30px;
    padding-bottom: 15px;
  }
  .detail-body .document-download-list {
    margin-bottom: 70px;
  }
  .gallery-slide .gallery-slider-nav {
    margin-top: -110px;
    margin-left: 30px;
  }
  .vdo {
    max-width: 1000px;
  }
  .detail-body .document-download-list .type-file .item-list li {
    font-size: 14px;
  }
  .detail-body .document-download-list .link {
    padding: 20px 15px 20px 25px;
  }
}
@media (max-width: 1199px) {
  .default-bar {
    margin-bottom: 30px;
  }
  .default-bar .whead {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .default-bar .whead .title {
    font-size: 30px;
  }
  .default-bar .box,
  .default-bar .box strong {
    font-size: 18px;
  }
  .detail-body .whead .title {
    font-size: 30px;
  }
  .detail-body .document-download-list {
    margin-bottom: 60px;
  }
  .detail-body .document-download-list .link {
    padding: 20px;
  }
  .detail-body .swiper:not(.gallery-slide .swiper) .swiper-pagination {
    margin-top: 30px;
  }
  .gallery-slide .gallery-swiper-2 .cover {
    padding-top: 450px;
  }
  .gallery-slide .gallery-slider-nav {
    margin-top: -100px;
    margin-left: 25px;
  }
  .gallery-slide .gallery-slider-nav .cover {
    padding-top: 70px;
  }
  .vdo {
    margin: 0 0 40px 0;
  }
}
@media (max-width: 991px) {
  .default-bar {
    margin-bottom: 20px;
  }
  .default-bar .whead .title {
    font-size: 24px;
  }
  .detail-body .whead .title {
    font-size: 26px;
  }
  .detail-body .whead {
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  .default-bar .social-list .link {
    width: 30px;
    height: 30px;
  }
  .default-bar .box .icon svg {
    margin-top: -2px;
    transform: scale(0.8);
  }
  .default-bar .social-list .link .icon {
    transform: scale(0.9);
  }
  .default-bar .social-list .item-list {
    padding-left: 10px;
  }
  .detail-body .document-download-list {
    margin-bottom: 30px;
  }
  .detail-body .document-download-list .link > .row {
    margin: 0 -7.5px;
  }
  .detail-body .document-download-list .link > .row > div {
    padding: 0 7.5px;
  }
  .detail-body .document-download-list .desc {
    font-size: 18px;
  }
  .detail-body .document-download-list .type-file .item-list li {
    font-size: 15px;
  }
  .detail-body .swiper:not(.gallery-slide .swiper) .swiper-pagination {
    margin-top: 20px;
  }
  .gallery-slide .gallery-swiper-2 .cover {
    padding-top: 360px;
  }
  .gallery-slide .gallery-slider-nav {
    max-width: 315px;
    margin-top: -85px;
    margin-left: 15px;
  }
  .gallery-slide .gallery-slider-nav .cover {
    padding-top: 65px;
  }
  .vdo {
    margin: 0 0 30px 0;
  }
}
@media (max-width: 767px) {
  .default-bar .whead .title {
    font-size: 22px;
  }
  .default-bar .box,
  .default-bar .box strong {
    font-size: 16px;
  }
  .detail-body .whead .title {
    font-size: 26px;
  }
  .detail-body .whead {
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .detail-body .swiper:not(.gallery-slide .swiper) .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 575px) {
  .default-bar .whead .title {
    font-size: 20px;
  }
  .default-bar .box,
  .default-bar .box strong {
    font-size: 15px;
  }
  .detail-body .whead .title {
    font-size: 24px;
  }
}
.intro-page {
  min-height: 100vh;
  position: relative;
}
.intro-page .swiper-default .swiper-pagination-bullet {
  color: #ffffff;
  background-color: #ffffff;
}

.intro-slider {
  width: 100%;
  overflow: hidden;
}
.intro-slider .cover {
  position: relative;
  width: 100%;
  height: calc(100vh - 130px);
  top: 0;
  left: 0;
  background-color: #eee;
}
.intro-slider .video-container {
  padding-top: calc(100vh - 130px);
  background-color: #ffffff;
}
.intro-slider .video-container video {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.intro-slider .iframe-container {
  padding-top: calc(100vh - 130px);
}

.intro-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0;
  background: linear-gradient(to right, #2ab16e 0%, #01377d 100%);
}
.intro-content .height {
  height: 130px;
  align-items: center;
}
.intro-content .logo {
  display: flex;
  align-items: center;
}
.intro-content .logo .symbol {
  width: 80px;
}
.intro-content .logo .txt {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.4em;
}
.intro-content .logo .txt strong {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  display: inline-block;
}
.intro-content .action {
  text-align: right;
}
.intro-content .action .btn {
  padding: 0 30px;
  height: 55px;
  line-height: 55px;
}

.intro-content-wrapper {
  padding: 0 30px;
}

@media (min-width: 1441px) {
  .intro-content .logo .txt strong br {
    display: none;
  }
}
@media (max-width: 991px) {
  .intro-content .height {
    height: auto;
    padding: 20px 0;
  }
  .intro-page {
    min-height: inherit;
  }
  .intro-slider {
    position: relative;
    bottom: inherit;
  }
  .intro-slider .cover {
    height: auto;
    padding-top: 56.25%;
  }
  .intro-slider .video-container {
    padding-top: 56.25%;
  }
  .intro-content {
    position: relative;
    background: linear-gradient(to right, #01377d 0%, #2ab16e 100%);
  }
  .intro-content .logo {
    justify-content: center;
    text-align: center;
  }
  .intro-content .logo .symbol {
    width: 60px;
    margin: auto;
  }
  .intro-content .logo .txt {
    font-size: 14px;
    padding-left: 0;
    margin-top: 15px;
    line-height: 1.5em;
  }
  .intro-content .logo .txt strong {
    font-size: 18px;
    line-height: 1.3em;
  }
  .intro-content .logo .txt strong br {
    display: none;
  }
  .intro-content .action {
    margin-top: 15px;
    text-align: center;
  }
  .intro-content .action .btn {
    padding: 0 15px;
    height: 42px;
    line-height: 42px;
    font-size: 16px;
  }
  .intro-content .action > .row {
    margin: 0 -7.5px;
  }
  .intro-content .action > .row > div {
    padding: 0 7.5px;
  }
  .intro-content-wrapper {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .intro-content .action .btn {
    min-width: 100%;
  }
  .intro-content .logo .txt {
    font-size: 12px;
  }
  .intro-content .logo .txt strong {
    font-size: 14px;
  }
}
.cms-basic {
  overflow: hidden;
}

.news-card {
  color: var(--color-default);
  border: none;
  background-color: transparent;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.75em), calc(100% - 1.75em) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.75em), calc(100% - 1.75em) 100%, 0 100%);
  transition: all 200ms ease;
}
.news-card .card-body {
  padding: 30px;
}
.news-card .thumbnail {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 1.75em 100%, 0 calc(100% - 1.75em));
          clip-path: polygon(0 0, 100% 0, 100% 100%, 1.75em 100%, 0 calc(100% - 1.75em));
}
.news-card .thumbnail .cover {
  padding-top: 75%;
}
.news-card .title {
  font-size: var(--typo-sm);
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 1.5em;
  -webkit-line-clamp: 2;
  min-height: 3em;
}
.news-card .desc {
  font-size: var(--typo-xs);
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 1.5em;
  -webkit-line-clamp: 4;
  min-height: 6em;
}
.news-card .line {
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--color-primary);
}
.news-card .action {
  margin-top: 5px;
  font-size: var(--typo-xs);
  color: var(--color-primary);
}
.news-card .action span {
  position: relative;
  top: 6px;
}

.news-link {
  transition: all 200ms ease;
}
.news-link:hover {
  filter: drop-shadow(0px 30px 60px rgba(0, 0, 0, 0.1));
}
.news-link:hover .news-card {
  background-color: #ffffff;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 1600px) {
  .news-card .card-body {
    padding: 20px;
  }
  .news-card .title {
    font-size: var(--typo-default);
  }
  .news-card .thumbnail {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 1.25em 100%, 0 calc(100% - 1.25em));
            clip-path: polygon(0 0, 100% 0, 100% 100%, 1.25em 100%, 0 calc(100% - 1.25em));
  }
  .news-card {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.25em), calc(100% - 1.25em) 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.25em), calc(100% - 1.25em) 100%, 0 100%);
  }
  .news-card .title {
    font-size: 16px;
  }
  .news-card .line {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .news-card .desc {
    font-size: 14px;
  }
  .news-card .action {
    font-size: 16px;
    margin-top: 10px;
  }
  .news-card .action span {
    font-size: 22px;
  }
  .news-list {
    gap: 30px;
  }
}
@media (max-width: 1199px) {
  .news-card .card-body {
    padding: 20px;
  }
  .news-card .thumbnail {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 1.25em 100%, 0 calc(100% - 1.25em));
            clip-path: polygon(0 0, 100% 0, 100% 100%, 1.25em 100%, 0 calc(100% - 1.25em));
  }
  .news-card {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.25em), calc(100% - 1.25em) 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.25em), calc(100% - 1.25em) 100%, 0 100%);
  }
  .news-list {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .news-card .title {
    font-size: 16px;
  }
  .news-card .desc {
    font-size: 14px;
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: 1.5em;
    -webkit-line-clamp: 3;
    min-height: 4.5em;
  }
  .news-card .action {
    font-size: 14px;
  }
  .news-card .action span {
    font-size: 22px;
  }
  .news-card .line {
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .news-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 575px) {
  .news-card .card-body {
    padding: 10px;
  }
  .news-card .line {
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .news-card .action {
    font-size: 12px;
  }
  .news-card .action span {
    font-size: 20px;
  }
  .news-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.each-year .nav-link {
  font-size: var(--typo-sm);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  text-align: center;
  transition: all 0.4s ease-in-out;
}
.each-year .nav-link:hover, .each-year .nav-link.active {
  background: linear-gradient(to left, #2ab170 0%, #01377d 50%, #2ab170 100%);
  background-size: 200%;
  color: var(--color-light);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 1em 100%, 0 calc(100% - 1em));
          clip-path: polygon(0 0, 100% 0, 100% 100%, 1em 100%, 0 calc(100% - 1em));
}
.each-year .nav-link:hover::before, .each-year .nav-link.active::before {
  background-color: transparent;
}
.each-year .nav-link::before {
  opacity: 1;
  visibility: visible;
}
.each-year .editor-content {
  margin-top: 80px;
}

.document-download-list {
  width: 100%;
  margin-bottom: 60px;
}
.document-download-list::before {
  content: "";
  display: table;
}
.document-download-list.-layout-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
  margin-top: -20px;
  width: auto;
}
.document-download-list.-layout-grid .item {
  width: 33.3333333333%;
  padding: 10px 20px;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.document-download-list.-layout-grid .item-wrapper {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.25em), calc(100% - 2.25em) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.25em), calc(100% - 2.25em) 100%, 0 100%);
}
.document-download-list.-layout-grid .item-wrapper::before {
  display: none;
}
.document-download-list.-layout-grid .item-wrapper::after {
  background: linear-gradient(#2ab170 30%, #01377d 100%);
}
.document-download-list.-layout-grid .thumbnail {
  width: 100%;
}
.document-download-list.-layout-grid .thumbnail .cover {
  padding-top: 300px;
}
.document-download-list.-layout-grid .head {
  width: auto;
}
.document-download-list.-layout-grid .content {
  padding: 40px 30px;
}
.document-download-list.-layout-grid .box {
  margin-top: 40px;
}
.document-download-list.-layout-grid .box .item-list li {
  width: 100%;
}
.document-download-list.-layout-grid .box .item-list li + li {
  padding: 0;
  margin-left: 0;
  margin-top: 10px;
  border: none;
}
.document-download-list.-layout-grid .action {
  margin-top: 30px;
}
.document-download-list.-layout-grid .action .-read-more {
  margin-right: 40px;
}
.document-download-list.-layout-grid .action .-web-link {
  margin-top: 50px;
}
.document-download-list.-layout-grid .action .-web-link:hover {
  text-decoration: underline;
}
.document-download-list .item {
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.1));
}
.document-download-list .item:not(:last-child) {
  margin-bottom: 20px;
}
.document-download-list .item-wrapper {
  position: relative;
  display: block;
  background-color: var(--color-light);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 2.25em 100%, 0 calc(100% - 2em));
          clip-path: polygon(0 0, 100% 0, 100% 100%, 2.25em 100%, 0 calc(100% - 2em));
}
.document-download-list .item-wrapper::before {
  content: "";
  position: absolute;
  background: url(../img/static/obj-download.webp) no-repeat bottom right;
  width: 150px;
  height: 150px;
  background-size: contain;
  bottom: 0;
  right: 0;
}
.document-download-list .item-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #01377d 0%, #2ab170 100%);
  transition: all 200ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.document-download-list .item-wrapper:hover::after {
  opacity: 1;
  visibility: visible;
}
.document-download-list .item-wrapper:hover .head * {
  color: var(--color-light);
  fill: var(--color-light);
}
.document-download-list .item-wrapper:hover .box * {
  color: var(--color-light);
  fill: var(--color-light);
}
.document-download-list .thumbnail {
  position: relative;
  z-index: 1;
  width: 200px;
}
.document-download-list .thumbnail .cover {
  padding-top: 100%;
}
.document-download-list .head {
  margin-bottom: 20px;
  width: 700px;
}
.document-download-list .head .title {
  font-size: var(--typo-md);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 1.3em;
  -webkit-line-clamp: 1;
  min-height: 1.3em;
  margin-bottom: 10px;
}
.document-download-list .head .date {
  color: var(--color-dark);
  font-weight: var(--fw-bold);
}
.document-download-list .content {
  position: relative;
  z-index: 1;
  padding: 0 30px;
}
.document-download-list .box .item-list li {
  width: -moz-max-content;
  width: max-content;
}
.document-download-list .box .item-list li + li {
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid var(--color-border);
}
.document-download-list .box .icon {
  margin-right: 10px;
}
.document-download-list .box .txt {
  font-size: 20px;
  color: var(--color-dark);
}
.document-download-list .box .type {
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--color-default);
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
}
.document-download-list .box.-download svg * path {
  fill: #2ab170 !important;
}
.document-download-list .action .link {
  color: var(--color-primary);
  display: block;
}
.document-download-list .action .link:hover {
  text-decoration: underline;
}

.layout-view .btn-group {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.layout-view .btn-group > button {
  outline: none;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid var(--color-border);
  transition: all 300ms ease-in-out;
}
.layout-view .btn-group > button:first-child {
  margin-right: 10px;
}
.layout-view.layout-list .btn-group button:last-child {
  border-color: transparent;
  background-color: var(--color-primary);
}
.layout-view.layout-list .btn-group button:last-child span * {
  fill: var(--color-light);
}
.layout-view.layout-grid .btn-group button:first-child {
  border-color: transparent;
  background-color: var(--color-primary);
}
.layout-view.layout-grid .btn-group button:first-child span * {
  fill: var(--color-light);
}

@media (max-width: 1440px) {
  .document-download-list.-layout-grid .content {
    padding: 30px 25px;
  }
  .document-download-list .head .title {
    font-size: 22px;
  }
  .document-download-list .head .date {
    font-size: 18px;
  }
  .document-download-list .box .txt {
    font-size: 18px;
  }
  .document-download-list .action .link {
    font-size: 18px;
  }
  .document-download-list.-layout-grid .box {
    margin-top: 30px;
  }
  .document-download-list.-layout-list .action {
    margin-top: 20px;
  }
  .layout-view .btn-group > button {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 1199px) {
  .layout-view .btn-group > button {
    width: 56px;
    height: 56px;
  }
  .layout-view .btn-group > button svg {
    width: 25px;
  }
  .document-download-list.-layout-grid .item {
    width: 50%;
  }
  .document-download-list .item {
    padding: 10px;
  }
  .document-download-list .item:not(:last-child) {
    margin-bottom: 0;
  }
  .document-download-list .thumbnail {
    width: 250px;
  }
  .document-download-list .head {
    width: auto;
  }
  .document-download-list .box .item-list li {
    width: 100%;
  }
  .document-download-list .box .item-list li + li {
    padding-left: 0;
    margin-left: 0;
    margin-top: 10px;
    border: none;
  }
}
@media (max-width: 991px) {
  .layout-view .btn-group > button {
    width: 50px;
    height: 50px;
  }
  .document-download-list .content {
    padding: 0 20px;
  }
  .document-download-list .head .title {
    font-size: 20px;
  }
  .document-download-list .head .date {
    font-size: 16px;
  }
  .document-download-list .box .txt {
    font-size: 16px;
  }
  .document-download-list .action .link {
    font-size: 16px;
  }
  .document-download-list .action .link svg {
    width: 18px;
  }
  .document-download-list.-layout-grid .box {
    margin-top: 20px;
  }
  .document-download-list.-layout-grid {
    margin: 0 -7.5px;
    margin-top: -7.5px;
  }
  .document-download-list.-layout-grid .item {
    padding: 7.5px;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .document-download-list.-layout-grid .content {
    padding: 25px 20px;
  }
  .document-download-list.-layout-grid .action {
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  .layout-view .btn-group {
    margin-top: 10px;
  }
  .layout-view .btn-group > button {
    width: 40px;
    height: 40px;
  }
  .layout-view .btn-group > button svg {
    width: 18px;
  }
  .document-download-list.-layout-grid .item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .each-year .nav-link {
    font-size: var(--typo-xs);
  }
}
@media (max-width: 575px) {
  .document-download-list.-layout-grid .item {
    width: 100%;
  }
}
.event-calendar {
  margin-bottom: 80px;
}
.event-calendar .calendar-card {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}
.event-calendar .form-group-calendar {
  margin-bottom: 0;
}
.event-calendar .form-group-calendar.-group {
  max-width: 590px;
}
.event-calendar .form-group-calendar.-group .select2-container .select2-selection--single {
  padding: 0 30px;
}
.event-calendar .form-group-calendar.-year {
  min-width: 180px;
}
.event-calendar .form-group-calendar.-year .select2-container .select2-selection--single {
  padding: 0 30px 0 60px;
}
.event-calendar .form-group-calendar.-month {
  min-width: 220px;
}
.event-calendar .form-group-calendar.-month .select2-container .select2-selection--single {
  padding: 0 30px 0 90px;
}
.event-calendar .form-group-calendar .control-label {
  font-size: var(--typo-default);
  font-weight: var(--fw-bold);
  color: #434343;
}
.event-calendar .form-group-calendar .select2-container .select2-selection--single {
  background-color: var(--color-light);
  height: 60px;
  border-color: var(--color-primary);
}
.event-calendar .form-group-calendar .select2-container .select2-selection--single .select2-selection__rendered {
  font-size: var(--typo-default);
  color: #434343;
  line-height: 58px;
  padding: 0;
}
.event-calendar .form-group-calendar .select2-selection--single .select2-selection__arrow::before {
  font-size: 24px;
  color: #434343;
}
.event-calendar .header .top {
  padding: 20px 50px;
  background: linear-gradient(to left, #01377d 0%, #2ab170 100%);
}
.event-calendar .header .top .title-left {
  font-size: var(--typo-md);
  font-weight: var(--fw-bold);
  color: var(--color-light);
  width: 60px;
  text-align: right;
}
.event-calendar .header .middle {
  padding: 20px 50px;
  background-color: var(--color-light);
}
.event-calendar .month-topic {
  font-size: var(--typo-md);
  font-weight: var(--fw-bold);
  color: #434343;
}
.event-calendar .select .link {
  width: 72px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: #434343;
  border: 2px solid var(--color-border);
}
.event-calendar .select .link:hover, .event-calendar .select .link.active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.event-calendar .calendar-nav {
  display: flex;
  align-items: center;
}
.event-calendar .calendar-nav .link {
  width: 60px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-border);
}
.event-calendar .calendar-nav .link svg * {
  transition: all 200ms ease-in-out;
}
.event-calendar .calendar-nav .link:first-child {
  border-right: 0;
}
.event-calendar .calendar-nav .link:hover svg * {
  fill: var(--color-primary);
}
.event-calendar table {
  width: 100%;
}
.event-calendar table th {
  background-color: var(--color-secondary);
  padding: 30px 15px;
  font-size: var(--typo-md);
  font-weight: var(--fw-bold);
  color: var(--color-light);
  text-align: center;
  width: 14.2857142857%;
}
.event-calendar table tr:first-child td {
  border-top: none;
}
.event-calendar table tr:last-child td {
  border-bottom: none;
}
.event-calendar table td {
  position: relative;
  height: 120px;
  border: 1px solid var(--color-border);
  transition: all 200ms ease-in-out;
}
.event-calendar table td:first-child {
  border-left: none;
}
.event-calendar table td:last-child {
  border-right: none;
}
.event-calendar table .box {
  padding: 15px 10px;
  position: absolute;
  top: 0;
  left: 0;
  text-align: right;
  width: 100%;
  height: 100%;
}
.event-calendar table .box.tody {
  background-color: rgba(204, 204, 204, 0.1882352941);
}
.event-calendar table .box.tody .num {
  opacity: 1;
  color: var(--color-light);
}
.event-calendar table .box.tody .num::before {
  content: "";
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.event-calendar table .box .num {
  position: relative;
  z-index: 1;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  font-weight: var(--fw-black);
  color: var(--color-secondary);
  cursor: pointer;
  transition: all 200ms ease-in-out;
  opacity: 0.5;
}
.event-calendar table .event-group {
  margin: 10px 0;
}
.event-calendar table .event-group .event-item {
  position: relative;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: start;
  height: 25px;
  padding: 5px 8px;
  background-color: #2AB170;
  border-radius: 5px;
}
.event-calendar table .event-group .event-item small {
  display: block;
  margin-top: -1px;
  font-size: 14px;
  color: var(--color-light);
  font-weight: var(--fw-bold);
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 1.4em;
  -webkit-line-clamp: 1;
  min-height: 1.4em;
}
.event-calendar table .event-group .event-item .tooltip {
  font-family: "Noto Sans Thai", sans-serif !important;
  position: absolute;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.8);
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  font-weight: 600;
  opacity: 1;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 2px;
  margin-top: 10px;
  color: var(--color-light);
  font-size: 12px;
  text-align: center;
  line-height: 1.2em;
  padding: 5px 8px;
  overflow: visible;
}
.event-calendar table .event-group .event-item .tooltip::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(0, 0, 0, 0.8);
}
.event-calendar table .event-group .event-item:hover {
  background-color: var(--color-primary);
}
.event-calendar table .event-group .event-item:hover .tooltip {
  display: block !important;
}
.event-calendar table .event-group .action {
  margin-top: 10px;
}
.event-calendar table .event-group .action .link {
  display: block;
  text-align: left;
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: #434343;
  cursor: pointer;
}
.event-calendar table .event-group .event-more .event-drop-show {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -20%;
  margin-left: -20%;
  max-width: 180px;
  z-index: 5;
  padding: 10px;
  background-color: var(--color-light);
  border-radius: 5px;
  border: 1px solid var(--color-border);
  box-shadow: rgba(99, 99, 99, 0.3) 0px 2px 8px 0px;
  transition: all 400ms ease-in-out;
  opacity: 1;
}
.event-calendar table .event-group .event-more .event-drop-show .link:not(:last-child) {
  margin-bottom: 5px;
}
.event-calendar table .event-group .event-more .event-drop-show.visually-hidden {
  opacity: 0;
}
.event-calendar table .event-group .event-more .date-current .today {
  text-align: center;
  margin-bottom: 10px;
}
.event-calendar table .event-group .event-more .date-current .today small {
  display: block;
  padding: 5px;
  color: var(--color-gray);
}
.event-calendar table .event-group .event-more .date-current .today .day {
  font-size: var(--typo-md);
  font-weight: var(--fw-bold);
}
.event-calendar table .event-group .event-more .date-current .close-event {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  color: var(--color-border);
  transition: all 200ms ease-in-out;
  cursor: pointer;
  z-index: 20;
}
.event-calendar table .event-group .event-more .date-current .close-event:hover {
  color: var(--color-gray);
}
.event-calendar .calendar-note .whead {
  margin-top: 0;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 3px solid #CCCCCC;
}
.event-calendar .calendar-note .whead .title {
  font-size: var(--typo-lg);
}
.event-calendar .calendar-note .item-list li {
  width: -moz-max-content;
  width: max-content;
  width: 25%;
  padding: 12.5px 0;
}
.event-calendar .calendar-note .note {
  display: flex;
  align-items: center;
}
.event-calendar .calendar-note .box {
  width: 47px;
  height: 47px;
  margin-right: 20px;
}
.event-calendar .calendar-note .box.bg-current {
  background-color: #F5F5F5;
}
.event-calendar .calendar-note .box.bg-all {
  background-color: var(--color-secondary);
}
.event-calendar .calendar-note .box.bg-event {
  background-color: #2AB170;
}
.event-calendar .calendar-note .txt {
  font-size: var(--typo-md);
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
}
.event-calendar .default-filter .form-search .form-control {
  font-size: var(--typo-default);
  height: 60px;
}

.event-list .item {
  transition: all 0.2s ease-in-out;
}
.event-list .item:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}
.event-list .item:hover {
  border-color: transparent;
}
.event-list .item:hover .link {
  background: linear-gradient(to left, #01377d 0%, #2ab170 100%);
}
.event-list .item:hover .link::before {
  opacity: 1;
}
.event-list .item:hover .link .dot {
  background-color: var(--color-light);
}
.event-list .item:hover .link * {
  color: var(--color-light);
}
.event-list .link {
  position: relative;
  display: block;
  padding: 40px;
  background-color: var(--color-light);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 2.25em 100%, 0 calc(100% - 2em));
          clip-path: polygon(0 0, 100% 0, 100% 100%, 2.25em 100%, 0 calc(100% - 2em));
  transition: all 0.4s ease-in-out;
}
.event-list .link::before {
  content: "";
  position: absolute;
  background: url(../img/static/obj-calendar.webp) no-repeat bottom right;
  width: 150px;
  height: 150px;
  background-size: contain;
  bottom: 0;
  right: 0;
  opacity: 0;
}
.event-list .link * {
  transition: all 0.2s ease-in-out;
}
.event-list .dot {
  width: 18px;
  height: 18px;
  background-color: #2AB170;
  border-radius: 50%;
  margin-right: 20px;
}
.event-list .title {
  font-size: var(--typo-lg);
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  margin-bottom: 15px;
}
.event-list .date {
  font-size: var(--typo-lg);
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  margin-bottom: 10px;
}
.event-list .desc {
  font-size: var(--typo-md);
  font-weight: var(--fw-bold);
  color: #434343;
}
.event-list .read-more {
  display: flex;
  align-items: center;
  color: var(--color-secondary);
}
.event-list .read-more span {
  margin-left: 5px;
  font-size: 22px;
}

@media (max-width: 1600px) {
  .event-calendar .header .top .title-left {
    font-size: 22px;
  }
  .event-calendar .month-topic {
    font-size: 22px;
  }
  .event-calendar table th {
    padding: 20px 15px;
    font-size: 22px;
  }
  .event-list .date {
    font-size: 28px;
  }
  .event-list .desc {
    font-size: 22px;
  }
  .event-calendar .calendar-note .whead .title {
    font-size: 30px;
  }
}
@media (max-width: 1440px) {
  .event-calendar .header .top {
    padding: 20px 30px;
  }
  .event-calendar .header .top .title-left {
    font-size: 20px;
  }
  .event-calendar .month-topic {
    font-size: 20px;
  }
  .event-calendar table th {
    padding: 20px 15px;
    font-size: 20px;
  }
  .event-list .link {
    padding: 30px;
  }
  .event-list .date {
    font-size: 26px;
  }
  .event-list .desc {
    font-size: 20px;
  }
  .event-calendar .default-filter .form-search .form-control {
    height: 50px;
  }
  .event-calendar .form-group-calendar.-group .select2-container .select2-selection--single {
    padding: 0 20px;
  }
  .event-calendar .form-group-calendar .select2-container .select2-selection--single {
    height: 50px;
  }
  .event-calendar .form-group-calendar .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 50px;
  }
  .event-calendar .calendar-nav .link .icon {
    width: 10px;
  }
  .event-calendar .calendar-nav .link .icon svg {
    width: 100%;
  }
  .event-calendar .calendar-note .whead {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom-width: 2px;
  }
  .event-calendar .calendar-note .whead .title {
    font-size: 28px;
  }
  .event-calendar .calendar-note .box {
    width: 40px;
    height: 40px;
    margin-right: 16px;
  }
  .event-calendar .calendar-note .txt {
    font-size: var(--typo-sm);
  }
}
@media (max-width: 1199px) {
  .event-calendar .form-group-calendar.-month {
    min-width: 200px;
  }
  .event-calendar .form-group-calendar.-group .select2-container .select2-selection--single {
    padding: 0 20px;
  }
  .event-calendar .header .middle {
    padding: 20px 40px;
  }
  .event-calendar .month-topic {
    font-size: 20px;
  }
  .event-calendar table th {
    font-size: 18px;
    padding: 15px;
  }
  .event-calendar table .box .num {
    font-size: 18px;
  }
  .event-calendar table .event-group .event-item small {
    font-size: 13px;
    margin-top: 0;
  }
  .event-calendar table .event-group .action .link {
    font-size: 13px;
  }
  .event-calendar .calendar-note .whead {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
  .event-calendar .calendar-note .whead .title {
    font-size: 26px;
  }
  .event-calendar .calendar-note .item-list li {
    min-width: auto;
    width: 100%;
    padding: 0;
  }
  .event-calendar .calendar-note .item-list li + li {
    margin-top: 15px;
  }
  .event-calendar .calendar-note .box {
    width: 35px;
    height: 35px;
    margin-right: 10px;
  }
  .event-calendar .calendar-note .txt {
    font-size: 20px;
  }
  .event-list .title {
    font-size: 28px;
  }
  .event-list .link {
    padding: 25px;
  }
  .event-list .date {
    font-size: 26px;
  }
  .event-list .desc {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .event-calendar .calendar-card {
    margin-bottom: 30px;
  }
  .event-calendar .header .top {
    padding: 20px;
  }
  .event-calendar .form-group-calendar.-group {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .event-calendar .header .top .title-left {
    text-align: left;
    margin-bottom: 8px;
    font-size: 20px;
  }
  .event-calendar .form-group-calendar .control-label {
    font-size: 16px;
  }
  .event-calendar .form-group-calendar .select2-container .select2-selection--single {
    height: 50px;
  }
  .event-calendar .form-group-calendar .select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 16px;
    line-height: 50px;
  }
  .select2-container--option-calendar .select2-results__option {
    font-size: 16px;
    padding: 15px;
  }
  .event-calendar .form-group-calendar.-group .select2-container .select2-selection--single {
    padding: 0 15px;
  }
  .event-calendar .default-filter .form-search .form-control {
    font-size: 16px;
    height: 50px;
  }
  .event-calendar .form-group-calendar.-year .select2-container .select2-selection--single {
    padding: 0 30px 0 50px;
  }
  .event-calendar .form-group-calendar.-month .select2-container .select2-selection--single {
    padding: 0 30px 0 70px;
  }
  .event-calendar .header .middle {
    padding: 20px;
  }
  .event-calendar .calendar-nav svg {
    width: 10px;
  }
  .event-calendar .month-topic {
    font-size: 18px;
  }
  .event-calendar .select .link {
    font-size: 18px;
  }
  .event-calendar table th {
    font-size: 16px;
  }
  .event-calendar table td {
    height: 100px;
  }
  .event-calendar table .box .num {
    font-size: 16px;
  }
  .event-calendar table .event-group .event-item {
    border-radius: 4px;
  }
  .event-calendar .calendar-note .whead .title {
    font-size: 30px;
  }
  .event-list .title {
    font-size: 26px;
  }
  .event-list .link {
    padding: 20px;
  }
  .event-list .date {
    font-size: 22px;
  }
  .event-list .desc {
    font-size: 18px;
  }
  .event-calendar table .box.tody .num::before {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .event-calendar .form-group-calendar.-group {
    margin-bottom: 16px;
  }
  .event-calendar .header .top .title-left {
    font-size: 18px;
  }
  .event-calendar .calendar-card .body {
    overflow-x: scroll;
  }
  .event-calendar table {
    width: 736px;
  }
  .event-calendar table .event-group .event-item {
    padding: 4px;
    height: 23px;
  }
  .event-calendar table .event-group .event-item small {
    font-size: 11px;
  }
  .event-calendar table .event-group .action .link {
    font-size: 11px;
  }
  .event-calendar .calendar-note .whead .title {
    font-size: 28px;
  }
  .event-calendar .calendar-note .box {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 575px) {
  .event-calendar .calendar-note .whead .title {
    font-size: 26px;
  }
  .event-list .title {
    font-size: 24px;
  }
}
.manual-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
}
.manual-list .link {
  display: block;
}
.manual-list .link:hover .content {
  filter: drop-shadow(0px 30px 60px rgba(0, 0, 0, 0.1));
}
.manual-list .thumbnail {
  position: relative;
  z-index: 1;
  margin-bottom: -60px;
}
.manual-list .thumbnail .cover {
  width: 285px;
  padding-top: 380px;
  margin: auto;
}
.manual-list .content {
  transition: all 200ms ease-in-out;
}
.manual-list .content-wrapper {
  position: relative;
  padding: 90px 30px 30px 30px;
  transition: all 200ms ease;
  background-color: var(--color-light);
  max-height: 400px;
  max-width: 575px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 1.25em 100%, 0 calc(100% - 1.25em));
          clip-path: polygon(0 0, 100% 0, 100% 100%, 1.25em 100%, 0 calc(100% - 1.25em));
}
.manual-list .content-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to left, #01377d 0%, #2ab170 100%);
}
.manual-list .content-wrapper::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background: #EBEBEB;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 1.25em 100%, 0 calc(100% - 1.25em), 0 0, 1px 1px, 1px calc(100% - 1.25em - 0.83px), calc(1.25em + 0.83px) calc(100% - 1px), calc(100% - 1px) calc(100% - 1px), calc(100% - 1px) 1px, 1px 1px);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 1.25em 100%, 0 calc(100% - 1.25em), 0 0, 1px 1px, 1px calc(100% - 1.25em - 0.83px), calc(1.25em + 0.83px) calc(100% - 1px), calc(100% - 1px) calc(100% - 1px), calc(100% - 1px) 1px, 1px 1px);
}
.manual-list .content-wrapper .title {
  font-size: var(--typo-sm);
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 1.5em;
  -webkit-line-clamp: 2;
  min-height: 3em;
}
.manual-list .file-type {
  margin-top: 25px;
}
.manual-list .file-type .item-list li {
  width: -moz-max-content;
  width: max-content;
  font-size: 16px;
  color: var(--color-default);
}
.manual-list .file-type .item-list li + li {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid var(--color-primary);
}
.manual-list .read-more {
  margin-top: 25px;
  font-size: 18px;
  color: var(--color-primary);
}

@media (max-width: 1440px) {
  .manual-list {
    gap: 30px 20px;
  }
}
@media (max-width: 1199px) {
  .manual-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .manual-list .thumbnail {
    margin-bottom: -50px;
  }
  .manual-list .content-wrapper {
    padding: 70px 30px 30px 30px;
  }
  .manual-list .content-wrapper .title {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .manual-list {
    gap: 20px;
  }
  .manual-list .content-wrapper {
    padding: 70px 20px 30px 20px;
  }
  .manual-list .content-wrapper .title {
    font-size: 16px;
  }
  .manual-list .file-type {
    margin-top: 20px;
  }
  .manual-list .file-type .item-list li {
    font-size: 14px;
  }
  .manual-list .read-more {
    font-size: 16px;
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .manual-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.service-area {
  margin-bottom: 100px;
}
.service-area .service-list {
  margin: -20px;
  display: flex;
  flex-wrap: wrap;
}
.service-area .service-list .item {
  padding: 20px;
  flex: 0 0 20%;
  max-width: 20%;
}

.innovation-area .innovation-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.innovation-area .innovation-list .item {
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.1));
}
.innovation-area .innovation-list .item:not(:last-child) {
  margin-bottom: 20px;
}
.innovation-area .innovation-list .item-wrapper {
  position: relative;
  display: block;
  background-color: var(--color-light);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.5em), calc(100% - 1.5em) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.5em), calc(100% - 1.5em) 100%, 0 100%);
  transition: all 200ms ease-in-out;
}
.innovation-area .innovation-list .item-wrapper:hover {
  background: linear-gradient(to left, #01377d 0%, #2ab170 100%);
}
.innovation-area .innovation-list .item-wrapper:hover * {
  color: var(--color-light) !important;
  fill: var(--color-light);
}
.innovation-area .innovation-list .body {
  background-color: #F5F5F5;
  min-height: 200px;
  display: flex;
  align-items: center;
}
.innovation-area .innovation-list .thumbnail {
  width: 100px;
  margin: auto;
}
.innovation-area .innovation-list .thumbnail .contain {
  padding-top: 100%;
}
.innovation-area .innovation-list .content {
  padding: 25px 20px;
}
.innovation-area .innovation-list .content .icon {
  top: -2px;
}
.innovation-area .innovation-list .content .title {
  font-size: 22px;
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 1.4em;
  -webkit-line-clamp: 1;
  min-height: 1.4em;
}
.innovation-area .innovation-list .content .qty {
  margin-top: 30px;
}
.innovation-area .innovation-list .content .qty * {
  font-size: 18px;
}
.innovation-area .innovation-list .content .action {
  margin-top: 30px;
  display: flex;
}
.innovation-area .innovation-list .content .action .link {
  display: block;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  transition: none;
}
.innovation-area .innovation-list .content .action .link:hover {
  text-decoration: underline;
}

@media (max-width: 1199px) {
  .service-area {
    margin-bottom: 80px;
  }
  .service-area .service-list {
    margin: -10px;
  }
  .service-area .service-list .item {
    padding: 10px;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .innovation-area .innovation-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .innovation-area .innovation-list .content .title {
    font-size: 20px;
  }
  .innovation-area .innovation-list .content .qty {
    font-size: 16px;
  }
  .innovation-area .innovation-list .content .qty * {
    font-size: 16px;
  }
  .innovation-area .innovation-list .content .action .link {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .service-area {
    margin-bottom: 40px;
  }
  .innovation-area .innovation-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .innovation-area .innovation-list .content {
    padding: 20px 15px;
  }
  .innovation-area .innovation-list .content .title {
    font-size: 16px;
  }
  .innovation-area .innovation-list .content .qty {
    font-size: 14px;
  }
  .innovation-area .innovation-list .content .qty * {
    font-size: 14px;
  }
  .innovation-area .innovation-list .content .action .link {
    font-size: 15px;
  }
  .innovation-area .innovation-list .content .qty {
    margin-top: 20px;
  }
  .innovation-area .innovation-list .content .action {
    margin-top: 20px;
  }
  .innovation-area .innovation-list .content .icon {
    top: -4px;
  }
  .innovation-area .innovation-list .content .icon svg {
    width: 16px;
  }
}
@media (max-width: 767px) {
  .service-area .service-list {
    margin: -7.5px;
  }
  .service-area .service-list .item {
    padding: 7.5px;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .innovation-area .innovation-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact-map {
  margin-bottom: 90px;
}
.contact-map .nav {
  margin: 0 -12px;
  padding-bottom: 40px;
}
.contact-map .nav li {
  padding: 0 12px;
}
.contact-map .nav .link {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-default);
  border-bottom: 3px solid transparent;
  padding-bottom: 5px;
}
.contact-map .nav .link:hover {
  color: var(--color-primary);
}
.contact-map .nav .link.active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.contact-map .tab-content {
  position: relative;
}
.contact-map .tab-content .iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  padding-top: 600px;
}
.contact-map .tab-content .iframe-container .iframe-responsive {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.contact-map .tab-content .cover {
  padding-top: 600px;
}
.contact-map .tab-content .btn-full-screen {
  position: absolute;
  top: 30px;
  right: 30px;
  height: 20px;
  min-width: 220px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-light);
  border: 1px solid var(--color-primary);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}
.contact-map .tab-content .btn-full-screen .icon {
  margin-right: 10px;
}
.contact-map .tab-content .btn-full-screen:hover {
  background-color: var(--color-primary);
  color: var(--color-light);
}
.contact-map .tab-content .btn-full-screen:hover .icon svg * {
  fill: var(--color-light);
}

.contact-section {
  position: relative;
  overflow: hidden;
}
.contact-section .contact-bg {
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-image: url("../img/static/bg-contact.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-center {
  position: relative;
  z-index: 1;
  margin: 50px 0;
}
.contact-center .swiper {
  padding-bottom: 50px;
}
.contact-center .swiper-pagination {
  bottom: 0;
}
.contact-center .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  margin: 0 7.5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--color-light);
  transition: all 200ms ease-in-out;
}
.contact-center .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}
.contact-center .whead {
  margin: 0;
  text-align: center;
}
.contact-center .whead .title {
  font-size: 36px;
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  margin-bottom: 40px;
}
.contact-center .contact-card {
  position: relative;
  border: 1px solid var(--color-primary);
}
.contact-center .contact-card::before {
  content: "";
  position: absolute;
  right: 0;
  background-image: url("../img/static/bg-cs.webp");
  background-repeat: no-repeat;
  background-position: bottom right;
  width: 170px;
  height: 100%;
}
.contact-center .contact-card .head {
  padding: 20px;
  color: var(--color-light);
  font-weight: bold;
  background: linear-gradient(#01377d 0%, #2ab170 100%);
}
.contact-center .contact-card .body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  padding: 20px;
  background-color: var(--color-light);
}
.contact-center .contact-card .body .desc {
  line-height: 1.5em;
}
.contact-center .contact-card .body .action {
  margin: 20px 0 10px 0;
  display: flex;
  align-items: end;
}
.contact-center .contact-card .body .action .link {
  display: block;
  color: var(--color-primary);
}
.contact-center .contact-card .body .action .link:hover .text {
  opacity: 0.8;
}
.contact-center .contact-card .body .action .text {
  font-weight: bold;
  color: var(--color-primary);
  margin-right: 5px;
  transition: all 200ms ease-in-out;
}

.contact-service {
  padding: 50px 0;
}
.contact-service .whead {
  margin: 0;
}
.contact-service .whead .title {
  width: 100%;
  font-size: 36px;
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-primary);
}
.contact-service .contact-service-list .item {
  min-height: 200px;
  padding: 20px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 1.5em 100%, 0 calc(100% - 1.5em));
          clip-path: polygon(0 0, 100% 0, 100% 100%, 1.5em 100%, 0 calc(100% - 1.5em));
  background: linear-gradient(#01377d 0%, #2ab170 100%);
}
.contact-service .contact-service-list .item > .row {
  position: relative;
  padding-bottom: 10px;
}
.contact-service .contact-service-list .item > .row::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--color-primary);
  height: 2px;
  width: 50px;
}
.contact-service .contact-service-list .item .icon {
  position: relative;
  margin-right: 10px;
}
.contact-service .contact-service-list .item .title {
  font-weight: var(--fw-bold);
  color: var(--color-light);
  min-height: 3em;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 1.5em;
  -webkit-line-clamp: 2;
  max-height: 3em;
}
.contact-service .contact-service-list .item .tel {
  font-size: 16px;
  line-height: 1.5em;
  color: var(--color-light);
}
.contact-service .contact-service-list .item .tel .link {
  color: var(--color-light);
}
.contact-service .contact-service-list .swiper-grid-column {
  margin: -15px;
}
.contact-service .contact-service-list .swiper-grid-column > .swiper-wrapper {
  flex-direction: row;
}
.contact-service .contact-service-list .swiper-grid-column .swiper-slide {
  padding: 15px;
}
.contact-service .contact-service-list .swiper-pagination {
  bottom: 0;
  position: relative;
  margin-top: 15px;
}
.contact-service .contact-service-list .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  margin: 0 7.5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #ebebeb;
  transition: all 200ms ease-in-out;
}
.contact-service .contact-service-list .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.layout-form {
  filter: drop-shadow(0px 30px 60px rgba(0, 0, 0, 0.1));
}

.form-contact {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0.75em 100%, 0 calc(100% - 0.75em));
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0.75em 100%, 0 calc(100% - 0.75em));
  background-image: url("../img/static/bg-form-contact.webp");
  background-repeat: no-repeat;
  background-size: cover;
}
.form-contact .form-group {
  margin-bottom: 30px;
}
.form-contact .form-group .control-label {
  font-size: 20px;
  color: var(--color-secondary);
  margin-bottom: 10px;
  line-height: 1.5em;
}
.form-contact .form-group .control-label span {
  color: red;
  margin-left: 5px;
}
.form-contact .form-group .control-label .text-placeholder {
  color: #999999 !important;
}
.form-contact .form-group .form-control {
  font-size: 16px;
  height: 60px;
  padding: 15px 25px;
  border-color: #BABABA;
}
.form-contact .form-group .form-control.form-textarea {
  height: 190px;
}
.form-contact .form-group .radio-control .title {
  line-height: 1.5em;
}
.form-contact .form-group .radio-control input[type=radio]:checked ~ .icon,
.form-contact .form-group .radio-control .icon {
  border-color: var(--color-primary);
}
.form-contact .form-group .radio-control input[type=radio]:checked ~ .icon::before {
  background-color: var(--color-primary);
}
.form-contact .form-group ol {
  padding-left: 20px;
}
.form-contact .form-group ol li:not(:last-child) {
  margin-bottom: 12px;
  line-height: 1.5em;
}
.form-contact .form-head {
  padding: 20px 60px;
  background: linear-gradient(to left, #01377d 0%, #2ab170 100%);
}
.form-contact .form-head .icon {
  margin-right: 10px;
}
.form-contact .form-head .title {
  font-size: 30px;
  font-weight: var(--fw-bold);
  color: var(--color-light);
}
.form-contact .form-body {
  padding: 60px;
}
.form-contact .form-success {
  text-align: center;
  padding-bottom: 40px;
}
.form-contact .form-success .title {
  font-size: 30px;
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  margin-top: 30px;
}
.form-contact .action {
  margin-top: 10px;
  padding-top: 40px;
  border-top: 1px solid rgba(41, 177, 114, 0.1921568627);
  text-align: center;
}
.form-contact .action .btn-cancel {
  color: var(--color-light);
  background: #999999;
}
.form-contact .action .btn-cancel::before {
  display: none;
}
.form-contact .action .btn {
  font-weight: var(--fw-bold);
}
.form-contact .action .btn + .btn {
  margin-left: 40px;
}

.layout-service-info {
  margin-top: 60px;
}
.layout-service-info .whead {
  margin: 0;
}
.layout-service-info .whead .title {
  width: 100%;
  font-size: 30px;
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-primary);
}
.layout-service-info .info-card-full {
  padding: 20px 50px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0.75em 100%, 0 calc(100% - 0.75em));
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0.75em 100%, 0 calc(100% - 0.75em));
  background: linear-gradient(to left, #01377d 0%, #2ab170 100%);
}
.layout-service-info .info-card-full .icon {
  margin-right: 15px;
}
.layout-service-info .info-card-full .title {
  font-weight: var(--fw-bold);
  color: var(--color-light);
}

.layout-form-progress {
  margin-bottom: 60px;
}
.layout-form-progress .whead {
  margin: 0;
  text-align: center;
}
.layout-form-progress .whead .title {
  width: 100%;
  font-size: 36px;
  font-weight: var(--fw-bold);
  line-height: 1.5em;
  color: var(--color-secondary);
  margin-bottom: 40px;
}
.layout-form-progress .form-progress-step {
  position: relative;
  max-width: 870px;
  margin: auto;
}
.layout-form-progress .form-progress-step .nav {
  margin: 0 -15px;
}
.layout-form-progress .form-progress-step .nav .item {
  width: 33.3333333333%;
  padding: 0 15px;
}
.layout-form-progress .form-progress-step .nav .item.active .circle {
  background: linear-gradient(to left, #01377d 0%, #2ab170 100%);
  border: none;
}
.layout-form-progress .form-progress-step .nav .item.active .circle .icon path {
  fill: var(--color-light);
}
.layout-form-progress .form-progress-step .nav .item .circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--color-light);
  border-radius: 50%;
  border: 2px solid #C9C9C9;
  margin: auto;
}
.layout-form-progress .form-progress-step .nav .item .text-step {
  text-transform: uppercase;
  margin-top: 15px;
  font-size: 22px;
  font-weight: var(--fw-medium);
  color: var(--color-dark);
  text-align: center;
}
.layout-form-progress .form-progress-step .nav .item .desc {
  text-align: center;
  line-height: 1.4em;
  color: var(--color-dark);
  margin-top: 10px;
}
.layout-form-progress .form-progress-step .progress-line {
  position: absolute;
  width: calc(100% - 300px);
  height: 2px;
  background-color: #C9C9C9;
  top: calc(50% - 35px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media (max-width: 1440px) {
  .contact-map {
    margin-bottom: 80px;
  }
  .contact-map .nav {
    padding-bottom: 30px;
  }
  .contact-map .nav .link {
    font-size: 22px;
  }
  .contact-center .whead .title {
    font-size: 34px;
    margin-bottom: 30px;
  }
  .contact-service .whead .title {
    font-size: 34px;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
  .contact-service .contact-service-list {
    gap: 30px;
  }
  .form-contact .form-head {
    padding: 20px 50px;
  }
  .form-contact .form-head .title {
    font-size: 28px;
  }
  .form-contact .form-body {
    padding: 50px;
  }
  .layout-service-info .whead .title {
    font-size: 28px;
  }
  .layout-service-info .info-card-full {
    padding: 20px 40px;
  }
  .layout-form-progress .whead .title {
    font-size: 34px;
  }
  .form-contact .form-success .title {
    font-size: 28px;
  }
  .contact-center .contact-card .body {
    min-height: 186px;
  }
}
@media (max-width: 1199px) {
  .contact-map {
    margin-bottom: 60px;
  }
  .contact-map .nav .link {
    font-size: 20px;
  }
  .contact-map .tab-content .iframe-container,
  .contact-map .tab-content .cover {
    padding-top: 550px;
  }
  .contact-center {
    margin: 30px 0;
  }
  .contact-center .whead .title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .contact-center .contact-card .head {
    font-size: 18px;
  }
  .contact-center .contact-card .body {
    padding: 15px;
    min-height: 222px;
  }
  .contact-center .contact-card .body .desc {
    font-size: 16px;
  }
  .contact-center .contact-card .body .action .text {
    font-size: 18px;
  }
  .contact-center .contact-card .body .action .link {
    font-size: 16px;
  }
  .contact-center .swiper {
    padding-bottom: 40px;
  }
  .contact-center .swiper-pagination .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    margin: 0 5px;
  }
  .contact-service {
    padding: 40px 0;
  }
  .contact-service .whead .title {
    font-size: 30px;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .contact-service .contact-service-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .form-contact .form-head {
    padding: 20px 40px;
  }
  .form-contact .form-head .title {
    font-size: 26px;
  }
  .form-contact .form-body {
    padding: 40px;
  }
  .form-contact .form-body .gutters-40 {
    margin: 0 -15px;
  }
  .form-contact .form-body .gutters-40 > div {
    padding: 0 15px;
  }
  .form-contact .action {
    padding-top: 30px;
  }
  .form-contact .action .btn + .btn {
    margin-left: 30px;
  }
  .layout-service-info {
    margin-top: 50px;
  }
  .layout-service-info .whead .title {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .layout-service-info .info-card-full {
    padding: 20px 30px;
  }
  .layout-form-progress {
    margin-bottom: 50px;
  }
  .layout-form-progress .whead .title {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .layout-form-progress .form-progress-step .nav .item .text-step {
    font-size: 20px;
  }
  .layout-form-progress .form-progress-step .nav .item .desc {
    font-size: 18px;
  }
  .form-contact .form-success {
    padding-bottom: 20px;
  }
  .form-contact .form-success .icon svg {
    width: 80px;
  }
  .form-contact .form-success .title {
    font-size: 26px;
    margin-top: 15px;
  }
}
@media (max-width: 991px) {
  .contact-map {
    margin-bottom: 30px;
  }
  .contact-map .nav {
    margin: 0 -7.5px;
    padding-bottom: 25px;
  }
  .contact-map .nav li {
    padding: 0 7.5px;
  }
  .contact-map .nav .link {
    font-size: 18px;
  }
  .contact-map .tab-content .iframe-container,
  .contact-map .tab-content .cover {
    padding-top: 450px;
  }
  .contact-center .whead .title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .contact-center .contact-card .head {
    padding: 15px;
  }
  .contact-center .contact-card .body {
    min-height: 225px;
  }
  .contact-service {
    padding: 30px 0 0 0;
  }
  .contact-service .whead .title {
    font-size: 28px;
  }
  .contact-service .contact-service-list .item .title {
    font-size: 18px;
  }
  .contact-service .contact-service-list {
    gap: 15px;
  }
  .form-contact .form-group {
    margin-bottom: 20px;
  }
  .form-contact .form-group .control-label {
    font-size: 16px;
  }
  .form-contact .form-group .form-control {
    padding: 15px;
    height: 55px;
  }
  .form-contact .form-group .radio-control .title {
    font-size: 16px;
  }
  .form-contact .form-group ol li {
    font-size: 16px;
  }
  .form-contact .form-head {
    padding: 15px 20px;
  }
  .form-contact .form-head .icon svg {
    width: 30px;
  }
  .form-contact .form-head .title {
    font-size: 22px;
  }
  .form-contact .form-body {
    padding: 30px 20px;
  }
  .form-contact .form-body .gutters-40 {
    margin: 0 -7.5px;
  }
  .form-contact .form-body .gutters-40 > div {
    padding: 0 7.5px;
  }
  .form-contact .action {
    padding-top: 30px;
  }
  .form-contact .action .btn + .btn {
    margin-left: 13px;
  }
  .layout-service-info {
    margin-top: 30px;
  }
  .layout-service-info .whead .title {
    font-size: 22px;
  }
  .layout-service-info .info-card-full {
    padding: 15px 20px;
  }
  .layout-service-info .info-card-full .icon svg {
    width: 30px;
  }
  .layout-service-info .info-card-full .title {
    font-size: 18px;
  }
  .layout-form-progress {
    margin-bottom: 30px;
  }
  .layout-form-progress .form-progress-step .nav {
    margin: 0 -30px;
  }
  .layout-form-progress .form-progress-step .nav .item {
    padding: 0 30px;
  }
  .layout-form-progress .whead .title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .layout-form-progress .form-progress-step .nav .item .text-step {
    font-size: 18px;
  }
  .layout-form-progress .form-progress-step .nav .item .desc {
    font-size: 16px;
  }
  .form-contact .form-success {
    padding-bottom: 15px;
  }
  .form-contact .form-success .icon svg {
    width: 70px;
  }
  .form-contact .form-success .title {
    font-size: 24px;
    margin-top: 5px;
  }
}
@media (max-width: 767px) {
  .contact-center .whead .title {
    font-size: 26px;
  }
  .contact-center .swiper {
    padding-bottom: 30px;
  }
  .contact-center .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    margin: 0 3px;
  }
  .contact-service .whead .title {
    font-size: 26px;
  }
  .contact-service .contact-service-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-contact .form-group {
    margin-bottom: 15px;
  }
  .form-contact .form-group .control-label {
    margin-bottom: 7px;
  }
  .form-contact .form-group .form-control {
    height: 50px;
    padding: 15px 10px;
  }
  .form-contact .form-head {
    padding: 15px;
  }
  .form-contact .form-head .icon svg {
    width: 26px;
  }
  .form-contact .form-head .title {
    font-size: 20px;
  }
  .form-contact .form-body {
    padding: 20px 15px;
  }
  .layout-service-info .info-card-full .title {
    font-size: 16px;
    line-height: 1.4em;
  }
  .layout-form-progress .whead .title {
    font-size: 26px;
  }
  .layout-form-progress .form-progress-step {
    max-width: 500px;
  }
  .layout-form-progress .form-progress-step .nav .item.active .circle .icon svg {
    width: 25px;
  }
  .layout-form-progress .form-progress-step .nav {
    margin: 0 -5px;
  }
  .layout-form-progress .form-progress-step .nav .item {
    padding: 0 5px;
  }
  .layout-form-progress .form-progress-step .nav .item .text-step {
    font-size: 16px;
    margin-top: 10px;
  }
  .layout-form-progress .form-progress-step .nav .item .desc {
    font-size: 14px;
    max-width: 103px;
    margin-left: auto;
    margin-right: auto;
  }
  .layout-form-progress .form-progress-step .progress-line {
    width: calc(100% - 100px);
  }
  .form-contact .form-success .title {
    font-size: 20px;
    margin-top: 0;
  }
  .contact-service .contact-service-list .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    margin: 0 3px;
  }
}
@media (max-width: 575px) {
  .contact-service .contact-service-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .layout-form-progress .whead .title {
    font-size: 24px;
  }
  .layout-form-progress .whead .title br {
    display: none;
  }
  .contact-center .contact-card .body {
    min-height: 225px;
  }
}
.layout-faq .card {
  border: none;
}
.layout-faq .card:not(:last-child) {
  margin-bottom: 20px;
}
.layout-faq .card-header {
  padding: 0;
}
.layout-faq .card-header .link {
  display: block;
  padding: 15px 30px;
}
.layout-faq .card-header .link:not(.collapsed) {
  background: linear-gradient(#2ab170 30%, #01377d 100%);
}
.layout-faq .card-header .link:not(.collapsed) .icon {
  fill: var(--color-light);
}
.layout-faq .card-header .link:not(.collapsed) .icon img {
  filter: brightness(0) invert(1);
}
.layout-faq .card-header .link:not(.collapsed) .title {
  color: var(--color-light);
}
.layout-faq .card-header .link .title {
  line-height: 1.3em;
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
}
.layout-faq .card-body {
  overflow: hidden;
  position: relative;
  top: -1px;
  padding: 30px;
  border: 1px solid var(--color-primary);
}
.layout-faq .card-body p {
  line-height: 1.5em;
}
.layout-faq .document-download-list {
  margin-bottom: 0;
}
.layout-faq .document-download-list .whead {
  margin-bottom: 25px;
  padding-bottom: 15px;
}
.layout-faq .document-download-list .whead .title {
  font-size: 22px;
  font-weight: 700;
}
.layout-faq .document-download-list .swiper-slide .item {
  opacity: 1;
}
.layout-faq .document-download-list .swiper:not(.gallery-slide .swiper) .swiper-pagination {
  margin: 30px 0 0 0;
}
.layout-faq .document-download-list .swiper:not(.gallery-slide .swiper) .swiper-pagination .swiper-pagination-bullet {
  width: 17px;
  height: 17px;
}
.layout-faq .document-download-list .link {
  padding: 20px 15px 20px 25px;
}

@media (max-width: 1199px) {
  .layout-faq .card-header .link {
    padding: 15px 20px;
  }
  .layout-faq .card-header .link .title {
    font-size: 18px;
  }
  .layout-faq .card-body {
    padding: 20px;
  }
  .layout-faq .card-body p {
    font-size: 18px;
  }
  .layout-faq .card-body p:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .layout-faq .card-header .link {
    padding: 15px;
  }
  .layout-faq .card-header .link .title {
    font-size: 16px;
  }
  .layout-faq .card-body {
    padding: 20px 15px;
  }
  .layout-faq .card-body p {
    font-size: 16px;
  }
  .layout-faq .document-download-list .whead {
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  .layout-faq .document-download-list .whead .title {
    font-size: 20px;
  }
  .layout-faq .document-download-list .item {
    padding: 0;
  }
  .layout-faq .document-download-list .swiper:not(.gallery-slide .swiper) .swiper-pagination {
    margin: 20px 0 0 0;
  }
  .layout-faq .document-download-list .swiper:not(.gallery-slide .swiper) .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }
}
.sitmap-full {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 60px 100px;
  background-color: var(--color-light);
  transform: translateY(100%);
  transition: all 400ms ease-out;
}
.sitmap-full.show {
  opacity: 1;
  transform: translateY(0);
  z-index: 5001;
}
.sitmap-full .sitmap-menu {
  height: 87dvh;
  overflow-y: scroll;
  padding: 100px;
  /* width */
  /* Track */
  /* Handle */
}
.sitmap-full .sitmap-menu::-webkit-scrollbar {
  width: 7px;
  border-radius: 5px;
}
.sitmap-full .sitmap-menu::-webkit-scrollbar-track {
  background: #E6E6E6;
  border-radius: 5px;
}
.sitmap-full .sitmap-menu::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: var(--color-primary);
}
.sitmap-full .sitmap-menu > .row {
  margin-top: -40px;
}
.sitmap-full .sitmap-menu > .row > div {
  margin-top: 60px;
}
.sitmap-full .close {
  position: absolute;
  top: 65px;
  left: 100px;
  width: -moz-max-content;
  width: max-content;
  opacity: 1;
  cursor: pointer;
  z-index: 1;
  transition: all 200ms ease-out;
}
.sitmap-full .close:hover {
  opacity: 0.7;
}
.sitmap-full .h-title {
  font-size: 45px;
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  text-align: center;
  margin: 0;
}

.sitmap-menu .title {
  font-size: 20px;
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-secondary);
}
.sitmap-menu .title .link {
  width: 100%;
  font-size: 22px;
  min-width: 195px;
  color: var(--color-secondary);
}
.sitmap-menu .title .link:hover {
  opacity: 0.8;
}
.sitmap-menu .subtitle {
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  margin-bottom: 15px;
}
.sitmap-menu .subtitle .link {
  color: var(--color-secondary);
}
.sitmap-menu .subtitle .link:hover {
  opacity: 0.8;
}
.sitmap-menu .submenu + .submenu {
  margin-top: 30px;
}
.sitmap-menu .list-group .item {
  width: 100%;
}
.sitmap-menu .list-group .item + .item {
  margin-top: 10px;
}
.sitmap-menu .list-group .link {
  font-size: 18px;
  padding-left: 15px;
  position: relative;
  line-height: 1.4em;
  color: #707070;
  max-width: 230px;
}
.sitmap-menu .list-group .link::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--color-secondary);
  border-radius: 50%;
}
.sitmap-menu .list-group .link:hover {
  color: var(--color-secondary);
}
.sitmap-menu .list-sub-group {
  margin: 15px 0;
}
.sitmap-menu .list-sub-group li {
  font-size: 16px;
  padding: 0;
  color: var(--color-secondary);
}
.sitmap-menu .list-sub-group li .link {
  padding-left: 0;
  font-size: 16px;
  font-weight: var(--fw-normal);
}
.sitmap-menu .list-sub-group li .link::before {
  display: none;
}
.sitmap-menu .link {
  display: block;
}

@media (max-width: 1440px) {
  .sitmap-full {
    padding: 50px 80px;
  }
  .sitmap-full .close svg {
    width: 30px;
  }
  .sitmap-full .h-title {
    font-size: 36px;
  }
  .sitmap-menu .title .link {
    font-size: 20px;
  }
  .sitmap-full .sitmap-menu > .row {
    margin-top: -50px;
  }
}
@media (max-width: 1199px) {
  .sitmap-full {
    padding: 50px 40px;
  }
  .sitmap-full .close {
    left: 40px;
    top: 50px;
  }
  .sitmap-full .close svg {
    width: 28px;
  }
  .sitmap-full .sitmap-menu {
    padding: 50px 40px 40px 0;
  }
  .sitmap-menu .list-sub-group {
    padding-left: 35px;
  }
  .sitmap-full .h-title {
    font-size: 32px;
  }
  .sitmap-menu .title {
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .sitmap-full .close {
    left: 20px;
    top: 40px;
  }
  .sitmap-full .close svg {
    width: 24px;
  }
  .sitmap-full .h-title {
    font-size: 28px;
  }
  .sitmap-full {
    padding: 40px 20px;
  }
  .sitmap-full .sitmap-menu {
    padding: 30px 20px 20px 0;
  }
  .sitmap-full .sitmap-menu > .row {
    margin-top: -20px;
    margin-left: -10px;
    margin-right: -10px;
  }
  .sitmap-full .sitmap-menu > .row > div {
    margin-top: 20px;
    padding: 0 10px;
  }
  .sitmap-full .sitmap-menu > .row > div:not(:first-child) {
    margin-top: 20px;
  }
  .sitmap-menu .list-sub-group {
    padding-left: 30px;
    margin: 12px 0;
  }
}
.full-map .iframe-container {
  padding-top: 100vh;
}
.full-map .cover {
  padding-top: 100vh;
}

.layout-search .text-results {
  font-size: 30px;
  line-height: 1.5em;
  color: #202020;
  margin-bottom: 30px;
}
.layout-search .search-list .item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #BBBBBB;
}
.layout-search .search-list .cover {
  width: 170px;
  padding-top: 130px;
}
.layout-search .search-list .title {
  font-size: 30px;
  color: var(--color-secondary);
  margin-bottom: 15px;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 1.4em;
  -webkit-line-clamp: 1;
  min-height: 1.4em;
}
.layout-search .search-list .desc {
  font-size: 16px;
  margin-bottom: 10px;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 1.5em;
  -webkit-line-clamp: 2;
  min-height: 3em;
}
.layout-search .search-list .link {
  font-size: 18px;
  color: #999999;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 1.4em;
  -webkit-line-clamp: 1;
  min-height: 1.4em;
}
.layout-search .search-list .link:hover {
  color: var(--color-primary);
}

@media (max-width: 1440px) {
  .layout-search .text-results {
    font-size: 28px;
  }
  .layout-search .search-list .title {
    font-size: 28px;
    margin-bottom: 10px;
  }
}
@media (max-width: 1199px) {
  .layout-search .text-results {
    font-size: 26px;
  }
  .layout-search .search-list .item > .row {
    margin: 0 -7.5px;
  }
  .layout-search .search-list .item > .row > div {
    padding: 0 7.5px;
  }
  .layout-search .search-list .title {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .layout-search .search-list .title {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .layout-search .text-results {
    margin: 30px 0 20px 0;
    font-size: 24px;
  }
  .layout-search .search-list .title {
    font-size: 22px;
  }
  .layout-search .search-list .desc {
    font-size: 14px;
  }
  .layout-search .search-list .link {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .layout-search .text-results {
    margin: 20px 0 10px 0;
    font-size: 22px;
  }
  .layout-search .search-list .cover {
    width: 100%;
    padding-top: 250px;
    margin-bottom: 15px;
  }
  .layout-search .search-list .title {
    font-size: 20px;
  }
}
.layout-guide {
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}
.layout-guide * {
  text-shadow: none;
}
.layout-guide .card {
  position: inherit;
  border: none;
  max-width: 600px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.5em), calc(100% - 2.5em) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.5em), calc(100% - 2.5em) 100%, 0 100%);
}
.layout-guide .card.step-1 .title {
  text-align: center;
}
.layout-guide .card.step-1 .progress-line::before {
  width: 10%;
}
.layout-guide .card.step-1 .desc {
  padding: 0 50px;
}
.layout-guide .card.step-1 .action {
  text-align: center;
}
.layout-guide .card.step-1 .action .btn {
  min-width: 200px;
}
.layout-guide .card.step-2 .progress-line::before {
  width: 11.1111111111%;
}
.layout-guide .card.step-3 .progress-line::before {
  width: 22.2222222222%;
}
.layout-guide .card.step-4 .progress-line::before {
  width: 33.3333333333%;
}
.layout-guide .card.step-5 .progress-line::before {
  width: 44.4444444444%;
}
.layout-guide .card.step-6 .progress-line::before {
  width: 55.5555555556%;
}
.layout-guide .card.step-7 .progress-line::before {
  width: 66.6666666667%;
}
.layout-guide .card.step-8 .progress-line::before {
  width: 77.7777777778%;
}
.layout-guide .card.step-9 .progress-line::before {
  width: 88.8888888889%;
}
.layout-guide .content {
  padding: 30px 20px;
  text-align: left;
}
.layout-guide .progress-line {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #EDEDED;
}
.layout-guide .progress-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 10px;
  background-color: var(--color-primary);
  transition: all 400ms ease;
}
.layout-guide .head {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.layout-guide .head .title {
  margin-bottom: 0;
}
.layout-guide .head .close-guide {
  padding: 0;
  right: -5px;
  position: relative;
  display: flex;
}
.layout-guide .title {
  font-size: 24px;
  font-weight: var(--fw-black);
  color: var(--color-dark);
  margin-bottom: 15px;
}
.layout-guide .desc {
  font-size: 18px;
  line-height: 1.5em;
  color: var(--color-dark);
}
.layout-guide .desc + .desc {
  margin-top: 20px;
  font-weight: var(--fw-medium);
}
.layout-guide .close-guide {
  display: flex;
  cursor: pointer;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  margin-left: auto;
  padding: 15px 15px 0 15px;
}
.layout-guide .close-guide span {
  font-size: 36px;
  font-weight: var(--fw-medium);
  color: var(--color-primary);
  transition: all 300ms ease;
}
.layout-guide .close-guide:hover span {
  opacity: 0.8;
}
.layout-guide .action {
  margin-top: 40px;
}
.layout-guide .action .btn {
  font-size: 20px;
  font-weight: var(--fw-bold);
  min-width: 120px;
}

.guide-position-top {
  padding-top: 30px !important;
}

.guides-canvas .guide-banner {
  padding-top: 0 !important;
  inset: 200px 50px auto auto !important;
  padding-left: 100px;
}
.guides-canvas .guide-wcag {
  top: 120px !important;
  right: 140px !important;
  left: unset !important;
  text-align: right !important;
  padding-right: 100px;
}
.guides-canvas .guide-ipv6 {
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  inset: auto 0 0 0 !important;
  margin-bottom: 280px;
  right: 190px !important;
}

.guide-2 {
  margin-top: -71px;
}
.guide-2 ~ .guide-pointer {
  right: 50px;
}

.guide-3 {
  margin-top: -71px;
}
.guide-3 ~ .guide-pointer {
  left: 100px;
}

.guide-4 {
  margin-top: -71px;
}
.guide-4 ~ .guide-pointer {
  right: 20px;
}

.guide-5 {
  margin-left: -71px;
}
.guide-5 ~ .guide-pointer {
  left: 0;
  top: 50%;
  width: 30px;
  height: 60px;
}

.guide-6 {
  margin-right: -69px;
  margin-top: 200px;
}
.guide-6 ~ .guide-pointer {
  right: 0;
  top: 63%;
  width: 60px;
  height: 60px;
}

.guide-7 {
  margin-bottom: -71px;
}
.guide-7 ~ .guide-pointer {
  right: 0;
  left: 0;
  top: unset;
  bottom: 0;
  width: 60px;
  height: 60px;
  margin: auto;
}

.guide-8 {
  margin-bottom: -71px;
}
.guide-8 ~ .guide-pointer {
  right: 80px;
  left: unset;
  top: unset;
  bottom: 0;
  width: 60px;
  height: 60px;
  margin: auto;
}

.guide-9 {
  margin-bottom: -71px;
}
.guide-9 ~ .guide-pointer {
  right: 80px;
  left: unset;
  top: unset;
  bottom: 0;
  width: 60px;
  height: 60px;
  margin: auto;
}

.guide-pointer {
  position: absolute;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  width: 60px;
  height: 30px;
  top: 0;
}
.guide-pointer::before {
  content: "";
  position: absolute;
  display: block;
  visibility: visible;
  background-color: var(--color-light);
  width: 40px;
  height: 40px;
  transform: translate(20%, 25%) rotate(45deg);
  border-bottom-color: transparent !important;
  border-left-color: transparent !important;
}

.guides-mask,
.guides-overlay {
  display: none;
}

.global-container-home .guides-overlay-custom {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1002;
}

.guides-guide {
  margin: 20px 0;
}

.guides-current-element {
  pointer-events: none;
}

.top-bar.guides-current-element {
  z-index: 1003;
}

.guide-nav-lang.guides-current-element::before {
  content: "";
  position: absolute;
  background-color: var(--color-light);
  width: 180px;
  height: 50px;
  display: flex;
  top: -10px;
  left: -8px;
}
.guide-nav-lang.guides-current-element ~ div {
  z-index: 1003;
}

.guide-main-header.guides-current-element::before {
  content: "";
  position: absolute;
  background-color: var(--color-light);
  width: calc(100% + 10px);
  height: 50px;
  display: flex;
  top: -6px;
  left: -11px;
}
.guide-main-header.guides-current-element * {
  z-index: 1003;
}

.guide-search.guides-current-element::before {
  content: "";
  position: absolute;
  background-color: var(--color-light);
  width: 50px;
  height: 50px;
  display: flex;
  top: -5px;
  left: -10px;
}
.guide-search.guides-current-element ~ div {
  z-index: 1003;
}

.guide-ipv6.guides-current-element::before {
  content: "";
  position: absolute;
  background-color: var(--color-light);
  width: 90px;
  height: 90px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.guide-sitemap.guides-current-element::before {
  content: "";
  position: absolute;
  background-color: var(--color-light);
  width: 130px;
  height: 30px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.guide-visitors.guides-current-element::before {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1803921569);
  width: 160px;
  height: 35px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.wcag-fix-z .asw-wrapper {
  z-index: 1003;
}
.wcag-fix-z .asw-widget.-mb {
  position: relative;
  z-index: 1003;
}

.nav-lang.guides-current-element * {
  position: relative;
  z-index: 100000;
}

@media screen and (max-width: 1600px) {
  .guide-2,
  .guide-3,
  .guide-4 {
    margin-top: -78px;
  }
  .guide-5 ~ .guide-pointer {
    left: 5px;
  }
  .guide-pointer::before {
    width: 35px;
    height: 35px;
  }
  .guides-canvas .guide-wcag {
    right: 75px !important;
  }
  .guide-sitemap.guides-current-element::before {
    width: 100%;
  }
  .layout-guide .card.step-1 .desc {
    padding: 0 30px;
  }
  .layout-guide .card {
    max-width: 470px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.5em), calc(100% - 1.5em) 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.5em), calc(100% - 1.5em) 100%, 0 100%);
  }
  .layout-guide .progress-line {
    height: 5px;
  }
  .layout-guide .progress-line::before {
    height: 5px;
  }
  .layout-guide .close-guide {
    padding: 10px 10px 0 10px;
  }
  .layout-guide .close-guide span {
    font-size: 28px;
    padding: 0;
  }
  .layout-guide .title {
    font-size: 20px;
  }
  .layout-guide .desc {
    font-size: 14px;
  }
  .layout-guide .desc + .desc {
    margin-top: 10px;
  }
  .layout-guide .content {
    padding: 25px 20px;
  }
  .layout-guide .action {
    margin-top: 25px;
  }
  .layout-guide .card.step-1 .action .btn {
    min-width: 130px;
    font-size: 16px;
    height: 44px;
    line-height: 44px;
  }
  .layout-guide .action .btn {
    font-size: 16px;
    height: 44px;
    line-height: 44px;
  }
}
@media screen and (max-width: 991px) {
  .layout-guide .head {
    padding: 10px 15px;
  }
  .layout-guide .title {
    font-size: 18px;
  }
  .layout-guide .content {
    padding: 20px 15px;
  }
  .layout-guide {
    width: 100%;
    padding: 0 15px;
  }
  .layout-guide .card {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1em), calc(100% - 1em) 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1em), calc(100% - 1em) 100%, 0 100%);
  }
  .layout-guide .card.step-1 .desc {
    padding: 0;
  }
  .layout-guide .action {
    margin-top: 25px;
  }
  .guide-pointer::before {
    width: 30px;
    height: 30px;
    transform: translate(20%, 30%) rotate(45deg);
  }
  .guides-canvas .guide-welcome {
    top: 120px !important;
  }
  .guides-canvas .guide-welcome .guide-1 .card {
    margin: auto;
  }
  .guides-canvas .guide-lang {
    padding-top: 15px !important;
    margin-top: 0;
  }
  .guides-canvas .guide-lang .layout-guide {
    margin: 0;
  }
  .guides-canvas .guide-lang .guide-2 ~ .guide-pointer {
    top: unset;
    bottom: -30px;
    right: unset;
    left: 30px;
    height: 60px;
  }
  .guides-canvas .guide-main-header {
    margin-top: 310px;
  }
  .guides-canvas .guide-3 ~ .guide-pointer,
  .guides-canvas .guide-4 ~ .guide-pointer {
    top: 5px;
  }
  .guides-canvas .guide-banner {
    inset: 200px 0 auto auto !important;
    padding-left: 0;
    margin: 0;
  }
  .guides-canvas .guide-banner .layout-guide {
    margin: 0;
  }
  .guides-canvas .guide-banner .guide-5 ~ .guide-pointer {
    left: 0;
    right: 0;
    top: -20px;
    margin: auto;
    width: 60px;
  }
  .guides-canvas .guide-wcag {
    position: fixed;
    top: unset !important;
    bottom: 175px;
    right: 0 !important;
    padding: 0;
  }
  .guides-canvas .guide-wcag .layout-guide {
    margin: 0;
  }
  .guides-canvas .guide-wcag .guide-6 ~ .guide-pointer {
    top: unset;
    bottom: -26px;
    right: 40px;
  }
  .guides-canvas .guide-ipv6 {
    right: unset !important;
    width: auto;
    inset: auto auto 705.438px 15px !important;
    margin-bottom: 0;
  }
  .guides-canvas .guide-view {
    margin-bottom: 0;
  }
  .nav-lang.guides-current-element::before {
    content: "";
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2196078431);
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
  }
  .guide-sitemap.guides-current-element::before {
    height: 50px;
  }
  .guide-visitors.guides-current-element::before {
    height: 60px;
    top: 22px;
  }
  .global-container-home .guides-overlay-custom.d-block-custom {
    z-index: -1;
  }
  .wcag-fix-z .asw-wrapper {
    z-index: -1;
  }
  .layout-header .main-menu {
    z-index: auto;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: inherit;
    width: 1260px;
  }
}
@media (min-width: 1441px) {
  .container {
    max-width: inherit;
    width: 1310px;
  }
}
@media (max-width: 1600px) {
  .container {
    max-width: inherit;
    width: 1260px;
  }
}
@media (max-width: 1540px) {
  .btn {
    height: 50px;
    line-height: 50px;
    min-width: 140px;
    font-size: 18px;
  }
  .swiper-default .swiper-pagination-bullet {
    height: 16px;
    width: 16px;
  }
  .swiper-default .swiper-pagination-bullet:after {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: inherit;
    width: 970px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: inherit;
    width: 100%;
  }
  .btn {
    font-size: var(--typo-xs);
  }
}
@media (max-width: 767px) {
  .container {
    max-width: inherit;
    width: 100%;
  }
  .swiper-default .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-default .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-default .swiper-pagination-custom,
  .swiper-default .swiper-pagination-fraction {
    bottom: 10px;
  }
}
@media (max-width: 575px) {
  .container {
    max-width: inherit;
    width: 100%;
  }
  .btn {
    height: 46px;
    line-height: 46px;
    min-width: 110px;
    font-size: 16px;
  }
  .swiper-default .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
  }
  .swiper-default .swiper-pagination-bullet:after {
    width: 34px;
    height: 34px;
  }
  .swiper-default .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-default .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 3px;
  }
  .swiper-default .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active,
  .swiper-default .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    margin: 0 12px;
  }
}/*# sourceMappingURL=source.css.map */