/* config */
:root {
  --font-family: "Noto Sans Thai", sans-serif;
  --color-primary: #143057;
  --color-primary-dark: #081B36;
  --color-secondary: #C69C6C;
  --color-tertiary: #004cdd;
  --color-light: #fff;
  --color-snow: #F1F5FF;
  --color-black: #020202;
  --color-dark: #333;
  --color-default: #333333;
  --color-gray: #BEC2C5;
  --color-gray-2: #565656;
  --color-danger: #ec4546;
  --color-warning: #FFC107;
  --color-success: #00e066;
  --color-border: #E7EEFE;
  --linear-to-r-primary: linear-gradient(to right, #143057 0%, #0D2443 100%);
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 900;
  --typo-xxl: 80px;
  --typo-xl: 48px;
  --typo-lg: 24px;
  --typo-md: 20px;
  --typo-sm: 18px;
  --typo-default: 16px;
  --typo-xs: 12px;
  --transition: all 400ms ease-in-out;
  --transition-btn: all 500ms ease-in-out;
  --transition-delay: 100ms;
  --box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bg-tertiary {
  background-color: var(--color-tertiary) !important;
}

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

.bg-black {
  background-color: var(--color-black) !important;
}

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

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

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

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

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

.bg-border {
  background-color: var(--color-border) !important;
}

.bg-snow {
  background-color: var(--color-snow) !important;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1600px) {
  :root {
    --typo-xxl: 70px;
  }
}
@media (max-width: 1440px) {
  :root {
    --typo-xxl: 60px;
    --typo-xl: 36px;
    --typo-lg: 22px;
    --typo-md: 18px;
    --typo-sm: 16px;
  }
}
@media (max-width: 1199px) {
  :root {
    --typo-xxl: 44px;
    --typo-xl: 30px;
    --typo-lg: 20px;
  }
}
@media (max-width: 991px) {
  :root {
    --typo-xxl: 40px;
    --typo-xl: 26px;
  }
}
@media (max-width: 767px) {
  :root {
    --typo-xxl: 28px;
    --typo-xl: 24px;
    --typo-md: 18px;
    --typo-sm: 15px;
    --typo-default: 14px;
  }
}
body {
  font-family: "Noto Sans Thai", sans-serif;
  background-color: var(--color-light);
  color: var(--color-default);
  font-size: var(--typo-default);
  font-weight: var(--fw-normal);
  line-height: 1.5em;
  top: 0 !important;
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5rem 0;
  font-weight: var(--fw-normal);
  line-height: 1.5em;
  color: var(--color-default);
}

.h1 strong, .h2 strong, .h3 strong, .h4 strong, .h5 strong, .h6 strong,
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
  font-weight: var(--fw-bold);
}

h1, .h1 {
  font-size: var(--typo-xxl);
}

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

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

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

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

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

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: var(--fw-normal);
}

p strong,
strong {
  font-weight: var(--fw-bold);
}

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

figure.cover {
  position: relative;
  overflow: hidden;
  margin: 0;
}
figure.cover 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;
  transition: var(--transition);
}

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

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

.link:hover, .link.hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* frameworks */
.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;
}

figure {
  margin: 0;
  position: relative;
}
figure.cover {
  margin: 0;
}
figure.cover img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
figure.contain img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
figure img {
  width: 100%;
  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-out;
}

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

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

img {
  max-width: 100%;
}

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

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

.title,
.subtitle,
.desc {
  margin: 0;
}

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

/* components */
#preload {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  left: 0;
  top: 0;
  background-color: #fff;
}

.preload {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9999;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.preload .logo {
  width: 160px;
  height: 160px;
  padding: 30px;
  line-height: 110px;
}
.preload .loader {
  border: 2px solid;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border-color: #C00000 transparent transparent;
  animation: spins 1s linear infinite;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0.4;
}

@keyframes spins {
  100% {
    transform: rotate(360deg);
    filter: hue-rotate(0);
  }
}
.menu-mobile-btn {
  display: none;
  position: relative;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 3;
  width: 24px;
  height: 18px;
}
.menu-mobile-btn .btn-mobile {
  display: block;
  width: 24px;
  height: 18px;
  transition: var(--transition);
}
.menu-mobile-btn .btn-mobile .bar {
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  background-color: var(--color-primary);
  margin: auto;
  transition: var(--transition);
  border-radius: 2px;
}
.menu-mobile-btn .btn-mobile .bar:nth-child(1) {
  top: 0;
}
.menu-mobile-btn .btn-mobile .bar:nth-child(2) {
  top: 0;
  bottom: 0;
}
.menu-mobile-btn .btn-mobile .bar:nth-child(3) {
  top: 0;
  bottom: 0;
}
.menu-mobile-btn .btn-mobile .bar:nth-child(4) {
  bottom: 0;
}
.menu-mobile-btn .btn-mobile.close {
  opacity: 1;
}
.menu-mobile-btn .btn-mobile.close .bar:nth-child(1) {
  top: 0;
  opacity: 0;
}
.menu-mobile-btn .btn-mobile.close .bar:nth-child(2) {
  top: 0;
  bottom: 0;
  transform: rotate(45deg);
}
.menu-mobile-btn .btn-mobile.close .bar:nth-child(3) {
  top: 0;
  bottom: 0;
  transform: rotate(-45deg);
}
.menu-mobile-btn .btn-mobile.close .bar:nth-child(4) {
  bottom: 0;
  opacity: 0;
}

@media (max-width: 991px) {
  .menu-mobile-btn {
    display: block;
  }
}
.slick-dots-container {
  overflow: hidden;
  display: block;
  padding: 0;
  position: relative;
  width: 5.5rem;
  margin: 0.625rem auto;
  height: 0.875rem;
}
.slick-dots-container > ul {
  align-items: center;
  bottom: unset;
  height: 100%;
  padding: 0;
  display: flex !important;
  transition: all 0.25s;
  position: relative;
  margin: 0;
  list-style: none;
  transform: translateX(0);
}
.slick-dots-container > ul li.p-small-1,
.slick-dots-container > ul li.n-small-1 {
  transform: scale(0.8);
}
.slick-dots-container > ul li.slick-active {
  transform: scale(1.3);
  transform-origin: center;
}

.slick-prev:before,
.slick-next:before {
  color: var(--color-dark);
}

.slick-prev:hover:before,
.slick-next:hover:before {
  color: var(--color-secondary);
}

.slick-prev, .slick-next {
  font-size: 22px;
  color: var(--color-secondary);
  width: 44px;
  height: 44px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-snow);
  background-color: var(--color-snow);
  transition: var(--transition);
}
.slick-prev:before, .slick-next:before {
  content: "";
}
.slick-prev.slick-disabled, .slick-next.slick-disabled {
  opacity: 0.4;
}
.slick-prev:hover, .slick-next:hover {
  color: var(--color-light);
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.slick-prev, .slick-next {
  z-index: 1;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

.slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0 4px;
  border: 1px solid rgba(18, 29, 119, 0.05);
  padding: 0;
  border-radius: 6px;
  transition: var(--transition);
}
.slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(18, 29, 119, 0.05);
  border-radius: 6px;
  transition: var(--transition);
}
.slick-dots li button:before {
  display: none;
}
.slick-dots li.slick-active {
  width: 40px;
  border-color: var(--color-secondary);
}
.slick-dots li.slick-active button {
  background: var(--color-secondary);
}

.slick-slide .item {
  float: left;
}

@media (max-width: 1199px) {
  .slick-prev, .slick-next {
    font-size: 20px;
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 767px) {
  .slick-dots li {
    margin: 0 0.2rem;
  }
}
.breadcrumb-block {
  padding: 0;
  background-color: transparent;
  margin-top: 20px;
}

.breadcrumb {
  background-color: transparent;
  margin: 0;
  padding: 0;
  border-radius: 0px;
}
.breadcrumb li {
  position: relative;
  font-size: var(--typo-default);
  line-height: 1.4em;
}
.breadcrumb li .link {
  font-weight: var(--fw-medium);
  color: var(--color-light);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumb li .link:hover {
  color: var(--color-secondary);
}
.breadcrumb li.active {
  color: var(--color-secondary);
  font-weight: var(--fw-medium);
  max-width: 300px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.breadcrumb li + li {
  padding-left: 20px;
  margin-left: 10px;
}
.breadcrumb li + li:before {
  content: "/";
  color: var(--color-secondary);
  position: relative;
  left: -15px;
}
.breadcrumb li + li.active:before {
  color: var(--color-secondary);
}

.pagination-block {
  text-align: right;
}

.pagination {
  margin: 0;
  display: inline-block;
}
.pagination .link {
  display: block;
  text-align: center;
  min-width: 40px;
  height: 40px;
  padding: 0;
  font-size: var(--typo-default);
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-primary);
  background-color: transparent;
  border: 1px solid transparent;
  text-decoration: none;
  border-radius: 50%;
  transition: all 200ms ease-out;
}
.pagination .link:hover {
  background-color: var(--color-secondary);
  color: var(--color-light);
  box-shadow: 4px 4px 16px rgba(109, 109, 109, 0.16);
}
.pagination .active .link {
  background-color: var(--color-primary);
  color: var(--color-light);
  border: 1px solid var(--color-primary);
  box-shadow: 4px 4px 16px rgba(109, 109, 109, 0.16);
}
.pagination ul {
  padding: 0;
  margin: 0;
}
.pagination li {
  display: inline-block;
  vertical-align: middle;
}
.pagination li + li {
  margin-left: 6px;
}

.pagination-label {
  font-size: var(--typo-default);
  font-weight: var(--fw-normal);
  line-height: 1em;
  color: var(--color-primary);
}
.pagination-label span {
  font-weight: var(--fw-semibold);
}

.pagination-nav .link {
  background: var(--color-light);
  box-shadow: 4px 4px 16px rgba(109, 109, 109, 0.16);
}

.editor-content .font-base, .editor-content p, .editor-content .editor-content {
  font-size: var(--typo-default);
  margin-bottom: 15px;
  line-height: 1.6em;
}
.editor-content p:last-child {
  margin-bottom: 0;
}
.editor-content img {
  height: auto !important;
}
.editor-content h4, .editor-content .h4 {
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}
.editor-content a {
  color: var(--color-primary);
  text-decoration: none;
}
.editor-content a:hover {
  text-decoration: underline;
}
.editor-content ul {
  padding: 0;
  list-style: none;
}
.editor-content ul > li {
  padding-left: 25px;
  position: relative;
}
.editor-content ul > li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.editor-content .box {
  background-color: var(--color-snow);
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
}
.editor-content .box:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .editor-content .font-base,
  .editor-content p,
  .editor-content {
    font-size: var(--typo-xs);
  }
}
@media (max-width: 767px) {
  .editor-content ul > li {
    padding-left: 20px;
  }
  .editor-content ul > li::before {
    left: 8px;
    top: 8px;
  }
}
.whead {
  margin-bottom: 15px;
}
.whead .title {
  margin: 0;
  font-size: 1.8em;
  font-weight: bold;
  line-height: 1em;
}

.btn {
  background: none;
  position: relative;
  padding: 0 28px;
  min-width: 120px;
  height: 56px;
  line-height: 1.2em;
  border: none;
  border-radius: 30px;
  font-size: var(--typo-default);
  font-weight: var(--fw-medium);
  color: var(--color-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-btn);
}
.btn.fluid {
  min-width: inherit;
  width: 100%;
}
.btn:focus {
  box-shadow: none;
}
.btn.btn-sm {
  min-width: 120px;
  height: 40px;
  font-size: var(--typo-xs);
}
.btn.btn-md {
  min-width: 120px;
  height: 48px;
  font-size: var(--typo-default);
}
.btn.btn-lg {
  min-width: 180px;
  height: 60px;
  font-size: var(--typo-sm);
}
.btn span {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}

.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,
.show > .btn-primary.dropdown-toggle {
  color: var(--color-light);
  background-color: var(--color-primary);
}

.btn-primary:hover,
.btn-primary.active,
.btn-primary:active,
.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: var(--color-light);
  background-color: var(--color-primary);
}

.btn-primary[disabled],
.btn-primary.disabled,
.btn-primary.disabled:hover {
  color: var(--color-light);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  opacity: 0.5;
  pointer-events: none;
}

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

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

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

.btn-secondary,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
  color: var(--color-light);
  background-color: var(--color-secondary);
}

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

.btn-secondary[disabled],
.btn-secondary.disabled,
.btn-secondary.disabled:hover {
  color: var(--color-light);
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  opacity: 0.5;
  pointer-events: none;
}

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

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

.btn-secondary.outline[disabled],
.btn-secondary.outline.disabled,
.btn-secondary.outline.disabled:hover {
  color: var(--color-secondary);
  background-color: var(--color-light);
  border-color: var(--color-secondary);
  opacity: 0.5;
}

.btn-light,
.btn-light:focus,
.btn-light.focus,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
  color: var(--color-secondary);
  background-color: var(--color-light);
}

.btn-light:hover,
.btn-light.active,
.btn-light:active,
.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-secondary);
  background-color: var(--color-light);
}

.btn-light[disabled],
.btn-light.disabled,
.btn-light.disabled:hover {
  color: var(--color-secondary);
  background-color: var(--color-light);
  border-color: var(--color-secondary);
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 1440px) {
  .btn {
    height: 50px;
    border-radius: 25px;
    padding: 0 20px;
  }
  .btn-sm {
    height: 35px;
    border-radius: 17.5px;
  }
  .btn.btn-md {
    height: 44px;
    border-radius: 22px;
  }
}
@media (max-width: 991px) {
  .btn {
    height: 45px;
    border-radius: 22.5px;
    font-size: 14px;
  }
  .btn.sm {
    height: 40px;
    border-radius: 20px;
    font-size: 14px;
  }
  .btn.btn-md {
    height: 42px;
    border-radius: 21px;
  }
}
@media (max-width: 767px) {
  .btn {
    height: 44px;
    border-radius: 22px;
    padding: 0 15px;
  }
  .btn.sm {
    height: 36px;
    border-radius: 18px;
    font-size: 14px;
  }
  .btn.btn-md {
    height: 40px;
    border-radius: 20px;
  }
}
@media (max-width: 575px) {
  .btn {
    font-size: 13px;
  }
}
.form-default .transition-ease, .form-default .floating-label {
  transition: all 200ms ease-out;
}
.form-default .form-group {
  position: relative;
  margin-bottom: 20px;
}
.form-default .control-label {
  margin-bottom: 10px;
  font-weight: normal;
  font-size: 14px;
  color: #333;
  line-height: 1.2em;
}
.form-default .form-control {
  line-height: 1.2em;
  padding: 10px 35px 10px 20px;
  font-size: 24px;
  color: #333;
  min-height: 50px;
  background-color: #fff;
  border: 1px solid #EBEBEB;
  border-radius: 0px;
  box-shadow: none;
}
.form-default .form-control:focus {
  border-color: #C00000;
}
.form-default .floating-label {
  color: #C00000;
  font-size: 14px;
  position: absolute;
  pointer-events: none;
  left: 15px;
  top: 9px;
}
.form-default .form-control:focus ~ .floating-label,
.form-default .form-control:not(:focus):valid ~ .floating-label {
  color: #333;
  font-size: 12px;
  left: 0;
  top: -22px;
}
.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-control-feedback {
  position: absolute;
  top: 15px;
  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;
  min-height: 34px;
  padding-left: 0;
}
.radio-control .icon {
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  background-color: #fff;
  position: absolute;
  top: 10px;
  left: 0;
  border-radius: 50%;
}
.radio-control .txt {
  margin: 0;
  font-size: 16px;
  font-weight: normal;
  color: #333;
  line-height: 20px;
  display: block;
  padding-left: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.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: #333;
}
.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: #333;
  border-radius: 50%;
}

.checkbox-control {
  position: relative;
  display: inline-block;
}
.checkbox-control .icon {
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  background-color: #fff;
  position: absolute;
  top: 10px;
  left: 0;
  border-radius: 0;
}
.checkbox-control .txt {
  margin: 0;
  font-size: 16px;
  font-weight: normal;
  color: #333;
  padding-left: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
  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: #333;
}
.checkbox-control input[type=checkbox]:checked ~ .icon:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: url("../image/icon/checkbox.png") center no-repeat;
  background-size: 12px;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.-modal-contact .modal-dialog {
  max-width: 740px;
}
.-modal-contact .modal-content {
  background-image: url(../img/background/bg-modal.png);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 592px;
}
.-modal-contact .modal-content .modal-body {
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.-modal-contact .modal-content .modal-body > div {
  width: 429px;
}
.-modal-contact .modal-content .modal-body .title {
  font-size: 48px;
  font-weight: bold;
  line-height: 1em;
  margin-top: 30px;
}
.-modal-contact .modal-content .modal-body .title-sm {
  margin-top: 5px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1em;
}
.-modal-contact .modal-content .modal-body .action {
  margin-top: 106px;
}

.-modal-contact-form .block {
  width: 100%;
  min-height: 500px;
  padding: 20px;
  background-color: #fff;
}
.-modal-contact-form .block .action {
  margin-top: 20px;
}
.-modal-contact-form .block .form-default .form-group .form-control-feedback {
  color: #C00000;
}
.-modal-contact-form .block .form-default .form-group.has-success .form-control-feedback, .-modal-contact-form .block .form-default .form-group.has-error .form-control-feedback {
  color: transparent;
}
.-modal-contact-form .block .contact-page .file-upload .file-upload-group .file-name {
  background-color: #F4F4F4;
}
.-modal-contact-form .select2-container .select2-selection--single {
  height: 50px;
}
.-modal-contact-form .select2-container--default .select2-selection--single {
  border-color: #ebebeb;
}
.-modal-contact-form .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 50px;
}
.-modal-contact-form .select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.-modal-contact-form .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-color: #C00000;
}
.-modal-contact-form .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 20px;
}
.-modal-contact-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
  filter: grayscale(1);
}
.-modal-contact-form .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  filter: grayscale(0);
}
.-modal-contact-form .form-control-feedback.glyphicon-remove {
  padding-left: 4px;
}

/* pages */
html {
  scroll-behavior: smooth;
}

.title-box {
  color: #fff;
  background-color: #C00000;
  text-align: center;
  box-shadow: 2px 2px 2px 5px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
}

.main-slider .item .wrapper {
  height: 600px;
  width: 100%;
  display: table;
  background-color: #555555;
}

.main-slider .item .wrapper .inner {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.social-list-i {
  position: absolute;
  top: 50%;
  left: 30px;
  z-index: 98;
  transform: translate(0, -50%);
}
.social-list-i .item-list {
  width: 30px;
  padding: 3px;
}
.social-list-i li {
  width: 100%;
  text-align: center;
}
.social-list-i li + li {
  padding-top: 28px;
}
.social-list-i li .link {
  position: relative;
  transform: translateY(0);
  transition: all 200ms;
}
.social-list-i li .link:hover {
  transform: translateY(-5px);
}

.under-line {
  position: relative;
}
.under-line:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 5px;
  left: 0;
  bottom: 0;
  background-color: #C00000;
}

.topgraphic-inner {
  width: 100%;
  height: 240px;
  padding-block: 60px;
  display: flex;
  align-items: end;
  position: relative;
  z-index: 10;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--color-primary);
  background-blend-mode: overlay;
}
.topgraphic-inner:before {
  content: "";
  display: none;
  position: absolute;
  right: -70px;
  top: 0;
  bottom: 0;
  width: 316px;
  background-image: url(../img/background/bg-v.svg);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.topgraphic-inner .title {
  font-size: 80px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1em;
}
.topgraphic-inner .title.under-line:before {
  height: 2px;
  bottom: -10px;
}

.menu-inner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}
.menu-inner .menu-list .link {
  font-size: var(--typo-default);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  text-align: center;
  line-height: 1.4em;
  transition: var(--transition);
  position: relative;
  text-decoration: none;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(18, 29, 119, 0.05);
  border-radius: 8px;
  padding: 0 25px;
}
.menu-inner .menu-list .link:hover, .menu-inner .menu-list .link.active {
  color: var(--color-light);
  background-color: var(--color-primary);
}
.menu-inner .menu-list .slick-list {
  margin: -5px;
}
.menu-inner .menu-list .slick-list .item {
  padding: 5px;
  text-align: center;
  position: relative;
}
.menu-inner .menu-list .slick-prev,
.menu-inner .menu-list .slick-next {
  border: none;
  color: var(--color-secondary);
  background: transparent;
}
.menu-inner .menu-list .slick-prev span,
.menu-inner .menu-list .slick-next span {
  font-size: var(--typo-lg);
  transition: var(--transition);
}

.download .download-list .link {
  color: var(--color-black);
}
.download .download-list .link .btn {
  min-width: 160px;
}
.download .download-list .link:hover .btn {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-light);
}
.download .download-list .link .wrapper {
  padding: 20px;
  background-color: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 20px;
}
.download .download-list .link .file-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background-color: var(--color-snow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.download .download-list .link .file-icon img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.download .download-list .link .title {
  font-size: 16px;
  font-weight: var(--fw-bold);
  line-height: 1em;
  color: #1252B1;
  margin-bottom: 15px;
}
.download .download-list .link .title.text-limit {
  height: 1em;
  -webkit-line-clamp: 1;
}
.download .download-list .link .desc {
  font-size: 14px;
  font-weight: var(--fw-normal);
  line-height: 1em;
  display: flex;
  gap: 30px;
}
.download .download-list .link .desc .group {
  display: flex;
  align-items: center;
}
.download .download-list .link .desc .group .icon {
  margin-right: 10px;
  height: 24px;
  width: auto;
}
.download .download-list .link .action {
  height: 100%;
  display: flex;
  align-items: center;
}
.download .download-list .slick-list {
  margin: 0 -20px;
}
.download .download-list .slick-list .item {
  padding: 0 20px;
}

.action.-back {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 180px;
  display: flex;
  justify-content: flex-end;
}
.action.-back > div {
  margin-right: 340px;
}

.product-block {
  padding-top: 60px;
  padding-bottom: 150px;
}
.product-block .category {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-block .category .text {
  float: left;
  font-size: 30px;
  font-weight: bold;
  line-height: 1em;
  color: var(--color-primary);
}
.product-block .category .default-block {
  position: relative;
}
.product-block .category .select2-container--default .select2-selection--single {
  border-color: #EBEBEB;
}
.product-block .category .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 30px;
  font-weight: 500;
  color: #333333;
  padding-left: 150px;
}
.product-block .category .label {
  position: absolute;
  top: 17px;
  left: 0;
  font-size: 30px;
  font-weight: 400;
  padding: 0 30px;
  z-index: 1;
  border-right: 1px solid var(--color-border);
  pointer-events: none;
}
.product-block .product-service .item-list {
  margin: -30px -15px 0 -15px;
  display: flex;
  flex-wrap: wrap;
}
.product-block .product-service .item-list::after {
  content: "";
  clear: both;
}
.product-block .product-service li {
  width: 20%;
  padding: 0 15px;
  margin-top: 30px;
  float: none;
}
.product-block .product-service .wrapper .image {
  border-radius: 8px;
  overflow: hidden;
}
.product-block .product-service .wrapper .image .cover {
  padding-top: 100%;
}
.product-block .product-service .wrapper .content {
  color: var(--color-gray);
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.product-block .product-service .wrapper .content a {
  text-decoration: none;
  color: inherit;
}
.product-block .product-service .wrapper .badge {
  display: inline-block;
  padding: 0.5em 0.75em;
  background: rgba(198, 156, 108, 0.1);
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: var(--fw-normal);
}
.product-block .product-service .wrapper .title {
  font-size: var(--typo-default);
  font-weight: var(--fw-medium);
  color: var(--color-black);
  min-height: 2.8em;
}
.product-block .product-service .wrapper .title.text-limit {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 2.8em;
  line-height: 1.4em;
}
.product-block .product-service .wrapper .desc {
  font-size: var(--typo-default);
  color: var(--color-gray-2);
  min-height: 3.2em;
}
.product-block .product-service .wrapper .desc.text-limit {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 3.2em;
  line-height: 1.6em;
}
.product-block .product-service .wrapper .action {
  font-size: var(--typo-default);
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  position: relative;
  margin-top: 5px;
  border-top: 1px solid var(--color-gray);
}
.product-block .product-service .wrapper .action .subjectg {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 10px;
}
.product-block .product-service .wrapper .action .subjectg.text-limit {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}
.product-block .product-service .wrapper .action .view-more {
  margin-left: auto;
  padding-top: 15px;
  position: relative;
  flex-shrink: 0;
}
.product-block .product-service .wrapper .action .view-more::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-secondary);
}
.product-block .product-service .wrapper .view-more {
  color: var(--color-secondary);
}

.form-default.search-form {
  width: 520px;
}
.form-default.search-form .form-control {
  background-color: var(--color-light);
  border-color: #E7EEFE;
  border-radius: 8px;
  min-height: 68px;
  padding: 15px 25px;
}
.form-default.search-form .search-btn {
  background: transparent;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 0;
  margin: 0;
}
.form-default.search-form .search-btn .icon {
  width: 21px;
  height: 21px;
}
.form-default.search-form .block-control {
  position: relative;
}
.form-default.search-form .block-control .form-control {
  padding-right: 60px;
}
.form-default.search-form .block-control .search-btn {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
}

.topgraphic {
  margin-top: 120px;
  overflow: hidden;
  position: relative;
}
.topgraphic figure.cover {
  padding-bottom: 50%;
}
.topgraphic .slick-dots {
  width: auto;
  top: 50%;
  right: 0;
  bottom: inherit;
  transform: translate(0, -50%);
}
.topgraphic .slick-dots li {
  width: 100%;
  position: relative;
  border: none;
}
.topgraphic .slick-dots li + li {
  padding-top: 80px;
}
.topgraphic .slick-dots li + li:before {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #CCCCCC;
}
.topgraphic .slick-dots li.slick-active button {
  font-size: 60px;
}
.topgraphic .slick-dots li button {
  font-size: 30px;
  line-height: 1em;
  color: #C00000;
  background-color: transparent;
  transition: all 400ms;
}

.topgraphic-inner .breadcrumb li.dropdown .dropdown-item:nth-child(4) {
  display: none;
}

.aboutUs-page {
  overflow: hidden;
}
.aboutUs-page.-bg-about {
  background-image: url(../img/background/bg-customer.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.aboutUs-page .menu-inner {
  z-index: 2;
  position: relative;
}
.aboutUs-page .menu-inner .menu-list .slick-slide[aria-describedby=slick-slide03] {
  display: none !important;
}
.aboutUs-page .intro {
  background-position: 77px 0;
}
.aboutUs-page .vision {
  min-height: 500px;
  padding-bottom: 130px;
  position: relative;
  overflow: hidden;
}
.aboutUs-page .vision .content {
  max-width: 964px;
  margin: 0 auto;
}
.aboutUs-page .vision .margin-t {
  margin-top: 200px;
}
.aboutUs-page .vision .wrapper {
  width: 200px;
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  margin-top: 130px;
  left: 60px;
}
.aboutUs-page .vision .wrapper.-style-ii {
  margin-top: 0;
  left: inherit;
  right: 60px;
}
.aboutUs-page .vision .wrapper.-style-ii:before {
  background-image: url(../img/background/bg-our-3.png);
}
.aboutUs-page .vision .wrapper:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  background-image: url(../img/background/bg-our-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  transform: rotate(45deg);
  z-index: 0;
  box-shadow: 0 0px 35px rgba(0, 0, 0, 0.3);
}
.aboutUs-page .vision .wrapper:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: -25px;
  bottom: 0;
  background-color: #C00000;
  transform: rotate(45deg);
  z-index: -1;
}
.aboutUs-page .vision .wrapper .title {
  font-size: 40px;
  font-weight: 400;
  line-height: 1em;
  text-align: center;
  z-index: 1;
}
.aboutUs-page .vision .block {
  max-width: 100%;
}
.aboutUs-page .vision .title {
  font-size: 60px;
  font-weight: 400;
  line-height: 1em;
}
.aboutUs-page .vision .title.under-line:before {
  height: 2px;
}
.aboutUs-page .vision .desc {
  font-size: 30px;
  font-weight: 300;
  font-style: italic;
  line-height: 1em;
  margin-top: 40px;
}
.aboutUs-page .vision .obj-r,
.aboutUs-page .vision .obj-l {
  background-color: transparent;
  transform: rotate(0);
  pointer-events: none;
}
.aboutUs-page .vision .obj-r {
  top: 185px;
  left: 44%;
}
.aboutUs-page .vision .obj-l {
  bottom: 250px;
  right: 45%;
}
.aboutUs-page .gallery .wrapper {
  height: 130px;
}
.aboutUs-page .gallery .slick-list {
  margin: 0 -20px;
}
.aboutUs-page .gallery .slick-list .item {
  padding: 0 20px;
}
.aboutUs-page .gallery .slick-prev {
  left: -150px;
}
.aboutUs-page .gallery .slick-next {
  right: -150px;
}
.aboutUs-page .vdo .desc {
  font-size: 24px;
  line-height: 1em;
  margin-top: 70px;
  margin-bottom: 56px;
}
.aboutUs-page .vdo .iframe-container {
  max-width: 1000px;
  padding-bottom: 40%;
  margin: 0 auto;
}
.aboutUs-page .max-width {
  max-width: 1100px;
  margin: 0 auto;
}
.aboutUs-page .ourcustomer {
  padding-bottom: 170px;
}
.aboutUs-page .ourcustomer .h-title {
  font-size: 60px;
  font-weight: 400;
  line-height: 1em;
  margin-bottom: 10px;
}
.aboutUs-page .ourcustomer .h-title.under-line:before {
  height: 2px;
}
.aboutUs-page .ourcustomer .link img {
  transform: scale(1);
  transition: all 400ms;
}
.aboutUs-page .ourcustomer .link:hover img {
  transform: scale(1.1);
}
.aboutUs-page .ourcustomer .item-list {
  margin: 0 -35px;
}
.aboutUs-page .ourcustomer .item-list li {
  width: 20%;
  padding: 0 35px;
}
.aboutUs-page .timeline {
  margin-top: -47px;
  position: relative;
}
.aboutUs-page .timeline .timeline-i {
  position: absolute;
  background-color: #C00000;
  width: 297px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.aboutUs-page .timeline .timeline-i.sh-b:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6026785714) 0%, rgba(255, 255, 255, 0) 100%);
}
.aboutUs-page .timeline .timeline-i.sh-b:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.6) 100%);
  z-index: -1;
}
.aboutUs-page .timeline > .row {
  padding-top: 170px;
}
.aboutUs-page .timeline > .row:last-child {
  padding-bottom: 140px;
}
.aboutUs-page .timeline .timeline-date-year {
  width: 297px;
  height: 100%;
  min-height: 200px;
  color: #fff;
  font-size: 145px;
  font-weight: bold;
  line-height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.aboutUs-page .timeline .content {
  max-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: bold;
}
.aboutUs-page .timeline .content.right {
  padding-left: 20px;
}
.aboutUs-page .timeline .content li {
  position: relative;
  width: 100%;
  padding-left: 25px;
}
.aboutUs-page .timeline .content li:before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: #C00000;
  border-radius: 50%;
}
.aboutUs-page .timeline .textintro {
  font-size: 60px;
  line-height: 0.7em;
  text-transform: uppercase;
}
.aboutUs-page .timeline .title {
  font-size: 80px;
  line-height: 0.6em;
  text-transform: uppercase;
}
.aboutUs-page .timeline .text-small {
  font-size: 40px;
  line-height: 1em;
  text-transform: uppercase;
}
.aboutUs-page .timeline .text-small .t-sm {
  font-size: 30px;
  line-height: 1em;
}
.aboutUs-page .timeline .text-xs {
  font-size: 24px;
  font-weight: 400;
  line-height: 1em;
}
.aboutUs-page .our-experience .link {
  display: flex;
  flex-direction: row-reverse;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.aboutUs-page .our-experience .link a {
  text-decoration: none;
  color: inherit;
}
.aboutUs-page .our-experience .link .thumb {
  flex-shrink: 0;
  width: 520px;
}
.aboutUs-page .our-experience .link .thumb .cover {
  padding-top: 63.08%;
  border-radius: 8px;
  overflow: hidden;
}
.aboutUs-page .our-experience .link .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 0 0%;
}
.aboutUs-page .our-experience .link .content .tag .badge {
  display: inline-block;
  padding: 0.5em 0.75em;
  background-color: rgba(190, 194, 197, 0.1);
  color: var(--color-black);
  font-size: 14px;
  font-weight: var(--fw-normal);
}
.aboutUs-page .our-experience .link .content .tag .badge .icon {
  margin-right: 0.5em;
  height: 16px;
  width: auto;
}
.aboutUs-page .our-experience .link .content .title {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--color-black);
  line-height: 1.4em;
}
@media (min-width: 768px) {
  .aboutUs-page .our-experience .link .content .title.text-limit {
    max-height: 2.8em;
    -webkit-line-clamp: 2;
  }
}
.aboutUs-page .our-experience .link .content .desc {
  color: var(--color-gray-2);
  line-height: 1.4em;
}
@media (min-width: 768px) {
  .aboutUs-page .our-experience .link .content .desc.text-limit {
    max-height: 5.6em;
    -webkit-line-clamp: 4;
  }
}
.aboutUs-page .our-experience .link .content .date {
  color: var(--color-gray);
}
.aboutUs-page .our-experience .link .content .readmore {
  color: var(--color-secondary);
}
.aboutUs-page .our-experience .link .content .bottom {
  position: relative;
  margin-top: auto;
  border-top: 1px solid var(--color-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.aboutUs-page .our-experience .link .content .bottom .date,
.aboutUs-page .our-experience .link .content .bottom .readmore {
  padding-top: 20px;
}
.aboutUs-page .our-experience .link .content .bottom .readmore {
  position: relative;
}
.aboutUs-page .our-experience .link .content .bottom .readmore::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-secondary);
}
.aboutUs-page .our-experience .our-experience-area .item + .item {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--color-gray);
}
.aboutUs-page .our-experience .box-elevate {
  padding: 100px 140px;
}
.aboutUs-page .our-customers .customer-group:not(:last-child) {
  margin-bottom: 40px;
}
.aboutUs-page .our-customers .customer-group-title {
  font-size: var(--typo-md);
  font-weight: var(--fw-semibold);
  position: relative;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-gray);
}
.aboutUs-page .our-customers .customer-group-title span {
  display: inline-block;
  position: relative;
  padding-bottom: 25px;
}
.aboutUs-page .our-customers .customer-group-title span::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-secondary);
}
.aboutUs-page .customers-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
}

.our-customers .thumb {
  background-color: var(--color-light);
  padding: 25px 10px;
  border-radius: 8px;
  transition: var(--transition);
}
.our-customers .thumb .contain {
  padding-top: 35.91%;
}
.our-customers .title {
  font-size: var(--typo-default);
  text-align: center;
  margin: 15px 0 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.our-customers .item:hover .thumb {
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.16);
}
.our-customers .item:hover .title {
  opacity: 1;
  visibility: visible;
}

.our-certificates {
  overflow: hidden;
}
.our-certificates .h-title {
  color: var(--color-light);
  font-size: 80px;
  font-weight: var(--fw-bold);
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}
.our-certificates .certificate-area {
  position: relative;
  padding-inline: 140px;
}
.our-certificates .certificate-area .box {
  background-color: var(--color-light);
  border-radius: 40px;
  margin-top: 220px;
}
.our-certificates .certificate-area .box .thumb {
  background-color: var(--color-primary);
  background-image: url(../img/background/our-certificate-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 40px;
  padding-bottom: 120px;
}
.our-certificates .certificate-area .box .thumb .cover {
  padding-top: 65%;
  border-radius: 20px;
  overflow: hidden;
}
.our-certificates .certificate-area .box .thumb .swiper {
  width: 660px;
  margin: 0 auto;
  margin-bottom: -110px;
  top: -110px;
  overflow: visible;
}
.our-certificates .certificate-area .box .thumb .swiper-pagination {
  bottom: -70px;
}
.our-certificates .certificate-area .box .thumb .swiper-button-prev {
  left: -22px;
}
.our-certificates .certificate-area .box .thumb .swiper-button-next {
  right: -22px;
}
.our-certificates .certificate-area .box .thumb .swiper-slide {
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.our-certificates .certificate-area .box .thumb .swiper-slide-active {
  opacity: 1;
  visibility: visible;
}
.our-certificates .certificate-area .box .content {
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.our-certificates .certificate-area .box .content .title {
  font-size: 40px;
  font-weight: var(--fw-bold);
  color: var(--color-black);
}
.our-certificates .certificate-area .box .content .desc {
  color: var(--color-black);
}
.our-certificates .certificate-area .trophy-award {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.our-certificates .certificate-area .trophy-award.trophy-award1 {
  top: -90px;
  right: 50%;
  margin-right: -680px;
  width: 290px;
}
.our-certificates .certificate-area .trophy-award.trophy-award2 {
  top: -220px;
  left: 50%;
  margin-left: -770px;
  width: 250px;
}

.ab-company-profile {
  position: relative;
  z-index: 1;
}
.ab-company-profile::before {
  content: "";
  position: absolute;
  top: -240px;
  left: -60px;
  width: 1443px;
  height: 904.64px;
  background-image: url(../img/background/ab-company-profile-bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top center;
  z-index: -1;
  pointer-events: none;
}
.ab-company-profile::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -140px;
  width: 1250px;
  height: 1204px;
  background-image: url(../img/background/ab-company-profile-bg2.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  z-index: -1;
  pointer-events: none;
}
.ab-company-profile p {
  font-size: var(--typo-default);
}
.ab-company-profile .ab-box {
  border-radius: 40px;
  background: linear-gradient(90deg, #143057 48.25%, rgba(20, 48, 87, 0) 100%);
  color: var(--color-light);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.ab-company-profile .ab-box h3, .ab-company-profile .ab-box .h3 {
  font-size: 28px;
  font-weight: var(--fw-semibold);
  color: var(--color-secondary);
  margin-bottom: 0;
}
.ab-company-profile .ab-box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 24px 0;
  width: 100px;
  height: 64px;
  border-radius: 8px;
  background: var(--color-secondary);
  z-index: 1;
}
.ab-company-profile .ab-box .icon:before, .ab-company-profile .ab-box .icon:after {
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: inherit;
  content: "";
  z-index: -1;
}
.ab-company-profile .ab-box .icon:before {
  transform: rotate(60deg);
}
.ab-company-profile .ab-box .icon:after {
  transform: rotate(-60deg);
}
.ab-company-profile .ab-box .icon img {
  width: 36px;
}
.ab-company-profile .ab-box .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 81%;
}
.ab-company-profile .ab-box .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.ab-company-profile .ab-box .bg-img img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.ab-company-profile .cp-section-i {
  position: relative;
  z-index: 1;
  margin-bottom: -140px;
}
.ab-company-profile .cp-section-i h2, .ab-company-profile .cp-section-i .h2 {
  font-size: 40px;
  font-weight: var(--fw-medium);
  color: var(--color-primary);
  margin-bottom: 20px;
}
.ab-company-profile .cp-section-i .content {
  padding-top: 60px;
  padding-right: 100px;
}
.ab-company-profile .cp-section-i .image {
  width: 840px;
}
.ab-company-profile .cp-section-ii {
  position: relative;
  color: var(--color-light);
  padding-top: 100px;
  margin-bottom: 50px;
}
.ab-company-profile .cp-section-ii::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100px;
  right: -100px;
  bottom: 21%;
  background-color: var(--color-primary);
  border-radius: 32px;
  background-image: url(../img/background/cp-section-ii-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.ab-company-profile .cp-section-ii > .row {
  margin: 0 -20px;
}
.ab-company-profile .cp-section-ii > .row > div {
  padding: 0 20px;
}
.ab-company-profile .cp-section-ii .content {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 100%;
}
.ab-company-profile .cp-section-ii .content p {
  font-weight: var(--fw-bold);
}
.ab-company-profile .cp-section-ii .image img {
  border-radius: 8px;
}
.ab-company-profile .cp-section-ii .why-list {
  margin-top: 60px;
}
.ab-company-profile .cp-section-ii .why-list h3, .ab-company-profile .cp-section-ii .why-list .h3 {
  color: var(--color-light);
  font-size: 28px;
  font-weight: var(--fw-bold);
}
.ab-company-profile .cp-section-ii .why-list h3 span, .ab-company-profile .cp-section-ii .why-list .h3 span {
  color: var(--color-secondary);
}
.ab-company-profile .cp-section-ii .why-list ul {
  margin-top: 30px;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 16px;
  -moz-column-gap: 28px;
       column-gap: 28px;
}
.ab-company-profile .cp-section-ii .why-list ul li {
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-light);
  border-radius: 16px;
  box-shadow: 0px 14px 14px rgba(0, 0, 0, 0.05);
}
.ab-company-profile .cp-section-ii .why-list ul li::before {
  display: none;
}
.ab-company-profile .cp-section-ii .why-list ul li .icon {
  width: 44px;
}
.ab-company-profile .cp-section-ii .why-list ul li p {
  margin: 0;
  font-weight: var(--fw-bold);
  color: var(--color-black);
}
.ab-company-profile .cp-section-iii > .row {
  margin: 0 -20px;
}
.ab-company-profile .cp-section-iii > .row > div {
  padding: 0 20px;
}

.ab-wwcd {
  position: relative;
  z-index: 1;
}
.ab-wwcd::before {
  content: "";
  position: absolute;
  top: -240px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100vw;
  height: 100%;
  z-index: -1;
  background-image: url(../img/background/ab-wwcd-bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
  z-index: -1;
  pointer-events: none;
}
.ab-wwcd p {
  font-size: var(--typo-default);
}
.ab-wwcd .ab-box {
  margin-bottom: 80px;
  padding: 40px;
  border-radius: 40px;
  background: linear-gradient(90deg, #143057 48.25%, rgba(20, 48, 87, 0) 100%);
  color: var(--color-light);
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ab-wwcd .ab-box h2, .ab-wwcd .ab-box .h2 {
  font-size: 56px;
  font-weight: var(--fw-semibold);
  color: var(--color-light);
  margin-bottom: 0;
}
.ab-wwcd .ab-box .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 81%;
}
.ab-wwcd .ab-box .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.ab-wwcd .ab-box .bg-img img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.ab-wwcd .wwcd-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}
.ab-wwcd .wwcd-list .box {
  color: var(--color-black);
  background-color: var(--color-light);
  border-radius: 40px;
  padding: 40px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
  transition: var(--transition);
}
.ab-wwcd .wwcd-list .box h3, .ab-wwcd .wwcd-list .box .h3 {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  margin-bottom: 10px;
}
.ab-wwcd .wwcd-list .box p {
  min-height: 3.2em;
}
.ab-wwcd .wwcd-list .box .number {
  font-size: 64px;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: 1;
}
.ab-wwcd .wwcd-list .box .image {
  position: relative;
  overflow: hidden;
  width: 338px;
  padding-top: 50.3%;
  border-radius: 8px;
}
.ab-wwcd .wwcd-list .box .image 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;
}
.ab-wwcd .wwcd-list .box .list-title {
  color: var(--color-secondary);
  font-size: 16px;
  margin-bottom: 20px;
}
.ab-wwcd .wwcd-list .box ul {
  margin: 0;
}
.ab-wwcd .wwcd-list .box ul li {
  position: relative;
  padding-left: 25px;
  font-size: 16px;
  line-height: 22px;
}
.ab-wwcd .wwcd-list .box ul li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  background: url(../img/icon/check-circle.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
.ab-wwcd .wwcd-list .box ul li + li {
  margin-top: 10px;
}
.ab-wwcd .wwcd-list .box:hover {
  color: var(--color-light);
  background-color: var(--color-primary);
}
.ab-wwcd .wwcd-list .box:hover .number {
  color: var(--color-light);
}
.ab-wwcd .graphic {
  position: absolute;
  top: 15px;
  right: -95px;
  z-index: 1;
  width: 421px;
  height: 507px;
  background: url(../img/static/ab-wwcd-graphic.png);
}
.ab-wwcd .graphic ~ .ab-box {
  margin-right: 280px;
}
.ab-wwcd .graphic ~ .wwcd-list {
  position: relative;
  z-index: 1;
}

@media (max-width: 1670px) {
  .ab-company-profile .cp-section-i {
    margin-bottom: 50px;
  }
  .ab-company-profile .cp-section-i h2,
  .ab-company-profile .cp-section-i .h2 {
    font-size: 32px;
  }
  .ab-company-profile .cp-section-i .image {
    width: 650px;
  }
  .ab-company-profile .cp-section-i .content {
    padding-top: 50px;
    padding-right: 60px;
  }
  .ab-wwcd .ab-box {
    min-height: 380px;
  }
  .ab-wwcd .ab-box h2,
  .ab-wwcd .ab-box .h2 {
    font-size: 52px;
  }
  .ab-wwcd .wwcd-list .box h3,
  .ab-wwcd .wwcd-list .box .h3 {
    font-size: 26px;
  }
  .ab-wwcd .wwcd-list .box .number {
    font-size: 60px;
  }
  .ab-wwcd .wwcd-list .box .image {
    width: 300px;
  }
  .ab-wwcd .graphic {
    transform: scale(0.9);
    right: -120px;
  }
  .ab-wwcd .graphic ~ .ab-box {
    margin-right: 240px;
  }
}
@media (max-width: 1600px) {
  .ab-company-profile .cp-section-i h2,
  .ab-company-profile .cp-section-i .h2 {
    font-size: 30px;
  }
  .ab-company-profile .cp-section-i .image {
    width: 600px;
  }
  .ab-company-profile .cp-section-ii .why-list {
    margin-top: 30px;
  }
}
@media (max-width: 1440px) {
  .ab-company-profile .cp-section-i {
    margin-bottom: 45px;
  }
  .ab-company-profile .cp-section-i .image {
    width: 560px;
  }
  .ab-company-profile .cp-section-i h2,
  .ab-company-profile .cp-section-i .h2 {
    font-size: 28px;
  }
  .ab-company-profile .cp-section-i .content {
    padding-top: 40px;
  }
  .ab-company-profile .cp-section-ii {
    padding-top: 80px;
    margin-bottom: 40px;
  }
  .ab-company-profile .cp-section-ii::before {
    left: -80px;
    right: -80px;
  }
  .ab-company-profile .cp-section-ii > .row {
    margin: 0 -15px;
  }
  .ab-company-profile .cp-section-ii > .row > div {
    padding: 0 15px;
  }
  .ab-company-profile .cp-section-ii .why-list h3,
  .ab-company-profile .cp-section-ii .why-list .h3 {
    font-size: 24px;
  }
  .ab-company-profile .cp-section-ii .why-list ul {
    margin-top: 25px;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .ab-company-profile .cp-section-iii > .row {
    margin: 0 -15px;
  }
  .ab-company-profile .cp-section-iii > .row > div {
    padding: 0 15px;
  }
  .ab-company-profile .ab-box {
    border-radius: 30px;
    padding: 30px;
  }
  .ab-company-profile .ab-box h3,
  .ab-company-profile .ab-box .h3 {
    font-size: 24px;
  }
  .ab-company-profile .ab-box .icon {
    margin: 20px 0;
    width: 86px;
    height: 56px;
  }
  .ab-company-profile .ab-box .icon img {
    width: 32px;
  }
  .ab-wwcd .ab-box {
    min-height: 360px;
    padding: 30px;
    border-radius: 30px;
    margin-bottom: 60px;
  }
  .ab-wwcd .ab-box h2,
  .ab-wwcd .ab-box .h2 {
    font-size: 46px;
  }
  .ab-wwcd .wwcd-list {
    gap: 30px;
  }
  .ab-wwcd .wwcd-list .box {
    border-radius: 30px;
    padding: 30px;
  }
  .ab-wwcd .wwcd-list .box h3,
  .ab-wwcd .wwcd-list .box .h3 {
    font-size: 24px;
  }
  .ab-wwcd .wwcd-list .box .number {
    font-size: 52px;
  }
  .ab-wwcd .wwcd-list .box .image {
    width: 270px;
  }
  .ab-wwcd .wwcd-list .box .list-title {
    margin-bottom: 15px;
  }
  .ab-wwcd .wwcd-list .box ul li + li {
    margin-top: 8px;
  }
  .ab-wwcd .graphic ~ .ab-box {
    margin-right: 200px;
  }
  .ab-wwcd .graphic {
    transform: scale(0.8);
    top: 0;
    right: -140px;
  }
}
@media (max-width: 1199px) {
  .ab-company-profile .cp-section-i {
    margin-bottom: 25px;
  }
  .ab-company-profile .cp-section-i h2,
  .ab-company-profile .cp-section-i .h2 {
    font-size: 26px;
  }
  .ab-company-profile .cp-section-i .content {
    padding-right: 40px;
  }
  .ab-company-profile .cp-section-i .image {
    width: 480px;
  }
  .ab-company-profile .cp-section-ii {
    padding-top: 55px;
    padding-bottom: 35px;
  }
  .ab-company-profile .cp-section-ii::before {
    left: -45px;
    right: -45px;
    bottom: 0;
    border-radius: 0;
  }
  .ab-company-profile .cp-section-ii .why-list ul {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
  .ab-company-profile .cp-section-ii .why-list ul li {
    padding: 20px;
  }
  .ab-company-profile .cp-section-ii .why-list ul li .icon {
    width: 40px;
  }
  .ab-wwcd .ab-box {
    min-height: 340px;
  }
  .ab-wwcd .ab-box h2,
  .ab-wwcd .ab-box .h2 {
    font-size: 44px;
  }
  .ab-wwcd .wwcd-list .box p {
    font-size: 14px;
  }
  .ab-wwcd .wwcd-list .box .list-title {
    font-size: 14px;
  }
  .ab-wwcd .wwcd-list .box .number {
    font-size: 48px;
  }
  .ab-wwcd .wwcd-list .box .image {
    width: 230px;
  }
  .ab-wwcd .wwcd-list .box ul li {
    font-size: 14px;
    line-height: 20px;
    padding-left: 23px;
  }
  .ab-wwcd .wwcd-list .box ul li::before {
    width: 14px;
    height: 14px;
  }
  .ab-wwcd .graphic ~ .ab-box {
    margin-right: 180px;
  }
  .ab-wwcd .graphic {
    transform: scale(0.7);
  }
}
@media (max-width: 991px) {
  .ab-company-profile .cp-section-i h2,
  .ab-company-profile .cp-section-i .h2 {
    font-size: 24px;
  }
  .ab-company-profile .cp-section-i .content {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 20px;
  }
  .ab-company-profile .cp-section-i .image {
    width: 80%;
    margin: 0 auto;
  }
  .ab-company-profile .cp-section-ii .image {
    margin-bottom: 30px;
  }
  .ab-company-profile .cp-section-ii .image img {
    width: 100%;
  }
  .ab-company-profile .cp-section-ii .why-list h3,
  .ab-company-profile .cp-section-ii .why-list .h3 {
    font-size: 22px;
  }
  .ab-company-profile .cp-section-iii > .row > div + div {
    margin-top: 20px;
  }
  .ab-wwcd .ab-box {
    margin-bottom: 40px;
  }
  .ab-wwcd .ab-box h2,
  .ab-wwcd .ab-box .h2 {
    font-size: 40px;
  }
  .ab-wwcd .wwcd-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .ab-wwcd .wwcd-list .box .image {
    width: 400px;
  }
  .ab-wwcd .graphic ~ .ab-box {
    margin-right: 0;
  }
  .ab-wwcd .graphic {
    transform: scale(0.5);
    right: -170px;
  }
}
@media (max-width: 767px) {
  .ab-company-profile .cp-section-i h2,
  .ab-company-profile .cp-section-i .h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .ab-company-profile .cp-section-i .image {
    width: 90%;
  }
  .ab-company-profile .cp-section-ii {
    margin-bottom: 30px;
  }
  .ab-company-profile .cp-section-ii .why-list {
    margin-top: 20px;
  }
  .ab-company-profile .ab-box {
    border-radius: 20px;
    padding: 20px;
  }
  .ab-company-profile .cp-section-iii > .row > div + div {
    margin-top: 15px;
  }
  .ab-wwcd .ab-box {
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
  }
  .ab-wwcd .ab-box h2,
  .ab-wwcd .ab-box .h2 {
    font-size: 36px;
  }
  .ab-wwcd .wwcd-list {
    margin-top: 30px;
  }
  .ab-wwcd .wwcd-list .box {
    border-radius: 20px;
    padding: 20px;
    gap: 20px;
  }
  .ab-wwcd .wwcd-list .box h3,
  .ab-wwcd .wwcd-list .box .h3 {
    font-size: 22px;
  }
  .ab-wwcd .wwcd-list .box .number {
    font-size: 44px;
  }
  .ab-wwcd .wwcd-list .box .image {
    width: 300px;
  }
  .ab-wwcd .graphic {
    transform: scale(0.35);
    top: 48px;
  }
}
@media (max-width: 575px) {
  .ab-company-profile .cp-section-i .image {
    width: 100%;
  }
  .ab-company-profile .ab-box .icon {
    width: 75px;
    height: 48px;
  }
  .ab-company-profile .ab-box .icon img {
    width: 28px;
  }
  .ab-company-profile .ab-box .content {
    gap: 15px;
    max-width: 88%;
  }
  .ab-wwcd .ab-box h2,
  .ab-wwcd .ab-box .h2 {
    font-size: 28px;
  }
  .ab-wwcd .wwcd-list .box h3,
  .ab-wwcd .wwcd-list .box .h3 {
    font-size: 20px;
  }
  .ab-wwcd .wwcd-list .box .number {
    font-size: 40px;
  }
  .ab-wwcd .wwcd-list .box .image {
    width: 100%;
    margin-bottom: 20px;
  }
  .ab-wwcd .graphic {
    transform: scale(0.3);
    top: 58px;
  }
}
.our-project-page .our-project {
  margin-top: -47px;
}
.our-project-page .product-service .item-list {
  margin: 0 -20px;
}
.our-project-page .product-service li {
  width: 33.3333333333%;
  padding: 0 20px;
  margin-top: 40px;
}
.our-project-page .product-service .link:hover .title.under-line:before {
  background-color: #fff;
}
.our-project-page .product-service .link:hover .image .cover img {
  filter: grayscale(0);
}
.our-project-page .product-service .wrapper {
  border: 1px solid #EBEBEB;
}
.our-project-page .product-service .wrapper .image {
  height: 250px;
}
.our-project-page .product-service .wrapper .image .cover img {
  filter: grayscale(1);
}
.our-project-page .product-service .wrapper .content {
  height: 190px;
  background-color: #FBFBFB;
}
.our-project-page .product-service .wrapper .title {
  color: #333333;
}
.our-project-page .product-service .wrapper .title.under-line:before {
  background-color: #333333;
}
.our-project-page .product-service .wrapper .desc {
  font-weight: bold;
  min-height: 2em;
}
.our-project-page .product-service .wrapper .desc.text-limit {
  max-height: 2em;
  -webkit-line-clamp: 2;
}
.our-project-page .product-service .wrapper .action {
  justify-content: flex-start;
  margin-top: 10px;
}
.our-project-page .product-service .wrapper .view-more {
  color: #9b9b9b;
}
.our-project-page .product-service .wrapper .view-more img {
  filter: grayscale(1) brightness(0) invert(0.6);
}

.solution-page {
  margin-top: -47px;
}
.solution-page .solution {
  min-height: 600px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.solution-page .product-service .wrapper .title {
  line-height: 1em;
}
.solution-page .product-service .wrapper .title.text-limit {
  max-height: 2em;
  -webkit-line-clamp: 2;
}
.solution-page .product-service .wrapper .action {
  position: absolute;
  bottom: 22px;
}
.solution-page .solution-list .wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  background-color: #fff;
}
.solution-page .solution-list .content {
  width: 33%;
  padding: 50px 28px 18px 39px;
  position: relative;
  z-index: 1;
}
.solution-page .solution-list .content .title-block {
  position: relative;
  width: 200%;
  max-height: 200px;
}
.solution-page .solution-list .content .title-block .title {
  position: relative;
  top: 0;
  left: 0;
  font-size: 125px;
  font-weight: bold;
  line-height: 0.8em;
  text-transform: uppercase;
  max-width: 710px;
}
.solution-page .solution-list .content .title-block .title.text-limit {
  max-height: 1.6em;
  -webkit-line-clamp: 2;
}
.solution-page .solution-list .content .desc {
  font-size: 30px;
  font-weight: 300;
  line-height: 1em;
  min-height: 7em;
}
.solution-page .solution-list .content .desc.text-limit {
  max-height: 7em;
  -webkit-line-clamp: 7;
}
.solution-page .solution-list .content .action {
  margin-top: 30px;
}
.solution-page .solution-list .image {
  width: 67%;
  height: 600px;
}
.solution-page .solution-list .image .cover {
  position: relative;
  width: 100%;
  height: 100%;
}
.solution-page .solution-list .image .cover img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.solution-page .solution-list .slick-prev,
.solution-page .solution-list .slick-next {
  width: 50px;
  height: 50px;
  font-size: 30px;
}
.solution-page .solution-list .slick-prev {
  left: -80px;
}
.solution-page .solution-list .slick-next {
  right: -80px;
}
.solution-page .solution-list .slick-dots {
  bottom: -47px;
}
.solution-page .solution-list .slick-dots li {
  margin: 0 10px;
}

.product-service-page {
  overflow: hidden;
}
.product-service-page .menu-inner {
  margin-block: 30px;
}
.product-service-page .product-block {
  padding-top: 0;
  padding-bottom: 0;
}
.product-service-page .customer {
  padding-top: 118px;
  padding-bottom: 153px;
}
.product-service-page .customer .img-customer {
  bottom: -50px;
}
.product-service-page .product-menu-inner .product-menu-list {
  border-bottom: 1px solid var(--color-gray);
  overflow: hidden;
}
.product-service-page .product-menu-inner .product-menu-list .link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 74px;
  color: var(--color-black);
  font-weight: var(--fw-normal);
  position: relative;
}
.product-service-page .product-menu-inner .product-menu-list .link::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--color-primary);
  transition: var(--transition);
}
.product-service-page .product-menu-inner .product-menu-list .link.active::before {
  width: 100%;
}
.product-service-page .product-menu-inner .product-menu-list .slick-list {
  margin: 0 -10px;
  overflow: visible;
}
.product-service-page .product-menu-inner .product-menu-list .slick-list .item {
  padding: 0 10px;
}
.product-service-page .page-head {
  margin-bottom: 40px;
}
.product-service-page .page-title {
  font-size: 44px;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0;
}
.product-service-page .box-elevate {
  box-shadow: none;
  margin-bottom: 0;
}
.product-service-page.detail-page .detail-block {
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.product-service-page.detail-page .detail-title {
  font-size: var(--typo-md);
  margin-bottom: 20px;
}
.product-service-page .gallery-detail-list .slider-single .slick-list {
  border-radius: 24px;
}
.product-service-page .gallery-detail-list .slider-single .slick-prev {
  left: 20px;
}
.product-service-page .gallery-detail-list .slider-single .slick-next {
  right: 20px;
}
.product-service-page .gallery-detail-list .slider-nav {
  padding-top: 24px;
  padding-bottom: 24px;
}
.product-service-page .gallery-detail-list .slider-nav .wrapper .image {
  border-radius: 16px;
}
.product-service-page .gallery-detail-list .slider-nav .slick-list {
  margin: 0 -12px;
}
.product-service-page .gallery-detail-list .slider-nav .slick-list .item {
  padding: 0 12px;
}
.product-service-page .gallery-detail-list .slider-nav .slick-prev,
.product-service-page .gallery-detail-list .slider-nav .slick-next {
  display: none !important;
}
.product-service-page .tech-spec .group {
  display: flex;
}
.product-service-page .tech-spec .group + .group {
  margin-top: 10px;
}
.product-service-page .tech-spec .label {
  flex-shrink: 0;
  width: 260px;
  font-weight: var(--fw-bold);
  line-height: 1;
}
.product-service-page .key-features .item-list {
  margin: 0;
}
.product-service-page .key-features .item-list li {
  width: 100%;
  padding: 0;
  padding-left: 25px;
  position: relative;
  line-height: 24px;
}
.product-service-page .key-features .item-list li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  background: url(../img/icon/check-circle.svg);
}
.product-service-page .key-features .item-list li + li {
  margin-top: 10px;
}

.product-highlight {
  position: relative;
  padding-top: 120px;
  padding-bottom: 140px;
  color: var(--color-light);
  z-index: 0;
  overflow: hidden;
}
.product-highlight:after {
  content: "";
  position: absolute;
  width: 584px;
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--color-primary);
  background-image: linear-gradient(180.04deg, #B3852A 0.06%, #FDE47B 35.59%, rgba(249, 241, 167, 0.1) 71.12%), url(../img/static/product-highlight.png);
  background-repeat: no-repeat;
  background-size: 2px 100%, cover;
  z-index: -1;
}
.product-highlight .h-title {
  font-size: var(--typo-xxl);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 40px;
}
.product-highlight .sub-h-title {
  font-size: 44px;
  font-weight: var(--fw-medium);
  line-height: 1;
  margin-bottom: 30px;
}

.product-service-list {
  position: relative;
}
.product-service-list .wrapper {
  position: relative;
  z-index: 0;
}
.product-service-list .wrapper .content {
  padding-top: 40px;
  padding-right: 180px;
}
.product-service-list .wrapper .title {
  font-size: 28px;
  font-weight: var(--fw-bold);
  line-height: 1em;
}
.product-service-list .wrapper .title.text-limit {
  max-height: 1em;
  -webkit-line-clamp: 1;
}
.product-service-list .wrapper .desc {
  font-size: var(--typo-default);
  font-weight: var(--fw-normal);
  line-height: 1.6em;
  min-height: 9.6em;
  margin-top: 40px;
}
.product-service-list .wrapper .desc.text-limit {
  max-height: 9.6em;
  -webkit-line-clamp: 6;
}
.product-service-list .wrapper .image {
  width: 660px;
}
.product-service-list .wrapper .image .contain {
  padding-top: 56%;
}
.product-service-list .wrapper .action {
  margin-top: 46px;
}
.product-service-list .slick-list {
  overflow: visible;
}
.product-service-list .slick-list .slick-slide {
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.product-service-list .slick-list .slick-active {
  opacity: 1;
  visibility: visible;
}
.product-service-list .slick-prev,
.product-service-list .slick-next {
  top: -180px;
  transform: none;
  color: var(--color-light);
  border: none;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(3px);
  width: 64px;
  height: 64px;
  font-size: 30px;
  transition: var(--transition);
}
.product-service-list .slick-prev {
  left: auto;
  right: 85px;
}
.product-service-list .slick-next {
  right: 0;
}
.product-service-list .slick-dots {
  bottom: -30px;
}
.product-service-list .slick-dots li {
  border-color: rgba(255, 255, 255, 0.5);
}
.product-service-list .slick-dots li button {
  background-color: rgba(255, 255, 255, 0.5);
}
.product-service-list .slick-dots li.slick-active {
  border-color: rgb(255, 255, 255);
}
.product-service-list .slick-dots li.slick-active button {
  background-color: rgb(255, 255, 255);
}

.detail-page .topic .badge {
  display: inline-block;
  padding: 0.7em 1em;
  background: rgba(198, 156, 108, 0.1);
  color: var(--color-secondary);
  font-size: 16px;
  font-weight: var(--fw-normal);
  border-radius: 4px;
}
.detail-page .topic .badge.badge-filled {
  background: var(--color-secondary);
  color: var(--color-light);
}
.detail-page .topic .block {
  width: 100%;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.detail-page .topic .title {
  display: flex;
  align-items: center;
  font-weight: var(--fw-semibold);
  font-size: 28px;
  line-height: 1.2em;
  margin-block: 20px;
}
.detail-page .topic .title span {
  padding-left: 26px;
}
.detail-page .date {
  font-size: var(--typo-default);
  font-weight: var(--fw-normal);
  color: #9C9C9C;
}
.detail-page .share .item-list {
  margin: 0 -5px;
}
.detail-page .share .item-list li {
  padding: 0 5px;
}
.detail-page .share .item-list .link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-page .share .item-list .link:hover img {
  transform: translateY(-2px);
}
.detail-page .share .item-list .link img {
  width: 100%;
  height: 100%;
  transition: all 200ms ease-in-out;
}
.detail-page .detail-block {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.detail-page .detail-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.detail-page .detail-title {
  font-size: var(--typo-lg);
  font-weight: var(--fw-bold);
  color: var(--color-black);
  line-height: 1.2em;
  margin-bottom: 25px;
}
.detail-page .vdo .iframe-container {
  max-width: 1000px;
  padding-bottom: 40%;
  margin: 0 auto;
  border-radius: 8px;
}

.gallery-detail-list {
  position: relative;
}
.gallery-detail-list .slider-single .image {
  width: 100%;
}
.gallery-detail-list .slider-single .image .cover {
  padding-top: 74.738%;
}
.gallery-detail-list .slider-single .image .contain {
  position: relative;
  padding-top: 74.738%;
}
.gallery-detail-list .slider-single .image .contain video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.gallery-detail-list .slider-single .slick-list {
  border-radius: 16px;
  overflow: hidden;
}
.gallery-detail-list .slider-single .video {
  position: relative;
  width: 100%;
}
.gallery-detail-list .slider-single .video:before {
  content: "\e8ae";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "feather" !important;
  z-index: 1;
  color: var(--color-secondary);
  background: var(--color-light);
  width: 60px;
  height: 60px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  padding-left: 2px;
}
.gallery-detail-list .slider-single .video video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.gallery-detail-list .slider-single .video:after {
  content: "";
  display: block;
  padding-top: 74.738%;
}
.gallery-detail-list .slider-nav {
  padding: 20px 0;
}
.gallery-detail-list .slider-nav .wrapper {
  cursor: pointer;
  width: 100%;
}
.gallery-detail-list .slider-nav .wrapper .image {
  border-radius: 10px;
  overflow: hidden;
}
.gallery-detail-list .slider-nav .wrapper .image .cover {
  padding-top: 100%;
}
.gallery-detail-list .slider-nav .wrapper .video {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.gallery-detail-list .slider-nav .wrapper .video figure {
  position: relative;
  padding-top: 100%;
}
.gallery-detail-list .slider-nav .wrapper .video video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.gallery-detail-list .slider-nav .wrapper .video:before {
  content: "\e8ae";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "feather" !important;
  z-index: 1;
  color: var(--color-secondary);
  background: var(--color-light);
  width: 38px;
  height: 38px;
  border-radius: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding-left: 2px;
}
.gallery-detail-list .slider-nav .slick-list {
  margin: 0 -10px;
}
.gallery-detail-list .slider-nav .slick-list .item {
  padding: 0 10px;
}
.gallery-detail-list .slider-nav .slick-slide .wrapper {
  opacity: 0.7;
  transition: var(--transition);
}
.gallery-detail-list .slider-nav .slick-slide.is-active .wrapper {
  opacity: 1;
}
.gallery-detail-list .slider-nav .slick-prev {
  left: 20px;
}
.gallery-detail-list .slider-nav .slick-next {
  right: 20px;
}

.grecaptcha-badge {
  z-index: 1000;
  display: none !important;
}

.container-map {
  overflow: hidden;
}

.map-page {
  margin-top: 120px;
}
.map-page .cover {
  width: 100%;
  padding-top: calc(100dvh - 120px);
  overflow: hidden;
  position: relative;
}
.map-page .cover img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.map-page .iframe-container {
  padding-top: calc(100dvh - 120px);
  padding-bottom: 0;
}

@media (max-width: 991px) {
  .map-page {
    margin-top: 70px;
  }
  .map-page .iframe-container,
  .map-page .cover {
    padding-top: calc(100dvh - 70px);
  }
}
.pdpa-page .topic {
  padding-bottom: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-gray);
}
.pdpa-page .h-title {
  color: var(--color-secondary);
  font-size: 36px;
  font-weight: var(--fw-medium);
  margin: 0;
}

@media (max-width: 1600px) {
  .pdpa-page .h-title {
    font-size: 32px;
  }
}
@media (max-width: 1440px) {
  .pdpa-page .h-title {
    font-size: 28px;
  }
}
@media (max-width: 1199px) {
  .pdpa-page .h-title {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .pdpa-page .topic {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .pdpa-page .topic {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .pdpa-page .h-title {
    font-size: 20px;
  }
}
.error-page .error-box {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 40px;
  padding: 40px;
  text-align: center;
}
@media (min-width: 1200px) {
  .error-page .error-box {
    max-width: 1080px;
    margin: 0 auto;
  }
}
.error-page .error-box .icon {
  width: 40px;
  margin: 10px 15px;
}
.error-page .error-box .image {
  max-width: 520px;
  margin: 0 auto;
  margin-bottom: 50px;
  margin-top: -100px;
}
.error-page .error-box .title {
  color: var(--color-black);
  border: none;
  padding-bottom: 0;
  margin: 0;
}
.error-page .error-box .desc {
  font-size: var(--typo-md);
  font-weight: var(--fw-medium);
  color: var(--color-gray-2);
  margin-top: 20px;
  margin-bottom: 20px;
}
.error-page .error-box .action {
  margin-top: 40px;
}

@media (max-width: 1440px) {
  .error-page .error-box .image {
    max-width: 460px;
    margin-top: -75px;
  }
}
@media (max-width: 1199px) {
  .error-page .error-box .icon {
    width: 38px;
  }
}
@media (max-width: 991px) {
  .error-page .error-box .icon {
    width: 36px;
  }
}
@media (max-width: 767px) {
  .error-page .error-box {
    border-radius: 20px;
    padding: 30px 20px;
  }
  .error-page .error-box .image {
    max-width: 375px;
    margin-top: -55px;
    margin-bottom: 25px;
  }
  .error-page .error-box .desc {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: var(--typo-sm);
  }
  .error-page .error-box .action {
    margin-top: 25px;
  }
}
/* layouts */
.layout-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: var(--transition);
}
.layout-header .topbar {
  display: flex;
  align-items: center;
  height: 100px;
  background-color: var(--color-light);
}
.layout-header .topbar .brand {
  display: block;
  height: 70px;
}
.layout-header .topbar .brand img {
  width: auto;
  height: 100%;
}
.layout-header .topbar .topbar-contact .item-list li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: var(--fw-medium);
  text-decoration: none;
  color: var(--color-primary);
  width: 50%;
  flex-wrap: wrap;
}
.layout-header .topbar .topbar-contact .item-list li:nth-child(2) {
  margin-left: 0;
}
.layout-header .topbar .topbar-contact .item-list li:nth-child(3) {
  width: 100%;
  margin-top: 10px;
}
.layout-header .topbar .topbar-contact .item-list .topbar-contact-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.layout-header .topbar .topbar-contact .item-list .topbar-contact-group .icon {
  width: 20px;
  height: auto;
}
.layout-header .topbar .topbar-contact .item-list .tel-group {
  line-height: 1.3em;
}
.layout-header .topbar .topbar-contact .item-list .txt {
  line-height: 0.8em;
}
.layout-header .topbar .topbar-contact .item-list .link {
  font-size: 14px;
  font-weight: var(--fw-medium);
  line-height: 0.8em;
  text-decoration: none;
  color: var(--color-primary);
  transition: var(--transition);
  display: inline-block;
}
.layout-header .topbar .topbar-contact .item-list .link:hover {
  color: var(--color-secondary);
}
.layout-header .topbar .topbar-help {
  display: flex;
  align-items: center;
  gap: 10px;
}
.layout-header .topbar .topbar-help .btn {
  height: 48px;
  box-shadow: none;
}
.layout-header .topbar .topbar-help .btn .icon {
  margin-right: 10px;
  max-height: 32px;
}
.layout-header .mainbar {
  display: flex;
  align-items: center;
  height: 56px;
  background: var(--linear-to-r-primary);
  box-shadow: inset 0 -3px 0 var(--color-primary-dark);
  transition: var(--transition);
}
.layout-header .mainbar .menu {
  transition: var(--transition);
}
.layout-header .mainbar .menu > .nav-list > li + li {
  margin-left: 56px;
}
.layout-header .mainbar .menu > .nav-list > li > .link {
  text-decoration: none;
  font-size: var(--typo-default);
  color: var(--color-light);
  font-weight: var(--fw-normal);
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
}
.layout-header .mainbar .menu > .nav-list > li > .link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-secondary);
  transition: var(--transition);
}
.layout-header .mainbar .menu > .nav-list > li > .link:hover, .layout-header .mainbar .menu > .nav-list > li > .link.active {
  color: var(--color-secondary);
}
.layout-header .mainbar .menu > .nav-list > li > .link:hover::before, .layout-header .mainbar .menu > .nav-list > li > .link.active::before {
  width: 100%;
}
.layout-header .mainbar .menu > .nav-list > li.active > .link {
  color: var(--color-secondary);
}
.layout-header .mainbar .menu > .nav-list > li.active > .link::before {
  width: 100%;
}
.layout-header .mainbar .menu .dropdown:hover > .link {
  color: var(--color-secondary);
}
.layout-header .mainbar .menu .dropdown:hover > .link::before {
  width: 100%;
}
.layout-header .mainbar .menu .topbar {
  display: none;
}
.layout-header .mainbar .menu .dropdown-menu {
  transform: inherit !important;
  position: fixed !important;
  color: var(--color-light);
  background-color: rgba(4, 21, 45, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 0;
  border: none;
  margin-top: 0;
  top: 156px !important;
  padding: 0;
  width: 100%;
  min-height: 464px;
  max-height: calc(100dvh - 156px);
  display: block;
  opacity: 0;
  transition: all 200ms ease-in-out;
  visibility: hidden;
  overflow: auto;
}
.layout-header .mainbar .menu .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
}
.layout-header .mainbar .menu .dropdown-menu .topic {
  color: var(--color-light);
  font-size: var(--typo-default);
  font-weight: var(--fw-bold);
}
.layout-header .mainbar .menu .dropdown-menu .link {
  color: var(--color-light);
  font-size: var(--typo-default);
  padding: 0;
  background-color: transparent;
}
.layout-header .mainbar .menu .dropdown-menu .nav-list li + li {
  border-top: none;
}
@media (min-width: 992px) {
  .layout-header .mainbar .menu .dropdown:hover > .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}
.layout-header .mainbar .menu .p-block {
  padding-block: 40px;
}
.layout-header .mainbar .menu .submenu .link {
  color: var(--color-light);
}
.layout-header .mainbar .menu .submenu .topic {
  margin-bottom: 15px;
}
.layout-header .mainbar .menu .submenu .nav-list .link {
  padding-block: 5px;
}
.layout-header .mainbar .menu .submenu .nav-list > li + li {
  margin-top: 10px;
}
.layout-header .mainbar .menu .submenu1 {
  width: 380px;
  padding-right: 30px;
}
.layout-header .mainbar .menu .submenu1 .topic {
  color: var(--color-secondary);
  text-transform: uppercase;
  transition: var(--transition);
}
.layout-header .mainbar .menu .submenu1 .link {
  font-size: var(--typo-sm);
  font-weight: var(--fw-semibold);
  position: relative;
  transition: var(--transition);
}
.layout-header .mainbar .menu .submenu1 .link[data-toggle] {
  padding-right: 34px;
}
.layout-header .mainbar .menu .submenu1 .link[data-toggle]::after {
  content: "\e844";
  font-family: "feather" !important;
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  position: absolute;
  top: 5px;
  right: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light);
  background-color: var(--color-secondary);
  border-radius: 50%;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.layout-header .mainbar .menu .submenu1 .link:hover, .layout-header .mainbar .menu .submenu1 .link.active {
  opacity: 1 !important;
}
.layout-header .mainbar .menu .submenu1 .link:hover[data-toggle]::after, .layout-header .mainbar .menu .submenu1 .link.active[data-toggle]::after {
  opacity: 1;
  visibility: visible;
}
.layout-header .mainbar .menu .submenu1 .link[data-toggle=collapse] {
  opacity: 1 !important;
}
.layout-header .mainbar .menu .submenu1 .link[data-toggle=collapse]::after {
  opacity: 1;
  visibility: visible;
}
.layout-header .mainbar .menu .submenu1 .link[data-toggle=collapse]:not(.collapsed)::after {
  transform: rotate(-90deg);
}
.layout-header .mainbar .menu .submenu1::after {
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  width: 1px;
  height: 100%;
  background-color: var(--color-light);
  opacity: 0.1;
}
@media (min-width: 992px) {
  .layout-header .mainbar .menu .submenu1:hover .topic {
    opacity: 0.5;
  }
  .layout-header .mainbar .menu .submenu1:hover .link:not(.active) {
    opacity: 0.5;
  }
}
.layout-header .mainbar .menu .submenu2 .link {
  font-size: var(--typo-default);
  transition: var(--transition);
}
.layout-header .mainbar .menu .submenu2 .link:hover {
  color: var(--color-secondary);
}
.layout-header .mainbar .menu .banner-menu {
  width: 380px;
}
.layout-header .mainbar .menu .banner-menu .cover {
  padding-top: 73.5%;
  border-radius: 8px;
  background: var(--color-snow);
}
.layout-header .mainbar .menu .banner-menu .link {
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  text-align: center;
}
.layout-header .mainbar .menu .banner-menu .title {
  color: var(--color-secondary);
  font-size: var(--typo-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 24px;
}
.layout-header .mainbar .menu .submenu-list {
  margin: 8px 0;
  padding: 10px 15px;
  background-color: var(--color-snow);
  color: var(--color-primary);
  border-radius: 8px;
}
.layout-header .mainbar .menu .submenu-list .link {
  color: var(--color-primary);
}
.layout-header .mainbar .mainbar-content-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.layout-header .mainbar .mainbar-content-right > .btn-product-catalog.active {
  background-color: var(--color-light);
  border-color: var(--color-light);
  color: var(--color-primary);
}
.layout-header .mainbar .mainbar-content-right .btn {
  padding-inline: 6px;
  height: 32px;
  min-width: 80px;
  border-radius: 16px;
  background-color: var(--color-primary-dark);
  border: none;
  font-size: var(--typo-xs);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  transition: var(--transition);
}
.layout-header .mainbar .mainbar-content-right .btn:hover {
  background-color: var(--color-light);
  border-color: var(--color-light);
  color: var(--color-primary);
}
.layout-header .mainbar .mainbar-content-right .dropdown-lang {
  z-index: 1000;
}
.layout-header .mainbar .mainbar-content-right .dropdown-lang .dropdown-toggle,
.layout-header .mainbar .mainbar-content-right .dropdown-lang .cactive {
  min-width: 120px;
  justify-content: space-between;
}
.layout-header .mainbar .mainbar-content-right .dropdown-lang .dropdown-toggle::after,
.layout-header .mainbar .mainbar-content-right .dropdown-lang .cactive::after {
  margin-left: 10px;
  margin-right: 0;
  border: none;
  vertical-align: 0;
  font-size: var(--typo-default);
}
.layout-header .mainbar .mainbar-content-right .dropdown-lang .dropdown-toggle .icon,
.layout-header .mainbar .mainbar-content-right .dropdown-lang .cactive .icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
  border: 1px solid var(--color-light);
}
.layout-header .mainbar .mainbar-content-right .dropdown-lang .dropdown-menu {
  display: block !important;
  min-width: 120px;
  margin-top: 10px;
  border-radius: 15px;
  overflow: hidden;
}
.layout-header .mainbar .mainbar-content-right .dropdown-lang .dropdown-menu .link {
  font-size: var(--typo-xs);
  color: var(--color-primary);
  padding: 5px 10px;
}
.layout-header .mainbar .mainbar-content-right .dropdown-lang .dropdown-menu .link:hover {
  color: var(--color-light);
}
.layout-header .mainbar .mainbar-content-right .dropdown-lang .dropdown-menu .icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
@media (min-width: 992px) {
  .layout-header.tiny .topbar .topbar-help .btn {
    font-size: 13px;
    height: 36px;
  }
}
@media (min-width: 1200px) {
  .layout-header.tiny .topbar {
    height: 60px;
  }
  .layout-header.tiny .topbar .brand {
    height: 40px;
  }
  .layout-header.tiny .topbar .topbar-contact .item-list li {
    font-size: 11px;
  }
  .layout-header.tiny .topbar .topbar-contact .item-list .link {
    font-size: 11px;
  }
  .layout-header.tiny .topbar .topbar-contact .item-list .topbar-contact-group .icon {
    width: 16px;
  }
  .layout-header.tiny .topbar .topbar-contact .item-list li:nth-child(3) {
    margin-top: 5px;
  }
  .layout-header.tiny .topbar .topbar-help .btn {
    height: 40px;
  }
  .layout-header.tiny .mainbar {
    height: 40px;
  }
  .layout-header.tiny .mainbar .menu > .nav-list > li > .link {
    font-size: 12px;
    height: 40px;
  }
  .layout-header.tiny .mainbar .menu .dropdown-menu {
    top: 100px !important;
  }
}
@media (min-width: 1441px) {
  .layout-header.tiny .topbar {
    height: 75px;
  }
  .layout-header.tiny .topbar .brand {
    height: 50px;
  }
  .layout-header.tiny .topbar .topbar-contact .item-list li {
    font-size: 12px;
  }
  .layout-header.tiny .topbar .topbar-contact .item-list .link {
    font-size: 12px;
  }
  .layout-header.tiny .topbar .topbar-contact .item-list .topbar-contact-group .icon {
    width: 18px;
  }
  .layout-header.tiny .topbar .topbar-help .btn {
    height: 44px;
  }
  .layout-header.tiny .mainbar {
    height: 45px;
  }
  .layout-header.tiny .mainbar .menu > .nav-list > li > .link {
    font-size: 14px;
    height: 44px;
  }
  .layout-header.tiny .mainbar .menu .dropdown-menu {
    top: 120px !important;
  }
  .layout-header.tiny .mainbar .mainbar-content-right .btn {
    padding-inline: 4px;
    height: 28px;
  }
}

.header-product-catalog {
  position: fixed;
  top: 260px;
  right: 20px;
  z-index: 99;
}
.header-product-catalog .link {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
  backdrop-filter: blur(30px);
  --webkit-backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid var(--color-light);
  padding: 20px;
  text-decoration: none;
  transition: var(--transition);
  overflow: hidden;
}
.header-product-catalog .link:hover {
  width: 200px;
  background-color: rgba(255, 255, 255, 0.15);
}
.header-product-catalog .link:hover strong {
  color: var(--color-secondary);
  opacity: 1;
}
.header-product-catalog .link:hover img.-default {
  opacity: 0;
}
.header-product-catalog .link:hover img.-hover {
  opacity: 1;
}
.header-product-catalog .link .product-catalog-group {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-product-catalog .link strong {
  transition: var(--transition);
  font-size: 12px;
  opacity: 0;
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  left: 20px;
  line-height: 1em;
}
.header-product-catalog .link .icon {
  position: relative;
  width: 36px;
  height: 36px;
}
.header-product-catalog .link img {
  transition: var(--transition);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header-product-catalog .link img.-hover {
  opacity: 0;
}

.header-social-list {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  margin-top: 78px;
  z-index: 99;
  width: 80px;
  border: 2px solid var(--color-light);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(2px);
  padding: 35px 15px;
  border-radius: 60px;
  overflow: hidden;
}
.header-social-list .item-list li {
  width: 100%;
  text-align: center;
}
.header-social-list .item-list li + li {
  margin-top: 25px;
}
.header-social-list .icon svg * {
  transition: var(--transition);
}
.header-social-list .link {
  display: block;
}
.header-social-list .link:hover .icon.-mail svg * {
  fill: var(--color-secondary);
  stroke: var(--color-secondary);
}
.header-social-list .link:hover .icon svg *:not([fill=white]) {
  fill: var(--color-secondary);
}

.header-map {
  width: 100%;
  position: fixed;
  height: 120px;
  background-color: var(--color-light);
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
}
.header-map .row {
  align-items: center;
  justify-content: space-between;
}
.header-map .row > div:first-child {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-map .row > div:first-child .brand {
  max-width: 80px;
}
.header-map .row > div:first-child .title {
  font-size: 24px;
  font-weight: var(--fw-black);
  color: var(--color-primary);
}
.header-map .menu-map li + li {
  margin-left: 10px;
}

@media (max-width: 1670px) {
  .layout-header .topbar {
    height: 90px;
  }
  .layout-header .topbar .brand {
    height: 60px;
  }
  .layout-header .topbar .topbar-contact .item-list li {
    font-size: 12px;
  }
  .layout-header .topbar .topbar-contact .item-list .link {
    font-size: 12px;
  }
  .layout-header .topbar .topbar-contact .item-list .topbar-contact-group .icon {
    width: 18px;
  }
  .layout-header .topbar .topbar-help .btn {
    padding: 0 20px;
  }
  .layout-header .mainbar {
    height: 50px;
  }
  .layout-header .mainbar .menu > .nav-list > li > .link {
    font-size: 14px;
    height: 50px;
  }
  .layout-header .mainbar .menu .dropdown-menu {
    top: 140px !important;
  }
  .header-social-list {
    margin-top: 70px;
  }
}
@media (max-width: 1440px) {
  .layout-header .topbar {
    height: 80px;
  }
  .layout-header .topbar .brand {
    height: 50px;
  }
  .layout-header .topbar .topbar-help .btn {
    font-size: 14px;
    height: 44px;
  }
  .layout-header .topbar .topbar-help .btn .icon {
    margin-right: 10px;
    max-height: 30px;
  }
  .layout-header .mainbar {
    height: 45px;
    box-shadow: inset 0 -2px 0 var(--color-primary-dark);
  }
  .layout-header .mainbar .menu .banner-menu {
    width: 320px;
  }
  .layout-header .mainbar .menu .submenu1 {
    width: 320px;
  }
  .layout-header .mainbar .menu > .nav-list > li > .link {
    height: 45px;
  }
  .layout-header .mainbar .menu > .nav-list > li > .link::before {
    height: 2px;
  }
  .layout-header .mainbar .menu .dropdown-menu {
    top: 125px !important;
  }
  .header-product-catalog .link {
    width: 70px;
    height: 70px;
  }
  .header-product-catalog .link .icon {
    width: 30px;
    height: 30px;
  }
  .header-product-catalog .link:hover {
    width: 190px;
  }
  .header-product-catalog .link strong {
    left: 15px;
  }
  .header-social-list {
    width: 70px;
    padding: 30px 15px;
    margin-top: 62.5px;
  }
  .header-social-list .item-list li + li {
    margin-top: 20px;
  }
  .header-social-list .link .icon svg {
    transform: scale(0.8);
  }
  .header-map .row > div:first-child .brand {
    max-width: 70px;
  }
  .header-map .row > div:first-child .title {
    font-size: 22px;
  }
}
@media (max-width: 1199px) {
  .layout-header .topbar {
    height: 70px;
  }
  .layout-header .topbar .brand {
    height: 45px;
  }
  .layout-header .topbar .topbar-help .btn {
    font-size: 12px;
    height: 36px;
    min-width: 180px;
  }
  .layout-header .topbar .topbar-help .btn .icon {
    margin-right: 8px;
    max-height: 22px;
  }
  .layout-header .mainbar .menu > .nav-list > li + li {
    margin-left: 40px;
  }
  .layout-header .mainbar .menu .dropdown-menu {
    top: 115px !important;
  }
  .layout-header .mainbar .menu .submenu1 {
    width: 300px;
  }
  .layout-header .mainbar .menu .submenu2 .link {
    font-size: 14px;
  }
  .layout-header .mainbar .menu .banner-menu {
    width: 300px;
  }
  .layout-header .mainbar .menu .submenu .nav-list > li + li {
    margin-top: 8px;
  }
  .header-social-list {
    margin-top: 57.5px;
  }
}
@media (max-width: 991px) {
  .layout-header {
    display: flex;
    flex-direction: column-reverse;
    border-bottom: 1px solid var(--color-border);
    box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  }
  .layout-header .topbar {
    height: 64px;
  }
  .layout-header .topbar .brand {
    height: 40px;
  }
  .layout-header .topbar .topbar-help {
    display: none;
  }
  .layout-header .mainbar {
    box-shadow: none;
  }
  .layout-header .mainbar .mainbar-content-right {
    justify-content: space-between;
  }
  .layout-header .mainbar .menu {
    position: fixed;
    left: 0;
    top: 110px;
    width: 100%;
    height: 100dvh;
    background-color: var(--color-light);
    opacity: 0.5;
    transform: translateX(100%);
    z-index: 999;
  }
  .layout-header .mainbar .menu.open {
    transform: translateX(0);
    opacity: 1;
  }
  .layout-header .mainbar .menu > .nav-list > li:first-child {
    border-top: 1px solid var(--color-border);
  }
  .layout-header .mainbar .menu > .nav-list > li {
    width: 100%;
    border-bottom: 1px solid var(--color-border);
    border-top: none;
  }
  .layout-header .mainbar .menu > .nav-list > li + li {
    margin-left: 0;
  }
  .layout-header .mainbar .menu > .nav-list > li > .link {
    justify-content: start;
    height: auto;
    padding: 10px 15px;
    color: var(--color-primary);
    font-size: var(--typo-default);
  }
  .layout-header .mainbar .menu > .nav-list > li > .link::before {
    display: none;
  }
  .layout-header .mainbar .menu > .nav-list > li.active > .link {
    background: var(--color-primary);
    color: var(--color-light);
  }
  .layout-header .mainbar .menu .dropdown-menu {
    position: relative !important;
    top: auto !important;
    height: auto;
    max-height: -moz-max-content;
    max-height: max-content;
    min-height: 1px;
    backdrop-filter: none;
    display: none;
  }
  .layout-header .mainbar .menu .dropdown-menu.show {
    display: block;
  }
  .layout-header .mainbar .menu .submenu1 .link::after {
    transform: rotate(90deg);
  }
  .layout-header .mainbar .menu .dropdown.open > .link {
    background: var(--color-primary-dark);
    color: var(--color-light) !important;
  }
  .layout-header .mainbar .menu [data-toggle=dropdown].link::after {
    content: "\e842";
    font-family: "feather" !important;
    font-weight: 500;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.25em;
    transition: var(--transition);
  }
  .layout-header .mainbar .menu > .nav-list > li > .link.active::after {
    transform: rotate(180deg);
  }
  .layout-header .mainbar .menu .dropdown-menu .nav-list li {
    border-top: none;
  }
  .layout-header .mainbar .menu .topbar {
    height: auto;
    background-color: transparent;
    display: block;
  }
  .layout-header .mainbar .menu .topbar .topbar-help {
    display: flex;
    margin-top: 20px;
    padding: 0 15px;
    width: 100%;
    flex-direction: column;
  }
  .layout-header .mainbar .menu .topbar .topbar-help .link {
    padding: 0;
    justify-content: center;
  }
  .layout-header .mainbar .menu .topbar .topbar-help .btn {
    min-width: auto;
    width: 100%;
  }
  .header-product-catalog {
    right: 15px;
  }
  .header-product-catalog .link {
    width: 60px;
    height: 60px;
    padding: 17px;
  }
  .header-product-catalog .link .icon {
    width: 25px;
    height: 25px;
  }
  .header-product-catalog .link:hover {
    width: 180px;
  }
  .header-product-catalog,
  .header-social-list {
    display: none;
  }
  .header-map {
    height: 60px;
  }
  .header-map .row > div:first-child .brand {
    max-width: 40px;
  }
  .header-map .row > div:first-child .title {
    display: none;
  }
}
@media (max-width: 767px) {
  .layout-header .topbar {
    height: 57px;
  }
  .layout-header .topbar .brand {
    height: 30px;
  }
  .layout-header .mainbar {
    height: 42px;
  }
  .layout-header .mainbar .menu {
    top: 100px;
  }
}
@media (max-width: 575px) {
  .layout-header .mainbar .menu .p-block {
    padding-block: 20px;
  }
  .layout-header .mainbar .menu .dropdown-menu {
    padding-block: 5px;
  }
  .layout-header .mainbar .menu .submenu2 {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .layout-header .mainbar .menu .submenu1 {
    width: 100%;
    padding-right: 0;
  }
  .layout-header .mainbar .menu .submenu1::after {
    display: none;
  }
  .layout-header .mainbar .menu .banner-menu {
    width: 100%;
  }
}
.layout-footer .footer-area {
  padding-top: 80px;
  padding-bottom: 60px;
  background-image: url(../img/background/bg-footer.png);
  background-position: center;
  background-size: cover;
}
.layout-footer .footer-area .menu .nav-list li + li {
  margin-top: 15px;
}
.layout-footer .footer-area .menu .nav-list .link {
  color: var(--color-light);
  font-size: var(--typo-default);
  text-decoration: none;
}
.layout-footer .footer-area .menu .nav-list .link:hover {
  color: var(--color-secondary);
}
.layout-footer .footer-area .info .brand {
  display: block;
  width: 162px;
  margin-bottom: 25px;
}
.layout-footer .footer-area .info .h5 {
  color: var(--color-light);
  font-size: var(--typo-md);
  font-weight: var(--fw-medium);
  margin-bottom: 30px;
}
.layout-footer .footer-area .info .social-list .item-list li + li {
  margin-left: 20px;
}
.layout-footer .footer-area .info .social-list .item-list .link {
  display: block;
  width: 48px;
  height: 48px;
  transition: var(--transition);
}
.layout-footer .footer-area .info .social-list .item-list .link img {
  width: 100%;
  height: 100%;
}
.layout-footer .footer-area .info .social-list .item-list .link:hover {
  transform: translateY(-5px);
}
.layout-footer .footer-area .info > .row {
  justify-content: space-between;
}
.layout-footer .footer-area .info .info-contact .item-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: var(--typo-default);
  font-weight: var(--fw-medium);
  text-decoration: none;
  color: var(--color-light);
  width: 100%;
}
.layout-footer .footer-area .info .info-contact .item-list li + li {
  margin-top: 15px;
  align-items: center;
}
.layout-footer .footer-area .info .info-contact .item-list li .contact-icon {
  flex-shrink: 0;
}
.layout-footer .footer-area .info .info-contact .item-list img {
  filter: brightness(0) invert(1);
}
.layout-footer .footer-area .info .info-contact .item-list .tel-group {
  line-height: 1.6em;
}
.layout-footer .footer-area .info .info-contact .item-list .txt {
  font-size: var(--typo-default);
  line-height: 1.2em;
  color: var(--color-light);
  margin-bottom: 5px;
}
.layout-footer .footer-area .info .info-contact .item-list .link {
  font-size: var(--typo-default);
  font-weight: var(--fw-medium);
  line-height: 1em;
  text-decoration: none;
  color: var(--color-light);
  transition: var(--transition);
  display: inline-block;
}
.layout-footer .footer-area .info .info-contact .item-list .link:hover {
  color: var(--color-secondary);
}
.layout-footer .footer-area .info .info-contact .item-list address {
  margin-bottom: 0;
}
.layout-footer .footer-area .info .info-contact .contact-icon {
  width: 56px;
  height: 56px;
  background: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.layout-footer .footer-area .info .info-contact .contact-icon img {
  width: 24px;
}
.layout-footer .footer-area .sitemap {
  width: 520px;
}
.layout-footer .copyright {
  height: 80px;
  display: flex;
  align-items: center;
  background-color: var(--color-primary-dark);
  font-size: var(--typo-default);
}
.layout-footer .copyright p {
  margin-bottom: 0;
  color: var(--color-light);
}
.layout-footer .copyright .item-list li + li {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid var(--color-light);
}
.layout-footer .copyright .item-list .link {
  text-decoration: none;
  color: var(--color-light);
  line-height: 1em;
}
.layout-footer .copyright .item-list .link:hover {
  color: var(--color-secondary);
}

#back-to-top {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 99;
  bottom: 40px;
  right: 20px;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 0;
  margin: 0;
  background: var(--color-secondary);
  width: 80px;
  height: 80px;
  border-radius: 40px;
  line-height: 80px;
  font-size: 30px;
  color: var(--color-light);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 1670px) {
  .layout-footer .footer-area .sitemap {
    width: 350px;
  }
}
@media (max-width: 1440px) {
  .layout-footer .footer-area .sitemap {
    width: 300px;
  }
  #back-to-top {
    width: 70px;
    height: 70px;
    border-radius: 35px;
    line-height: 70px;
    font-size: 25px;
    bottom: 30px;
  }
}
@media (max-width: 1199px) {
  .layout-footer .footer-area .menu .nav-list .link {
    font-size: 14px;
  }
  .layout-footer .footer-area .info .info-contact .item-list li {
    font-size: 14px;
  }
  .layout-footer .footer-area .info .info-contact .item-list .txt {
    font-size: 14px;
  }
  .layout-footer .footer-area .info .info-contact .item-list .link {
    font-size: 14px;
  }
  .layout-footer .footer-area .info .info-contact .contact-icon {
    width: 50px;
    height: 50px;
  }
  .layout-footer .footer-area .info .social-list .item-list .link {
    width: 44px;
    height: 44px;
  }
  .layout-footer .footer-area .sitemap {
    width: 250px;
  }
  .layout-footer .copyright {
    height: 60px;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .layout-footer .footer-area .info > .row {
    row-gap: 40px;
  }
  .layout-footer .footer-area .info > .row > .col-lg-auto > .row {
    margin: 0 -10px;
  }
  .layout-footer .footer-area .info > .row > .col-lg-auto > .row > div {
    padding: 0 10px;
  }
  .layout-footer .footer-area .sitemap {
    width: 100%;
  }
  .layout-footer .footer-area .menu .nav-list {
    margin: -6px -15px;
  }
  .layout-footer .footer-area .menu .nav-list li {
    width: 50%;
    padding: 6px 15px;
  }
  .layout-footer .footer-area .menu .nav-list li + li {
    margin-top: 0;
  }
  #back-to-top {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    line-height: 60px;
    font-size: 22px;
    right: 15px;
  }
}
@media (max-width: 767px) {
  .layout-footer .footer-area {
    padding-top: 60px;
  }
  .layout-footer .footer-area .info > .row {
    gap: 30px;
  }
  .layout-footer .footer-area .info .brand {
    width: 100px;
  }
  .layout-footer .footer-area .info .h5 {
    margin-bottom: 20px;
  }
  .layout-footer .footer-area .info .social-list .item-list li + li {
    margin-left: 10px;
  }
  .layout-footer .footer-area .info .social-list .item-list .link {
    width: 40px;
    height: 40px;
  }
  .layout-footer .footer-area .info .info-contact .item-list li + li {
    margin-top: 20px;
  }
  .layout-footer .footer-area .info .info-contact .contact-icon {
    width: 44px;
    height: 44px;
  }
  .layout-footer .footer-area .info .info-contact .contact-icon img {
    width: 20px;
  }
  .layout-footer .copyright {
    height: auto;
    padding: 15px 0;
    font-size: 12px;
  }
  .layout-footer .copyright .row {
    flex-direction: column-reverse;
  }
  .layout-footer .copyright p {
    text-align: center;
  }
  .layout-footer .copyright .item-list li {
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2274509804);
  }
  .layout-footer .copyright .item-list li + li {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
  #back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    line-height: 50px;
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .layout-footer .footer-area {
    padding-top: 50px;
    padding-bottom: 40px;
  }
  #back-to-top {
    width: 44px;
    height: 44px;
    border-radius: 22px;
    line-height: 44px;
    font-size: 16px;
  }
}
@media (max-width: 1670px) {
  .our-certificates .certificate-area {
    padding-inline: 0;
  }
  .our-certificates .certificate-area .box {
    margin-top: 160px;
  }
  .our-certificates .certificate-area .trophy-award.trophy-award1 {
    top: 26px;
    margin-right: -640px;
    width: 240px;
  }
  .our-certificates .certificate-area .trophy-award.trophy-award2 {
    top: -160px;
    margin-left: -700px;
    width: 200px;
  }
}
@media (max-width: 1600px) {
  .intro {
    background-position: 57px 190px;
  }
  .intro .title .num {
    font-size: 280px;
  }
  .intro .title .num sup {
    font-size: 110px;
  }
  .technical:before {
    right: -100px;
  }
  .aboutUs-page .intro {
    background-position: 62px 50px;
  }
  .intro .sub-title {
    font-size: 75px;
    margin-top: -65px;
  }
  .intro .sub-title span {
    font-size: 93px;
  }
  .intro .sub-title.under-line:before {
    left: 35.6%;
    width: 350px;
  }
  .product-service-list .wrapper .image {
    width: 600px;
  }
  .obj-1 {
    right: 110px;
  }
  .obj-2 {
    right: 110px;
  }
  .customer .img-customer {
    right: -210px;
  }
  .obj-3 {
    left: 660px;
  }
  .aboutUs-page .vision .obj-r {
    left: 42%;
  }
  .aboutUs-page .vision .obj-l {
    right: 43%;
  }
}
@media (max-width: 1440px) {
  .site-header {
    height: 90px;
  }
  .site-header .brand img {
    max-width: 145px;
  }
  .site-header .block .lang {
    padding-bottom: 8px;
  }
  .site-header .block .lang .link {
    width: 36px;
    text-align: center;
  }
  .site-header .block .lang .link,
  nav.menu li a.link {
    font-size: 20px;
  }
  .topgraphic {
    margin-top: 90px;
  }
  .intro {
    background-position: 47px 70px;
  }
  .intro .title .num {
    font-size: 240px;
  }
  .intro .title .num sup {
    font-size: 100px;
    top: 90px;
  }
  .intro .title .year {
    font-size: 100px;
  }
  .intro .sub-title {
    font-size: 80px;
    margin-top: -70px;
  }
  .intro .desc {
    font-size: 22px;
  }
  .ourvision {
    padding-bottom: 0;
  }
  .ourvision .content .title {
    font-size: 48px;
  }
  .ourvision .content .desc {
    font-size: 22px;
    margin-top: 30px;
  }
  .ourvision .main {
    min-height: 610px;
  }
  .ourvision .main .main-nav {
    top: 58%;
  }
  .ourvision .main .main-nav li {
    width: 180px;
    height: 180px;
  }
  .ourvision .main .main-nav li:nth-child(2) {
    top: -84%;
    left: 21%;
  }
  .ourvision .main .main-nav li:nth-child(3) {
    left: 42%;
  }
  .ourvision .main .main-nav li:nth-child(4) {
    top: 86%;
    left: 21%;
  }
  .ourvision .main .main-nav li .desc {
    font-size: 26px;
  }
  .ourvision .main .main-nav li .desc .link {
    font-size: 20px;
  }
  .obj-1 {
    top: 236px;
    right: 150px;
  }
  .obj-2 {
    top: 390px;
    right: 142px;
  }
  .obj-3 {
    top: 350px;
    left: 630px;
    width: 50px;
  }
  .our-solution {
    min-height: 400px;
  }
  .our-solution .title {
    font-size: 70px;
  }
  .our-solution .desc {
    font-size: 22px;
  }
  .technical {
    padding: 100px 0;
  }
  .technical:before {
    width: 337px;
  }
  .technical:after {
    width: 456px;
    height: 1020px;
  }
  .style-left .block .title, .style-right .block .title {
    font-size: 35px;
  }
  .style-left .block .desc, .style-right .block .desc {
    font-size: 18px;
    margin-top: 20px;
  }
  .style-left .block .num, .style-right .block .num {
    font-size: 160px;
    top: -32px;
    left: -140px;
  }
  .style-right .block .num {
    left: inherit;
    right: -140px;
  }
  .technical .padding-b {
    padding-bottom: 100px;
  }
  .technical .padding-t {
    padding-top: 100px;
  }
  .our-project .title {
    font-size: 70px;
    margin-bottom: 40px;
  }
  .our-project .wrapper .block .title {
    font-size: 28px;
  }
  .our-project .wrapper .block .sub-title {
    font-size: 20px;
  }
  .our-project .wrapper .block .desc {
    font-size: 20px;
  }
  .our-project .action {
    margin: 35px 0;
  }
  .product-service .title {
    font-size: 70px;
  }
  .product-service .wrapper .title {
    font-size: 24px;
  }
  .product-service .wrapper .desc {
    font-size: 20px;
  }
  .product-service .product-list .slick-list {
    margin: 0 -15px;
  }
  .product-service .product-list .slick-list .item {
    padding: 0 15px;
  }
  .customer {
    padding-top: 75px;
    padding-bottom: 110px;
  }
  .customer .title {
    font-size: 70px;
  }
  .customer .desc {
    font-size: 24px;
  }
  .customer .service-list .wrapper .s-desc {
    font-size: 20px;
  }
  .customer .img-customer {
    width: 760px;
    height: 639px;
    right: -140px;
  }
  .contact-us .block-address .title {
    font-size: 70px;
  }
  .contact-us .block-address .sub-title {
    font-size: 40px;
    margin-top: 10px;
  }
  .contact-us .block-address .text {
    font-size: 20px;
  }
  .form-default .form-control {
    font-size: 20px;
  }
  .form-default.search-form {
    width: 480px;
  }
  .form-default.search-form .form-control {
    min-height: 60px;
    padding: 10px 20px;
  }
  .form-default.search-form .block-control .form-control {
    padding-right: 55px;
  }
  .form-default.search-form .block-control .search-btn {
    right: 20px;
  }
  .form-default.search-form .search-btn .icon {
    width: 20px;
    height: 20px;
  }
  .partner {
    padding: 80px 0;
  }
  .partner .cover {
    width: 160px;
    height: 160px;
  }
  .topgraphic-inner:before {
    width: 270px;
  }
  .topgraphic-inner .title {
    font-size: 60px;
  }
  .topgraphic-inner .title.under-line:before {
    bottom: -5px;
  }
  .breadcrumb-block {
    margin-top: 30px;
  }
  .menu-inner {
    margin-bottom: 60px;
  }
  .aboutUs-page .intro {
    background-position: 62px 0;
  }
  .aboutUs-page .vision .wrapper {
    width: 170px;
    height: 170px;
    left: 40px;
  }
  .aboutUs-page .vision .wrapper .title {
    font-size: 33px;
  }
  .aboutUs-page .vision .title {
    font-size: 45px;
  }
  .aboutUs-page .vision .desc {
    font-size: 24px;
    margin-top: 30px;
  }
  .aboutUs-page .vision {
    padding-top: 0;
  }
  .aboutUs-page .vision .margin-t {
    margin-top: 110px;
  }
  .aboutUs-page .vision .obj-r, .aboutUs-page .vision .obj-l {
    max-width: 48px;
  }
  .aboutUs-page .vision .obj-r {
    top: 189px;
  }
  .aboutUs-page .vision .obj-l {
    bottom: 215px;
    right: 43%;
  }
  .aboutUs-page .gallery .slick-prev {
    left: -70px;
  }
  .aboutUs-page .gallery .slick-next {
    right: -70px;
  }
  .aboutUs-page .gallery .slick-list .item {
    padding: 0 10px;
  }
  .aboutUs-page .vdo .desc {
    font-size: 22px;
    margin-top: 50px;
    margin-bottom: 46px;
  }
  .aboutUs-page .vdo .iframe-container {
    max-width: 660px;
  }
  .download .download-list .slick-list {
    margin: 0 -10px;
  }
  .download .download-list .slick-list .item {
    padding: 0 10px;
  }
  .download .download-list .link .btn {
    min-width: 120px;
  }
  .aboutUs-page .ourcustomer {
    padding-bottom: 100px;
  }
  .aboutUs-page .ourcustomer .h-title {
    font-size: 45px;
  }
  .aboutUs-page .ourcustomer .item-list {
    margin: 0 -30px;
  }
  .aboutUs-page .ourcustomer .item-list li {
    padding: 0 30px;
  }
  .aboutUs-page .ourcustomer .link img {
    max-width: 150px;
  }
  .aboutUs-page .timeline > .row {
    padding-top: 130px;
  }
  .aboutUs-page .timeline .content.right {
    padding-left: 0;
  }
  .aboutUs-page .timeline .content li {
    padding-left: 20px;
  }
  .aboutUs-page .timeline .content li:before {
    top: 10px;
    width: 10px;
    height: 10px;
  }
  .aboutUs-page .timeline .textintro {
    font-size: 50px;
  }
  .aboutUs-page .timeline .title {
    font-size: 65px;
    line-height: 0.7em;
  }
  .aboutUs-page .timeline .text-small {
    font-size: 30px;
  }
  .aboutUs-page .timeline .text-small .t-sm {
    font-size: 25px;
  }
  .aboutUs-page .timeline .text-xs {
    font-size: 22px;
  }
  .aboutUs-page .timeline .timeline-i,
  .aboutUs-page .timeline .timeline-date-year {
    width: 267px;
  }
  .aboutUs-page .timeline .timeline-date-year {
    font-size: 110px;
  }
  .aboutUs-page .our-experience .box-elevate {
    padding: 60px;
  }
  .aboutUs-page .our-experience .link .content .title {
    font-size: var(--typo-lg);
  }
  .aboutUs-page .our-experience .link .thumb {
    width: 460px;
  }
  .aboutUs-page .our-experience .link .content .tag .badge {
    font-size: 12px;
  }
  .our-certificates .certificate-area .box {
    border-radius: 30px;
    margin-top: 140px;
  }
  .our-certificates .certificate-area .box .content .title {
    font-size: 32px;
  }
  .our-certificates .certificate-area .box .thumb {
    border-radius: 30px;
  }
  .our-certificates .certificate-area .trophy-award.trophy-award1 {
    top: 100px;
    margin-right: -620px;
    width: 200px;
  }
  .our-certificates .certificate-area .trophy-award.trophy-award2 {
    top: -120px;
    margin-left: -640px;
    width: 160px;
  }
  .aboutUs-page .customers-list {
    gap: 25px;
  }
  .our-project-page .product-block {
    padding-bottom: 100px;
  }
  .our-project-page .product-service .item-list {
    margin: 0 -15px;
  }
  .our-project-page .product-service li {
    padding: 0 15px;
    margin-top: 30px;
  }
  .product-block .category .text {
    font-size: 24px;
  }
  .product-block .category .label {
    font-size: 24px;
    top: 11px;
    margin: 0;
  }
  .select2-container {
    min-width: 276px;
  }
  .select2-container .select2-selection--single {
    height: 45px;
  }
  .product-block .category .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 24px;
    line-height: 45px;
    padding-left: 140px;
  }
  .select2-container--default .select2-selection--single .select2-selection__arrow b {
    top: 34%;
  }
  .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    top: -34%;
  }
  .our-project-page .pagination-wrapper {
    margin-top: 30px;
  }
  .solution-page .solution {
    min-height: auto;
  }
  .solution-page .solution-list .wrapper {
    height: 520px;
  }
  .solution-page .solution-list .content .title-block .title {
    font-size: 105px;
  }
  .solution-page .solution-list .content .desc.text-limit {
    font-size: 24px;
  }
  .product-block .product-service li {
    width: 25%;
  }
  .solution-page .product-block {
    padding-top: 30px;
  }
  .solution-page .product-block .product-service .wrapper .image {
    height: 170px;
  }
  .solution-page .product-block .product-service .wrapper .content {
    height: 160px;
  }
  .product-service-list .slick-prev,
  .product-service-list .slick-next,
  .solution-page .solution-list .slick-prev,
  .solution-page .solution-list .slick-next {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .solution-page .solution-list .slick-dots {
    bottom: -40px;
  }
  .product-service-list .slick-prev,
  .product-service-list .slick-next {
    top: -160px;
  }
  .product-service-list .slick-prev {
    right: 60px;
  }
  .product-highlight {
    padding-top: 100px;
    padding-bottom: 140px;
  }
  .product-highlight:after {
    width: 480px;
  }
  .product-highlight .sub-h-title {
    font-size: 36px;
  }
  .product-service-list:before {
    width: 260px;
  }
  .product-service-list .wrapper .action {
    margin-top: 36px;
  }
  .product-service-list .wrapper .image {
    width: 520px;
  }
  .product-service-list .wrapper .content {
    padding-right: 100px;
  }
  .product-service-page .customer .title {
    font-size: 60px;
  }
  .product-service-page .page-title {
    font-size: 40px;
  }
  .product-service-page .product-menu-inner .product-menu-list .link {
    height: 68px;
  }
  .product-service-page .tech-spec .label {
    width: 200px;
  }
  .detail-page .topic .title {
    font-size: 26px;
  }
  .detail-page .topic .title span {
    padding-left: 15px;
  }
  .detail-page .share .item-list .link {
    width: 44px;
    height: 44px;
  }
  .action.-back > div {
    margin-right: 300px;
  }
  .-modal-contact-form .block {
    padding: 10px;
  }
  .-modal-contact-form .select2-container .select2-selection--single .select2-selection__rendered,
  .contact-us .select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 20px;
  }
  .site-footer .brand img {
    max-width: 145px;
  }
  .site-footer .title {
    font-size: 24px;
  }
  .site-footer .menu-footer {
    min-height: 330px;
  }
  .site-footer .menu li .link {
    font-size: 20px;
  }
  .site-footer .copyright {
    font-size: 20px;
  }
  .-modal-contact .modal-content {
    min-height: 492px;
  }
  .-modal-contact .modal-content .modal-body .title {
    font-size: 40px;
  }
  .-modal-contact .modal-content .modal-body .title-sm {
    font-size: 20px;
  }
  .-modal-contact .modal-content .modal-body .action {
    margin-top: 60px;
  }
}
@media (max-width: 1199px) {
  .site-container {
    overflow: hidden;
  }
  .site-header .block .lang .item-list {
    margin: 0 -8px;
  }
  .site-header .block .lang li {
    padding: 0 8px;
  }
  .site-header .block .lang .link,
  nav.menu li a.link {
    font-size: 18px;
  }
  .topgraphic .slick-dots li button {
    font-size: 24px;
  }
  .topgraphic .slick-dots li.slick-active button {
    font-size: 45px;
  }
  .intro {
    padding-top: 30px;
    padding-bottom: 60px;
    background-position: 40px 20px;
  }
  .intro .title .num {
    font-size: 170px;
  }
  .intro .title .num sup {
    font-size: 70px;
    top: 63px;
  }
  .intro .title .year {
    font-size: 70px;
  }
  .intro .sub-title {
    font-size: 54px;
    margin-top: -40px;
  }
  .intro .desc {
    font-size: 18px;
  }
  .under-line:before {
    width: 80px;
  }
  .ourvision {
    padding-top: 0;
  }
  .ourvision .main .main-nav {
    top: 66%;
  }
  .ourvision .content .title {
    font-size: 36px;
  }
  .ourvision .content .desc {
    font-size: 18px;
    margin-top: 20px;
  }
  .ourvision .main .main-nav {
    transform: translate(-30%, -50%);
  }
  .ourvision .main .main-nav li {
    width: 140px;
    height: 140px;
  }
  .ourvision .main .main-nav li:nth-child(2) {
    top: -66%;
    left: 16.5%;
  }
  .ourvision .main .main-nav li:nth-child(3) {
    left: 33%;
  }
  .ourvision .main .main-nav li:nth-child(4) {
    top: 66%;
    left: 16.5%;
  }
  .ourvision .main .main-nav li .desc {
    font-size: 22px;
  }
  .ourvision .main .main-nav li .desc .link {
    font-size: 18px;
  }
  .obj-1 {
    top: 196px;
    right: 0;
  }
  .obj-2 {
    top: 340px;
    right: 10px;
  }
  .obj-3 {
    top: 260px;
    left: 480px;
  }
  .our-solution {
    min-height: 320px;
  }
  .our-solution .title {
    font-size: 50px;
  }
  .our-solution .desc {
    font-size: 18px;
  }
  .technical {
    padding: 50px 0;
  }
  .technical:before {
    width: 337px;
    right: -170px;
    top: 36%;
  }
  .technical:after {
    width: 316px;
    height: 744px;
  }
  .technical .padding-t {
    padding-top: 50px;
  }
  .technical .padding-b {
    padding-bottom: 50px;
  }
  .style-left .block .title, .style-right .block .title {
    font-size: 26px;
    line-height: 1em;
  }
  .style-left .block .desc, .style-right .block .desc {
    margin-top: 15px;
  }
  .style-left .block .num, .style-right .block .num {
    font-size: 60px;
    left: -56px;
    top: -11px;
  }
  .style-right .block .num {
    left: inherit;
    right: -50px;
  }
  .style-left .block .title.under-line:before, .style-right .block .title.under-line:before {
    bottom: -6px;
  }
  .our-project .title {
    font-size: 50px;
  }
  .product-service .title {
    font-size: 50px;
  }
  .product-service .product-list .slick-list {
    margin: 0 -10px;
  }
  .product-service .product-list .slick-list .item {
    padding: 0 10px;
  }
  .product-service .wrapper .title {
    font-size: 22px;
  }
  .product-service .wrapper .desc {
    font-size: 18px;
  }
  .product-block .product-service .item-list {
    margin: -20px -10px 0 -10px;
  }
  .product-block .product-service li {
    padding: 0 10px;
  }
  .product-block .product-service .wrapper .content {
    font-size: 14px;
  }
  .product-block .product-service .wrapper .desc {
    font-size: 14px;
  }
  .product-block .product-service .wrapper .action {
    font-size: 14px;
  }
  .product-block .product-service .wrapper .badge {
    font-size: 12px;
  }
  .customer .title {
    font-size: 50px;
  }
  .customer .desc {
    font-size: 20px;
  }
  .customer .img-customer {
    width: 500px;
    height: 539px;
    right: -140px;
  }
  .customer .service-list li {
    margin-top: 20px;
  }
  .customer .service-list .wrapper .s-desc {
    font-size: 18px;
  }
  .form-default .form-control {
    font-size: 18px;
    min-height: 40px;
  }
  .form-control-feedback {
    top: 10px;
  }
  .contact-us {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 100px;
  }
  .contact-us .block {
    min-height: auto;
    padding: 30px;
  }
  .contact-us .block .action {
    margin-top: 10px;
  }
  .contact-us .block-address .title {
    font-size: 50px;
  }
  .contact-us .block-address .sub-title {
    font-size: 26px;
  }
  .contact-us .block-address .text {
    font-size: 18px;
  }
  .contact-us .block-address .action a + a {
    margin-left: 20px;
  }
  .btn-lg {
    min-width: 200px;
  }
  .partner {
    min-height: auto;
    padding: 30px;
  }
  .partner .slick-list {
    margin: 0 -15px;
  }
  .partner .item {
    padding: 0 10px;
  }
  .partner .cover {
    width: auto;
    height: auto;
    padding-top: 100%;
  }
  .topgraphic-inner {
    height: 200px;
  }
  .topgraphic-inner .title {
    font-size: 50px;
  }
  .topgraphic-inner:before {
    width: 240px;
  }
  .breadcrumb-block {
    margin-top: 20px;
  }
  .menu-inner {
    height: 2.8em;
    margin-bottom: 40px;
  }
  .menu-inner .menu-list .link {
    min-height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .aboutUs-page .intro {
    background-position: 70px 10px;
  }
  .intro .sub-title {
    font-size: 65px;
    margin-top: -35px;
  }
  .intro .sub-title span {
    font-size: 70px;
  }
  .intro .sub-title.under-line:before {
    left: 38.6%;
    width: 260px;
  }
  .aboutUs-page .vision .wrapper {
    width: 150px;
    height: 150px;
    margin-top: 100px;
  }
  .aboutUs-page .vision .wrapper .title {
    font-size: 28px;
  }
  .aboutUs-page .vision .title {
    font-size: 35px;
  }
  .aboutUs-page .vision .desc {
    font-size: 20px;
    margin-top: 25px;
  }
  .aboutUs-page .vision .obj-r,
  .aboutUs-page .vision .obj-l {
    max-width: 50px;
  }
  .aboutUs-page .vision .obj-r {
    top: 150px;
    left: 41%;
  }
  .aboutUs-page .vision .obj-l {
    bottom: 199px;
    right: 42%;
  }
  .aboutUs-page .max-width {
    max-width: 730px;
  }
  .aboutUs-page .gallery .wrapper {
    height: auto;
    max-height: 130px;
  }
  .aboutUs-page .vdo .desc {
    font-size: 18px;
  }
  .aboutUs-page .our-experience .box-elevate {
    padding: 40px;
  }
  .aboutUs-page .our-experience .link .thumb {
    width: 400px;
  }
  .our-certificates .certificate-area .box {
    margin-top: 140px;
  }
  .our-certificates .certificate-area .box .content .title {
    font-size: 28px;
  }
  .our-certificates .certificate-area .trophy-award.trophy-award1 {
    top: 140px;
    margin-right: -542px;
    width: 148px;
  }
  .our-certificates .certificate-area .trophy-award.trophy-award2 {
    top: -70px;
    margin-left: -535px;
    width: 120px;
  }
  .aboutUs-page .customers-list {
    gap: 15px;
  }
  .action.-back {
    margin-bottom: 80px;
  }
  .our-project-page .product-block {
    padding-top: 20px;
    padding-bottom: 30px;
  }
  .our-project-page .product-service .wrapper .image {
    height: 180px;
  }
  .our-project-page .product-service .wrapper .content {
    height: auto;
  }
  .our-project-page .product-service .wrapper .view-more img {
    max-width: 17px;
  }
  .pagination .link {
    min-width: 35px;
    height: 35px;
  }
  .product-service-list .slick-prev,
  .product-service-list .slick-next,
  .solution-page .solution-list .slick-prev,
  .solution-page .solution-list .slick-next {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .solution-page .solution-list .slick-prev {
    left: -37px;
  }
  .solution-page .solution-list .slick-next {
    right: -37px;
  }
  .product-service-page .page-head {
    margin-bottom: 30px;
  }
  .product-service-page .page-title {
    font-size: 34px;
  }
  .product-highlight {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .product-highlight:after,
  .product-service-list:before {
    width: 320px;
  }
  .product-highlight .h-title {
    margin-bottom: 30px;
  }
  .product-highlight .sub-h-title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .product-service-list .wrapper .content {
    padding-right: 60px;
  }
  .product-service-list .wrapper .image {
    width: 460px;
  }
  .product-service-list .wrapper .title {
    font-size: 26px;
  }
  .product-service-list .wrapper .desc {
    margin-top: 30px;
    font-size: 14px;
  }
  .product-service-list .slick-prev {
    right: 50px;
  }
  .product-service-list .slick-prev,
  .product-service-list .slick-next {
    top: -150px;
  }
  .product-service-page .customer {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .product-service-page .customer .title {
    font-size: 50px;
  }
  .product-service-page .customer .img-customer {
    bottom: -100px;
    right: -70px;
  }
  .product-service-page .product-menu-inner .product-menu-list .link {
    height: 56px;
  }
  .product-service-page .product-menu-inner .product-menu-list .slick-list {
    margin: 0 -5px;
  }
  .product-service-page .product-menu-inner .product-menu-list .slick-list .item {
    padding: 0 5px;
  }
  .product-service-page .gallery-detail-list .slider-single .slick-list {
    border-radius: 16px;
  }
  .product-service-page .gallery-detail-list .slider-nav {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .product-service-page .gallery-detail-list .slider-nav .wrapper .image {
    border-radius: 10px;
  }
  .product-service-page .gallery-detail-list .slider-nav .slick-list {
    margin: 0 -7px;
  }
  .product-service-page .gallery-detail-list .slider-nav .slick-list .item {
    padding: 0 7px;
  }
  .-modal-contact-form .select2-container .select2-selection--single .select2-selection__rendered,
  .contact-us .select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 18px;
  }
  .-modal-contact-form .select2-container .select2-selection--single,
  .contact-us .select2-container .select2-selection--single {
    height: 40px;
  }
  .-modal-contact-form .select2-container--default .select2-selection--single .select2-selection__rendered,
  .contact-us .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
  }
  .gallery-detail-list .slider-nav {
    width: 100%;
  }
  .action.-back > div {
    margin-right: 200px;
  }
  .site-footer .menu-footer {
    min-height: auto;
  }
  .site-footer .title {
    font-size: 22px;
  }
  .site-footer .menu li .link {
    font-size: 18px;
  }
  .site-footer .copyright {
    font-size: 18px;
  }
  .social-list-i {
    display: none;
  }
  .form-default.search-form {
    width: 440px;
  }
  .form-default.search-form .form-control {
    min-height: 56px;
  }
  .detail-page .topic .title {
    font-size: 24px;
  }
  .download .download-list .link .wrapper {
    padding: 15px;
    border-radius: 16px;
  }
  .download .download-list .link .file-icon {
    width: 68px;
    height: 68px;
    border-radius: 8px;
    margin-right: 15px;
  }
  .download .download-list .link .file-icon img {
    width: 36px;
    height: 36px;
  }
  .download .download-list .link .title {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .download .download-list .link .desc {
    font-size: 12px;
    gap: 20px;
  }
}
@media (max-width: 991px) {
  /*mobile-menu (start)*/
  .global-container {
    position: relative;
    overflow: hidden;
    right: 0;
  }
  .global-container .site-header .overlay {
    visibility: hidden;
    opacity: 0;
    transition: all 400ms ease;
  }
  .global-container .site-container {
    position: relative;
    right: 0;
    transition: all 400ms ease;
  }
  .global-container .site-footer {
    position: relative;
    right: 0;
    transition: all 400ms ease;
  }
  .global-container.sidebar-open .site-header .overlay {
    opacity: 1;
    visibility: visible;
  }
  .global-container.sidebar-open .site-container {
    right: 260px;
  }
  .global-container.sidebar-open .site-footer {
    right: 0;
  }
  .site-header > .container {
    position: relative;
    z-index: 99;
  }
  .site-header .overlay {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .menu-mobile-btn {
    display: block;
  }
  nav.menu {
    position: fixed;
    z-index: 100;
    overflow: auto;
    top: 0;
    bottom: 0;
    width: 260px;
    right: -260px;
    padding-left: 0;
    transition: all 400ms ease;
  }
  nav.menu.open {
    right: 0;
  }
  nav.menu li {
    width: 100%;
    border-top: 1px solid #CCCCCC;
  }
  nav.menu li + li {
    margin-left: 0;
  }
  nav.menu li a.link {
    padding: 10px;
  }
  nav.menu li a.link:before {
    bottom: 0;
  }
  /*mobile-menu (end)*/
  .site-header .brand {
    margin-top: 0;
  }
  .site-header .block > div {
    position: relative;
    width: 100%;
  }
  .site-header .block .lang {
    position: absolute;
    padding-bottom: 0;
    left: -38px;
    top: 50%;
    transform: translate(0, -50%);
  }
  .intro {
    background-position: 10px 110px;
  }
  .intro .title .num {
    font-size: 130px;
  }
  .intro .title .num sup {
    font-size: 50px;
    top: 50px;
  }
  .intro .title .year {
    font-size: 50px;
  }
  .intro .sub-title {
    font-size: 40px;
    margin-top: -30px;
  }
  .ourvision {
    padding-top: 10px;
  }
  .ourvision .main {
    min-height: 400px;
  }
  .ourvision .content {
    max-width: 100%;
    padding: 30px 0;
  }
  .ourvision .main .main-nav {
    top: 75%;
    left: 65%;
  }
  .obj-1 {
    right: 90px;
  }
  .obj-2 {
    width: 116px;
    height: 116px;
    top: 261px;
    right: inherit;
    left: 70px;
  }
  .obj-2:before {
    right: -100px;
    bottom: -20px;
  }
  .our-solution {
    min-height: 290px;
  }
  .our-solution .title {
    font-size: 40px;
  }
  .our-solution .desc {
    margin-top: 30px;
  }
  .ourvision .main .main-nav li .desc .link span img {
    max-width: 15px;
  }
  .technical:before {
    width: 297px;
    height: 326px;
  }
  .technical:after {
    width: 316px;
    height: 544px;
    bottom: -80px;
  }
  .style-left > div > div,
  .style-right > div > div {
    padding: 0 15px;
  }
  .style-left .block,
  .style-right .block {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .style-left .block .num,
  .style-right .block .num {
    position: relative;
    left: 0;
  }
  .style-left .block .num, .style-right .block .num {
    font-size: 50px;
    top: 0;
  }
  .style-left .block .title, .style-right .block .title {
    font-size: 22px;
  }
  .obj-2 {
    top: 190px;
  }
  .obj-3 {
    display: none;
  }
  .our-project .title {
    font-size: 40px;
  }
  .our-project .wrapper {
    height: 530px;
  }
  .our-project .project-list .slick-current.slick-active .link .image {
    filter: grayscale(0);
  }
  .our-project .project-list .slick-current.slick-active .link .image .cover img {
    transform: scale(1.1);
  }
  .our-project .project-list .slick-current.slick-active .link .block .content:before {
    height: 100%;
  }
  .product-service .title {
    font-size: 40px;
  }
  .product-service .wrapper .title {
    font-size: 20px;
  }
  .customer .title {
    font-size: 40px;
  }
  .customer .service-list .item-list {
    margin: 0 0;
  }
  .customer .service-list li {
    padding: 0 0;
  }
  .customer .img-customer {
    z-index: -1;
    right: -80px;
    opacity: 0.6;
    width: 500px;
    height: 500px;
  }
  .contact-us {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .contact-us .block-address {
    max-width: 100%;
    margin-bottom: 40px;
  }
  .aboutUs-page .intro {
    background-position: 0 50px;
  }
  .intro .sub-title {
    font-size: 45px;
    margin-top: -25px;
  }
  .intro .sub-title.under-line:before {
    left: 34%;
    width: 207px;
  }
  .intro .sub-title span {
    font-size: 55px;
  }
  .aboutUs-page .vision {
    padding: 100px 0;
  }
  .aboutUs-page .vision .content {
    max-width: 100%;
    padding: 0 15px;
  }
  .aboutUs-page .vision .wrapper {
    width: 140px;
    height: 140px;
    left: 50px;
    margin-top: 0;
  }
  .aboutUs-page .vision .wrapper.-style-ii {
    right: inherit;
    left: 50px;
  }
  .aboutUs-page .vision .obj-r {
    top: 143px;
    left: 38%;
  }
  .aboutUs-page .vision .obj-l {
    bottom: 143px;
    right: inherit;
    left: 38%;
    transform: rotate(0) scale(-1);
  }
  .aboutUs-page .max-width {
    max-width: 100%;
  }
  .aboutUs-page .gallery .slick-list .item {
    padding: 0 5px;
  }
  .download .download-list .link .action {
    margin-top: 10px;
    justify-content: center;
  }
  .aboutUs-page .ourcustomer .h-title {
    font-size: 36px;
    padding-top: 30px;
  }
  .aboutUs-page .ourcustomer .item-list {
    margin: 0 -15px;
  }
  .aboutUs-page .ourcustomer .item-list li {
    width: 25%;
    padding: 0 15px;
  }
  .aboutUs-page.-milestone .container {
    margin: 0 -15px;
  }
  .aboutUs-page .timeline > .row {
    padding-top: 40px;
  }
  .aboutUs-page .timeline .timeline-i {
    top: 47px;
    left: 0;
    transform: translate(0, 0);
  }
  .aboutUs-page .timeline .timeline-i,
  .aboutUs-page .timeline .timeline-date-year {
    width: 177px;
  }
  .aboutUs-page .timeline .timeline-date-year {
    font-size: 70px;
  }
  .aboutUs-page .timeline .content,
  .aboutUs-page .timeline .content.right {
    padding-left: 230px;
  }
  .aboutUs-page .timeline .content img {
    max-width: 370px;
  }
  .margin-tm {
    margin-top: -120px;
    margin-bottom: 30px;
  }
  .aboutUs-page .timeline .textintro {
    font-size: 40px;
  }
  .aboutUs-page .timeline .title {
    font-size: 50px;
  }
  .aboutUs-page .timeline .text-small {
    font-size: 23px;
  }
  .aboutUs-page .timeline .text-small .t-sm {
    font-size: 18px;
  }
  .aboutUs-page .timeline .text-xs {
    font-size: 18px;
  }
  .aboutUs-page .our-experience .box-elevate {
    padding: 30px;
  }
  .aboutUs-page .our-experience .link {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .aboutUs-page .our-experience .link .content {
    gap: 15px;
  }
  .aboutUs-page .our-experience .link .content .bottom .date,
  .aboutUs-page .our-experience .link .content .bottom .readmore {
    padding-top: 15px;
  }
  .aboutUs-page .our-experience .our-experience-area .item + .item {
    margin-top: 30px;
    padding-top: 30px;
  }
  .our-certificates .certificate-area .trophy-award.trophy-award1 {
    top: 220px;
    margin-right: -430px;
    width: 100px;
  }
  .our-certificates .certificate-area .trophy-award.trophy-award2 {
    top: -10px;
    margin-left: -400px;
    width: 64px;
  }
  .aboutUs-page .customers-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .our-customers .title {
    opacity: 1;
    visibility: visible;
  }
  .our-customers .thumb {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  }
  .our-project-page .our-project {
    margin-top: 0;
  }
  .product-block .category .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 135px;
  }
  .our-project-page .product-service .item-list {
    margin: 0 -10px;
  }
  .our-project-page .product-service li {
    padding: 0 10px;
  }
  .solution-page {
    margin-top: 0;
  }
  .solution-page .solution-list .wrapper {
    height: 400px;
  }
  .solution-page .solution-list .content {
    padding: 40px 28px 18px 28px;
  }
  .solution-page .solution-list .content .title-block .title {
    font-size: 70px;
  }
  .solution-page .solution-list .content .desc.text-limit {
    font-size: 20px;
  }
  .solution-page .product-block .product-service .wrapper .image {
    height: 140px;
  }
  .solution-page .product-block .product-service .wrapper .content {
    height: 150px;
  }
  .product-block {
    padding-bottom: 60px;
  }
  .product-block .product-service .item-list {
    margin: -15px -7.5px 0 -7.5px;
  }
  .product-block .product-service li {
    width: 33.3333333333%;
    padding: 0 7.5px;
  }
  .product-service-page .page-title {
    font-size: 30px;
  }
  .product-service-page {
    margin-top: 0;
  }
  .product-highlight {
    padding-bottom: 80px;
  }
  .product-highlight:after,
  .product-service-list:before {
    width: 200px;
  }
  .product-highlight .sub-h-title {
    font-size: 24px;
  }
  .product-service-list .wrapper .content {
    padding-top: 20px;
    padding-right: 40px;
  }
  .product-service-list .wrapper .image {
    width: 360px;
  }
  .product-service-list .wrapper .title {
    font-size: 24px;
  }
  .product-service-list .wrapper .desc {
    margin-top: 15px;
  }
  .product-service-list .wrapper .action {
    margin-top: 25px;
  }
  .product-service-page .product-block .product-service li {
    margin-top: 20px;
  }
  .product-service .wrapper .view-more img {
    max-width: 17px;
  }
  .site-header.header-map .btn {
    min-width: 120px;
  }
  .site-header.header-map .block > div {
    justify-content: flex-end;
  }
  .gallery-detail-list .slider-nav {
    padding: 20px 70px;
  }
  .action.-back > div {
    margin-right: 10px;
  }
  .site-footer .margin-top {
    margin-top: 25px;
  }
  .menu-inner .menu-list .slick-list {
    margin: 0 -20px;
    padding: 0 10px;
  }
  .menu-inner .menu-list .slick-list .item {
    padding: 0 7.5px;
  }
  .product-service-page .product-menu-inner .product-menu-list .slick-list {
    margin: 0 -7.5px;
  }
  .product-service-page .product-menu-inner .product-menu-list .slick-list .item {
    padding: 0 7.5px;
  }
  .product-service-page .gallery-detail-list {
    margin-bottom: 20px;
  }
  .form-default.search-form {
    width: 380px;
  }
}
@media (max-width: 767px) {
  .obj-1,
  .obj-2 {
    display: none;
  }
  .intro {
    background-image: none;
  }
  .social-list-i {
    left: 10px;
  }
  .menu-inner .menu-list .slick-list .slick-slide:not(:last-child) .item:before {
    height: 80%;
    top: 50%;
    transform: translateY(-50%);
  }
  .aboutUs-page .our-experience .box-elevate {
    padding: 20px;
  }
  .aboutUs-page .our-experience .link {
    flex-direction: column;
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 20px;
  }
  .aboutUs-page .our-experience .link .thumb {
    width: 100%;
  }
  .aboutUs-page .our-experience .our-experience-area .item + .item {
    margin-top: 20px;
    padding-top: 20px;
  }
  .our-certificates .certificate-area .box {
    border-radius: 20px;
    margin-top: 60px;
  }
  .our-certificates .certificate-area .box .thumb {
    padding-bottom: 60px;
    padding-inline: 15px;
    border-radius: 20px;
  }
  .our-certificates .certificate-area .box .thumb .cover {
    padding-top: 65%;
    border-radius: 12px;
  }
  .our-certificates .certificate-area .box .thumb .swiper {
    width: 100%;
    margin-bottom: -60px;
    top: -60px;
  }
  .our-certificates .certificate-area .box .thumb .swiper-pagination {
    bottom: -40px;
  }
  .our-certificates .certificate-area .box .thumb .swiper-button-prev,
  .our-certificates .certificate-area .box .thumb .swiper-button-next {
    display: none;
  }
  .our-certificates .certificate-area .box .content {
    padding: 30px;
  }
  .our-certificates .certificate-area .box .content .title {
    font-size: var(--typo-xl);
  }
  .our-certificates .certificate-area .trophy-award {
    display: none;
  }
  .aboutUs-page .customers-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .our-customers .title {
    margin: 12px 0 0;
  }
  .aboutUs-page .our-customers .customer-group-title {
    margin-bottom: 25px;
  }
  .aboutUs-page .our-customers .customer-group-title span {
    padding-bottom: 15px;
  }
  .product-block .product-service li {
    width: 50%;
  }
  .product-block .product-service .wrapper .content {
    font-size: var(--typo-xs);
  }
  .product-block .product-service .wrapper .desc {
    font-size: var(--typo-xs);
  }
  .product-block .product-service .wrapper .action {
    font-size: var(--typo-xs);
  }
  .product-block .product-service .wrapper .badge {
    font-size: 11px;
  }
  .product-service-page .page-title {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .product-highlight {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .product-highlight .h-title {
    margin-bottom: 25px;
  }
  .product-highlight .sub-h-title {
    font-size: 22px;
  }
  .product-service-list .wrapper .content {
    padding-right: 0;
    margin-bottom: 20px;
  }
  .product-service-list .wrapper .image {
    width: 70%;
    margin: 0 auto;
  }
  .product-service-list .slick-dotted.slick-slider {
    margin-bottom: 40px;
  }
  .product-service-list .slick-dots {
    bottom: -40px;
  }
  .product-service-page .gallery-detail-list .slider-nav .slick-list .item {
    padding: 0 5px;
  }
  .product-service-page .gallery-detail-list .slider-nav .slick-list {
    margin: 0 -5px;
  }
  .product-service-page .gallery-detail-list .slider-single .slick-prev {
    left: 15px;
  }
  .product-service-page .gallery-detail-list .slider-single .slick-next {
    right: 15px;
  }
  .product-service-page .key-features .item-list li + li {
    margin-top: 6px;
  }
  .product-service-page .tech-spec .label {
    width: 140px;
  }
  .product-service-page .tech-spec .group + .group {
    margin-top: 6px;
  }
  .product-service-page.detail-page .detail-title {
    margin-bottom: 15px;
  }
  .detail-page .topic .badge {
    font-size: 14px;
  }
  .detail-page .detail-title {
    margin-bottom: 20px;
  }
  .detail-page .share .item-list .link {
    width: 40px;
    height: 40px;
  }
  .form-default.search-form {
    width: 100%;
  }
  .form-default.search-form .form-control {
    min-height: 48px;
    padding: 5px 15px;
  }
  .form-default.search-form .search-btn .icon {
    width: 18px;
    height: 18px;
  }
  .form-default.search-form .block-control .form-control {
    padding-right: 45px;
  }
  .form-default.search-form .block-control .search-btn {
    right: 15px;
  }
  .download .download-list .link .btn {
    width: 100%;
  }
  .download .download-list .link .desc .group .icon {
    margin-right: 8px;
    height: 20px;
  }
}
@media (max-width: 575px) {
  .container {
    max-width: inherit;
    width: 100%;
  }
  .site-header {
    height: 60px;
  }
  .site-header .brand img {
    max-width: 100px;
  }
  .topgraphic {
    margin-top: 60px;
  }
  .topgraphic .slick-dots li + li {
    padding-top: 20px;
  }
  .topgraphic .slick-dots li button {
    font-size: 18px;
  }
  .topgraphic .slick-dots li.slick-active button {
    font-size: 22px;
  }
  .topgraphic .slick-dotted.slick-slider {
    margin-bottom: 0;
  }
  .social-list-i {
    left: 10px;
    display: none;
  }
  .social-list-i li + li {
    padding-top: 6px;
  }
  .intro {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .intro .title .num {
    font-size: 120px;
  }
  .intro .action {
    margin-top: 20px;
  }
  .ourvision {
    padding-top: 10px;
  }
  .ourvision .main .main-nav li {
    width: 110px;
    height: 110px;
  }
  .ourvision .main .main-nav {
    top: 85%;
    left: 92%;
  }
  .ourvision .main .main-nav li:nth-child(2) {
    top: -52%;
    left: 13%;
  }
  .ourvision .main .main-nav li:nth-child(3) {
    left: 26%;
  }
  .ourvision .main .main-nav li:nth-child(4) {
    top: 52%;
    left: 13%;
  }
  .ourvision .content {
    padding-top: 0;
  }
  .ourvision .main .main-nav li .desc {
    font-size: 20px;
  }
  .ourvision .main .main-nav li .desc .link {
    font-size: 16px;
  }
  .ourvision .main .main-nav li .desc .link span {
    margin-left: 0;
  }
  .ourvision .content .title {
    font-size: 30px;
  }
  .our-solution .title {
    font-size: 30px;
  }
  .our-solution .title.under-line:before {
    left: 40%;
  }
  .our-solution .desc {
    margin-top: 15px;
  }
  .technical {
    padding: 20px 0;
  }
  .technical:before {
    top: 27%;
  }
  .technical:after {
    width: 186px;
    height: 427px;
  }
  .style-left .block, .style-right .block {
    padding-bottom: 20px;
  }
  .style-left > div, .style-right > div {
    grid-template-columns: 1fr;
  }
  .style-left > div > div, .style-right > div > div {
    padding: 0;
  }
  .style-right .block {
    order: 1;
  }
  .style-right .image {
    order: 2;
  }
  .technical .padding-b {
    padding-bottom: 20px;
  }
  .technical .padding-t {
    padding-top: 20px;
  }
  .our-project .title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .our-project .title.under-line:before {
    left: 40%;
  }
  .our-project .wrapper {
    height: 460px;
  }
  .our-project .wrapper .block .content {
    padding: 15px 20px;
  }
  .our-project .wrapper .block .sub-title {
    font-size: 18px;
  }
  .our-project .wrapper .block .desc {
    font-size: 18px;
  }
  .our-project .action {
    margin-bottom: 20px;
  }
  .product-service .title {
    font-size: 30px;
  }
  .product-service .title.under-line:before {
    left: 40%;
  }
  .product-service .product-list .slick-list {
    margin: 0 -5px;
  }
  .product-service .product-list .slick-list .item {
    padding: 0 5px;
  }
  .product-service .wrapper .title {
    font-size: 18px;
  }
  .product-service .wrapper .desc {
    font-size: 16px;
  }
  .product-service .product-list .slick-current.slick-active .link .wrapper .content {
    background-color: #C00000;
  }
  .product-service .product-list .slick-current.slick-active .link .wrapper .title {
    color: #fff;
  }
  .product-service .product-list .slick-current.slick-active .link .wrapper .desc {
    color: #fff;
  }
  .product-service .product-list .slick-current.slick-active .link .wrapper .view-more {
    color: #fff;
  }
  .product-service .product-list .slick-current.slick-active .link .wrapper .image img {
    transform: scale(1.1);
  }
  .product-service .product-list .slick-current.slick-active .link .wrapper .view-more img {
    filter: brightness(0) invert(1);
  }
  .customer {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .customer .title {
    font-size: 30px;
  }
  .customer .desc {
    font-size: 18px;
  }
  .customer .service-list .wrapper .image {
    width: 80px;
    height: 80px;
  }
  .customer .service-list .wrapper .s-desc {
    font-size: 16px;
  }
  .customer .img-customer {
    right: -60px;
    width: 330px;
    height: 340px;
  }
  .contact-us .block {
    padding: 20px;
  }
  .contact-us .block-address {
    margin-bottom: 30px;
  }
  .contact-us .block-address .title {
    font-size: 30px;
  }
  .contact-us .block-address .sub-title {
    font-size: 20px;
  }
  .form-default .form-control {
    padding: 10px 35px 10px 10px;
  }
  .btn-lg {
    min-width: 160px;
  }
  .topgraphic-inner {
    height: 150px;
  }
  .topgraphic-inner:before {
    width: 160px;
  }
  .topgraphic-inner .title {
    font-size: 30px;
  }
  .breadcrumb-block {
    margin-top: 13px;
  }
  .aboutUs-page .vision .block {
    margin-top: 70px;
  }
  .aboutUs-page .vision .wrapper.-style-ii,
  .aboutUs-page .vision .wrapper {
    left: 45%;
    transform: translate(-50%, 0);
  }
  .aboutUs-page .vision .obj-r {
    top: 250px;
    left: 55%;
    transform: rotate(90deg);
    z-index: 0;
  }
  .aboutUs-page .vision .obj-l {
    bottom: 262px;
    left: 27%;
    transform: rotate(90deg) scale(-1);
    z-index: -1;
  }
  .gallery {
    margin-top: -30px;
  }
  .aboutUs-page .vdo .iframe-container {
    max-width: 100%;
    padding-bottom: 65%;
  }
  .action.-back {
    margin-bottom: 40px;
  }
  .aboutUs-page .ourcustomer {
    padding-bottom: 20px;
  }
  .aboutUs-page .ourcustomer .h-title {
    font-size: 30px;
  }
  .aboutUs-page .ourcustomer .item-list {
    margin: 0 -10px;
  }
  .aboutUs-page .ourcustomer .item-list li {
    width: 50%;
    padding: 0 10px;
  }
  .aboutUs-page .timeline > .row:last-child {
    padding-bottom: 60px;
  }
  .aboutUs-page .timeline .timeline-i,
  .aboutUs-page .timeline .timeline-date-year {
    width: 100%;
  }
  .aboutUs-page .timeline .timeline-i {
    display: none;
  }
  .aboutUs-page .timeline .timeline-date-year {
    color: #C00000;
  }
  .aboutUs-page .timeline .timeline-date-year {
    justify-content: flex-start;
    font-size: 50px;
    min-height: 100px;
  }
  .aboutUs-page .timeline .timeline-date-year:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    top: auto;
    left: 110px;
    background-color: #C00000;
  }
  .aboutUs-page.-milestone .container {
    margin: inherit;
    padding: 0 15px;
  }
  .margin-tm {
    margin: 0;
    padding-bottom: 30px;
  }
  .aboutUs-page .timeline .content,
  .aboutUs-page .timeline .content.right {
    padding-left: 0;
  }
  .aboutUs-page .timeline .content img {
    max-width: 100%;
  }
  .aboutUs-page .timeline .textintro {
    font-size: 30px;
  }
  .aboutUs-page .timeline .title {
    font-size: 40px;
    line-height: 0.8em;
  }
  .aboutUs-page .timeline .text-small {
    font-size: 20px;
  }
  .aboutUs-page .timeline .content li:before {
    top: 6px;
    width: 7px;
    height: 7px;
  }
  .our-certificates .certificate-area .box .thumb {
    padding-bottom: 42px;
  }
  .our-certificates .certificate-area .box .thumb .swiper-pagination {
    bottom: -32px;
  }
  .aboutUs-page .customers-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-block .category {
    flex-direction: column;
  }
  .product-block .category .text {
    margin-bottom: 20px;
  }
  .product-block .category .label {
    font-size: 20px;
    top: 8px;
    padding: 0 10px;
  }
  .select2-container {
    min-width: 216px;
  }
  .select2-container .select2-selection--single {
    height: 40px;
  }
  .product-block .category .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 20px;
    line-height: 40px;
    padding-left: 95px;
  }
  .our-project-page .product-service li {
    width: 50%;
    margin-top: 20px;
  }
  .our-project-page .product-service .wrapper .image {
    height: 100px;
  }
  .pagination-block .row > div {
    display: flex;
    justify-content: center;
  }
  .pagination-label {
    margin-bottom: 15px;
  }
  .pagination .link img {
    max-width: 15px;
  }
  .solution-page .solution-list .wrapper {
    flex-direction: column;
  }
  .solution-page .solution-list .content {
    width: 100%;
    padding: 20px;
  }
  .solution-page .solution-list .content .title-block {
    width: 100%;
  }
  .solution-page .solution-list .content .title-block .title {
    font-size: 40px;
  }
  .solution-page .solution-list .content .action {
    margin-top: 10px;
  }
  .solution-page .solution-list .image {
    width: 100%;
    margin-top: -40px;
  }
  .solution-page .product-block .product-service .wrapper .image {
    height: 90px;
  }
  .product-service-list .slick-dots li,
  .solution-page .solution-list .slick-dots li {
    margin: 0 4px;
  }
  .product-block {
    padding-bottom: 30px;
  }
  .product-block .product-service li {
    width: 50%;
  }
  .product-block .product-service .wrapper .view-more img {
    max-width: 15px;
  }
  .product-highlight:after,
  .product-service-list:before {
    display: none;
  }
  .product-service-list {
    max-width: 100%;
  }
  .product-service-list .slick-dots {
    left: 0;
  }
  .product-service-page .product-block {
    padding-top: 30px;
  }
  .product-service-page .product-block .product-service li {
    width: 100%;
  }
  .product-service-page .customer .title {
    font-size: 30px;
  }
  .product-service-page .product-menu-inner {
    overflow: hidden;
    padding-bottom: 25px;
  }
  .product-service-page .product-menu-inner .product-menu-list {
    overflow: visible;
  }
  .product-service-page .product-menu-inner .product-menu-list .slick-dotted.slick-slider {
    margin: 0;
  }
  .product-highlight {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .product-highlight .sub-h-title {
    font-size: 18px;
  }
  .product-service-list .wrapper .image {
    width: 85%;
  }
  .product-service-list .wrapper .content {
    padding-top: 10px;
  }
  .product-service-list .wrapper .title {
    font-size: 20px;
  }
  .product-service-list .wrapper .desc {
    font-size: 12px;
  }
  .product-service-page .tech-spec .label {
    width: 120px;
  }
  .site-header.header-map .btn {
    min-width: 80px;
  }
  .site-header.header-map nav.menu-map li + li {
    margin-left: 10px;
  }
  .-modal-contact-form .select2-container .select2-selection--single .select2-selection__rendered,
  .contact-us .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 10px;
  }
  .detail-page .topic .badge {
    font-size: 12px;
  }
  .detail-page .topic .block {
    display: block;
    height: auto;
    padding: 10px 0;
  }
  .detail-page .topic .title {
    font-size: 20px;
  }
  .detail-page .item-list {
    margin-top: 5px;
  }
  .detail-page .share {
    margin-top: 20px;
  }
  .detail-page .share .item-list {
    margin: 0 -3px;
  }
  .detail-page .share .item-list li {
    padding: 0 3px;
  }
  .detail-page .share .item-list .link {
    width: 35px;
    height: 35px;
  }
  .detail-page .detail-block {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .menu-inner {
    height: auto;
    margin-bottom: 25px;
  }
  .menu-inner .menu-list .link {
    font-size: 14px;
  }
  .site-footer .menu-footer {
    padding: 40px 0;
  }
  .site-footer .brand {
    margin-bottom: 20px;
  }
  .site-footer .brand img {
    max-width: 100px;
  }
  .site-footer .social-list {
    margin-top: 20px;
  }
  .-modal-contact .modal-content .modal-body {
    min-height: auto;
  }
  .-modal-contact .modal-content .modal-body > div {
    width: 100%;
  }
  .-modal-contact .modal-content .modal-body .title {
    font-size: 34px;
    margin-top: 25px;
  }
  .-modal-contact .modal-content .modal-body .title-sm {
    font-size: 18px;
  }
  .-modal-contact .modal-content .modal-body .action {
    margin-top: 50px;
  }
  .-modal-contact .modal-content .modal-body img {
    max-width: 100px;
  }
}
@media (min-width: 1671px) {
  .container {
    max-width: 1670px;
  }
}
.form-default {
  position: relative;
}
.form-default .form-fieldset {
  position: relative;
  padding: 15px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
}
.form-default .form-legend {
  font-weight: var(--fw-bold);
  font-size: var(--typo-md);
  color: var(--color-default);
  line-height: 1.4em;
  margin-bottom: 25px;
}
.form-default .form-group {
  position: relative;
  margin-bottom: 20px;
  transition: var(--transition);
}
.form-default .form-group.has-feedback .form-label:after,
.form-default .form-group.has-feedback .floating-label:after {
  content: "*";
  margin-left: 3px;
  color: var(--color-warning);
}
.form-default .form-label {
  margin-bottom: 10px;
  font-weight: var(--fw-normal);
  font-size: var(--typo-xs);
  color: var(--color-default);
  line-height: 1.4em;
}
.form-default .floating-label {
  color: var(--color-gray);
  font-size: var(--typo-default);
  position: absolute;
  pointer-events: none;
  left: 15px;
  top: 14px;
  transition: var(--transition);
}
.form-default .form-control {
  line-height: 1.5em;
  padding: 10px 20px;
  display: block;
  width: 100%;
  min-height: 50px;
  background-color: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 25px;
  box-shadow: none;
  font-size: var(--typo-default);
  color: var(--color-default);
  font-weight: var(--fw-normal);
  transition: var(--transition);
}
.form-default .form-control.form-sm {
  min-height: 40px;
  font-size: var(--typo-xs);
  border-radius: 20px;
}
.form-default .form-control.form-sm ~ .floating-label {
  font-size: var(--typo-xs);
  top: 10px;
}
.form-default .form-control.form-lg {
  min-height: 60px;
  font-size: var(--typo-sm);
  border-radius: 30px;
}
.form-default .form-control.form-lg ~ .floating-label {
  top: 16px;
}
.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-control:focus, .form-default .form-control.active {
  border-color: var(--color-primary);
  text-shadow: none;
}
.form-default .form-control:focus-visible {
  outline: none;
}
.form-default .form-control[disabled] {
  pointer-events: none;
  background-color: var(--color-snow);
}
.form-default .form-note {
  position: absolute;
  top: 100%;
  left: 20px;
  margin-top: 4px;
  font-size: var(--typo-xs);
  color: var(--color-gray);
}
.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 .password-view {
  position: absolute;
  right: 48px;
  bottom: 12px;
  z-index: 1;
}
.form-default .password-view:before {
  content: "\f070";
  font-family: FontAwesome;
}
.form-default .password-view.show:before {
  content: "\f06e";
}
.form-default .calendar-view {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 1;
}
.form-default .form-control:not(:-moz-placeholder) ~ .floating-label {
  color: var(--color-default);
  font-size: var(--typo-xs);
  left: 0;
  top: -22px;
}
.form-default .form-control:focus ~ .floating-label,
.form-default .form-control:not(:placeholder-shown) ~ .floating-label {
  color: var(--color-default);
  font-size: var(--typo-xs);
  left: 0;
  top: -22px;
}
.form-default .form-valid-feedback {
  padding: 0px 8px;
  border-radius: 4px;
  font-size: var(--typo-xs);
  font-weight: var(--fw-normal);
  background-color: var(--color-warning);
  color: var(--color-light);
  display: inline-block;
  transition: var(--transition);
  top: 50%;
  opacity: 0;
  height: 0;
  pointer-events: none;
  visibility: hidden;
  position: absolute;
  margin-top: 2px;
}
.form-default .form-button {
  text-align: right;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

.radio-control {
  position: relative;
  margin-bottom: 20px;
}
.radio-control .icon {
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-border);
  background-color: var(--color-light);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}
.radio-control .form-label {
  margin: 0;
  font-size: var(--typo-default);
  font-weight: var(--fw-normal);
  color: var(--color-default);
  padding-left: 30px;
  line-height: 1.4em;
  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][disabled] ~ .icon {
  border-color: var(--color-border);
  background-color: var(--color-snow);
}
.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-primary);
  border-radius: 50%;
}
.radio-control input[type=radio]:checked[disabled] ~ .icon {
  border-color: var(--color-border);
  background-color: var(--color-snow);
}
.radio-control input[type=radio]:checked[disabled] ~ .icon:before {
  background-color: var(--color-gray);
}

.checkbox-control {
  position: relative;
  margin-bottom: 20px;
}
.checkbox-control .icon {
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-border);
  background-color: var(--color-light);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkbox-control .form-label {
  margin: 0;
  font-size: var(--typo-default);
  font-weight: var(--fw-normal);
  color: var(--color-default);
  padding-left: 30px;
  line-height: 1.4em;
  display: block;
}
.checkbox-control input[type=checkbox] {
  margin-top: 0;
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
}
.checkbox-control input[type=checkbox][disabled] ~ .icon {
  border-color: var(--color-border);
  background-color: var(--color-snow);
}
.checkbox-control input[type=checkbox]:checked ~ .icon {
  border-color: transparent;
  background-color: var(--color-primary);
  font-family: "feather";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
}
.checkbox-control input[type=checkbox]:checked ~ .icon:before {
  content: "\e83f";
  color: var(--color-light);
  font-size: 18px;
}
.checkbox-control input[type=checkbox]:checked[disabled] ~ .icon {
  border-color: var(--color-border);
  background-color: var(--color-snow);
}
.checkbox-control input[type=checkbox]:checked[disabled] ~ .icon:before {
  color: var(--color-gray);
}

.ui-widget-header {
  border-color: var(--color-border);
  background: var(--color-primary);
  color: var(--color-light);
  font-size: var(--typo-md);
  font-weight: var(--fw-normal);
}

.ui-datepicker .ui-datepicker-prev span {
  background: var(--color-light);
  border-radius: 50%;
}
.ui-datepicker .ui-datepicker-prev span:before {
  content: "\f104";
  font-family: FontAwesome;
  color: var(--color-primary);
  text-indent: 0;
  font-size: var(--typo-default);
  position: absolute;
  top: -5px;
  left: 5px;
}
.ui-datepicker .ui-datepicker-next span {
  background: var(--color-light);
  border-radius: 50%;
}
.ui-datepicker .ui-datepicker-next span:before {
  content: "\f105";
  font-family: FontAwesome;
  color: var(--color-primary);
  text-indent: 0;
  font-size: var(--typo-default);
  position: absolute;
  top: -5px;
  right: 5px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button, html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border-color: var(--color-border);
  background-color: var(--color-snow);
  color: var(--color-dark);
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-light);
}

.label-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.select2-container .select2-selection--single {
  height: 60px;
  border-color: var(--color-border);
  border-radius: 30px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 20px;
  padding-right: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 60px;
  color: var(--color-default);
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 20px;
  top: 0;
  bottom: 0;
  width: 20px;
  height: 12px;
  margin: auto;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: none;
  position: relative;
  left: 0;
  top: 0;
  margin: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b:before, .select2-container--default .select2-selection--single .select2-selection__arrow b:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 2px;
  background-color: var(--color-dark);
  transition: var(--transition);
  top: 0;
  bottom: 0;
  margin: auto;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b:before {
  position: absolute;
  transform: rotate(45deg);
  left: -1px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b:after {
  position: absolute;
  transform: rotate(-45deg);
  left: 6px;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b:before {
  transform: rotate(-45deg);
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b:after {
  transform: rotate(45deg);
}
.select2-container--default .select2-results__option {
  padding: 15px 15px;
  transition: var(--transition);
}
.select2-container--default .select2-results__option--disabled {
  padding: 0;
}
.select2-container--default .select2-results__option--selected {
  background-color: var(--color-border);
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--color-primary);
  color: var(--color-light);
}

.select2-dropdown {
  border-color: var(--color-border);
  border-radius: 0;
}

.select2-container--open .select2-dropdown--above,
.select2-container--open .select2-dropdown--below {
  animation: growDown 500ms ease-in-out;
}

.select2-search--dropdown .select2-search__field {
  padding: 5px 10px;
  border-color: var(--color-border);
  font-size: var(--typo-default);
  color: var(--color-default);
  font-weight: var(--fw-normal);
  min-height: 40px;
}
.select2-search--dropdown .select2-search__field:focus, .select2-search--dropdown .select2-search__field:focus-visible {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 8px -4px var(--color-primary);
}

@keyframes growDown {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 1199px) {
  .select2-container .select2-selection--single {
    height: 50px;
  }
  .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 50px;
  }
}
@media (max-width: 991px) {
  .select2-container .select2-selection--single {
    height: 44px;
  }
  .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
  }
  .select2-container--default .select2-results__option {
    padding: 10px 15px;
  }
}
@media (max-width: 767px) {
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    transform: scale(0.8);
  }
}
.swiper-initialized .swiper-button-next,
.swiper-initialized .swiper-button-prev,
.swiper-initialized .swiper-button-next:before,
.swiper-initialized .swiper-button-prev:before {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

.swiper-initialized:hover .swiper-button-next,
.swiper-initialized:hover .swiper-button-prev,
.swiper-initialized:hover .swiper-button-next:before,
.swiper-initialized:hover .swiper-button-prev:before {
  pointer-events: visible;
  visibility: visible;
  opacity: 1;
}

.swiper-initialized:hover .swiper-button-next.swiper-button-disabled,
.swiper-initialized:hover .swiper-button-prev.swiper-button-disabled,
.swiper-initialized:hover .swiper-button-next.swiper-button-disabled:before,
.swiper-initialized:hover .swiper-button-prev.swiper-button-disabled:before {
  pointer-events: visible;
  visibility: visible;
  opacity: 0.35;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  margin: 0;
  transform: translate(0, -50%);
  z-index: 1;
  font-size: 0;
  background-color: var(--color-snow);
  overflow: hidden;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--color-secondary);
}

.swiper-button-next {
  right: 15px;
}

.swiper-button-prev {
  left: 15px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-button-next:before,
.swiper-button-prev:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  position: relative;
  top: 0;
  left: 2px;
  border-top: 2px solid var(--color-secondary);
  border-left: 2px solid var(--color-secondary);
  visibility: visible;
  transition: var(--transition);
  transform: rotate(-45deg);
}

.swiper-button-next:before {
  left: -2px;
  transform: rotate(135deg);
}

.swiper-button-next:hover::before,
.swiper-button-prev:hover::before {
  border-color: var(--color-light);
}

.swiper:has(.swiper-pagination) {
  margin-bottom: 60px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom, .swiper-pagination-fraction,
.swiper-pagination {
  text-align: center;
  margin: 0;
  bottom: -60px;
}

.swiper-pagination-bullet {
  font-size: 0;
  line-height: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  margin: 0 5px;
  border: 1px solid var(--color-snow);
  outline: none;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: var(--color-snow);
  opacity: 1;
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  width: 44px;
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  opacity: 1;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(1);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  width: 110px !important;
}

.swiper-light .swiper-button-next,
.swiper-light .swiper-button-prev {
  background-color: var(--color-light);
  box-shadow: 4px 4px 16px rgba(109, 109, 109, 0.16);
}
.swiper-light .swiper-button-next:hover,
.swiper-light .swiper-button-prev:hover {
  background-color: var(--color-secondary);
}
.swiper-light .swiper-pagination-bullet {
  opacity: 0.5;
}
.swiper-light .swiper-pagination-bullet-active {
  background-color: var(--color-light);
  border-color: var(--color-light);
  opacity: 1;
}

.swiper-watch-progress.swiper-visible {
  overflow: visible;
}
.swiper-watch-progress.swiper-visible .swiper-slide {
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.swiper-watch-progress.swiper-visible .swiper-slide.swiper-slide-visible {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1440px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
}
@media screen and (max-width: 1199px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 991px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 3px);
  }
}
@media screen and (max-width: 767px) {
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .swiper-pagination-bullet-active {
    width: 32px;
  }
}
@media screen and (max-width: 767px) {
  ::-webkit-scrollbar {
    display: none;
  }
}
/*============================== tab ===============================*/
.tab {
  position: relative;
  z-index: 3;
}
.tab .control {
  display: flex;
  flex-wrap: nowrap;
  gap: 48px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tab .control .link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  line-height: 1.4;
  white-space: nowrap;
  font-weight: var(--fw-semibold);
  font-size: var(--typo-default);
  color: var(--color-lightgray);
  text-align: center;
  position: relative;
  z-index: 1;
  text-decoration: none;
  transition: var(--transition);
}
.tab .control .link:hover, .tab .control .link.hover {
  color: var(--color-primary);
}
.tab .control .link.active {
  color: var(--color-dark);
  font-weight: var(--fw-semibold);
  pointer-events: none;
}
.tab .selector {
  height: 3px;
  background-color: var(--color-primary);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  border-radius: 0;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
}

.tab-content {
  position: relative;
  opacity: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  display: block;
  transition: var(--transition-btn);
}
.tab-content.active {
  opacity: 1;
  height: auto;
  overflow: visible;
  visibility: visible;
}

.tab-container.tab-vertical {
  display: flex;
  flex-wrap: nowrap;
}
.tab-container.tab-vertical .tab-control {
  flex: 0 0 auto;
  width: auto;
  height: auto;
}
.tab-container.tab-vertical .tab-control:before {
  height: auto;
  right: auto;
  top: 0;
  width: 1px;
}
.tab-container.tab-vertical .tab-data {
  flex: 1 0 0%;
  padding-left: 15px;
}
.tab-container.tab-vertical .tab {
  display: flex;
  flex-direction: column;
}
.tab-container.tab-vertical .tab .selector {
  width: 3px;
  height: auto;
  top: 0;
  bottom: auto;
}
.tab-container.tab-vertical .tab .control {
  flex-direction: column;
  padding-left: 15px;
  gap: 16px;
}

.dropdown {
  position: relative;
}
.dropdown .dropdown-toggle:after {
  content: "\e842";
  font-family: "feather";
  transition: var(--transition);
  transform: rotate(0deg);
  position: relative;
  display: inline-block;
  border: none;
  vertical-align: 0;
}
.dropdown.open .dropdown-toggle:after {
  transform: rotate(-180deg);
}

.dropdown-menu {
  transition: var(--transition);
  position: absolute;
  z-index: 99;
  top: 0;
  opacity: 0;
  pointer-events: none;
  border-radius: 8px;
  min-width: 200px;
  padding: 0;
  border: 1px solid var(--color-border);
}
.dropdown-menu.show {
  top: 100%;
  opacity: 1;
  pointer-events: visible;
  background-color: var(--color-light);
  margin-top: 5px;
}
.dropdown-menu li {
  width: 100%;
  list-style: none;
}
.dropdown-menu li + li {
  margin-left: 0;
  border-top: 1px solid var(--color-border);
}
.dropdown-menu .link {
  padding: 10px;
  display: block;
}
.dropdown-menu .link:hover {
  background: var(--color-primary);
  color: var(--color-light);
  text-decoration: none;
}
.dropdown-menu > .dropdown-item:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.dropdown-menu > .dropdown-item:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.dropdown-menu > .dropdown-item + .dropdown-item {
  border-top: 1px solid var(--color-border);
}

.dropdown-item {
  padding: 8px 15px;
}

.dropdown-item.active,
.dropdown-item:active {
  background: var(--color-primary);
}

.layout-body {
  margin-top: 156px;
}

.h-title {
  line-height: 1.2em;
  font-weight: var(--fw-light);
}

.desc {
  line-height: 1.6em;
}

.nowrap {
  white-space: nowrap;
}

.cookie-tab {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  padding: 20px 15px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.cookie-tab .row {
  margin: 0 -10px;
}
.cookie-tab .row > div {
  padding: 0 10px;
}
.cookie-tab .action {
  display: flex;
  gap: 15px;
}

@media (max-width: 1670px) {
  .layout-body {
    margin-top: 140px;
  }
}
@media (max-width: 1440px) {
  .layout-body {
    margin-top: 125px;
  }
}
@media (max-width: 1199px) {
  .layout-body {
    margin-top: 115px;
  }
}
@media (max-width: 991px) {
  .layout-body {
    margin-top: 110px;
  }
  .cookie-tab {
    padding: 15px 0;
  }
  .cookie-tab .row {
    margin: 0 -7.5px;
  }
  .cookie-tab .row > div {
    padding: 0 7.5px;
  }
  .cookie-tab .action {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .layout-body {
    margin-top: 100px;
  }
  .cookie-tab .row {
    gap: 15px;
  }
  .cookie-tab .action .btn {
    min-width: auto;
    width: 50%;
  }
}
.hero-banner {
  position: relative;
  z-index: 2;
}
.hero-banner .cover {
  padding-top: 48%;
}
.hero-banner .video-wrapper {
  position: relative;
  padding-top: 48%;
  width: 100%;
  overflow: hidden;
}
.hero-banner .video-wrapper video,
.hero-banner .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero-banner .link {
  position: relative;
  display: block;
}
.hero-banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 220px;
  color: var(--color-light);
  background: linear-gradient(74.77deg, rgba(20, 48, 87, 0.7) 4.3%, rgba(20, 48, 87, 0) 53.79%);
}
.hero-banner .banner-overlay .inner {
  width: 700px;
}
.hero-banner .banner-overlay .h-title {
  color: inherit;
  text-transform: uppercase;
  font-size: 64px;
  font-weight: var(--fw-bold);
  margin-bottom: 1rem;
}
.hero-banner .banner-overlay .desc {
  font-size: 40px;
  font-weight: var(--fw-medium);
}
.hero-banner .swiper:has(.swiper-pagination) {
  margin-bottom: 0;
}
.hero-banner .swiper-pagination {
  padding-top: 0;
  bottom: 30px;
  position: absolute;
  color: var(--color-light);
}
.hero-banner .swiper-pagination .fraction {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  line-height: 1;
}
.hero-banner .swiper-pagination .fraction span {
  white-space: nowrap;
}
.hero-banner .swiper-pagination .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-light);
}
.hero-banner .carousel-progress {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1;
}
.hero-banner .carousel-progress .progress {
  width: 0;
  max-width: 100% !important;
  position: absolute;
  height: 100%;
  background-color: rgb(255, 255, 255);
}
.hero-banner .swiper-navigation {
  position: absolute;
  left: 0;
  bottom: 110px;
  width: 100%;
  z-index: 10;
}
.hero-banner .swiper-navigation .swiper-button-next,
.hero-banner .swiper-navigation .swiper-button-prev,
.hero-banner .swiper-navigation .swiper-button-next::before,
.hero-banner .swiper-navigation .swiper-button-prev::before {
  pointer-events: unset;
  visibility: visible;
  opacity: 1;
  border-color: var(--color-light);
}
.hero-banner .swiper-navigation .swiper-button-next,
.hero-banner .swiper-navigation .swiper-button-prev {
  position: static;
  transform: none;
  background: transparent;
  box-shadow: none;
  width: 16px;
  height: 16px;
  margin: 0;
}
.hero-banner .swiper-navigation .swiper-button-next:hover,
.hero-banner .swiper-navigation .swiper-button-prev:hover {
  opacity: 1;
}
.hero-banner .swiper-navigation .swiper-button-next:hover::before,
.hero-banner .swiper-navigation .swiper-button-prev:hover::before {
  border-color: var(--color-secondary);
}
.hero-banner .swiper-navigation .swiper-button-next::before, .hero-banner .swiper-navigation .swiper-button-prev::before {
  width: 12px;
  height: 12px;
}
.hero-banner .swiper-navigation .swiper-pagination {
  position: static;
  width: -moz-fit-content;
  width: fit-content;
  bottom: 0;
  transform: none;
  display: flex;
}
.hero-banner .swiper-navigation .carousel-progress {
  margin-left: 20px;
}
.hero-banner .swiper-navigation > .container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-group {
  background-color: var(--color-primary);
  color: var(--color-light);
}
.product-group > .container {
  position: relative;
}
.product-group .link {
  color: var(--color-light);
}
.product-group .link:hover .content-wrapper::before {
  background-size: 100% 100%;
}
.product-group .link:hover .content-wrapper::after {
  opacity: 1;
  visibility: visible;
}
.product-group .content-wrapper {
  background-color: var(--color-primary);
  background-image: url(../img/background/product-group-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-light);
  transition: var(--transition);
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.product-group .content-wrapper::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(180deg, rgba(20, 48, 87, 0.63) 0%, rgba(20, 48, 87, 0.9) 75%, rgb(20, 48, 87) 100%);
  background-size: 100% 3000%;
  background-position: bottom;
  transition: var(--transition);
}
.product-group .content-wrapper::after {
  content: "";
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  position: absolute;
  border: 4px solid var(--color-secondary);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.product-group .content-wrapper .content {
  position: relative;
  z-index: 1;
  padding: 40px;
  height: 240px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-group .icon {
  width: 72px;
  height: 72px;
  margin: 0 auto;
}
.product-group .icon .contain {
  padding-top: 100%;
}
.product-group .title {
  text-align: center;
  font-size: 22px;
  font-weight: var(--fw-bold);
  line-height: 1.6em;
  text-transform: uppercase;
}
.product-group .swiper {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: -1px;
  margin-right: -1px;
}
.product-group .swiper .swiper-wrapper {
  margin-left: -1px;
}
.product-group .swiper .swiper-wrapper.swiper-wrapper-center {
  justify-content: center;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .product-group .swiper .swiper-wrapper.swiper-wrapper-center {
    justify-content: center;
  }
}
.product-group .swiper.swiper-centered .swiper-wrapper {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.product-group .swiper .swiper-slide:hover {
  position: relative;
  z-index: 1;
}
.product-group .swiper-button-prev {
  left: -59px;
}
.product-group .swiper-button-next {
  right: -59px;
}

.sc-info {
  background-color: var(--color-snow);
  background-image: url(../img/background/graphic-about-bg.png);
  background-repeat: no-repeat;
  background-size: 73%;
  background-position: top 60px left 0;
}
.sc-info .info-content-area {
  position: relative;
  padding-top: 110px;
  overflow: hidden;
}
.sc-info .info-content-area .content {
  margin-top: 120px;
}
.sc-info .info-content-area .h-title {
  font-size: 100px;
  font-weight: var(--fw-bold);
  line-height: 90px;
  color: var(--color-light);
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
  position: relative;
  z-index: 1;
}
.sc-info .info-content-area .sub-title {
  font-size: 40px;
  line-height: 1.4em;
  font-weight: var(--fw-medium);
  color: var(--color-primary);
  margin-bottom: 20px;
}
.sc-info .info-content-area .desc {
  font-size: var(--typo-default);
  line-height: 1.5em;
  margin-bottom: 15px;
}
.sc-info .info-content-area .btn {
  margin-top: 30px;
}
.sc-info .info-content-area .thumbnail-wrapper {
  position: relative;
  width: 792px;
  margin-top: 120px;
  margin-right: 140px;
}
.sc-info .info-content-area .thumbnail-wrapper .graphic {
  height: 100%;
}
.sc-info .info-content-area .thumbnail-wrapper .graphic > .obj {
  position: absolute;
  top: 50%;
  right: 50%;
  margin-right: -1220px;
  transform: translateY(-50%);
  width: 800px;
}
.sc-info .info-content-area .graphic-top {
  position: absolute;
  top: -500px;
  right: 50%;
  margin-right: -960px;
  z-index: 1;
  width: 584px;
}
.sc-info .info-content-area .graphic-top img {
  width: 100%;
}
.sc-info .info-menu-area {
  position: relative;
  z-index: 2;
  background-color: var(--color-primary);
  padding-bottom: 80px;
}
.sc-info .info-menu-area .tab-horizontal {
  position: relative;
  top: -120px;
  margin-bottom: -120px;
  z-index: 2;
}
.sc-info .info-menu-area .tab-horizontal-mobile {
  display: none;
}
.sc-info .info-menu-area .tab {
  border: 20px solid var(--color-light);
  margin-bottom: 60px;
  border-radius: 120px;
  overflow: hidden;
}
.sc-info .info-menu-area .nav-tabs {
  border: none;
  background-color: var(--color-secondary);
}
.sc-info .info-menu-area .nav-tabs li {
  width: 25%;
}
.sc-info .info-menu-area .nav-tabs .link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  height: 200px;
  background-color: var(--color-secondary);
}
.sc-info .info-menu-area .nav-tabs .link .icon {
  transition: var(--transition);
  height: 75px;
  align-items: end;
  display: flex;
}
.sc-info .info-menu-area .nav-tabs .link strong {
  font-size: var(--typo-lg);
  color: var(--color-light);
  position: relative;
  text-transform: uppercase;
}
.sc-info .info-menu-area .nav-tabs .link.active .icon {
  transform: scale(1.05);
}
.sc-info .info-menu-area .selector {
  background-color: var(--color-secondary);
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 240px;
  box-shadow: inset #FFC70F 0px 0px 30px 0px;
}
.sc-info .info-menu-area .tab-content {
  text-align: center;
}
.sc-info .info-menu-area .h3 {
  margin-bottom: 15px;
  color: var(--color-light);
}
.sc-info .info-menu-area .desc {
  font-size: var(--typo-md);
  line-height: 1.5em;
  margin-bottom: 40px;
  color: var(--color-light);
}
.sc-info .tab-horizontal-mobile {
  transform: translateY(-50px);
  margin-bottom: -50px;
}
.sc-info .tab-horizontal-mobile .tab-nav {
  background-color: var(--color-secondary);
  margin: 0 -15px;
  margin-bottom: 30px;
  border: 6px solid var(--color-light);
  height: 100px;
  border-radius: 49px;
}
.sc-info .tab-horizontal-mobile .tab-nav .item {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  transition: var(--transition);
  border-radius: 45px;
}
.sc-info .tab-horizontal-mobile .tab-nav .item .icon {
  width: 40px;
}
.sc-info .tab-horizontal-mobile .tab-nav .item strong {
  color: var(--color-light);
}
.sc-info .tab-horizontal-mobile .tab-nav .swiper-slide {
  transition: var(--transition);
}
.sc-info .tab-horizontal-mobile .tab-nav .swiper-slide-thumb-active .item {
  background-color: var(--color-secondary);
  box-shadow: inset #FFC70F 0px 0px 30px 0px;
}
.sc-info .tab-horizontal-mobile .tab-nav .swiper-pagination {
  position: absolute;
  bottom: -40px;
  display: none;
}
.sc-info .tab-horizontal-mobile .tab-pane .swiper-slide {
  transition: var(--transition-btn);
  opacity: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  display: block;
}
.sc-info .tab-horizontal-mobile .tab-pane .swiper-slide.swiper-slide-active {
  opacity: 1;
  height: auto;
  overflow: visible;
  visibility: visible;
}
.sc-info .our-certificates {
  padding-bottom: 85px;
}
.sc-info .our-certificates .h-title {
  margin-bottom: -60px;
}

.sc-our-service {
  padding: 130px 0 0 0;
  background-color: var(--color-snow);
  position: relative;
  z-index: 1;
}
.sc-our-service .graphic {
  position: absolute;
  top: -330px;
  left: 110px;
  width: 260px;
  z-index: -1;
}
.sc-our-service .graphic img {
  width: 100%;
}
.sc-our-service .graphic {
  display: none;
}
.sc-our-service .box {
  background-color: var(--color-light);
  background-image: url(../img/background/our-service-bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
  border-radius: 40px;
  padding: 120px;
  box-shadow: 0 10px 0 0 var(--color-secondary);
  position: relative;
  margin-top: -100px;
  top: 100px;
}
.sc-our-service .whead {
  margin-bottom: 80px;
}
.sc-our-service .whead .h-title {
  font-size: 100px;
  color: var(--color-secondary);
  font-weight: var(--fw-bold);
  line-height: 100px;
  background: linear-gradient(90deg, #143057 18%, #0D40CD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: -180px;
  margin-bottom: 30px;
}
.sc-our-service .whead .title {
  font-size: 44px;
  font-weight: var(--fw-medium);
  color: var(--color-secondary);
  margin: 0;
}
.sc-our-service .service-area {
  position: relative;
}
.sc-our-service .service-area > .row {
  justify-content: space-between;
  align-items: center;
}
.sc-our-service .service-area + .service-area {
  margin-top: 80px;
}
.sc-our-service .service-area:nth-child(even) .content > .row {
  flex-direction: row-reverse;
}
.sc-our-service .service-area:nth-child(even) .content-wrapper {
  text-align: right;
}
.sc-our-service .service-area:nth-child(even) > .row {
  flex-direction: row-reverse;
}
.sc-our-service .service-area .content {
  max-width: 670px;
  position: relative;
  z-index: 2;
}
.sc-our-service .service-area .content > .row {
  margin: 0 -20px;
}
.sc-our-service .service-area .content > .row > div {
  padding: 0 20px;
}
.sc-our-service .service-area .content .content-group-header {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 13px;
}
.sc-our-service .service-area .content .content-group-header > h3 {
  display: none;
  margin-bottom: 0;
}
.sc-our-service .service-area .content .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 20px auto;
  width: 140px;
  height: 96px;
  border-radius: 20px;
  background: var(--color-secondary);
  box-shadow: 10px 14px 14px rgba(198, 156, 108, 0.3);
}
.sc-our-service .service-area .content .icon:before, .sc-our-service .service-area .content .icon:after {
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: inherit;
  content: "";
  z-index: -1;
  box-shadow: 10px 14px 14px rgba(198, 156, 108, 0.3);
}
.sc-our-service .service-area .content .icon:before {
  transform: rotate(60deg);
}
.sc-our-service .service-area .content .icon:after {
  transform: rotate(-60deg);
}
.sc-our-service .service-area .content .icon img {
  width: 48px;
}
.sc-our-service .service-area .content .title {
  font-size: 28px;
  font-weight: var(--fw-semibold);
  line-height: 1em;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.sc-our-service .service-area .content .desc {
  font-size: var(--typo-default);
  margin-bottom: 0;
}
.sc-our-service .service-area .thumbnail-wrapper {
  position: relative;
  width: 520px;
}
.sc-our-service .service-area .thumbnail-wrapper .cover {
  width: 100%;
  padding-top: 75%;
  border-radius: 8px;
}

.sc-services {
  color: var(--color-light);
  background-color: var(--color-primary);
  background-image: url(../img/background/bg-service.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 180px 0 0 0;
  position: relative;
}
.sc-services > .container {
  position: relative;
}
.sc-services .brand {
  width: 190px;
  margin: 0 auto 40px auto;
}
.sc-services .brand img {
  width: 100%;
}
.sc-services .whead {
  text-align: center;
  margin-bottom: 60px;
}
.sc-services .whead .h-title {
  color: var(--color-secondary);
  font-size: 44px;
  font-weight: var(--fw-medium);
  margin-bottom: 20px;
  text-align: center;
}
.sc-services .whead .desc {
  font-size: 22px;
}
.sc-services .services-nav {
  background: rgba(20, 48, 87, 0.8);
  backdrop-filter: blur(4px);
}
.sc-services .services-nav > .container {
  position: relative;
}
.sc-services .services-nav .item {
  color: var(--color-light);
  height: 360px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.sc-services .services-nav .item .topic {
  display: flex;
  gap: 15px;
}
.sc-services .services-nav .item .number {
  font-size: 64px;
  font-weight: var(--fw-semibold);
  line-height: 74px;
  flex-shrink: 0;
}
.sc-services .services-nav .item .title {
  font-size: var(--typo-lg);
  font-weight: var(--fw-medium);
  line-height: 1.5em;
}
.sc-services .services-nav .item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 26px 0;
  width: 124px;
  height: 84px;
  border-radius: 16px;
  background: var(--color-light);
  z-index: 1;
}
.sc-services .services-nav .item .icon:before, .sc-services .services-nav .item .icon:after {
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: inherit;
  content: "";
  z-index: -1;
}
.sc-services .services-nav .item .icon:before {
  transform: rotate(60deg);
}
.sc-services .services-nav .item .icon:after {
  transform: rotate(-60deg);
}
.sc-services .services-nav .item .icon img {
  width: 44px;
}
.sc-services .services-nav .item .action {
  position: absolute;
  bottom: -48px;
  right: 0;
  width: 48px;
  height: 48px;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.sc-services .services-nav .item::before {
  content: "";
  position: absolute;
  bottom: -48px;
  left: 0;
  width: 100%;
  height: 48px;
  background: transparent;
  transition: var(--transition);
}
.sc-services .services-nav .item:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-secondary);
}
.sc-services .services-nav .item:hover .action {
  color: var(--color-light);
  opacity: 1;
  visibility: visible;
}
.sc-services .services-nav .item:hover::before {
  background-color: var(--color-primary-dark);
}
.sc-services .services-nav .swiper {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: -1px;
  margin-right: -1px;
  overflow: visible;
}
.sc-services .services-nav .swiper .swiper-wrapper {
  margin-left: -1px;
}
.sc-services .services-nav .swiper .swiper-slide:hover {
  position: relative;
  z-index: 1;
}
.sc-services .services-nav .swiper-button-prev {
  left: -59px;
}
.sc-services .services-nav .swiper-button-next {
  right: -59px;
}
.sc-services .services-nav .swiper-pagination {
  display: none;
}
.sc-services .services-tab-pane {
  margin-top: 50px;
}
.sc-services .services-tab-pane .swiper-slide {
  backdrop-filter: blur(30px);
  --webkit-backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.15);
  padding: 40px;
  border-radius: 30px;
  transition: var(--transition-btn);
  opacity: 0;
  visibility: hidden;
}
.sc-services .services-tab-pane .swiper-slide.swiper-slide-active {
  opacity: 1;
  visibility: visible;
}
.sc-services .services-tab-pane .tab-pane-area {
  position: relative;
}
.sc-services .services-tab-pane .tab-pane-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
}
.sc-services .services-tab-pane .tab-pane-list .link {
  font-size: var(--typo-s, );
  color: var(--color-light);
  font-weight: var(--fw-bold);
  line-height: 1.4em;
  transition: var(--transition);
  text-decoration: none;
}
.sc-services .services-tab-pane .tab-pane-list .link:hover {
  color: var(--color-secondary);
}
.sc-services .services-tab-pane .tab-pane-border {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.sc-services .services-tab-pane .tab-pane-border .item {
  border-right: 1px solid rgba(255, 255, 255, 0.1843137255);
}
.sc-services .services-tab-pane .tab-pane-border .item:last-child {
  display: none;
}

.sc-news {
  padding: 120px 0 90px 0;
  background-image: url(../img/background/sc-news-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  overflow: hidden;
}
.sc-news > .container {
  position: relative;
}
.sc-news .whead {
  margin-bottom: 40px;
}
.sc-news .whead .h-title {
  font-size: 56px;
  font-weight: var(--fw-bold);
  margin-bottom: 20px;
  background: linear-gradient(90deg, #143057 18%, #0D40CD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
}
.sc-news .whead .title {
  font-size: 44px;
  font-weight: var(--fw-medium);
  color: var(--color-secondary);
  margin: 0;
}
.sc-news .link {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}
.sc-news .link:hover {
  box-shadow: 0px 14px 24px rgba(0, 0, 0, 0.08);
}
.sc-news .link:hover .cover img {
  transform: scale(1.3);
}
.sc-news .link:hover .content {
  background-color: var(--color-light);
}
.sc-news .link .cover {
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
}
.sc-news .link .cover img {
  transition: var(--transition-btn);
}
.sc-news .link .content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  background-color: #F6F9FF;
  color: var(--color-default);
  transition: var(--transition);
}
.sc-news .link .content .title {
  font-size: var(--typo-md);
  font-weight: var(--fw-medium);
  color: var(--color-black);
  margin-bottom: 15px;
  position: relative;
  transition: var(--transition-btn);
}
.sc-news .link .content .title.text-limit {
  -webkit-line-clamp: 2;
  min-height: 2.8em;
  line-height: 1.4em;
}
.sc-news .link .content .desc {
  font-size: var(--typo-default);
  color: var(--color-gray-2);
  transition: var(--transition-btn);
  margin-bottom: 0;
}
.sc-news .link .content .desc.text-limit {
  -webkit-line-clamp: 2;
  min-height: 3.2em;
  line-height: 1.6em;
}
.sc-news .link .content .date {
  color: var(--color-gray);
}
.sc-news .link .content .readmore {
  color: var(--color-secondary);
}
.sc-news .link .content .bottom {
  position: relative;
  margin-top: 20px;
  border-top: 1px solid var(--color-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sc-news .link .content .bottom .date,
.sc-news .link .content .bottom .readmore {
  padding-top: 20px;
}
.sc-news .link .content .bottom .readmore {
  position: relative;
}
.sc-news .link .content .bottom .readmore::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-secondary);
}
.sc-news .nav-tabs {
  border-bottom: none;
  display: flex;
  gap: 8px;
}
.sc-news .nav-tabs .btn {
  color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.4);
}
.sc-news .nav-tabs .btn:hover, .sc-news .nav-tabs .btn.active {
  color: var(--color-secondary);
  background-color: var(--color-light);
  border-color: var(--color-light);
}
.sc-news .action {
  display: flex;
}
.sc-news .action .divider {
  width: 1px;
  height: 56px;
  background-color: var(--color-secondary);
  margin: 0 20px;
  opacity: 0.2;
}
.sc-news .slider .slick-prev {
  left: -75px;
}
.sc-news .slider .slick-next {
  right: -75px;
}
.sc-news .slider .slick-list {
  margin: 0 -15px;
  margin-bottom: -25px;
}
.sc-news .slider .slick-list .item {
  padding: 0 15px;
  padding-bottom: 25px;
}
.sc-news .slider.slick-dotted.slick-slider {
  margin-bottom: 50px;
}
.sc-news .slider .slick-dots {
  bottom: -50px;
}

.sc-customer-sevice {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url(../img/background/our-customers-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  overflow: hidden;
}
.sc-customer-sevice .h-title {
  font-size: 56px;
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(90deg, #143057 18%, #0D40CD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 40px;
}
.sc-customer-sevice .customer-sevice-area {
  margin: auto;
  text-align: center;
}
.sc-customer-sevice .container {
  position: relative;
}
.sc-customer-sevice .item-list {
  margin: -40px 0;
  position: absolute;
  bottom: 50px;
}
.sc-customer-sevice .item-list li {
  width: 50%;
  padding-top: 40px;
  display: flex;
  justify-content: flex-start;
}
.sc-customer-sevice .item-list li .wrapper {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-align: right;
  min-width: 342px;
}
.sc-customer-sevice .item-list li:nth-child(even) {
  justify-content: flex-end;
}
.sc-customer-sevice .item-list li:nth-child(even) .wrapper {
  flex-direction: row-reverse;
  text-align: left;
  margin-left: auto;
}
.sc-customer-sevice .item-list li:nth-child(1) .wrapper, .sc-customer-sevice .item-list li:nth-child(5) .wrapper {
  justify-content: end;
}
.sc-customer-sevice .item-list li:nth-child(2) .wrapper, .sc-customer-sevice .item-list li:nth-child(6) .wrapper {
  justify-content: start;
}
.sc-customer-sevice .item-list .title {
  font-size: 22px;
  font-weight: var(--fw-medium);
  line-height: 1.4em;
  color: var(--color-primary);
}
.sc-customer-sevice .item-list .icon {
  background: linear-gradient(to right, #ffc70f 0%, #ff560f 100%);
  filter: drop-shadow(15px 15px 30px rgba(255, 86, 15, 0.4));
  filter: drop-shadow(15px 15px 30px rgba(255, 86, 15, 0.4));
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.sc-customer-sevice .our-customers .thumb {
  background: transparent;
  box-shadow: none;
}
.sc-customer-sevice .our-customers .item:hover .thumb {
  box-shadow: none;
}
.sc-customer-sevice .slick-dots {
  bottom: -30px;
}
.sc-customer-sevice .slick-dots li button {
  background: var(--color-light);
  border-color: var(--color-light);
}
.sc-customer-sevice .slick-dots li.slick-active button {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}

@media (max-width: 1670px) {
  .product-group .title {
    font-size: 20px;
  }
  .product-group .content-wrapper .content {
    padding: 30px;
  }
  .sc-info .info-content-area {
    padding-top: 100px;
  }
  .sc-info .info-content-area .graphic-top {
    top: -480px;
    margin-right: -922px;
    width: 540px;
  }
  .sc-info .info-content-area .h-title {
    font-size: 80px;
    line-height: 70px;
  }
  .sc-info .info-content-area .sub-title {
    font-size: 32px;
  }
  .sc-info .info-content-area .content {
    margin-top: 100px;
  }
  .sc-info .info-content-area .thumbnail-wrapper {
    width: 560px;
    margin-top: 100px;
    margin-right: 0;
  }
  .sc-info .info-content-area .thumbnail-wrapper .graphic > .obj {
    margin-right: -820px;
    width: 500px;
  }
  .sc-info .our-certificates .h-title {
    font-size: 70px;
    margin-bottom: -10px;
  }
  .sc-our-service .box {
    padding: 80px;
  }
  .sc-our-service .graphic {
    top: -260px;
    left: 100px;
    width: 220px;
  }
  .sc-our-service .whead {
    margin-bottom: 60px;
  }
  .sc-our-service .whead .h-title {
    font-size: 80px;
    line-height: 80px;
    margin-top: -120px;
  }
  .sc-our-service .whead .title {
    font-size: 38px;
  }
  .sc-our-service .service-area .content {
    max-width: 590px;
  }
  .sc-our-service .service-area .thumbnail-wrapper {
    width: 500px;
  }
  .sc-our-service .service-area .content .icon {
    width: 120px;
    height: 85px;
  }
  .sc-our-service .service-area + .service-area {
    margin-top: 60px;
  }
  .sc-services .brand {
    width: 180px;
  }
  .sc-services .whead .h-title {
    font-size: 38px;
  }
  .sc-services .whead .desc {
    font-size: var(--typo-md);
  }
  .sc-news {
    padding: 110px 0 80px 0;
  }
  .sc-news .whead .h-title {
    font-size: var(--typo-xl);
  }
  .sc-news .whead .title {
    font-size: 38px;
  }
  .sc-customer-sevice .h-title {
    font-size: var(--typo-xl);
  }
  .sc-customer-sevice {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 1600px) {
  .hero-banner .banner-overlay {
    padding-bottom: 180px;
  }
  .hero-banner .banner-overlay .h-title {
    font-size: var(--typo-xl);
  }
  .hero-banner .banner-overlay .desc {
    font-size: 30px;
  }
  .hero-banner .banner-overlay .inner {
    width: 650px;
  }
  .product-group .content-wrapper .content {
    padding: 36px;
  }
  .sc-our-service .whead .h-title {
    font-size: 70px;
    line-height: 70px;
  }
  .sc-our-service .whead .title {
    font-size: 34px;
  }
  .sc-our-service .service-area .content {
    max-width: 570px;
  }
  .sc-our-service .service-area .content > .row {
    margin: 0 -15px;
  }
  .sc-our-service .service-area .content > .row > div {
    padding: 0 15px;
  }
  .sc-our-service .service-area .thumbnail-wrapper {
    width: 420px;
  }
  .sc-news .whead .title {
    font-size: 34px;
  }
}
@media (max-width: 1440px) {
  .hero-banner .banner-overlay .inner {
    width: 420px;
  }
  .hero-banner .banner-overlay .desc {
    font-size: var(--typo-lg);
  }
  .hero-banner .swiper-navigation {
    bottom: 85px;
  }
  .hero-banner .swiper-pagination .fraction {
    font-size: 26px;
  }
  .hero-banner .swiper-pagination .fraction {
    font-size: 24px;
  }
  .product-group .title {
    font-size: 20px;
  }
  .product-group .content-wrapper .content {
    padding: 25px;
  }
  .sc-info .info-content-area {
    padding-top: 80px;
  }
  .sc-info .info-content-area .graphic-top {
    top: -480px;
    margin-right: -830px;
    width: 500px;
  }
  .sc-info .info-content-area .content {
    margin-top: 100px;
  }
  .sc-info .info-content-area .h-title {
    font-size: 70px;
    line-height: 60px;
  }
  .sc-info .info-content-area .sub-title {
    font-size: 30px;
  }
  .sc-info .info-content-area .thumbnail-wrapper {
    width: 580px;
  }
  .sc-info .info-content-area .thumbnail-wrapper .graphic > .obj {
    width: 300px;
    margin-right: -610px;
  }
  .sc-info .our-certificates {
    padding-bottom: 70px;
  }
  .sc-info .our-certificates .h-title {
    font-size: 60px;
    margin-bottom: 0;
  }
  .sc-our-service {
    padding: 100px 0 0 0;
  }
  .sc-our-service .graphic {
    top: -240px;
    left: 44px;
    width: 180px;
  }
  .sc-our-service .box {
    padding: 60px;
    border-radius: 32px;
    margin-top: -80px;
    top: 80px;
  }
  .sc-our-service .whead {
    margin-bottom: 50px;
  }
  .sc-our-service .whead .h-title {
    margin-top: -100px;
    margin-bottom: 20px;
  }
  .sc-our-service .service-area .content > .row {
    margin: 0 -15px;
  }
  .sc-our-service .service-area .content > .row > div {
    padding: 0 15px;
  }
  .sc-our-service .service-area .content .icon {
    width: 110px;
    height: 80px;
  }
  .sc-our-service .service-area .content .icon img {
    width: 44px;
  }
  .sc-our-service .service-area .content .title {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .sc-our-service .service-area + .service-area {
    margin-top: 40px;
  }
  .sc-services {
    padding: 160px 0 0 0;
  }
  .sc-services .services-nav .item {
    height: 320px;
  }
  .sc-services .services-nav .item .number {
    font-size: 60px;
    line-height: 70px;
  }
  .sc-services .services-nav .item .icon {
    margin: 24px 0;
    width: 110px;
    height: 76px;
  }
  .sc-services .services-nav .item .icon img {
    width: 40px;
  }
  .sc-news {
    padding: 100px 0 60px 0;
  }
  .sc-news .whead {
    margin-bottom: 30px;
  }
  .sc-news .whead .title {
    font-size: 28px;
  }
  .sc-news .action .divider {
    height: 50px;
    margin: 0 15px;
  }
  .sc-news .slider .slick-list {
    margin-left: -10px;
    margin-right: -10px;
  }
  .sc-news .slider .slick-list .item {
    padding-left: 10px;
    padding-right: 10px;
  }
  .sc-news .slider .slick-dots {
    bottom: -30px;
  }
  .sc-customer-sevice {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .sc-customer-sevice .h-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 1199px) {
  .hero-banner .banner-overlay {
    padding-bottom: 140px;
  }
  .hero-banner .swiper-navigation {
    bottom: 60px;
  }
  .hero-banner .swiper-pagination .fraction {
    font-size: 18px;
  }
  .hero-banner .swiper-navigation .swiper-button-next,
  .hero-banner .swiper-navigation .swiper-button-prev {
    width: 14px;
    height: 14px;
  }
  .hero-banner .swiper-navigation .swiper-button-next::before,
  .hero-banner .swiper-navigation .swiper-button-prev::before {
    width: 10px;
    height: 10px;
  }
  .sc-info .info-content-area {
    padding-top: 60px;
  }
  .sc-info .info-content-area .graphic-top {
    top: -400px;
    margin-right: -740px;
    width: 380px;
  }
  .sc-info .info-content-area .content {
    margin-top: 60px;
  }
  .sc-info .info-content-area .h-title {
    font-size: 60px;
    line-height: 50px;
  }
  .sc-info .info-content-area .sub-title {
    font-size: 28px;
  }
  .sc-info .info-content-area .thumbnail-wrapper {
    width: 460px;
    margin-top: 60px;
  }
  .sc-info .our-certificates {
    padding-bottom: 40px;
  }
  .sc-info .our-certificates .h-title {
    font-size: 50px;
  }
  .sc-our-service {
    padding: 80px 0 0 0;
  }
  .sc-our-service .graphic {
    top: -200px;
    left: -40px;
    width: 140px;
  }
  .sc-our-service .box {
    padding: 40px;
    border-radius: 24px;
    margin-top: -40px;
    top: 40px;
  }
  .sc-our-service .whead {
    margin-bottom: 40px;
  }
  .sc-our-service .whead .h-title {
    font-size: 60px;
    line-height: 60px;
    margin-top: -70px;
    margin-bottom: 10px;
  }
  .sc-our-service .whead .title {
    font-size: 28px;
  }
  .sc-our-service .service-area .content {
    max-width: 500px;
  }
  .sc-our-service .service-area .content .icon {
    width: 100px;
    height: 66px;
    border-radius: 12px;
  }
  .sc-our-service .service-area .content .icon img {
    width: 40px;
  }
  .sc-our-service .service-area .content .title {
    margin-bottom: 15px;
  }
  .sc-our-service .service-area .thumbnail-wrapper {
    width: 380px;
  }
  .sc-services {
    padding: 120px 0 0 0;
  }
  .sc-services .whead {
    margin-bottom: 50px;
  }
  .sc-services .whead .h-title {
    font-size: 32px;
  }
  .sc-services .brand {
    width: 160px;
    margin-bottom: 30px;
  }
  .sc-services .services-nav .item {
    height: 280px;
    padding: 30px;
  }
  .sc-services .services-nav .item .title {
    font-size: var(--typo-md);
  }
  .sc-services .services-nav .item .number {
    font-size: 50px;
    line-height: 60px;
  }
  .sc-news {
    padding: 80px 0 60px 0;
  }
  .sc-news .whead .title {
    font-size: var(--typo-lg);
  }
  .sc-news .link .content {
    padding: 20px;
    font-size: 14px;
  }
  .sc-news .link .content .title {
    font-size: var(--typo-sm);
    margin-bottom: 10px;
  }
  .sc-news .link .content .desc {
    font-size: 14px;
  }
  .sc-news .link .content .bottom {
    margin-top: 12px;
  }
  .sc-news .link .content .bottom .date,
  .sc-news .link .content .bottom .readmore {
    padding-top: 12px;
  }
  .sc-customer-sevice {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .hero-banner .banner-overlay {
    padding-bottom: 120px;
  }
  .hero-banner .swiper-navigation {
    bottom: 55px;
  }
  .product-group .swiper-button-prev {
    left: 15px;
  }
  .product-group .swiper-button-next {
    right: 15px;
  }
  .sc-info .info-content-area {
    padding-top: 60px;
    padding-bottom: 50px;
  }
  .sc-info .info-content-area .graphic-top {
    display: none;
  }
  .sc-info .info-content-area .h-title {
    font-size: 44px;
    line-height: 1;
  }
  .sc-info .info-content-area .sub-title {
    font-size: 26px;
  }
  .sc-info .info-content-area .content {
    margin-top: 40px;
    min-width: auto;
  }
  .sc-info .info-content-area .btn {
    margin-top: 20px;
  }
  .sc-info .info-content-area .thumbnail-wrapper {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
  .sc-info .info-content-area .thumbnail-wrapper .graphic > .obj {
    display: none;
  }
  .sc-info .our-certificates .h-title {
    font-size: var(--typo-xxl);
  }
  .sc-info .info-menu-area {
    padding-bottom: 40px;
  }
  .sc-info .info-menu-area .tab {
    border-radius: 50px;
    margin-bottom: 30px;
  }
  .sc-info .info-menu-area .nav-tabs li {
    width: 50%;
  }
  .sc-info .info-menu-area .nav-tabs .link {
    padding: 15px;
  }
  .sc-info .info-menu-area .nav-tabs .link.active {
    background-color: var(--color-secondary);
    box-shadow: inset #FFC70F 0px 0px 30px 0px;
    border-radius: 30px;
  }
  .sc-info .info-menu-area .selector {
    display: none;
  }
  .sc-our-service {
    padding: 60px 0 60px 0;
  }
  .sc-our-service .graphic {
    top: -120px;
    left: -15px;
    width: 100px;
  }
  .sc-our-service .whead {
    margin-bottom: 50px;
  }
  .sc-our-service .whead .h-title {
    font-size: var(--typo-xxl);
    line-height: 1;
    margin-left: auto;
    margin-right: auto;
    margin-top: -45px;
  }
  .sc-our-service .whead .title {
    font-size: var(--typo-xl);
    text-align: center;
  }
  .sc-our-service .service-area + .service-area {
    margin-top: 40px;
  }
  .sc-our-service .service-area .content {
    max-width: 100%;
  }
  .sc-our-service .service-area .content > .row {
    margin: 0 -10px;
  }
  .sc-our-service .service-area .content > .row > div {
    padding: 0 10px;
  }
  .sc-our-service .service-area .content .icon {
    width: 85px;
    height: 58px;
  }
  .sc-our-service .service-area .content .icon img {
    width: 35px;
  }
  .sc-our-service .service-area .content .title {
    font-size: var(--typo-lg);
    margin-bottom: 15px;
  }
  .sc-our-service .service-area .thumbnail-wrapper {
    width: 350px;
  }
  .sc-our-service .box {
    padding: 30px;
    margin-top: 0;
    top: 0;
    border-radius: 20px;
  }
  .sc-services {
    padding: 60px 0 0 0;
  }
  .sc-services .h-title {
    margin-bottom: 30px;
  }
  .sc-services .whead .h-title {
    font-size: var(--typo-xl);
  }
  .sc-services .services-nav .item {
    padding: 20px;
    height: 240px;
  }
  .sc-services .services-nav .item .number {
    font-size: 40px;
    line-height: 50px;
  }
  .sc-services .services-nav .item .title {
    font-size: var(--typo-sm);
  }
  .sc-services .services-nav .item .icon {
    margin: 18px 0;
    width: 85px;
    height: 58px;
    border-radius: 12px;
  }
  .sc-services .services-nav .item .action {
    bottom: -40px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .sc-services .services-nav .item::before {
    bottom: -40px;
    height: 40px;
  }
  .sc-news {
    padding: 60px 0 40px 0;
  }
  .sc-news .whead .h-title {
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .sc-news .whead .title {
    text-align: center;
  }
  .sc-news .link .content {
    padding: 15px;
  }
  .sc-news .action {
    margin-top: 30px;
  }
  .sc-news .action .divider {
    height: 45px;
  }
  .sc-news .action .tab {
    flex-shrink: 0;
  }
  .sc-news .action .btn-secondary {
    width: 100%;
  }
  .sc-news .slider .slick-dots {
    bottom: -25px;
  }
  .sc-news .slider.slick-dotted.slick-slider {
    margin-bottom: 40px;
  }
  .sc-customer-sevice {
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: hidden;
  }
  .sc-customer-sevice .h-title {
    margin-bottom: 20px;
  }
  .sc-customer-sevice .img-ship {
    margin-bottom: 0;
    filter: grayscale(1);
    opacity: 0.3 !important;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 1000px;
  }
  .sc-customer-sevice .item-list {
    margin: 0;
    bottom: 0;
    position: relative;
  }
  .sc-customer-sevice .item-list li {
    width: 100%;
    padding-top: 0;
  }
  .sc-customer-sevice .item-list li + li {
    margin-top: 15px;
  }
  .sc-customer-sevice .item-list li .wrapper {
    min-width: auto;
    flex-direction: row-reverse;
    text-align: left;
  }
  .sc-customer-sevice .item-list li:nth-child(even) .wrapper {
    margin-right: auto;
    margin-left: unset;
  }
  .sc-customer-sevice .item-list .title {
    font-size: var(--typo-sm);
  }
  .sc-customer-sevice .item-list .title br {
    display: none;
  }
  .sc-customer-sevice .item-list .icon {
    width: 80px;
    height: 80px;
  }
  .sc-customer-sevice .item-list .icon img {
    transform: scale(0.5);
  }
}
@media (max-width: 767px) {
  .hero-banner .cover {
    padding-top: calc(80dvh - 120px);
  }
  .hero-banner .banner-overlay {
    padding-bottom: 90px;
    background: linear-gradient(0deg, rgb(20, 48, 87) 0%, rgba(20, 48, 87, 0.7) 30%, rgba(20, 48, 87, 0) 60%);
  }
  .hero-banner .banner-overlay .inner {
    width: 100%;
  }
  .hero-banner .swiper-navigation {
    bottom: 45px;
  }
  .hero-banner .swiper-navigation .carousel-progress {
    margin-left: 10px;
  }
  .hero-banner .swiper-pagination .fraction {
    font-size: 18px;
  }
  .product-group .icon {
    width: 68px;
    height: 68px;
  }
  .product-group .title {
    font-size: 18px;
  }
  .product-group .content-wrapper .content {
    padding: 15px;
    height: 200px;
  }
  .product-group .swiper-button-prev,
  .product-group .swiper-button-next {
    display: none;
  }
  .sc-info .info-content-area {
    padding-top: 50px;
    padding-bottom: 40px;
  }
  .sc-info .info-content-area .content {
    margin-top: 20px;
    text-align: center;
  }
  .sc-info .info-content-area .h-title {
    font-size: 34px;
  }
  .sc-info .info-content-area .sub-title {
    font-size: 22px;
    text-align: left;
    margin-bottom: 15px;
  }
  .sc-info .info-content-area .desc {
    text-align: left;
  }
  .sc-info .info-content-area .thumbnail-wrapper {
    width: 90%;
  }
  .sc-info .info-menu-area .nav-tabs .link {
    height: 150px;
    gap: 15px;
  }
  .sc-info .info-menu-area .desc {
    font-size: var(--typo-sm);
  }
  .sc-info .our-certificates .h-title {
    margin-bottom: 80px;
  }
  .sc-our-service {
    padding: 40px 0 40px 0;
  }
  .sc-our-service .whead {
    margin-bottom: 30px;
  }
  .sc-our-service .whead .h-title {
    margin-top: 0;
  }
  .sc-our-service .graphic {
    display: none;
  }
  .sc-our-service .service-area:nth-child(odd) > .row {
    flex-direction: unset;
  }
  .sc-our-service .service-area:nth-child(odd) .content-wrapper {
    text-align: left;
  }
  .sc-our-service .service-area + .service-area {
    margin-top: 30px;
  }
  .sc-our-service .service-area .content {
    margin-top: 0;
    margin-bottom: 20px;
    min-width: auto;
  }
  .sc-our-service .service-area .content .content-group-header {
    width: 100%;
    flex-wrap: wrap;
  }
  .sc-our-service .service-area .content .content-group-header > h3 {
    display: block;
  }
  .sc-our-service .service-area .content .content-group-header > h3 {
    flex: 1 0 0%;
  }
  .sc-our-service .service-area .content .title {
    display: none;
  }
  .sc-our-service .service-area .content .icon {
    width: 70px;
    height: 46px;
    border-radius: 8px;
    margin: 18px auto;
  }
  .sc-our-service .service-area .content .icon img {
    width: 30px;
  }
  .sc-our-service .service-area .content .desc br {
    display: none;
  }
  .sc-our-service .service-area .thumbnail-wrapper {
    width: 100%;
  }
  .sc-our-service .service-area .content .content-wrapper .desc {
    text-align: left;
  }
  .sc-our-service .service-area .content .content-wrapper {
    margin-top: 15px;
    text-align: center;
  }
  .sc-our-service .service-area .thumbnail-wrapper .graphic > .obj {
    display: none;
  }
  .sc-services {
    padding: 40px 0 0 0;
  }
  .sc-services .whead .desc {
    font-size: var(--typo-sm);
  }
  .sc-services .whead .desc br {
    display: none;
  }
  .sc-services .services-tab-pane {
    margin-top: 20px;
  }
  .sc-services .services-nav .item {
    height: 220px;
  }
  .sc-services .services-nav .item .title {
    font-size: var(--typo-md);
  }
  .sc-services .services-nav .swiper-pagination {
    display: block;
  }
  .sc-services .services-tab-pane .tab-pane-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  .sc-services .services-tab-pane .tab-pane-list .item + .item {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1843137255);
  }
  .sc-services .services-tab-pane .tab-pane-border {
    display: none;
  }
  .sc-news .action {
    margin-top: 30px;
    flex-direction: column;
  }
  .sc-news .action .divider {
    width: 100%;
    height: 1px;
    margin: 20px 0;
  }
  .sc-news .nav-tabs {
    justify-content: center;
  }
  .sc-news .link .content .desc {
    font-size: 12px;
  }
  .sc-news .link .content {
    font-size: 12px;
  }
  .sc-news .slider .slick-list {
    margin-left: -7px;
    margin-right: -7px;
  }
  .sc-news .slider .slick-list .item {
    padding-left: 7px;
    padding-right: 7px;
  }
  .sc-news .slider .slick-dots {
    bottom: -20px;
  }
  .sc-customer-sevice {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .product-group .icon {
    width: 60px;
    height: 60px;
  }
  .product-group .title {
    font-size: 16px;
  }
  .sc-info .info-content-area {
    margin-bottom: -50px;
  }
  .sc-info .info-content-area .h-title {
    white-space: wrap;
    font-size: 26px;
  }
  .sc-info .info-content-area .sub-title {
    font-size: 20px;
  }
  .sc-info .info-content-area .thumbnail-wrapper {
    width: 100%;
  }
  .sc-info .info-menu-area .nav-tabs li {
    width: 100%;
  }
  .sc-info .info-menu-area .nav-tabs .link {
    height: 100px;
  }
  .sc-info .info-menu-area .nav-tabs .link .icon {
    max-width: 45px;
  }
  .sc-info .info-menu-area .nav-tabs .link strong {
    font-size: var(--typo-md);
  }
  .sc-info .info-menu-area .tab-horizontal {
    display: none;
  }
  .sc-info .info-menu-area .tab-horizontal-mobile {
    display: block;
  }
  .sc-info .our-certificates {
    padding-top: 40px;
    padding-bottom: 25px;
  }
  .sc-our-service {
    padding-top: 30px;
  }
  .sc-our-service .box {
    padding: 40px 20px 20px 20px;
  }
  .sc-services .services-nav .item .number {
    font-size: 30px;
    line-height: 34px;
  }
  .sc-services .services-nav .item .title {
    font-size: var(--typo-sm);
  }
  .sc-services .services-nav .item .title br {
    display: none;
  }
  .sc-customer-sevice {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
body > div.skiptranslate {
  opacity: 0;
  visibility: hidden;
}

.social-list-i.inner {
  display: none;
}

.topgraphic-inner {
  color: var(--color-light);
}
.topgraphic-inner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(11, 38, 76, 0) 0%, #0B264C 75.83%);
  z-index: 1;
}
.topgraphic-inner > * {
  position: relative;
  z-index: 2;
}
.topgraphic-inner .title {
  font-size: 36px;
  color: var(--color-light);
}
.topgraphic-inner .title::before {
  display: none;
}
.topgraphic-inner .breadcrumb-block {
  margin-top: 0;
}
.topgraphic-inner .breadcrumb {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 16px;
  gap: 8px;
  min-height: 40px;
  background: rgba(20, 48, 87, 0.4);
  border-radius: 20px;
}
.topgraphic-inner .breadcrumb .link {
  background: transparent;
  outline: none;
  box-shadow: none;
  border: none;
  padding: 0;
  margin: 0;
}
.topgraphic-inner .breadcrumb li .link,
.topgraphic-inner .breadcrumb li.active {
  font-weight: var(--fw-normal);
}
.topgraphic-inner .breadcrumb li.active .link {
  color: var(--color-secondary);
}
.topgraphic-inner .breadcrumb li.dropdown {
  overflow: visible;
  max-width: 100%;
  white-space: normal;
}
.topgraphic-inner.contact {
  background-color: #a9a9a9;
  height: 400px;
  background-position: center bottom -80px;
}
.topgraphic-inner.contact:after {
  background: linear-gradient(180deg, rgba(11, 38, 76, 0) 0%, rgba(11, 38, 76, 0.35) 75%);
}

.default-inner-page {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--color-snow);
}
.default-inner-page .preparing-info {
  text-align: center;
  padding: 50px 0 80px 0;
}
.default-inner-page .preparing-info .icon {
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  padding-bottom: 30px;
}
.default-inner-page .preparing-info .t-title {
  font-size: 40px;
  font-weight: var(--fw-bold);
  line-height: 1.3em;
}
.default-inner-page .preparing-info .desc {
  font-size: var(--typo-lg);
  line-height: 1.3em;
}
.default-inner-page .preparing-info .btn {
  margin-top: 40px;
}
.default-inner-page h2.title {
  font-size: 30px;
  font-weight: var(--fw-bold);
  line-height: 1.4em;
  color: var(--color-primary);
  padding-bottom: 25px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 40px;
  text-transform: uppercase;
}
.default-inner-page .sc-gallery .container {
  padding: 0;
}
.default-inner-page .sc-photo-gallery {
  position: relative;
}
.default-inner-page .sc-photo-gallery .gallery-main .cover {
  padding-top: 800px;
}
.default-inner-page .sc-photo-gallery .swiper-thumb-wrapper {
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 10px;
  background-color: rgba(0, 0, 0, 0.7);
  margin-top: -140px;
  position: relative;
  z-index: 1;
}
.default-inner-page .sc-photo-gallery .gallery-thumb {
  max-width: 650px;
  margin-right: auto;
  margin-left: 80px;
}
.default-inner-page .sc-photo-gallery .gallery-thumb .swiper-slide {
  width: 160px;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition);
}
.default-inner-page .sc-photo-gallery .gallery-thumb .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.default-inner-page .sc-photo-gallery .gallery-thumb .cover {
  padding-top: 120px;
}
.default-inner-page .sc-photo-gallery .swiper-nav > div {
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
  font-family: "feather";
  background-color: transparent;
  border: 1px solid var(--color-light);
  width: 60px;
  height: 60px;
}
.default-inner-page .sc-photo-gallery .swiper-nav > div::before {
  opacity: 1;
  visibility: visible;
  border: none;
  transform: unset;
  width: auto;
  height: auto;
  font-size: 40px;
  color: var(--color-light);
}
.default-inner-page .sc-photo-gallery .swiper-nav .swiper-button-prev:before {
  content: "\e828";
  left: 0;
}
.default-inner-page .sc-photo-gallery .swiper-nav .swiper-button-next:before {
  content: "\e829";
  right: 0;
}
.default-inner-page .sc-vdo-block .iframe-container {
  max-width: 1010px;
  padding-bottom: 570px;
  margin: auto;
}
.default-inner-page .sc-dowmnload-block {
  margin-top: 90px;
}
.default-inner-page .sc-dowmnload-block .download-list {
  padding: 0;
  border: none;
}
.default-inner-page .sc-dowmnload-block .wrapper {
  background-color: #FBFBFB;
}
.default-inner-page .sc-dowmnload-block .wrapper > .row {
  align-items: center;
  height: 120px;
  padding: 20px;
}
.default-inner-page .sc-dowmnload-block .h-title {
  font-weight: var(--fw-bold);
  line-height: 1.4em;
  color: var(--color-secondary) !important;
  letter-spacing: 0;
  margin-bottom: 5px;
}
.default-inner-page .sc-dowmnload-block .desc {
  font-size: var(--typo-xs);
}
.default-inner-page .action.-back {
  margin: 0;
  padding-top: 50px;
  margin-top: 60px;
  border-top: 1px solid var(--color-border);
}
.default-inner-page .detail-block.-quote-cta {
  background-color: var(--color-primary);
  border-radius: 16px;
  padding: 40px 50px !important;
  margin-bottom: 0 !important;
  border-bottom: none !important;
  box-shadow: 0 4px 20px rgba(20, 48, 87, 0.15);
  position: relative;
  overflow: hidden;
}
.default-inner-page .detail-block.-quote-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 48, 87, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.default-inner-page .detail-block.-quote-cta .quote-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.default-inner-page .detail-block.-quote-cta .quote-cta-text {
  flex: 1;
}
.default-inner-page .detail-block.-quote-cta .quote-cta-text .quote-cta-title {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  margin-bottom: 12px;
  line-height: 1.2em;
}
.default-inner-page .detail-block.-quote-cta .quote-cta-text .quote-cta-desc {
  font-size: var(--typo-default);
  color: var(--color-light);
  line-height: 1.6em;
}
.default-inner-page .detail-block.-quote-cta .quote-cta-action {
  flex-shrink: 0;
}
.default-inner-page .detail-block.-quote-cta .btn-quote {
  background: linear-gradient(180deg, #FFC70F 0%, #FF560F 100%);
  border: none;
  border-radius: 30px;
  padding: 0 32px;
  height: 56px;
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-light);
  font-size: var(--typo-default);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(255, 199, 15, 0.3);
}
.default-inner-page .detail-block.-quote-cta .btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 199, 15, 0.4);
  color: var(--color-light);
  text-decoration: none;
}
.default-inner-page .detail-block.-quote-cta .btn-quote .icon-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.default-inner-page .detail-block.-quote-cta .btn-quote .icon-arrow svg {
  width: 20px;
  height: 20px;
}
.default-inner-page .sc-news-hilight {
  padding: 80px;
  background-color: var(--color-primary);
  background-image: url(../img/background/news-highlight-bg.png);
  background-size: cover;
  background-position: center;
  border-radius: 32px;
  position: relative;
}
.default-inner-page .sc-news-hilight .link {
  text-decoration: none;
  color: var(--color-secondary);
}
.default-inner-page .sc-news-hilight .link > .row {
  flex-direction: row-reverse;
}
.default-inner-page .sc-news-hilight .link:hover .cover img {
  transform: scale(1.2);
}
.default-inner-page .sc-news-hilight .link:hover .content .n-title {
  color: var(--color-light);
}
.default-inner-page .sc-news-hilight .link:hover .content .desc {
  color: var(--color-light);
}
.default-inner-page .sc-news-hilight .link:hover .content .readmore {
  color: var(--color-light);
}
.default-inner-page .sc-news-hilight .link:hover .content .readmore .icon-arrow-right {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.default-inner-page .sc-news-hilight .cover {
  width: 740px;
  padding-top: 63.52%;
  border-radius: 16px;
  overflow: hidden;
}
.default-inner-page .sc-news-hilight .cover img {
  transition: var(--transition-btn);
}
.default-inner-page .sc-news-hilight .content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-right: 80px;
  transition: var(--transition);
}
.default-inner-page .sc-news-hilight .content .n-tag {
  font-size: var(--typo-lg);
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  margin-bottom: 20px;
}
.default-inner-page .sc-news-hilight .content .n-title {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  -webkit-line-clamp: 2;
  min-height: 2.8em;
  line-height: 1.4em;
  margin-bottom: 30px;
  transition: var(--transition);
}
.default-inner-page .sc-news-hilight .content .desc {
  font-size: var(--typo-md);
  color: var(--color-default);
  margin-bottom: 20px;
  -webkit-line-clamp: 3;
  min-height: 4.8em;
  line-height: 1.6em;
  transition: var(--transition);
}
.default-inner-page .sc-news-hilight .content .readmore {
  margin-top: auto;
}
.default-inner-page .sc-news-hilight .content .date,
.default-inner-page .sc-news-hilight .content .view {
  font-size: var(--typo-md);
  display: flex;
  align-items: center;
}
.default-inner-page .sc-news-hilight .content .date .icon,
.default-inner-page .sc-news-hilight .content .view .icon {
  margin-right: 8px;
  max-height: 20px;
}
.default-inner-page .sc-news-hilight .swiper-horizontal > .swiper-pagination-bullets,
.default-inner-page .sc-news-hilight .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 80px;
  text-align: center;
  padding: 15px 0;
  pointer-events: none;
  z-index: 100;
}
.default-inner-page .sc-news-hilight .swiper-pagination-bullet {
  opacity: 0.5;
  pointer-events: visible;
}
.default-inner-page .sc-news-hilight .swiper-pagination-bullet-active {
  background-color: var(--color-light);
  border-color: var(--color-light);
  opacity: 1;
}
.default-inner-page .sc-news {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent;
}
.default-inner-page .sc-news .slider-buttons {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.default-inner-page .sc-news .slider-buttons .swiper-button-next,
.default-inner-page .sc-news .slider-buttons .swiper-button-prev {
  position: static;
  transform: none;
  margin: 0;
}
.default-inner-page .sc-news-list {
  margin-top: 40px;
}
.default-inner-page .sc-news-list .news-list-area {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
}
.default-inner-page .sc-news-list .news-list-area .link {
  text-decoration: none;
}
.default-inner-page .sc-news-list .news-list-area .link:hover .n-title {
  color: var(--color-secondary);
}
.default-inner-page .sc-news-list .news-list-area .link:hover .readmore .icon-arrow-right {
  transform: translateX(5px);
}
.default-inner-page .sc-news-list .news-list-area .cover {
  width: 100%;
  padding-top: 303px;
  margin-bottom: 30px;
  overflow: hidden;
}
.default-inner-page .sc-news-list .news-list-area .cover img {
  transition: var(--transition-btn);
}
.default-inner-page .sc-news-list .news-list-area .n-title {
  font-size: 22px;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  -webkit-line-clamp: 2;
  min-height: 2.8em;
  line-height: 1.4em;
  transition: var(--transition);
  margin-bottom: 20px;
}
.default-inner-page .sc-news-list .news-list-area .desc {
  color: var(--color-default);
  -webkit-line-clamp: 3;
  min-height: 4.2em;
  line-height: 1.4em;
  transition: var(--transition);
  margin-bottom: 35px;
}
.default-inner-page .sc-news-list .news-list-area .readmore {
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  gap: 5px;
}
.default-inner-page .sc-news-list .news-list-area .readmore .icon-arrow-right {
  transition: var(--transition);
}
.default-inner-page .pagination-wrapper {
  margin-top: 80px;
}
.default-inner-page .editor-content {
  margin-top: 30px;
}

.news-page .menu-inner {
  margin-bottom: 40px;
}
.news-page .sc-news-hilight .link {
  display: block;
}
.news-page .sc-news-hilight .link .content .n-title,
.news-page .sc-news-hilight .content .desc {
  color: var(--color-light);
}
.news-page .sc-news-hilight .link:hover .content .readmore {
  color: var(--color-secondary);
}
.news-page .sc-news .news-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.news-page .topic .title {
  font-size: 36px;
  margin-block: 30px;
}
.news-page .gallery-detail-list .slider-single {
  padding: 10px 110px;
}
.news-page .gallery-detail-list .slider-single .image .cover {
  padding-top: 66.418%;
}
.news-page .gallery-detail-list .slider-single .slick-prev,
.news-page .gallery-detail-list .slider-single .slick-next {
  display: none !important;
}
.news-page .gallery-detail-list .slider-nav {
  margin-bottom: 70px;
}
.news-page .gallery-detail-list .slider-nav .wrapper .image .cover {
  padding-top: 63.335%;
}
.news-page .gallery-detail-list .slider-nav .slick-prev,
.news-page .gallery-detail-list .slider-nav .slick-next {
  top: 100%;
  transform: none;
}
.news-page .gallery-detail-list .slider-nav .slick-prev {
  left: 50%;
  transform: translateX(-54px);
}
.news-page .gallery-detail-list .slider-nav .slick-next {
  right: 50%;
  transform: translateX(54px);
}
.news-page.detail-page .sc-news-list {
  margin-top: 80px;
}

.menu-list .menuActive .link {
  color: var(--color-secondary);
}

.box-elevate {
  border-radius: 40px;
  background-color: var(--color-light);
  padding: 40px;
  box-shadow: 0 10px 0 var(--color-secondary);
  margin-bottom: 10px;
}

@media (max-width: 1500px) {
  .detail-block.-quote-cta {
    padding: 35px 45px !important;
  }
  .detail-block.-quote-cta .quote-cta-content {
    gap: 35px;
  }
  .detail-block.-quote-cta .quote-cta-text .quote-cta-title {
    font-size: 24px;
  }
  .detail-block.-quote-cta .quote-cta-text .quote-cta-desc {
    font-size: var(--typo-sm);
  }
  .detail-block.-quote-cta .btn-quote {
    padding: 0 28px;
    height: 52px;
    min-width: 160px;
    font-size: var(--typo-sm);
  }
}
@media (max-width: 1670px) {
  .default-inner-page .sc-news-hilight {
    padding: 60px;
  }
  .default-inner-page .sc-news-hilight .cover {
    width: 600px;
  }
  .default-inner-page .sc-news-hilight .content {
    padding-right: 60px;
  }
  .default-inner-page .sc-news-hilight .content .n-title {
    font-size: 26px;
  }
  .default-inner-page .sc-news-hilight .content .desc {
    font-size: var(--typo-sm);
  }
  .default-inner-page .sc-news-hilight .content .date,
  .default-inner-page .sc-news-hilight .content .view {
    font-size: var(--typo-sm);
  }
  .default-inner-page .sc-news-hilight .swiper-horizontal > .swiper-pagination-bullets,
  .default-inner-page .sc-news-hilight .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 10px;
    right: 60px;
  }
  .news-page .topic .title {
    font-size: 34px;
  }
}
@media (max-width: 1440px) {
  .topgraphic-inner .title {
    font-size: 32px;
  }
  .default-inner-page {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .default-inner-page .sc-photo-gallery .gallery-main .cover {
    padding-top: 700px;
  }
  .default-inner-page h2.title {
    font-size: 28px;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  .default-inner-page .action.-back {
    padding-top: 40px;
    margin-top: 50px;
  }
  .default-inner-page .sc-news-hilight {
    padding: 60px;
  }
  .default-inner-page .sc-news-hilight .cover {
    width: 550px;
  }
  .default-inner-page .sc-news-hilight .content {
    padding-right: 60px;
  }
  .default-inner-page .sc-news-hilight .content .n-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .default-inner-page .sc-news-hilight .swiper-horizontal > .swiper-pagination-bullets,
  .default-inner-page .sc-news-hilight .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 10px;
    right: 60px;
    padding: 13px 0;
  }
  .default-inner-page .sc-news-list {
    margin-top: 30px;
  }
  .default-inner-page .sc-news-list .news-list-area {
    gap: 30px 20px;
  }
  .default-inner-page .sc-news-list .news-list-area .cover {
    padding-top: 280px;
    margin-bottom: 20px;
  }
  .default-inner-page .sc-news-list .news-list-area .n-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .default-inner-page .sc-news-list .news-list-area .desc {
    margin-bottom: 25px;
  }
  .default-inner-page .preparing-info .icon {
    width: 120px;
  }
  .default-inner-page .preparing-info .t-title {
    font-size: 36px;
  }
  .default-inner-page .preparing-info {
    padding: 40px 0 70px 0;
  }
  .default-inner-page .preparing-info .btn {
    margin-top: 30px;
  }
  .default-inner-page .sc-dowmnload-block {
    margin-top: 80px;
  }
  .default-inner-page .pagination-wrapper {
    margin-top: 60px;
  }
  .news-page .sc-news .news-area {
    gap: 30px;
  }
  .news-page .menu-inner {
    margin-bottom: 30px;
  }
  .news-page .topic .title {
    font-size: 30px;
  }
  .box-elevate {
    border-radius: 30px;
    padding: 30px;
  }
}
@media (max-width: 1199px) {
  .topgraphic-inner {
    padding-block: 40px;
  }
  .topgraphic-inner .title {
    font-size: 26px;
  }
  .default-inner-page .sc-photo-gallery .gallery-main .cover {
    padding-top: 600px;
  }
  .default-inner-page .sc-photo-gallery .gallery-thumb {
    margin-top: -120px;
  }
  .default-inner-page .sc-photo-gallery .gallery-thumb .cover {
    padding-top: 100px;
  }
  .default-inner-page {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .default-inner-page h2.title {
    font-size: 24px;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  .default-inner-page .sc-vdo-block .iframe-container {
    padding-bottom: 500px;
  }
  .default-inner-page .action.-back {
    padding-top: 30px;
    margin-top: 40px;
  }
  .default-inner-page .sc-news-hilight {
    padding: 40px;
  }
  .default-inner-page .sc-news-hilight {
    border-radius: 24px;
  }
  .default-inner-page .sc-news-hilight .cover {
    width: 480px;
    padding-top: 70%;
    border-radius: 12px;
  }
  .default-inner-page .sc-news-hilight .content {
    padding-right: 40px;
  }
  .default-inner-page .sc-news-hilight .content .n-tag {
    font-size: var(--typo-md);
  }
  .default-inner-page .sc-news-hilight .content .n-title {
    font-size: 22px;
  }
  .default-inner-page .sc-news-hilight .swiper-horizontal > .swiper-pagination-bullets,
  .default-inner-page .sc-news-hilight .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -5px;
    right: 40px;
  }
  .default-inner-page .sc-news-list {
    margin-top: 25px;
  }
  .news-page .sc-news .news-area {
    gap: 25px;
  }
  .news-page .menu-inner {
    margin-bottom: 25px;
  }
  .news-page .topic .title {
    font-size: 26px;
  }
  .news-page.detail-page .sc-news-list {
    margin-top: 60px;
  }
  .news-page .gallery-detail-list .slider-nav .slick-prev {
    transform: translateX(-45px);
  }
  .news-page .gallery-detail-list .slider-nav .slick-next {
    transform: translateX(45px);
  }
  .default-inner-page .preparing-info {
    padding: 20px 0 40px 0;
  }
  .default-inner-page .preparing-info .icon {
    width: 100px;
    padding-bottom: 20px;
  }
  .default-inner-page .preparing-info .t-title {
    font-size: 30px;
  }
  .default-inner-page .sc-dowmnload-block {
    margin-top: 50px;
  }
  .default-inner-page .sc-news .slider-buttons {
    gap: 15px;
  }
  .default-inner-page .pagination-wrapper {
    margin-top: 50px;
  }
  .topgraphic-inner.contact {
    height: 280px;
    background-position: center bottom -80px;
  }
}
@media (max-width: 991px) {
  .default-inner-page .sc-photo-gallery .gallery-main .cover {
    padding-top: 500px;
  }
  .default-inner-page h2.title {
    font-size: 22px;
  }
  .default-inner-page .sc-dowmnload-block {
    margin-top: 40px;
  }
  .default-inner-page .action.-back {
    padding-top: 20px;
    margin-top: 30px;
  }
  .default-inner-page .sc-news-hilight {
    padding: 20px;
    border-radius: 20px;
  }
  .default-inner-page .sc-news-hilight .cover {
    width: 100%;
    padding-top: 60%;
    border-radius: 10px;
  }
  .default-inner-page .sc-news-hilight .content {
    padding: 20px 0 0 0;
  }
  .default-inner-page .sc-news-hilight .content .readmore {
    margin-top: 30px;
  }
  .default-inner-page .sc-news-hilight .swiper-horizontal > .swiper-pagination-bullets,
  .default-inner-page .sc-news-hilight .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 20px;
    right: 20px;
    left: 0;
    padding: 10px 0;
  }
  .default-inner-page .sc-news-list {
    margin-top: 20px;
  }
  .default-inner-page .sc-news-list .news-list-area {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 15px;
  }
  .default-inner-page .sc-news-list .news-list-area .n-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .default-inner-page .sc-news-list .news-list-area .desc {
    margin-bottom: 20px;
  }
  .default-inner-page .pagination-wrapper {
    margin-top: 40px;
  }
  .default-inner-page .gallery-detail-list:before {
    height: 120px;
  }
  .default-inner-page .gallery-detail-list .slider-nav {
    padding: 14px 0;
  }
  .news-page .sc-news .news-area {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .news-page .menu-inner {
    margin-bottom: 20px;
  }
  .news-page .gallery-detail-list .slider-single {
    padding: 5px 0;
  }
  .topgraphic-inner.contact {
    height: 200px;
    background-position: center bottom -40px;
  }
}
@media (max-width: 991px) {
  .detail-block.-quote-cta {
    padding: 30px 40px;
  }
  .detail-block.-quote-cta .quote-cta-content {
    gap: 30px;
  }
  .detail-block.-quote-cta .quote-cta-text .quote-cta-title {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .detail-block.-quote-cta {
    padding: 30px;
  }
  .detail-block.-quote-cta .quote-cta-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .detail-block.-quote-cta .quote-cta-text .quote-cta-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .detail-block.-quote-cta .quote-cta-text .quote-cta-desc {
    font-size: var(--typo-sm);
  }
  .detail-block.-quote-cta .quote-cta-action {
    width: 100%;
  }
  .detail-block.-quote-cta .quote-cta-action .btn-quote {
    width: 100%;
    justify-content: center;
  }
  .topgraphic-inner .title {
    font-size: 22px;
  }
  .topgraphic-inner .breadcrumb-block {
    margin-top: 20px;
  }
  .default-inner-page .sc-photo-gallery .gallery-main .cover {
    padding-top: 350px;
  }
  .default-inner-page .sc-photo-gallery .gallery-thumb {
    margin-top: -90px;
  }
  .default-inner-page .sc-photo-gallery .gallery-thumb .cover {
    padding-top: 70px;
  }
  .default-inner-page {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .default-inner-page h2.title {
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .default-inner-page .sc-vdo-block .iframe-container {
    padding-bottom: 60%;
  }
  .default-inner-page .sc-dowmnload-block {
    margin-top: 40px;
  }
  .default-inner-page .sc-dowmnload-block .wrapper > .row {
    height: auto;
    padding: 15px;
  }
  .default-inner-page .sc-dowmnload-block .wrapper .action {
    margin-left: 40px;
    padding-top: 10px;
  }
  .default-inner-page .sc-news-hilight .content .n-tag {
    font-size: var(--typo-sm);
  }
  .default-inner-page .sc-news-hilight .content .n-title {
    font-size: var(--typo-md);
  }
  .default-inner-page .sc-news-hilight .content .desc {
    font-size: var(--typo-default);
  }
  .default-inner-page .sc-news-hilight .content .readmore {
    font-size: var(--typo-sm);
    margin-top: 20px;
  }
  .default-inner-page .sc-news-list .news-list-area {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
  .default-inner-page .preparing-info {
    padding: 10px 0 20px 0;
  }
  .default-inner-page .preparing-info .icon {
    width: 80px;
  }
  .default-inner-page .preparing-info .t-title {
    font-size: 24px;
  }
  .default-inner-page .preparing-info .desc {
    font-size: var(--typo-md);
  }
  .default-inner-page .preparing-info .btn {
    margin-top: 20px;
  }
  .default-inner-page .gallery-detail-list .slider-nav .slick-prev {
    left: 10px;
  }
  .default-inner-page .gallery-detail-list .slider-nav .slick-next {
    right: 10px;
  }
  .default-inner-page .gallery-detail-list .slider-nav {
    padding: 10px 0;
  }
  .default-inner-page .gallery-detail-list .slider-nav .slick-list {
    margin: 0 -5px;
  }
  .default-inner-page .gallery-detail-list .slider-nav .slick-list .item {
    padding: 0 5px;
  }
  .default-inner-page .editor-content {
    margin-top: 20px;
  }
  .default-inner-page .sc-news .slider-buttons {
    gap: 10px;
  }
  .news-page .topic .title {
    font-size: 24px;
    margin-block: 20px;
  }
  .news-page .gallery-detail-list .slider-nav {
    margin-bottom: 0;
  }
  .news-page .gallery-detail-list .slider-nav {
    padding-left: 45px;
    padding-right: 45px;
  }
  .news-page .gallery-detail-list .slider-nav .slick-prev,
  .news-page .gallery-detail-list .slider-nav .slick-next {
    top: 50%;
    transform: translateY(-50%);
  }
  .news-page .gallery-detail-list .slider-nav .slick-prev {
    left: 0;
  }
  .news-page .gallery-detail-list .slider-nav .slick-next {
    right: 0;
  }
  .box-elevate {
    border-radius: 20px;
    padding: 20px;
  }
  .topgraphic-inner.contact {
    background-position: center bottom 0px;
  }
}
@media (max-width: 575px) {
  .topgraphic-inner {
    padding-block: 20px;
  }
  .topgraphic-inner .title {
    font-size: 20px;
  }
  .default-inner-page .sc-news-list .news-list-area {
    grid-template-columns: repeat(1, 1fr);
  }
  .default-inner-page .sc-news .slider-buttons {
    justify-content: end;
  }
  .default-inner-page .sc-dowmnload-block .desc {
    font-size: 11px;
  }
  .news-page .topic .title {
    font-size: 22px;
  }
  .news-page .sc-news .news-area {
    grid-template-columns: repeat(1, 1fr);
  }
}
.product-cat-page .sc-side-collapes {
  width: 300px;
}
.product-cat-page .sc-side-collapes .collapse-group + .collapse-group {
  border-top: 2px solid var(--color-light);
}
.product-cat-page .sc-side-collapes .collapse-group .collapse-box + .collapse-box {
  border-top: 2px solid var(--color-light);
}
.product-cat-page .sc-side-collapes .collapse-group .collapse-btn.-out {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background-color: var(--color-primary);
  font-size: var(--typo-sm);
  font-weight: var(--fw-bold);
  color: var(--color-light);
  transition: var(--transition);
  cursor: pointer;
  gap: 10px;
}
.product-cat-page .sc-side-collapes .collapse-group .collapse-btn.-out.active {
  background-color: var(--color-secondary);
}
.product-cat-page .sc-side-collapes .collapse-group .collapse-btn.-out span {
  font-family: "feather";
  margin-right: -8px;
}
.product-cat-page .sc-side-collapes .collapse-group .collapse-btn.-out span::before {
  content: "\e844";
  font-size: 26px;
}
.product-cat-page .sc-side-collapes .collapse-group .collapse-btn.-in {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background-color: #EBEBEB;
  font-size: var(--typo-xs);
  font-weight: var(--fw-bold);
  transition: var(--transition);
  cursor: pointer;
}
.product-cat-page .sc-side-collapes .collapse-group .collapse-btn.-in.active span::before {
  content: "\e897";
}
.product-cat-page .sc-side-collapes .collapse-group .collapse-btn.-in span {
  font-family: "feather";
  margin-right: -8px;
  transition: var(--transition);
}
.product-cat-page .sc-side-collapes .collapse-group .collapse-btn.-in span::before {
  content: "\e8b1";
  font-size: var(--typo-xs);
}
.product-cat-page .sc-side-collapes .collapse-group .item-list {
  padding: 10px 0;
  background-color: #F4F4F4;
}
.product-cat-page .sc-side-collapes .collapse-group .item-list li {
  width: 100%;
}
.product-cat-page .sc-side-collapes .collapse-group .item-list .link {
  font-size: var(--typo-xs);
  text-decoration: none;
  padding: 0 20px;
  height: 30px;
  display: flex;
  align-items: center;
  color: var(--color-default);
  transition: var(--transition);
}
.product-cat-page .sc-side-collapes .collapse-group .item-list .link::before {
  font-family: "feather";
  content: "\e844";
  transition: var(--transition);
}
.product-cat-page .sc-side-collapes .collapse-group .item-list .link.active, .product-cat-page .sc-side-collapes .collapse-group .item-list .link:hover {
  color: var(--color-secondary);
}
.product-cat-page .sc-side-collapes .collapse-group .item-list .link.active::before, .product-cat-page .sc-side-collapes .collapse-group .item-list .link:hover::before {
  color: var(--color-secondary);
}
.product-cat-page .sc-news-list > .link {
  text-decoration: none;
  display: block;
}
.product-cat-page .sc-news-list > .link + .link {
  margin-top: 20px;
}
.product-cat-page .sc-news-list > .link:hover .cover img {
  transform: scale(1.1);
}
.product-cat-page .sc-news-list > .link:hover .content {
  background-color: var(--color-primary);
}
.product-cat-page .sc-news-list > .link:hover .n-title,
.product-cat-page .sc-news-list > .link:hover .desc {
  color: var(--color-light);
}
.product-cat-page .sc-news-list > .link:hover .readmore .icon-arrow-right {
  transform: translateX(5px);
}
.product-cat-page .sc-news-list > .link .cover {
  width: 300px;
  padding-top: 200px;
  overflow: hidden;
}
.product-cat-page .sc-news-list > .link .cover img {
  transition: var(--transition-btn);
}
.product-cat-page .sc-news-list > .link .content {
  padding: 20px;
  background-color: #F4F4F4;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}
.product-cat-page .sc-news-list > .link .n-title {
  font-size: var(--typo-lg);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  -webkit-line-clamp: 2;
  min-height: 2.8em;
  line-height: 1.4em;
  transition: var(--transition);
  margin-bottom: 10px;
}
.product-cat-page .sc-news-list > .link .desc {
  font-size: var(--typo-sm);
  color: var(--color-default);
  -webkit-line-clamp: 2;
  min-height: 2.8em;
  line-height: 1.4em;
  transition: var(--transition);
}
.product-cat-page .sc-news-list > .link .readmore {
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  height: 15px;
}
.product-cat-page .sc-news-list > .link .readmore .icon-arrow-right {
  transition: var(--transition);
}

.product-cate-detail {
  max-width: 960px;
}
.product-cate-detail .gallery-detail-list:before {
  height: 110px;
}
.product-cate-detail .gallery-detail-list .slider-nav {
  padding: 10px 350px 10px 100px;
}
.product-cate-detail .gallery-detail-list .slider-single .image {
  height: 600px;
}
.product-cate-detail .gallery-detail-list .slider-nav .wrapper {
  height: 90px;
}
.product-cate-detail .whead-topic h2 {
  font-size: var(--typo-lg);
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  margin-top: 30px;
}
.product-cate-detail .sc-dowmnload-block .download-list .item + .item {
  margin-top: 20px;
}

@media (max-width: 1600px) {
  .product-cate-detail {
    max-width: 860px;
  }
}
@media (max-width: 1440px) {
  .product-cat-page .sc-side-collapes .collapse-group .collapse-btn.-out span::before {
    font-size: 24px;
  }
  .product-cate-detail .gallery-detail-list .slider-single .image {
    height: 500px;
  }
  .product-cate-detail .gallery-detail-list .slider-nav {
    padding: 10px 250px 10px 100px;
  }
}
@media (max-width: 1199px) {
  .product-cat-page .sc-side-collapes .collapse-group .collapse-btn.-out {
    min-height: 50px;
    padding: 12px 15px;
  }
  .product-cat-page .sc-side-collapes .collapse-group .collapse-btn.-out span::before {
    font-size: 20px;
  }
  .product-cat-page .sc-side-collapes .collapse-group .collapse-btn.-in {
    height: 38px;
    padding: 0 15px;
  }
  .product-cat-page .sc-side-collapes .collapse-group .collapse-btn.-in span {
    margin-right: -4px;
  }
  .product-cat-page .sc-side-collapes .collapse-group .item-list {
    padding: 5px 0;
  }
  .product-cat-page .sc-side-collapes .collapse-group .item-list .link {
    padding: 0 15px;
  }
  .product-cat-page .sc-side-collapes .collapse-group .item-list .link::before {
    height: 28px;
  }
  .product-cate-detail {
    max-width: 790px;
  }
}
@media (max-width: 991px) {
  .product-cat-page .sc-side-collapes {
    width: 100%;
    margin-bottom: 20px;
  }
  .product-cat-page .sc-news-list > .link .content {
    padding: 15px;
  }
  .product-cat-page .sc-news-list > .link + .link {
    margin-top: 15px;
  }
  .product-cate-detail {
    max-width: 100%;
  }
  .product-cate-detail .gallery-detail-list .slider-nav {
    padding: 10px 100px;
  }
}
@media (max-width: 767px) {
  .product-cat-page .sc-news-list > .link .cover {
    width: 100%;
  }
  .product-cat-page .sc-news-list > .link .n-title {
    font-size: var(--typo-md);
  }
  .product-cat-page .sc-news-list > .link .desc {
    font-size: var(--typo-default);
    margin-bottom: 20px;
  }
  .product-cate-detail .sc-dowmnload-block .download-list .item + .item {
    margin-top: 15px;
  }
  .product-cate-detail .gallery-detail-list .slider-nav {
    padding: 10px 60px;
  }
  .product-cate-detail .gallery-detail-list .slider-nav .wrapper {
    height: 80px;
  }
}
@media (max-width: 767px) {
  .product-cate-detail .gallery-detail-list .slider-single .image {
    height: 370px;
  }
}
.contact-page {
  background-image: url(../img/background/contact-us-bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
}
.contact-page .contact-form {
  max-width: 660px;
  padding: 44px;
  background-color: var(--color-light);
  border-radius: 32px;
  position: relative;
  z-index: 20;
  margin-top: 90px;
  margin-bottom: -120px;
}
.contact-page .form-default .form-group.has-error .form-control {
  border-color: var(--color-danger);
}
.contact-page .form-default .form-group.has-success .form-control-feedback {
  opacity: 0;
}
.contact-page .form-default .form-group .form-control {
  height: 60px;
  border-radius: 30px;
  font-size: var(--typo-default);
}
.contact-page .form-default .form-group .form-control::-moz-placeholder {
  color: var(--color-black);
  text-transform: uppercase;
}
.contact-page .form-default .form-group .form-control::placeholder {
  color: var(--color-black);
  text-transform: uppercase;
}
.contact-page .form-default .form-group textarea.form-control {
  height: 120px;
  border-radius: 16px;
}
.contact-page .form-default .form-group .form-control-feedback {
  background-image: none;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
  color: var(--color-secondary);
  font-size: var(--typo-lg);
}
.contact-page .form-default .form-group .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--color-black);
}
.contact-page .form-default .form-group .select2-container--default .select2-selection--single .select2-selection__placeholder,
.contact-page .form-default .form-group .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: var(--typo-default);
}
.contact-page .form-subtitle {
  color: var(--color-secondary);
  font-size: var(--typo-md);
  font-weight: var(--fw-bold);
  margin-bottom: 15px;
}
.contact-page .form-title {
  color: var(--color-black);
  font-size: 28px;
  font-weight: var(--fw-bold);
  margin-bottom: 40px;
}
.contact-page .action {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-gray);
}
.contact-page .file-upload {
  width: -moz-max-content;
  width: max-content;
}
.contact-page .file-upload .file {
  display: none;
}
.contact-page .file-upload .file-upload-group {
  display: flex;
}
.contact-page .file-upload .file-upload-group .file-name {
  height: 60px;
  border: none;
  padding: 15px 45px 15px 15px;
  display: flex;
  width: 180px;
  pointer-events: none;
}
.contact-page .file-upload .file-upload-group .btn {
  background: linear-gradient(to right, #417bbb 0%, #002359 100%);
  margin-left: -30px;
}
.contact-page .block-address {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 60px;
}
.contact-page .block-address .h-title {
  color: var(--color-primary);
  font-size: 36px;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
}
.contact-page .block-address .desc {
  font-size: 30px;
  font-weight: var(--fw-bold);
}
.contact-page .block-address .block-group {
  margin-top: 45px;
}
.contact-page .block-address .block-group .item-list li {
  width: 100%;
}
.contact-page .block-address .block-group .item-list li + li {
  margin-top: 24px;
}
.contact-page .block-address .block-group .item-list .wrapper {
  display: flex;
  gap: 15px;
}
.contact-page .block-address .block-group .item-list .wrapper .icon {
  width: 56px;
  height: 56px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-page .block-address .block-group .item-list .wrapper .icon img {
  width: 24px;
  height: auto;
}
.contact-page .block-address .block-group .item-list .link {
  color: var(--color-default);
  text-decoration: none;
  transition: var(--transition);
}
.contact-page .block-address .block-group .item-list .link:hover {
  color: var(--color-secondary);
}
.contact-page .block-address .block-group .item-list .label {
  color: var(--color-secondary);
  font-size: var(--typo-md);
  font-weight: var(--fw-bold);
  margin-top: 2px;
  margin-bottom: 5px;
}
.contact-page .block-address .block-group .item-list .group {
  margin-bottom: 15px;
}
.contact-page .block-address .block-group .item-list .group:last-child {
  margin-bottom: 0;
}
.contact-page .block-address .action {
  margin-top: 60px;
}
.contact-page .block-address .action .item-list {
  margin: 0 -10px;
}
.contact-page .block-address .action .item-list li {
  padding: 0 10px;
}
.contact-page .maps {
  margin: 0 45px;
  border-radius: 40px;
  overflow: hidden;
  z-index: 1;
}
.contact-page .maps .iframe-container {
  padding-bottom: 29.946%;
}

.modal-complete .modal-dialog {
  max-width: 740px;
}
.modal-complete .modal-content {
  border-radius: 0;
  position: relative;
  background-image: url(../img/background/bg-modal-complete.png);
  background-size: cover;
  padding: 80px 0;
  text-align: center;
  border: none;
  z-index: 1;
}
.modal-complete .modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  opacity: 0.6;
  z-index: auto;
}
.modal-complete .modal-content .icon {
  margin-bottom: 30px;
}
.modal-complete .modal-content .title {
  font-size: 40px;
  font-weight: var(--fw-bold);
  color: var(--color-light);
  margin-bottom: 10px;
  line-height: 1em;
}
.modal-complete .modal-content .desc {
  font-size: var(--typo-lg);
  color: var(--color-light);
}
.modal-complete .modal-content .btn {
  margin-top: 40px;
}

@media (max-width: 1440px) {
  .contact-page .block {
    max-width: 600px;
    padding: 30px;
  }
  .contact-page .file-upload .file-upload-group .file-name {
    height: 50px;
  }
  .contact-page .block-address {
    padding-bottom: 30px;
  }
  .contact-page .block-address .h-title {
    font-size: 32px;
  }
  .contact-page .block-address .desc {
    font-size: 26px;
  }
  .contact-page .contact-form {
    max-width: 600px;
    margin-top: 83px;
    margin-bottom: -114px;
  }
  .contact-page .form-title {
    font-size: var(--typo-lg);
  }
  .modal-complete .modal-dialog {
    max-width: 650px;
  }
  .modal-complete .modal-content {
    padding: 60px 0;
  }
  .modal-complete .modal-content .title {
    font-size: 36px;
  }
}
@media (max-width: 1199px) {
  .contact-page .form-default .form-group .form-control {
    height: 50px;
    border-radius: 25px;
  }
  .contact-page .block-address .h-title {
    font-size: 28px;
  }
  .contact-page .block-address .desc {
    font-size: 22px;
  }
  .contact-page .block-address .block-group {
    margin-top: 40px;
  }
  .contact-page .block-address .block-group .item-list .wrapper .icon {
    width: 50px;
    height: 50px;
  }
  .contact-page .block-address .block-group .item-list .wrapper .icon img {
    width: 24px;
  }
  .contact-page .block-address .action {
    margin-top: 50px;
  }
  .contact-page .block-address .action .item-list {
    margin: 0 -5px;
  }
  .contact-page .block-address .action .item-list li {
    padding: 0 5px;
  }
  .contact-page .form-subtitle {
    margin-bottom: 10px;
  }
  .contact-page .form-title {
    margin-bottom: 30px;
  }
  .contact-page .contact-form {
    max-width: 560px;
    margin-top: 75px;
    border-radius: 24px;
    padding: 32px;
  }
  .contact-page .maps {
    margin: 0 20px;
    border-radius: 30px;
  }
  .contact-page .maps .iframe-container {
    padding-bottom: 56%;
  }
  .modal-complete .modal-dialog {
    max-width: 550px;
  }
  .modal-complete .modal-content {
    padding: 40px 15px;
  }
  .modal-complete .modal-content .icon {
    margin-bottom: 20px;
  }
  .modal-complete .modal-content .icon svg {
    transform: scale(0.8);
  }
  .modal-complete .modal-content .title {
    font-size: 32px;
  }
  .modal-complete .modal-content .btn {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .contact-page .block {
    max-width: 100%;
    padding: 20px 15px;
  }
  .contact-page .block-address .desc {
    font-size: 20px;
  }
  .contact-page .form-default .form-group .form-control {
    height: 44px;
    min-height: 44px;
    border-radius: 22px;
  }
  .contact-page .contact-form {
    max-width: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .contact-page .maps {
    margin: 0 15px;
    border-radius: 24px;
  }
}
@media (max-width: 767px) {
  .contact-page .form-default .form-group .select2-container--default .select2-selection--single .select2-selection__placeholder,
  .contact-page .form-default .form-group .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: var(--typo-sm);
  }
  .contact-page .file-upload {
    width: 100%;
  }
  .contact-page .file-upload .file-upload-group .btn {
    margin-top: 0;
  }
  .contact-page .file-upload .file-upload-group .file-name {
    height: 42px;
  }
  .contact-page .action .btn {
    width: 100%;
    margin-top: 15px;
  }
  .contact-page .block-address {
    padding-bottom: 20px;
  }
  .contact-page .block-address .h-title {
    font-size: 24px;
  }
  .contact-page .block-address .desc {
    font-size: 18px;
  }
  .contact-page .block-address .block-group {
    margin-top: 20px;
  }
  .contact-page .block-address .block-group .item-list li + li {
    margin-top: 20px;
  }
  .contact-page .block-address .block-group .item-list .wrapper .icon {
    width: 44px;
    height: 44px;
  }
  .contact-page .block-address .block-group .item-list .wrapper .icon img {
    width: 20px;
  }
  .contact-page .block-address .block-group .item-list .wrapper {
    gap: 12px;
  }
  .contact-page .block-address .block-group .item-list .group {
    margin-bottom: 12px;
  }
  .contact-page .block-address .action {
    margin-top: 30px;
  }
  .contact-page .contact-form {
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
  }
  .contact-page .form-title {
    margin-bottom: 25px;
  }
  .contact-page .maps {
    border-radius: 16px;
  }
  .modal-complete .modal-body {
    padding: 20px 15px;
  }
  .modal-complete .modal-content {
    padding: 0;
  }
  .modal-complete .modal-content .icon {
    margin-bottom: 0;
  }
  .modal-complete .modal-content .icon svg {
    transform: scale(0.6);
  }
  .modal-complete .modal-content .title {
    font-size: 22px;
  }
  .modal-complete .modal-content .desc {
    font-size: var(--typo-sm);
  }
  .modal-complete .modal-content .btn {
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .contact-page .block-address .block-group .item-list li + li {
    margin-top: 15px;
  }
}
.layout-about .menu-inner {
  margin: 0;
}
.layout-about .default-inner-page {
  padding: 0;
}

.ck-company .company-p-top {
  background-image: url(../img/background/company-sc-top.png);
  background-position: bottom;
  padding: 100px 0 370px 0;
}
.ck-company .company-p-bottom {
  padding: 100px 0 0 0;
}
.ck-company .company-p-bottom > .container {
  background-color: var(--color-light);
  padding-bottom: 70px;
  position: relative;
  z-index: 2;
}
.ck-company .sc-energy-orbit {
  margin-bottom: 100px;
}
.ck-company .sc-energy-orbit .ck-title {
  font-size: var(--typo-xl);
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  margin-bottom: 40px;
}
.ck-company .sc-energy-orbit .sub-title {
  font-size: 32px;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: 1.4em;
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.ck-company .sc-energy-orbit .sub-title::before {
  content: "";
  width: 100px;
  height: 2px;
  background-color: var(--color-secondary);
  position: absolute;
  bottom: 0;
  left: 0;
}
.ck-company .sc-info .info-content-wrapper + .info-content-wrapper {
  margin-top: 50px;
}
.ck-company .sc-info .info-content-wrapper .icon {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}
.ck-company .sc-info .info-content-wrapper .icon img {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}
.ck-company .sc-info .info-content-wrapper .icon::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ck-company .sc-info .info-content-wrapper .c-title {
  font-size: var(--typo-lg);
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  margin-bottom: 20px;
  text-align: center;
}
.ck-company .sc-info .info-content-wrapper .desc {
  text-align: center;
}
.ck-company .sc-info .info-content-wrapper.secondary .icon::before {
  background-image: url(../img/icon/c-hr-secondary.svg);
}
.ck-company .sc-info .info-content-wrapper.primary .icon::before {
  background-image: url(../img/icon/c-hr-primary.svg);
}
.ck-company .sc-global-energy {
  margin-bottom: 100px;
}
.ck-company .sc-global-energy .c-title {
  font-size: 32px;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: 60px;
  text-align: center;
}
.ck-company .sc-global-energy .global-energy-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.ck-company .sc-global-energy .global-energy-list .item {
  height: 400px;
  padding: 50px;
  text-align: center;
}
.ck-company .sc-global-energy .global-energy-list .item.has-bg {
  background-color: #FFFAF7;
}
.ck-company .sc-global-energy .global-energy-list .item .icon {
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  margin-bottom: 20px;
}
.ck-company .sc-global-energy .global-energy-list .item strong {
  font-size: var(--typo-lg);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: 20px;
  display: block;
  line-height: 1.4em;
}
.ck-company .sc-elevate {
  text-align: center;
}
.ck-company .sc-elevate .elevate-list {
  max-width: 860px;
  margin: auto;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 90px;
  overflow: hidden;
}
.ck-company .sc-elevate .elevate-list .item {
  position: relative;
  overflow: visible;
}
.ck-company .sc-elevate .elevate-list .item::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  right: -90px;
  transform: translateY(-50%);
}
.ck-company .sc-elevate .elevate-list .item:nth-child(odd)::before {
  background: linear-gradient(to right, #ff560f 0%, #02255c 100%);
}
.ck-company .sc-elevate .elevate-list .item:nth-child(even)::before {
  background: linear-gradient(to right, #02255c 0%, #ff560f 100%);
}
.ck-company .sc-elevate .elevate-list .item:last-child::before {
  display: none;
}
.ck-company .sc-elevate .c-title {
  font-size: 30px;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: 30px;
}
.ck-company .image-graphic {
  margin-top: -230px;
}
.ck-company .image-graphic .cover {
  padding-top: 1000px;
}

.ck-mission {
  position: relative;
}
.ck-mission .cover {
  padding-top: 1500px;
}
.ck-mission .mission-area {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  padding: 100px 0 150px 0;
}
.ck-mission .mission-area > .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ck-mission .mission-area .content {
  text-align: center;
}
.ck-mission .mission-area .content .c-title {
  font-size: 40px;
  font-weight: var(--fw-bold);
  line-height: 1em;
  margin-bottom: 30px;
}
.ck-mission .mission-area .content .desc {
  font-size: 18px;
}
.ck-mission .mission-area .mission-top .desc {
  margin-bottom: 60px;
}
.ck-mission .mission-area .mission-top .content:nth-child(2) {
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  position: relative;
  padding: 0 90px;
}
.ck-mission .mission-area .mission-top .content:nth-child(2) strong {
  font-size: 28px;
  font-weight: var(--fw-black);
  color: var(--color-primary);
  line-height: 1.4em;
}
.ck-mission .mission-area .mission-top .content:nth-child(2) span {
  position: absolute;
  top: 0;
  margin-top: -80px;
}
.ck-mission .mission-area .mission-top .content:nth-child(2) span.-I {
  left: 0;
}
.ck-mission .mission-area .mission-top .content:nth-child(2) span.-II {
  right: 0;
}
.ck-mission .mission-area .mission-bottom .c-title {
  color: var(--color-light);
}
.ck-mission .mission-area .mission-bottom .desc {
  color: var(--color-light);
}

.ck-history {
  padding: 100px 0 200px;
  background-image: url(../img/background/bg-about-team.png);
  background-position: bottom;
}
.ck-history .c-title {
  font-size: 32px;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}
.ck-history .desc {
  font-size: 18px;
}
.ck-history .history-area {
  margin-top: 70px;
  padding-left: 50px;
}
.ck-history .history-area > .row + .row {
  padding-top: 50px;
}
.ck-history .history-area > .row {
  margin: 0 -25px;
}
.ck-history .history-area > .row > div {
  padding: 0 25px;
}

.ck-team {
  padding: 100px 0 200px;
  background-image: url(../img/background/bg-about-team.png);
  background-position: bottom;
}
.ck-team .c-title {
  font-size: 30px;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: 1.4em;
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.ck-team .c-title::before {
  content: "";
  width: 100px;
  height: 2px;
  background-color: var(--color-secondary);
  position: absolute;
  bottom: 0;
  left: 0;
}
.ck-team .desc {
  font-size: 18px;
}
.ck-team .team-wrapper {
  position: relative;
}
.ck-team .team-wrapper + .team-wrapper {
  margin-top: 150px;
}
.ck-team .team-wrapper .row {
  margin: 0 -25px;
  position: relative;
  z-index: 1;
}
.ck-team .team-wrapper .row > div {
  padding: 0 25px;
}
.ck-team .team-wrapper:nth-child(1) .cover {
  width: 530px;
  padding-top: 447px;
}
.ck-team .team-wrapper:nth-child(1) .obj {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-left: -50px;
  margin-bottom: -50px;
}
.ck-team .team-wrapper:nth-child(2) .cover {
  width: 500px;
  padding-top: 379px;
  margin-right: 15px;
}
.ck-team .team-wrapper:nth-child(2) .obj {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: -50px;
  margin-right: -50px;
}

.ck-area .content + .content {
  margin-top: 30px;
}
.ck-area .content.number ul li {
  list-style: none;
}
.ck-area .content.number ul li ul > li {
  list-style: circle;
}
.ck-area .content.number ul li ul > li + li {
  margin-top: 5px;
}
.ck-area .content h3 {
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  margin-bottom: 10px;
}
.ck-area .content ul li + li {
  margin-top: 10px;
}

@media (max-width: 1440px) {
  .ck-company .company-p-top {
    padding: 80px 0 340px 0;
  }
  .ck-company .company-p-bottom {
    padding: 80px 0 0 0;
  }
  .ck-company .sc-energy-orbit .ck-title {
    margin-bottom: 30px;
  }
  .ck-company .sc-energy-orbit .sub-title {
    font-size: 28px;
  }
  .ck-company .sc-global-energy {
    margin-bottom: 80px;
  }
  .ck-company .sc-global-energy .c-title {
    font-size: 30px;
    margin-bottom: 50px;
  }
  .ck-company .sc-global-energy .global-energy-list .item {
    height: 350px;
    padding: 40px;
  }
  .ck-company .sc-elevate .c-title {
    font-size: 28px;
  }
  .ck-company .image-graphic {
    margin-top: -200px;
  }
  .ck-company .image-graphic .cover {
    padding-top: 800px;
  }
  .ck-mission .cover {
    padding-top: 1300px;
  }
  .ck-mission .mission-area {
    padding: 80px 0 130px 0;
  }
  .ck-mission .mission-area .content .c-title {
    font-size: 36px;
  }
  .ck-history {
    padding: 80px 0 160px;
  }
  .ck-history .c-title {
    font-size: 28px;
  }
  .ck-history .history-area {
    margin-top: 50px;
    padding-left: 40px;
  }
  .ck-history .history-area > .row + .row {
    padding-top: 40px;
  }
  .ck-history .history-area > .row {
    margin: 0 -15px;
  }
  .ck-history .history-area > .row > div {
    padding: 0 15px;
  }
  .ck-history .icon {
    transform: scale(0.9);
  }
  .ck-history .desc br {
    display: none;
  }
  .ck-team {
    padding: 80px 0 160px;
  }
  .ck-team .team-wrapper + .team-wrapper {
    margin-top: 100px;
  }
  .ck-team .team-wrapper .row {
    margin: 0 -15px;
  }
  .ck-team .team-wrapper .row > div {
    padding: 0 15px;
  }
  .ck-team .c-title {
    font-size: 26px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .ck-team .desc br {
    display: none;
  }
  .ck-team .team-wrapper:nth-child(1) .cover {
    width: 500px;
    padding-top: 430px;
  }
  .ck-team .team-wrapper:nth-child(1) .obj {
    margin-left: -25px;
    margin-bottom: -25px;
    max-width: 150px;
  }
}
@media (max-width: 1199px) {
  .ck-company .desc br {
    display: none;
  }
  .ck-company .company-p-top {
    padding: 60px 0 300px 0;
  }
  .ck-company .company-p-bottom {
    padding: 60px 0 0 0;
  }
  .ck-company .company-p-bottom > .container {
    padding-bottom: 60px;
  }
  .ck-company .sc-energy-orbit {
    margin-bottom: 80px;
  }
  .ck-company .sc-energy-orbit .ck-title {
    margin-bottom: 15px;
  }
  .ck-company .sc-energy-orbit .sub-title {
    font-size: 24px;
  }
  .ck-company .sc-global-energy {
    margin-bottom: 50px;
  }
  .ck-company .sc-global-energy .c-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .ck-company .sc-global-energy .global-energy-list .item {
    height: 300px;
    padding: 30px;
  }
  .ck-company .sc-global-energy .global-energy-list .item .icon {
    width: 80px;
    margin-bottom: 15px;
  }
  .ck-company .sc-global-energy .global-energy-list .item strong {
    margin-bottom: 10px;
  }
  .ck-company .sc-elevate .elevate-list {
    margin-bottom: 40px;
  }
  .ck-company .sc-elevate .c-title {
    margin-bottom: 15px;
  }
  .ck-company .image-graphic {
    margin-top: -100px;
  }
  .ck-company .image-graphic .cover {
    padding-top: 500px;
  }
  .ck-mission .mission-area {
    padding: 60px 0 80px 0;
  }
  .ck-mission .mission-area .content .c-title {
    font-size: var(--typo-xxl);
    margin-bottom: 20px;
  }
  .ck-mission .mission-area .content .desc br {
    display: none;
  }
  .ck-mission .mission-area .mission-top .desc {
    margin-bottom: 40px;
  }
  .ck-mission .mission-area .mission-top .content:nth-child(2) {
    padding: 0 70px;
  }
  .ck-mission .mission-area .mission-top .content:nth-child(2) strong {
    font-size: 24px;
  }
  .ck-mission .mission-area .mission-top .content:nth-child(2) span {
    transform: scale(0.7);
  }
  .ck-history {
    padding: 60px 0 100px;
  }
  .ck-history .c-title {
    font-size: 24px;
  }
  .ck-history .history-area {
    margin-top: 30px;
    padding-left: 0;
  }
  .ck-history .history-area > .row + .row {
    padding-top: 30px;
  }
  .ck-history .history-area > .row {
    margin: 0 -7.5px;
  }
  .ck-history .history-area > .row > div {
    padding: 0 7.5px;
  }
  .ck-history .desc {
    font-size: 16px;
  }
  .ck-history .icon {
    transform: scale(0.8);
  }
  .ck-team {
    padding: 60px 0 100px;
  }
  .ck-team .team-wrapper + .team-wrapper {
    margin-top: 60px;
  }
  .ck-team .team-wrapper .row {
    margin: 0 -10px;
  }
  .ck-team .team-wrapper .row > div {
    padding: 0 10px;
  }
  .ck-team .c-title {
    font-size: 22px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .ck-team .desc {
    font-size: 16px;
  }
  .ck-team .team-wrapper:nth-child(1) .cover {
    width: 500px;
    padding-top: 380px;
  }
  .ck-team .team-wrapper:nth-child(2) .cover {
    margin: 0;
  }
  .ck-team .team-wrapper:nth-child(2) .obj {
    display: none;
  }
}
@media (max-width: 991px) {
  .ck-company .company-p-top {
    padding: 40px 0 40px 0;
    background-position: center;
  }
  .ck-company .company-p-bottom {
    padding: 40px 0 0 0;
  }
  .ck-company .company-p-bottom > .container {
    padding-bottom: 40px;
  }
  .ck-company .sc-energy-orbit {
    margin-bottom: 50px;
  }
  .ck-company .sc-energy-orbit .sub-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .ck-company .sc-info .info-content-wrapper .icon {
    margin-bottom: 20px;
  }
  .ck-company .sc-info .info-content-wrapper .icon img {
    width: 100px;
  }
  .ck-company .sc-info .info-content-wrapper .c-title {
    margin-bottom: 10px;
  }
  .ck-company .sc-info .info-content-wrapper + .info-content-wrapper {
    margin-top: 40px;
  }
  .ck-company .sc-global-energy {
    margin-bottom: 40px;
  }
  .ck-company .sc-global-energy .c-title {
    margin-bottom: 25px;
  }
  .ck-company .sc-global-energy .global-energy-list .item {
    height: 280px;
    padding: 20px;
  }
  .ck-company .sc-elevate .c-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .ck-company .image-graphic {
    margin-top: 0;
  }
  .ck-company .image-graphic .cover {
    padding-top: 60%;
  }
  .ck-mission .mission-area {
    padding: 40px 0;
  }
  .ck-mission .mission-area .content .desc {
    font-size: var(--typo-md);
  }
  .ck-mission .mission-area .mission-top .content:nth-child(2) strong {
    font-size: var(--typo-lg);
  }
  .ck-mission .mission-area .mission-top .content:nth-child(2) span {
    transform: scale(0.5);
    margin-top: -90px;
  }
  .ck-history {
    padding: 40px 0 60px;
  }
  .ck-history .c-title {
    font-size: 20px;
  }
  .ck-history .icon {
    transform: scale(0.7);
  }
  .ck-team {
    padding: 40px 0 60px;
    background-size: cover;
  }
  .ck-team .team-wrapper + .team-wrapper {
    margin-top: 40px;
  }
  .ck-team .c-title {
    font-size: 20px;
  }
  .ck-team .team-wrapper:nth-child(1) .cover {
    width: 100%;
    padding-top: 40%;
  }
  .ck-team .team-wrapper:nth-child(1) .row {
    flex-direction: column-reverse;
  }
  .ck-team .team-wrapper .content {
    margin-bottom: 15px;
  }
  .ck-team .team-wrapper:nth-child(1) .obj {
    display: none;
  }
  .ck-team .team-wrapper:nth-child(2) .cover {
    width: 100%;
    padding-top: 40%;
  }
}
@media (max-width: 767px) {
  .ck-company .sc-energy-orbit .ck-title {
    margin-bottom: 10px;
  }
  .ck-company .sc-energy-orbit .sub-title {
    font-size: var(--typo-md);
  }
  .ck-company .sc-info .info-content-wrapper .icon::before {
    background-size: contain;
  }
  .ck-company .sc-global-energy .c-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .ck-company .sc-global-energy .global-energy-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .ck-company .sc-global-energy .global-energy-list .item {
    height: auto;
  }
  .ck-company .sc-global-energy .global-energy-list .item .icon {
    width: 60px;
  }
  .ck-company .sc-elevate .c-title {
    font-size: 20px;
  }
  .ck-mission .cover {
    opacity: 0;
    padding-top: 0;
  }
  .ck-mission .mission-area {
    position: relative;
  }
  .ck-mission .mission-area::before {
    content: "";
    background-image: url(../img/background/bg-about-mision.png);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .ck-mission .mission-area > .container {
    height: auto;
    gap: 30px;
  }
  .ck-mission .mission-area .content .c-title {
    margin-bottom: 15px;
  }
  .ck-mission .mission-area .content .desc {
    font-size: var(--typo-default);
  }
  .ck-mission .mission-area .mission-top .desc {
    margin-bottom: 30px;
  }
  .ck-mission .mission-area .mission-top .content:nth-child(2) {
    width: auto;
    padding: 0 20px;
  }
  .ck-mission .mission-area .mission-top .content:nth-child(2) span.-I {
    left: -20px;
  }
  .ck-mission .mission-area .mission-top .content:nth-child(2) span.-II {
    right: -20px;
  }
  .ck-mission .mission-area .content .c-title,
  .ck-mission .mission-area .content .desc {
    color: var(--color-default);
  }
  .ck-history .history-area > .row {
    margin: 0 -5px;
  }
  .ck-history .history-area > .row > div {
    padding: 0 5px;
  }
  .ck-history .desc {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .ck-company .company-p-top {
    background-position: inherit;
  }
  .ck-company .sc-elevate .elevate-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .ck-company .sc-elevate .elevate-list .item .icon,
  .ck-company .sc-elevate .elevate-list .item:nth-child(2) .icon,
  .ck-company .sc-elevate .elevate-list .item:nth-child(4) .icon {
    width: 120px;
  }
  .ck-company .sc-elevate .elevate-list .item::before {
    width: calc(100% + 150px);
    right: -150px;
  }
  .ck-company .sc-elevate .elevate-list .item:nth-child(2),
  .ck-company .sc-elevate .elevate-list .item:nth-child(4) {
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
  }
  .ck-mission .mission-area .mission-top .content:nth-child(2) span {
    transform: scale(0.3);
  }
}/*# sourceMappingURL=source.css.map */