/* 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;
  -webkit-transition: all 200ms ease-out;
  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;
}

/* config */
[lang=en] body {
  font-family: "Geist", serif;
}

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;
  -webkit-transition: var(--transition);
  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;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

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

.link {
  font-weight: var(--fw-semibold);
}
.link:hover, .link.hover {
  color: var(--color-secondary);
  text-decoration: underline;
}
.link:visited, .link.visited {
  color: #51008b;
}

/* 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;
  -webkit-animation: spins 1s linear infinite;
          animation: spins 1s linear infinite;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0.4;
}

@-webkit-keyframes spins {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-filter: hue-rotate(0);
            filter: hue-rotate(0);
  }
}

@keyframes spins {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-filter: hue-rotate(0);
            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;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.menu-mobile-btn .btn-mobile .bar {
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  background-color: var(--color-primary);
  margin: auto;
  -webkit-transition: var(--transition);
  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;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.menu-mobile-btn .btn-mobile.close .bar:nth-child(3) {
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          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 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: unset;
  height: 100%;
  padding: 0;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  position: relative;
  margin: 0;
  list-style: none;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.slick-dots-container > ul li.p-small-1,
.slick-dots-container > ul li.n-small-1 {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.slick-dots-container > ul li.slick-active {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.slick-prev:before,
.slick-next:before {
  color: #333333;
}

.slick-prev:hover:before,
.slick-next:hover:before {
  color: #C00000;
}

.slick-prev, .slick-next {
  font-size: 20px;
  color: #C00000;
  width: 29px;
  height: 29px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  border: 1px solid #C00000;
  background-color: transparent;
  z-index: 1;
}
.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: #C00000;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

.slick-dots li {
  width: 15px;
  height: 15px;
  margin: 0 0.25rem;
  border: 1px solid var(--color-primary);
  padding: 3px;
  border-radius: 50%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  border-radius: 50%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.slick-dots li button:before {
  display: none;
}
.slick-dots li.slick-active button {
  background: var(--color-secondary);
}

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

@media (max-width: 767px) {
  .slick-dots li {
    width: 13px;
    height: 13px;
    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-md);
  line-height: 1.4em;
}
.breadcrumb li .link {
  font-weight: var(--fw-medium);
  color: var(--color-light);
  text-decoration: none;
  -webkit-transition: var(--transition);
  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: 43px;
  height: 43px;
  padding: 0;
  font-size: var(--typo-md);
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #555555;
  background-color: transparent;
  border: 1px solid transparent;
  text-decoration: none;
  border-radius: 50%;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}
.pagination .link:hover {
  background-color: transparent;
  color: var(--color-secondary);
}
.pagination .active .link {
  background-color: transparent;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}
.pagination ul {
  padding-left: 0;
}
.pagination li {
  display: inline-block;
  vertical-align: middle;
}
.pagination li + li {
  margin-left: 6px;
}

.pagination-label {
  font-size: var(--typo-md);
  line-height: 1em;
  color: #555555;
}

.editor-content .font-base, .editor-content p, .editor-content .editor-content {
  font-size: var(--typo-md);
  margin-bottom: 15px;
  line-height: 1.6em;
}
.editor-content p:last-child {
  margin-bottom: 0;
}
.editor-content img {
  height: auto !important;
}

@media (max-width: 991px) {
  .editor-content .font-base,
  .editor-content p,
  .editor-content .editor-content {
    font-size: var(--typo-sm);
  }
}
.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 10px;
  min-width: 200px;
  height: 60px;
  line-height: 1.2em;
  border: none;
  border-radius: 30px;
  font-size: var(--typo-default);
  font-weight: var(--fw-medium);
  color: var(--color-light);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: var(--transition-btn);
  transition: var(--transition-btn);
}
.btn.fluid {
  min-width: inherit;
  width: 100%;
}
.btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn.btn-sm {
  min-width: 120px;
  height: 40px;
  font-size: var(--typo-xs);
}
.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 {
  -webkit-box-shadow: none;
          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);
  -webkit-box-shadow: 15px 15px 30px rgba(0, 35, 89, 0.2);
          box-shadow: 15px 15px 30px rgba(0, 35, 89, 0.2);
  border-color: transparent;
}
.btn-primary::before, .btn-primary::after,
.btn-primary:focus::before,
.btn-primary:focus::after,
.btn-primary.focus::before,
.btn-primary.focus::after,
.btn-primary:not(:disabled):not(.disabled):active::before,
.btn-primary:not(:disabled):not(.disabled):active::after,
.show > .btn-primary.dropdown-toggle::before,
.show > .btn-primary.dropdown-toggle::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform-origin: right;
          transform-origin: right;
  border-radius: 30px;
  z-index: 0;
  -webkit-transition: var(--transition-btn);
  transition: var(--transition-btn);
}
.btn-primary::before,
.btn-primary:focus::before,
.btn-primary.focus::before,
.btn-primary:not(:disabled):not(.disabled):active::before,
.show > .btn-primary.dropdown-toggle::before {
  background: -webkit-gradient(linear, left top, right top, from(#417bbb), to(#002359));
  background: linear-gradient(to right, #417bbb 0%, #002359 100%);
}
.btn-primary::after,
.btn-primary:focus::after,
.btn-primary.focus::after,
.btn-primary:not(:disabled):not(.disabled):active::after,
.show > .btn-primary.dropdown-toggle::after {
  background: -webkit-gradient(linear, left top, right top, from(#002359), to(#417bbb));
  background: linear-gradient(to right, #002359 0%, #417bbb 100%);
  opacity: 0;
}

.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);
}
.btn-primary:hover::after,
.btn-primary.active::after,
.btn-primary:active::after,
.btn-primary:active:hover::after,
.btn-primary.active:hover::after,
.btn-primary:active:focus::after,
.btn-primary.actitve:focus::after,
.btn-primary:active.focus::after,
.btn-primary.active.focus::after,
.btn-primary:focus:hover::after,
.btn-primary.focus:hover::after {
  opacity: 1;
}
.btn-primary:hover::before,
.btn-primary.active::before,
.btn-primary:active::before,
.btn-primary:active:hover::before,
.btn-primary.active:hover::before,
.btn-primary:active:focus::before,
.btn-primary.actitve:focus::before,
.btn-primary:active.focus::before,
.btn-primary.active.focus::before,
.btn-primary:focus:hover::before,
.btn-primary.focus:hover::before {
  opacity: 0;
}

.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);
  -webkit-box-shadow: 15px 15px 30px rgba(255, 86, 15, 0.2);
          box-shadow: 15px 15px 30px rgba(255, 86, 15, 0.2);
  border-color: transparent;
}
.btn-secondary::before, .btn-secondary::after,
.btn-secondary:focus::before,
.btn-secondary:focus::after,
.btn-secondary.focus::before,
.btn-secondary.focus::after,
.btn-secondary:not(:disabled):not(.disabled):active::before,
.btn-secondary:not(:disabled):not(.disabled):active::after,
.show > .btn-secondary.dropdown-toggle::before,
.show > .btn-secondary.dropdown-toggle::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform-origin: right;
          transform-origin: right;
  border-radius: 30px;
  z-index: 0;
  -webkit-transition: var(--transition-btn);
  transition: var(--transition-btn);
}
.btn-secondary::before,
.btn-secondary:focus::before,
.btn-secondary.focus::before,
.btn-secondary:not(:disabled):not(.disabled):active::before,
.show > .btn-secondary.dropdown-toggle::before {
  background: -webkit-gradient(linear, left top, right top, from(#ffc70f), to(#ff560f));
  background: linear-gradient(to right, #ffc70f 0%, #ff560f 100%);
}
.btn-secondary::after,
.btn-secondary:focus::after,
.btn-secondary.focus::after,
.btn-secondary:not(:disabled):not(.disabled):active::after,
.show > .btn-secondary.dropdown-toggle::after {
  background: -webkit-gradient(linear, left top, right top, from(#ff560f), to(#ffc70f));
  background: linear-gradient(to right, #ff560f 0%, #ffc70f 100%);
  opacity: 0;
}

.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);
}
.btn-secondary:hover::after,
.btn-secondary.active::after,
.btn-secondary:active::after,
.btn-secondary:active:hover::after,
.btn-secondary.active:hover::after,
.btn-secondary:active:focus::after,
.btn-secondary.actitve:focus::after,
.btn-secondary:active.focus::after,
.btn-secondary.active.focus::after,
.btn-secondary:focus:hover::after,
.btn-secondary.focus:hover::after {
  opacity: 1;
}
.btn-secondary:hover::before,
.btn-secondary.active::before,
.btn-secondary:active::before,
.btn-secondary:active:hover::before,
.btn-secondary.active:hover::before,
.btn-secondary:active:focus::before,
.btn-secondary.actitve:focus::before,
.btn-secondary:active.focus::before,
.btn-secondary.active.focus::before,
.btn-secondary:focus:hover::before,
.btn-secondary.focus:hover::before {
  opacity: 0;
}

.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;
}

@media (max-width: 1440px) {
  .btn {
    min-width: 180px;
    height: 50px;
    border-radius: 25px;
  }
}
@media (max-width: 1199px) {
  .btn {
    min-width: 160px;
  }
}
@media (max-width: 991px) {
  .btn {
    min-width: 150px;
    height: 45px;
    border-radius: 22.5px;
  }
}
@media (max-width: 767px) {
  .btn {
    min-width: 120px;
    height: 42px;
    border-radius: 21px;
  }
}
.form-default .transition-ease, .form-default .floating-label {
  -webkit-transition: all 200ms ease-out;
  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;
  -webkit-box-shadow: none;
  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 {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form-default .has-success .form-control:focus {
  -webkit-box-shadow: none;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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 {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.-modal-contact-form .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  -webkit-filter: grayscale(0);
          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;
  -webkit-box-shadow: 2px 2px 2px 5px rgba(0, 0, 0, 0.3);
  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;
  -webkit-transform: translate(0, -50%);
          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;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 200ms;
  transition: all 200ms;
}
.social-list-i li .link:hover {
  -webkit-transform: translateY(-5px);
          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: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}
.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%;
  height: 87px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  margin-bottom: 47px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.menu-inner .menu-list .link {
  font-size: var(--typo-md);
  font-weight: var(--fw-medium);
  color: var(--color-primary);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4em;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: relative;
  text-decoration: none;
  min-height: 2.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.menu-inner .menu-list .link:hover, .menu-inner .menu-list .link.active {
  color: var(--color-secondary);
}
.menu-inner .menu-list .slick-list .item {
  padding: 0 79.5px;
  text-align: center;
  position: relative;
}
.menu-inner .menu-list .slick-list .slick-slide:not(:last-child) .item:before {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: var(--color-border);
}
.menu-inner .menu-list .slick-prev,
.menu-inner .menu-list .slick-next {
  border: none;
  color: var(--color-secondary);
}
.menu-inner .menu-list .slick-prev span,
.menu-inner .menu-list .slick-next span {
  font-size: var(--typo-lg);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.download .download-list {
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.download .download-list .link {
  color: #333333;
}
.download .download-list .link:hover .btn {
  border-color: #C00000;
  background-color: #C00000;
  color: #fff;
}
.download .download-list .link .wrapper {
  padding: 30px;
  background-color: #FBFBFB;
}
.download .download-list .link .h-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1em;
}
.download .download-list .link .h-title.text-limit {
  height: 1em;
  -webkit-line-clamp: 1;
}
.download .download-list .link .desc {
  font-size: 20px;
  font-weight: 300;
  line-height: 1em;
}
.download .download-list .link .action {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.action.-back > div {
  margin-right: 340px;
}

.product-block {
  padding-top: 60px;
  padding-bottom: 150px;
}
.product-block .category {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product-block .category .text {
  float: left;
  font-size: 30px;
  font-weight: bold;
  line-height: 1em;
  color: #C00000;
}
.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: 0 -20px;
}
.product-block .product-service li {
  width: 33.3333333333%;
  padding: 0 20px;
  margin-top: 40px;
}
.product-block .product-service .link:hover .title.under-line:before {
  background-color: #fff;
}
.product-block .product-service .wrapper {
  border: 1px solid #EBEBEB;
}
.product-block .product-service .wrapper .image {
  height: 250px;
}
.product-block .product-service .wrapper .content {
  height: 190px;
  background-color: #FBFBFB;
}
.product-block .product-service .wrapper .title {
  color: #333333;
}
.product-block .product-service .wrapper .title.under-line:before {
  background-color: #333333;
}
.product-block .product-service .wrapper .desc {
  font-weight: bold;
  min-height: 2em;
}
.product-block .product-service .wrapper .desc.text-limit {
  max-height: 2em;
  -webkit-line-clamp: 2;
}
.product-block .product-service .wrapper .action {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 10px;
}
.product-block .product-service .wrapper .view-more {
  color: #9b9b9b;
}
.product-block .product-service .wrapper .view-more img {
  -webkit-filter: grayscale(1) brightness(0) invert(0.6);
          filter: grayscale(1) brightness(0) invert(0.6);
}

.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;
  -webkit-transform: translate(0, -50%);
          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;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

.aboutUs-page.-bg-about {
  background-image: url(../img/background/bg-customer.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 0;
  -webkit-box-shadow: 0 0px 35px rgba(0, 0, 0, 0.3);
          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;
  -webkit-transform: rotate(45deg);
          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;
  -webkit-transform: rotate(0);
          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 {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
.aboutUs-page .ourcustomer .link:hover img {
  -webkit-transform: scale(1.1);
          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%;
  -webkit-transform: translate(-50%, 0);
          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: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6026785714)), to(rgba(255, 255, 255, 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: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(255, 255, 255, 0.6)));
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.aboutUs-page .timeline .content {
  max-width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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;
}

.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 {
  -webkit-filter: grayscale(0);
          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 {
  -webkit-filter: grayscale(1);
          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 {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          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 {
  -webkit-filter: grayscale(1) brightness(0) invert(0.6);
          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: -webkit-box;
  display: -ms-flexbox;
  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 {
  margin-top: -47px;
  overflow: hidden;
}
.product-service-page .product-service li {
  width: 50%;
}
.product-service-page .product-service .wrapper .image {
  height: 380px;
}
.product-service-page .product-service .wrapper .content {
  height: 288px;
}
.product-service-page .product-service .wrapper .desc.text-limit {
  max-height: 5em;
  -webkit-line-clamp: 5;
}
.product-service-page .product-service .wrapper .action {
  position: absolute;
  bottom: 20px;
}
.product-service-page .product {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}
.product-service-page .product:after {
  content: "";
  position: absolute;
  width: 320px;
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #C00000;
  mix-blend-mode: multiply;
  z-index: -1;
}
.product-service-page .product-service-list {
  max-width: calc(100% - 320px);
  position: relative;
}
.product-service-page .product-service-list:before {
  content: "";
  position: absolute;
  width: 320px;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #333;
  mix-blend-mode: multiply;
  z-index: 1;
}
.product-service-page .product-service-list .wrapper {
  position: relative;
  z-index: 0;
}
.product-service-page .product-service-list .wrapper .content {
  position: absolute;
  z-index: 2;
  width: 463px;
  height: 463px;
  right: 0;
  bottom: 0;
  background-color: #fff;
  padding: 32px 80px 32px 39px;
}
.product-service-page .product-service-list .wrapper .title {
  font-size: 40px;
  font-weight: bold;
  line-height: 1em;
}
.product-service-page .product-service-list .wrapper .title.text-limit {
  max-height: 1em;
  -webkit-line-clamp: 1;
}
.product-service-page .product-service-list .wrapper .title-lg {
  font-size: 54px;
  font-weight: bold;
  line-height: 1em;
}
.product-service-page .product-service-list .wrapper .title-lg div {
  font-size: 30px;
  margin-top: -20px;
}
.product-service-page .product-service-list .wrapper .title-lg.text-limit {
  max-height: 2em;
  -webkit-line-clamp: 2;
}
.product-service-page .product-service-list .wrapper .desc {
  font-size: 30px;
  font-weight: 300;
  line-height: 1em;
  min-height: 4em;
  margin-top: 20px;
  color: #9b9b9b;
}
.product-service-page .product-service-list .wrapper .desc.text-limit {
  max-height: 4em;
  -webkit-line-clamp: 4;
}
.product-service-page .product-service-list .wrapper .image {
  width: 100%;
  max-width: 1230px;
  height: 600px;
}
.product-service-page .product-service-list .wrapper .image .cover {
  position: relative;
  width: 100%;
  height: 100%;
}
.product-service-page .product-service-list .wrapper .image .cover img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-service-page .product-service-list .wrapper .action {
  margin-top: 46px;
}
.product-service-page .product-service-list .slick-prev,
.product-service-page .product-service-list .slick-next {
  color: #fff;
  border-color: #fff;
  width: 50px;
  height: 50px;
  font-size: 30px;
}
.product-service-page .product-service-list .slick-prev {
  left: 250px;
}
.product-service-page .product-service-list .slick-next {
  right: -70px;
}
.product-service-page .product-service-list .slick-dots {
  left: 160px;
  bottom: -47px;
}
.product-service-page .product-service-list .slick-dots li {
  margin: 0 10px;
}
.product-service-page .product-block {
  padding-bottom: 0;
}
.product-service-page .customer {
  padding-top: 118px;
  padding-bottom: 153px;
}
.product-service-page .customer .img-customer {
  bottom: -50px;
}

.detail-page .topic .block {
  width: 100%;
  height: 92px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.detail-page .topic .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  font-size: 30px;
  text-transform: uppercase;
}
.detail-page .topic .title span {
  padding-left: 26px;
}
.detail-page .item-list {
  margin: 0 -7px;
}
.detail-page .item-list li {
  padding: 0 7px;
}
.detail-page .item-list .link:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
.detail-page .item-list .link img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.gallery-detail-list {
  position: relative;
}
.gallery-detail-list .slider-single .image {
  width: 100%;
  height: 800px;
}
.gallery-detail-list .slider-single .image .cover {
  position: relative;
  width: 100%;
  height: 100%;
}
.gallery-detail-list .slider-single .image .cover img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-detail-list:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 140px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.gallery-detail-list .slider-nav {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 10px 480px 10px 100px;
  z-index: 1;
}
.gallery-detail-list .slider-nav .wrapper {
  cursor: pointer;
  width: 100%;
  height: 120px;
}
.gallery-detail-list .slider-nav .wrapper .image {
  width: 100%;
  height: 100%;
}
.gallery-detail-list .slider-nav .wrapper .image .cover {
  position: relative;
  width: 100%;
  height: 100%;
}
.gallery-detail-list .slider-nav .wrapper .image .cover img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-detail-list .slider-nav .slick-list {
  margin: 0 -5px;
}
.gallery-detail-list .slider-nav .slick-list .item {
  padding: 0 5px;
}
.gallery-detail-list .slider-nav .slick-slide .wrapper {
  opacity: 0.7;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.gallery-detail-list .slider-nav .slick-slide.slick-current .wrapper, .gallery-detail-list .slider-nav .slick-slide.is-active .wrapper {
  opacity: 1;
}
.gallery-detail-list .slider-nav .slick-prev,
.gallery-detail-list .slider-nav .slick-next {
  border-color: #fff;
  width: 60px;
  height: 60px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.gallery-detail-list .slider-nav .slick-prev > span,
.gallery-detail-list .slider-nav .slick-next > span {
  font-size: 40px;
  color: var(--color-light);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.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);
  }
}
/* layouts */
@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-page .product-service-list .wrapper .content {
    width: 450px;
    height: 450px;
  }
  .product-service-page .product-service-list .wrapper .image {
    max-width: 1000px;
    height: 510px;
  }
  .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;
    margin-top: 70px;
    margin-bottom: 40px;
  }
  .product-service .wrapper .image {
    height: 230px;
  }
  .product-service .wrapper .content {
    height: 170px;
  }
  .product-service .wrapper .title {
    font-size: 24px;
  }
  .product-service .wrapper .desc {
    font-size: 20px;
  }
  .product-service .wrapper .view-more {
    font-size: 20px;
  }
  .product-service .action {
    margin: 35px 0;
  }
  .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;
  }
  .partner {
    padding: 80px 0;
  }
  .partner .cover {
    width: 160px;
    height: 160px;
  }
  .topgraphic-inner {
    height: 250px;
  }
  .topgraphic-inner:before {
    width: 270px;
  }
  .topgraphic-inner .title {
    font-size: 60px;
  }
  .topgraphic-inner .title.under-line:before {
    bottom: -5px;
  }
  .breadcrumb-block {
    margin-top: 30px;
  }
  .breadcrumb li {
    font-size: 24px;
  }
  .menu-inner {
    height: 70px;
  }
  .menu-inner .menu-list .link {
    font-size: 20px;
  }
  .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 {
    padding: 20px 0;
  }
  .download .download-list .link .h-title {
    font-size: 20px;
  }
  .download .download-list .link .desc {
    font-size: 16px;
  }
  .download .download-list .slick-list {
    margin: 0 -10px;
  }
  .download .download-list .slick-list .item {
    padding: 0 10px;
  }
  .btn-sm {
    height: 35px;
    line-height: 35px;
  }
  .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;
  }
  .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 .item-list {
    margin: 0 -15px;
  }
  .product-block .product-service li {
    padding: 0 15px;
  }
  .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-page .product-service-list .slick-prev,
  .product-service-page .product-service-list .slick-next,
  .solution-page .solution-list .slick-prev,
  .solution-page .solution-list .slick-next {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .solution-page .solution-list .slick-dots {
    bottom: -40px;
  }
  .product-service-page .product-service-list .slick-dots li,
  .solution-page .solution-list .slick-dots li {
    margin: 0 8px;
  }
  .product-service-page .product-service-list .slick-prev {
    left: 200px;
  }
  .product-service-page .product-service-list .slick-next {
    right: -60px;
  }
  .product-service-page .product:after {
    width: 260px;
  }
  .product-service-page .product-service-list {
    max-width: calc(100% - 260px);
  }
  .product-service-page .product-service-list:before {
    width: 260px;
  }
  .product-service-page .product-service-list .wrapper .content {
    width: 360px;
    height: 360px;
    padding: 26px 40px 10px 29px;
  }
  .product-service-page .product-service-list .wrapper .title {
    font-size: 30px;
  }
  .product-service-page .product-service-list .wrapper .title-lg {
    font-size: 45px;
  }
  .product-service-page .product-service-list .wrapper .title-lg div {
    font-size: 24px;
    margin-top: -15px;
  }
  .product-service-page .product-service-list .wrapper .desc {
    font-size: 24px;
  }
  .product-service-page .product-service-list .wrapper .action {
    margin-top: 36px;
  }
  .product-service-page .product-service-list .wrapper .image {
    max-width: 840px;
    height: 440px;
  }
  .product-service-page .product-service .wrapper .image {
    height: 310px;
  }
  .product-service-page .product-service .wrapper .content {
    height: 240px;
  }
  .product-service-page .customer .title {
    font-size: 60px;
  }
  .detail-page .topic .title {
    font-size: 24px;
  }
  .detail-page .topic .title span {
    padding-left: 15px;
  }
  .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 {
    -webkit-transform: translate(-30%, -50%);
            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;
    margin-top: 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-service .wrapper .action {
    margin-top: 10px;
  }
  .product-service .wrapper .view-more {
    font-size: 18px;
  }
  .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;
  }
  .breadcrumb li {
    font-size: 20px;
  }
  .menu-inner .menu-list .link {
    font-size: 20px;
  }
  .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;
  }
  .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;
  }
  .menu-inner .menu-list .link {
    font-size: 18px;
    min-height: 2.8em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .product-service-page .product-service-list .slick-prev,
  .product-service-page .product-service-list .slick-next,
  .solution-page .solution-list .slick-prev,
  .solution-page .solution-list .slick-next {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
  .solution-page .solution-list .slick-prev {
    left: -37px;
  }
  .solution-page .solution-list .slick-next {
    right: -37px;
  }
  .product-service-page .product:after,
  .product-service-page .product-service-list:before {
    width: 180px;
  }
  .product-service-page .product-service-list {
    max-width: calc(100% - 180px);
  }
  .product-service-page .product-service-list .wrapper .content {
    width: 330px;
    height: auto;
    padding: 20px;
  }
  .product-service-page .product-service-list .wrapper .image {
    max-width: 670px;
    height: 380px;
  }
  .product-service-page .product-service-list .slick-prev {
    left: 135px;
  }
  .product-service-page .product-service-list .slick-next {
    right: -45px;
  }
  .product-service-page .product-service-list .slick-dots {
    left: 93px;
  }
  .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;
  }
  .-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;
  }
}
@media (max-width: 991px) {
  /*mobile-menu (start)*/
  .global-container {
    position: relative;
    overflow: hidden;
    right: 0;
  }
  .global-container .site-header .overlay {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
  }
  .global-container .site-container {
    position: relative;
    right: 0;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
  }
  .global-container .site-footer {
    position: relative;
    right: 0;
    -webkit-transition: all 400ms ease;
    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;
    -webkit-transition: all 400ms ease;
    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%;
    -webkit-transform: translate(0, -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 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            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 {
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
  }
  .our-project .project-list .slick-current.slick-active .link .image .cover img {
    -webkit-transform: scale(1.1);
            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 .image {
    height: 160px;
  }
  .product-service .wrapper .content {
    padding: 15px;
  }
  .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;
  }
  .menu-inner {
    margin-bottom: 20px;
  }
  .menu-inner .menu-list .slick-list .item {
    padding: 0 10px;
  }
  .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%;
    -webkit-transform: rotate(0) scale(-1);
            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: 6px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            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;
    -webkit-transform: translate(0, 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;
  }
  .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: 0 -10px;
  }
  .product-block .product-service li {
    padding: 0 10px;
  }
  .product-service-page {
    margin-top: 0;
  }
  .product-service-page .product:after,
  .product-service-page .product-service-list:before {
    width: 120px;
  }
  .product-service-page .product-service-list {
    max-width: calc(100% - 120px);
  }
  .product-service-page .product-service-list .wrapper .content {
    width: 230px;
  }
  .product-service-page .product-service-list .wrapper .image {
    max-width: 540px;
    height: 330px;
  }
  .product-service-page .product-service-list .wrapper .title {
    font-size: 24px;
  }
  .product-service-page .product-service-list .wrapper .title-lg {
    font-size: 35px;
  }
  .product-service-page .product-service-list .wrapper .title-lg div {
    font-size: 20px;
    margin-top: -10px;
  }
  .product-service-page .product-service-list .wrapper .desc {
    font-size: 18px;
    margin-top: 10px;
  }
  .product-service-page .product-service-list .wrapper .action {
    margin-top: 25px;
  }
  .product-service-page .product-service-list .slick-dots {
    left: 56px;
  }
  .product-service-page .product-service .wrapper .image {
    height: 200px;
  }
  .product-service-page .product-service .wrapper .content {
    height: 210px;
  }
  .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 {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .gallery-detail-list .slider-single .image {
    height: 610px;
  }
  .gallery-detail-list .slider-nav {
    padding: 20px 70px;
  }
  .action.-back > div {
    margin-right: 10px;
  }
  .site-footer .margin-top {
    margin-top: 25px;
  }
}
@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%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@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 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .style-right .image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            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 .content {
    height: auto;
  }
  .product-service .wrapper .image {
    height: 110px;
  }
  .product-service .wrapper .title {
    font-size: 18px;
  }
  .product-service .wrapper .desc {
    font-size: 16px;
  }
  .product-service .wrapper .view-more {
    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 {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .product-service .product-list .slick-current.slick-active .link .wrapper .view-more img {
    -webkit-filter: brightness(0) invert(1);
            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: 130px;
  }
  .topgraphic-inner:before {
    width: 160px;
  }
  .topgraphic-inner .title {
    font-size: 30px;
  }
  .breadcrumb-block {
    margin-top: 13px;
  }
  .breadcrumb li {
    font-size: 16px;
  }
  .aboutUs-page .vision .block {
    margin-top: 70px;
  }
  .aboutUs-page .vision .wrapper.-style-ii,
  .aboutUs-page .vision .wrapper {
    left: 45%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .aboutUs-page .vision .obj-r {
    top: 250px;
    left: 55%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    z-index: 0;
  }
  .aboutUs-page .vision .obj-l {
    bottom: 262px;
    left: 27%;
    -webkit-transform: rotate(90deg) scale(-1);
            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 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            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;
  }
  .product-block .category {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .pagination-label {
    margin-bottom: 15px;
  }
  .pagination .link img {
    max-width: 15px;
  }
  .solution-page .solution-list .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            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-page .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-service-page .product:after,
  .product-service-page .product-service-list:before {
    display: none;
  }
  .product-service-page .product-service-list {
    max-width: 100%;
  }
  .product-service-page .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;
  }
  .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 .block {
    display: block;
    height: auto;
    padding: 10px 0;
  }
  .detail-page .topic .title {
    font-size: 20px;
  }
  .detail-page .item-list {
    margin-top: 5px;
  }
  .gallery-detail-list .slider-single .image {
    height: 370px;
  }
  .gallery-detail-list .slider-nav .wrapper {
    height: 80px;
  }
  .menu-inner {
    height: auto;
    padding: 5px 0;
  }
  .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;
  }
}
.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;
  -webkit-transition: var(--transition);
  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;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.form-default .form-control {
  line-height: 1.5em;
  padding: 10px 15px;
  display: block;
  width: 100%;
  min-height: 50px;
  background-color: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: var(--typo-default);
  color: var(--color-default);
  font-weight: var(--fw-normal);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.form-default .form-control.form-sm {
  min-height: 40px;
  font-size: var(--typo-xs);
}
.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);
}
.form-default .form-control.form-lg ~ .floating-label {
  top: 16px;
}
.form-default .form-control::-webkit-input-placeholder {
  color: var(--color-gray);
  opacity: 1;
}
.form-default .form-control:-ms-input-placeholder {
  color: var(--color-gray);
  opacity: 1;
}
.form-default .form-control::-moz-placeholder {
  color: var(--color-gray);
  opacity: 1;
}
.form-default .form-control::-ms-input-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;
  -webkit-box-shadow: 0 0 8px -4px var(--color-primary);
          box-shadow: 0 0 8px -4px var(--color-primary);
}
.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 {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-default .has-success .form-control:focus {
  -webkit-box-shadow: none;
          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-shown) ~ .floating-label {
  color: var(--color-default);
  font-size: var(--typo-xs);
  left: 0;
  top: -22px;
}
.form-default .form-control:not(:-ms-input-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;
  -webkit-transition: var(--transition);
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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: 0;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 15px;
  padding-right: 30px;
}

.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: 15px;
  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);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  top: 0;
  bottom: 0;
  margin: auto;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b:before {
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: -1px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b:after {
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 6px;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.select2-container--default .select2-results__option {
  padding: 15px 15px;
  -webkit-transition: var(--transition);
  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 {
  -webkit-animation: growDown 500ms ease-in-out;
          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);
  -webkit-box-shadow: 0 0 8px -4px var(--color-primary);
          box-shadow: 0 0 8px -4px var(--color-primary);
}

@-webkit-keyframes growDown {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@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: 40px;
  }
  .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
  }
  .select2-container--default .select2-results__option {
    padding: 10px 15px;
  }
}
@media (max-width: 767px) {
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    -webkit-transform: scale(0.8);
            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: 48%;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.26);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.26);
  z-index: 1;
  font-size: 0;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.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-light);
  border-left: 2px solid var(--color-light);
  visibility: visible;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

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

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom, .swiper-pagination-fraction,
.swiper-pagination {
  text-align: center;
  margin: 0;
  padding-top: 40px;
  position: relative;
  bottom: 0;
}

.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: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-snow);
  opacity: 1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  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, 5px);
}

.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 {
  -webkit-transform: scale(1);
          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;
}

@media screen and (max-width: 1440px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction,
  .swiper-pagination {
    padding-top: 30px;
  }
  .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
  }
  .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;
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction,
  .swiper-pagination {
    padding-top: 25px;
  }
  .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
  }
  .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-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom, .swiper-pagination-fraction,
  .swiper-pagination {
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  ::-webkit-scrollbar {
    display: none;
  }
}
/*============================== tab ===============================*/
.tab {
  position: relative;
  z-index: 3;
}
.tab .control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 48px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tab .control .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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;
  -webkit-transition: var(--transition);
  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;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  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;
  -webkit-transition: var(--transition-btn);
  transition: var(--transition-btn);
}
.tab-content.active {
  opacity: 1;
  height: auto;
  overflow: visible;
  visibility: visible;
}

.tab-container.tab-vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.tab-container.tab-vertical .tab-control {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          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 {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  padding-left: 15px;
}
.tab-container.tab-vertical .tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.tab-container.tab-vertical .tab .selector {
  width: 3px;
  height: auto;
  top: 0;
  bottom: auto;
}
.tab-container.tab-vertical .tab .control {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 15px;
  gap: 16px;
}

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

.dropdown-menu {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: absolute;
  z-index: 99;
  top: 0;
  opacity: 0;
  pointer-events: none;
  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 #ebebeb;
}
.dropdown-menu .link {
  padding: 10px;
  display: block;
}
.dropdown-menu .link:hover {
  background: var(--color-primary);
  color: var(--color-light);
  text-decoration: none;
}

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

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

.desc {
  line-height: 1.6em;
}

.cookie-tab {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  padding: 20px 15px;
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

@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: 99px;
  }
  .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: calc(100dvh - 120px);
}
.hero-banner .swiper-pagination {
  padding-top: 0;
  bottom: 30px;
  position: absolute;
}

.sc-info .info-content-area {
  padding-top: 50px;
  background-color: #FAFCFC;
  overflow: hidden;
}
.sc-info .info-content-area .content {
  position: absolute;
  z-index: 2;
  min-width: 670px;
  margin-top: 180px;
}
.sc-info .info-content-area .h-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  height: 200px;
}
.sc-info .info-content-area .h-title span {
  -webkit-background-clip: text;
  color: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#ffc70f), to(#ff560f));
  background-image: linear-gradient(to right, #ffc70f 0%, #ff560f 100%);
}
.sc-info .info-content-area .h-title .number {
  font-weight: bold;
  font-size: 230px;
  line-height: initial;
}
.sc-info .info-content-area .h-title .text {
  font-size: 100px;
  font-weight: var(--fw-light);
  line-height: 90px;
}
.sc-info .info-content-area .sub-title {
  font-size: 42px;
  line-height: 1.4em;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}
.sc-info .info-content-area .desc {
  font-size: var(--typo-md);
  line-height: 1.5em;
  margin-bottom: 40px;
}
.sc-info .info-content-area .thumbnail-wrapper {
  position: relative;
  width: 770px;
  height: 970px;
  right: -100px;
}
.sc-info .info-content-area .thumbnail-wrapper .graphic {
  height: 100%;
}
.sc-info .info-content-area .thumbnail-wrapper .graphic > .obj {
  position: absolute;
  z-index: 2;
  opacity: 0.1;
}
.sc-info .info-content-area .thumbnail-wrapper .graphic .obj:nth-child(1) {
  top: 60px;
  right: 60px;
}
.sc-info .info-content-area .thumbnail-wrapper .graphic .obj:nth-child(2) {
  left: 60px;
  bottom: 140px;
}
.sc-info .info-content-area .thumbnail-wrapper .image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  min-width: 770px;
}
.sc-info .info-content-area .thumbnail-wrapper .image > img {
  margin-top: -60px;
}
.sc-info .info-content-area .thumbnail-wrapper .image::before {
  content: "";
}
.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  height: 200px;
  background-color: var(--color-secondary);
}
.sc-info .info-menu-area .nav-tabs .link .icon {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  height: 75px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  display: -webkit-box;
  display: -ms-flexbox;
  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 {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.sc-info .info-menu-area .selector {
  background-color: var(--color-secondary);
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 240px;
  -webkit-box-shadow: inset #FFC70F 0px 0px 30px 0px;
          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 {
  -webkit-transform: translateY(-50px);
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-transition: var(--transition);
  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 {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.sc-info .tab-horizontal-mobile .tab-nav .swiper-slide-thumb-active .item {
  background-color: var(--color-secondary);
  -webkit-box-shadow: inset #FFC70F 0px 0px 30px 0px;
          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 {
  -webkit-transition: var(--transition-btn);
  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-our-service {
  padding: 130px 0 200px 0;
  overflow: hidden;
}
.sc-our-service .whead {
  margin-bottom: 200px;
}
.sc-our-service .h1 {
  color: var(--color-secondary);
  text-align: center;
}
.sc-our-service .service-area {
  position: relative;
}
.sc-our-service .service-area > .container > .row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sc-our-service .service-area + .service-area {
  margin-top: 200px;
}
.sc-our-service .service-area:nth-child(even) .thumbnail-wrapper .graphic .obj:nth-child(1) {
  right: unset;
  left: 0;
  margin-top: -80px;
  margin-left: -80px;
}
.sc-our-service .service-area:nth-child(even) .thumbnail-wrapper .graphic .obj:nth-child(2) {
  left: unset;
  right: 0;
  bottom: 0;
  margin-bottom: -80px;
  margin-right: -80px;
}
.sc-our-service .service-area:nth-child(even) .content > .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          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) > .container > .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.sc-our-service .service-area .content {
  max-width: 670px;
  margin-top: 130px;
  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: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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 {
  width: 140px;
  height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#ffc70f), to(#ff560f));
  background: linear-gradient(to right, #ffc70f 0%, #ff560f 100%);
  -webkit-filter: drop-shadow(15px 15px 30px rgba(255, 86, 15, 0.4));
          filter: drop-shadow(15px 15px 30px rgba(255, 86, 15, 0.4));
}
.sc-our-service .service-area .content .content-wrapper {
  margin-top: 30px;
}
.sc-our-service .service-area .content .title {
  font-size: 72px;
  font-weight: var(--fw-black);
  line-height: 1em;
  color: var(--color-primary);
  margin-bottom: 40px;
}
.sc-our-service .service-area .content .desc {
  font-size: var(--typo-md);
  margin-bottom: 40px;
}
.sc-our-service .service-area .thumbnail-wrapper {
  position: relative;
  width: 460px;
}
.sc-our-service .service-area .thumbnail-wrapper .graphic {
  height: 100%;
}
.sc-our-service .service-area .thumbnail-wrapper .graphic > .obj {
  position: absolute;
  opacity: 0.7;
}
.sc-our-service .service-area .thumbnail-wrapper .graphic .obj:nth-child(1) {
  top: 0;
  right: 0;
  margin-top: -80px;
  margin-right: -80px;
}
.sc-our-service .service-area .thumbnail-wrapper .graphic .obj:nth-child(2) {
  left: 0;
  bottom: 0;
  margin-bottom: -80px;
  margin-left: -80px;
}
.sc-our-service .service-area .thumbnail-wrapper .cover {
  width: 100%;
  padding-top: 600px;
}
.sc-our-service .service-area .graphic-outside > img {
  position: absolute;
  pointer-events: none;
  bottom: 0;
}
.sc-our-service .service-area .graphic-outside.-I1 img {
  right: 0;
}
.sc-our-service .service-area .graphic-outside.-I2 img {
  left: 0;
  margin-left: -110px;
}
.sc-our-service .service-area .graphic-outside.-I3 img {
  right: 0;
  margin-bottom: -60px;
}

.sc-services {
  background-image: url(../img/background/bg-service.png);
  padding: 120px 0 160px 0;
  position: relative;
}
.sc-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #002359;
  opacity: 0.85;
}
.sc-services > .container {
  position: relative;
}
.sc-services .h-title {
  color: var(--color-secondary);
  margin-bottom: 70px;
  text-align: center;
}
.sc-services .services-nav .item {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 30px;
  border: 1px solid var(--color-light);
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.sc-services .services-nav .item .title {
  font-size: var(--typo-lg);
  font-weight: var(--fw-medium);
  color: var(--color-light);
}
.sc-services .services-nav .item:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.sc-services .services-nav .swiper-slide-thumb-active .item {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.sc-services .services-nav .swiper-pagination {
  display: none;
}
.sc-services .services-tab-pane {
  margin-top: 50px;
}
.sc-services .services-tab-pane .swiper-slide {
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  --webkit-backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.15);
  padding: 40px;
  border-radius: 30px;
  -webkit-transition: var(--transition-btn);
  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;
  -webkit-transition: var(--transition);
  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: 70px 0 90px 0;
}
.sc-news .h-title {
  color: var(--color-secondary);
  margin-bottom: 70px;
  text-align: center;
}
.sc-news .link {
  display: block;
  position: relative;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.sc-news .link:hover .cover img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.sc-news .link:hover .content {
  background-color: rgba(0, 36, 89, 0.8509803922);
  height: 100%;
}
.sc-news .link:hover .content .title {
  top: 0;
}
.sc-news .link:hover .content .desc {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  height: auto;
}
.sc-news .link:hover .content .readmore .icon-arrow-right {
  opacity: 1;
  -webkit-transform: translateX(0) scale(1);
          transform: translateX(0) scale(1);
}
.sc-news .link .cover {
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
}
.sc-news .link .cover img {
  -webkit-transition: var(--transition-btn);
  transition: var(--transition-btn);
}
.sc-news .link .content {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 45%;
  width: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 35, 89, 0)), color-stop(46.46%, rgba(0, 35, 89, 0.73)), to(#002359));
  background: linear-gradient(rgba(0, 35, 89, 0) 0%, rgba(0, 35, 89, 0.73) 46.46%, #002359 100%);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.sc-news .link .content .title {
  font-size: var(--typo-lg);
  font-weight: var(--fw-medium);
  color: var(--color-light);
  margin-bottom: 20px;
  -webkit-line-clamp: 2;
  max-height: 4.2em;
  line-height: 1.4em;
  position: relative;
  top: 20px;
  -webkit-transition: var(--transition-btn);
  transition: var(--transition-btn);
}
.sc-news .link .content .desc {
  font-size: var(--typo-sm);
  color: var(--color-light);
  -webkit-transition: var(--transition-btn);
  transition: var(--transition-btn);
  margin-bottom: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
  height: 0;
  -webkit-line-clamp: 3;
  max-height: 4.2em;
  line-height: 1.4em;
}
.sc-news .link .content .readmore {
  font-size: 14px;
  color: var(--color-secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin-top: auto;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.sc-news .link .content .readmore .icon-arrow-right {
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: translateX(-10px) scale(0.8);
          transform: translateX(-10px) scale(0.8);
}
.sc-news .swiper-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sc-news .swiper-slide {
  width: 480px;
}
.sc-news .action {
  margin-top: 80px;
  text-align: center;
}

.sc-customer-sevice {
  padding-top: 80px;
}
.sc-customer-sevice .h-title {
  color: var(--color-secondary);
  margin-bottom: 70px;
  text-align: center;
}
.sc-customer-sevice .customer-sevice-area {
  margin: auto;
  text-align: center;
}
.sc-customer-sevice .container {
  position: relative;
}
.sc-customer-sevice .img-ship {
  margin-bottom: -85px;
}
.sc-customer-sevice .item-list {
  margin: -40px 0;
  position: absolute;
  bottom: 50px;
}
.sc-customer-sevice .item-list li {
  width: 50%;
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.sc-customer-sevice .item-list li .wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  text-align: right;
  min-width: 342px;
}
.sc-customer-sevice .item-list li:nth-child(even) {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.sc-customer-sevice .item-list li:nth-child(even) .wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          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 {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.sc-customer-sevice .item-list li:nth-child(2) .wrapper, .sc-customer-sevice .item-list li:nth-child(6) .wrapper {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          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: -webkit-gradient(linear, left top, right top, from(#ffc70f), to(#ff560f));
  background: linear-gradient(to right, #ffc70f 0%, #ff560f 100%);
  -webkit-filter: drop-shadow(15px 15px 30px rgba(255, 86, 15, 0.4));
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}

@media (max-width: 1440px) {
  .sc-info .info-content-area .content {
    margin-top: 140px;
  }
  .sc-info .info-content-area .h-title {
    height: 180px;
  }
  .sc-info .info-content-area .h-title .number {
    font-size: 190px;
  }
  .sc-info .info-content-area .h-title .text {
    font-size: 70px;
  }
  .sc-info .info-content-area .sub-title {
    font-size: var(--typo-xl);
  }
  .sc-info .info-content-area .desc {
    margin-bottom: 30px;
  }
  .sc-info .info-content-area .thumbnail-wrapper {
    width: 600px;
    height: 770px;
    right: -50px;
  }
  .sc-info .info-content-area .thumbnail-wrapper .image {
    min-width: 600px;
  }
  .sc-info .info-content-area .thumbnail-wrapper .graphic > .obj {
    max-width: 180px;
  }
  .sc-info .info-content-area .thumbnail-wrapper .graphic .obj:nth-child(1) {
    top: 40px;
    right: 40px;
  }
  .sc-info .info-content-area .thumbnail-wrapper .graphic .obj:nth-child(2) {
    left: 40px;
    bottom: 100px;
  }
  .sc-info .info-menu-area .tab {
    border: 15px solid var(--color-light);
    margin-bottom: 50px;
  }
  .sc-info .info-menu-area .desc {
    margin-bottom: 30px;
  }
  .sc-info .info-menu-area .nav-tabs .link {
    height: 185px;
  }
  .sc-our-service {
    padding: 80px 0 150px 0;
  }
  .sc-our-service .whead {
    margin-bottom: 120px;
  }
  .sc-our-service .service-area + .service-area {
    margin-top: 150px;
  }
  .sc-our-service .service-area .content {
    min-width: 600px;
  }
  .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: 120px;
    height: 120px;
  }
  .sc-our-service .service-area .content .icon img {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  .sc-our-service .service-area .content .content-wrapper {
    margin-top: 20px;
  }
  .sc-our-service .service-area .content .title {
    font-size: 60px;
    margin-bottom: 30px;
  }
  .sc-our-service .service-area .content .desc {
    margin-bottom: 30px;
  }
  .sc-our-service .service-area .thumbnail-wrapper {
    width: 440px;
  }
  .sc-our-service .service-area .thumbnail-wrapper .cover {
    padding-top: 125%;
  }
  .sc-our-service .service-area .thumbnail-wrapper .graphic > .obj {
    max-width: 180px;
  }
  .sc-our-service .service-area .thumbnail-wrapper .graphic .obj:nth-child(1) {
    margin-top: -60px;
    margin-right: -60px;
  }
  .sc-our-service .service-area .thumbnail-wrapper .graphic .obj:nth-child(2) {
    margin-bottom: -60px;
    margin-left: -60px;
  }
  .sc-our-service .service-area:nth-child(odd) .thumbnail-wrapper .graphic .obj:nth-child(1) {
    margin-top: -60px;
    margin-left: -60px;
  }
  .sc-our-service .service-area:nth-child(odd) .thumbnail-wrapper .graphic .obj:nth-child(2) {
    margin-bottom: -60px;
    margin-right: -60px;
  }
  .sc-our-service .service-area .graphic-outside.-I0 img {
    margin-left: -5%;
  }
  .sc-our-service .service-area .graphic-outside.-I1 img {
    max-width: 600px;
    margin-right: -10%;
  }
  .sc-our-service .service-area .graphic-outside.-I2 img {
    max-width: 700px;
  }
  .sc-our-service .service-area .graphic-outside.-I3 img {
    margin-bottom: -30px;
    max-width: 600px;
  }
  .sc-services {
    padding: 80px 0 120px 0;
  }
  .sc-services .h-title {
    margin-bottom: 60px;
  }
  .sc-services .services-tab-pane {
    margin-top: 40px;
  }
  .sc-services .services-tab-pane .item-list li:nth-child(n+5) {
    margin-top: 40px;
  }
  .sc-services .services-tab-pane .item-list li:nth-child(1),
  .sc-services .services-tab-pane .item-list li:nth-child(2),
  .sc-services .services-tab-pane .item-list li:nth-child(3) {
    padding-right: 30px;
  }
  .sc-services .services-tab-pane .item-list li:nth-child(1)::before,
  .sc-services .services-tab-pane .item-list li:nth-child(2)::before,
  .sc-services .services-tab-pane .item-list li:nth-child(3)::before {
    height: 90px;
    right: 30px;
  }
  .sc-news {
    padding: 60px 0 60px 0;
  }
  .sc-news .h-title {
    margin-bottom: 50px;
  }
  .sc-news .swiper-slide {
    width: 380px;
  }
  .sc-news .link .content {
    height: 52%;
  }
  .sc-news .action {
    margin-top: 60px;
  }
  .sc-customer-sevice {
    padding-top: 40px;
  }
  .sc-customer-sevice .h-title {
    margin-bottom: 50px;
  }
  .sc-customer-sevice .img-ship {
    max-width: 900px;
    margin-bottom: -80px;
  }
  .sc-customer-sevice .item-list li .wrapper {
    gap: 15px;
    min-width: 310px;
  }
  .sc-customer-sevice .item-list .title {
    font-size: 20px;
  }
  .sc-customer-sevice .item-list .icon {
    width: 130px;
    height: 130px;
  }
  .sc-customer-sevice .item-list .icon img {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
@media (max-width: 1199px) {
  .sc-info .info-content-area {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .sc-info .info-content-area .content {
    margin-top: 60px;
  }
  .sc-info .info-content-area .h-title {
    height: 150px;
  }
  .sc-info .info-content-area .h-title .number {
    font-size: 150px;
  }
  .sc-info .info-content-area .h-title .text {
    font-size: 50px;
    line-height: 70px;
  }
  .sc-info .info-content-area .thumbnail-wrapper {
    width: 400px;
    height: 553px;
    right: 0;
  }
  .sc-info .info-content-area .thumbnail-wrapper .image {
    min-width: 400px;
  }
  .sc-info .info-content-area .thumbnail-wrapper .graphic > .obj {
    max-width: 120px;
  }
  .sc-info .info-content-area .thumbnail-wrapper .graphic .obj:nth-child(1) {
    top: 20px;
    right: 20px;
  }
  .sc-info .info-content-area .thumbnail-wrapper .graphic .obj:nth-child(2) {
    left: 20px;
    bottom: 60px;
  }
  .sc-info .info-menu-area {
    padding-bottom: 60px;
  }
  .sc-info .info-menu-area .tab {
    border: 10px solid var(--color-light);
  }
  .sc-info .info-menu-area .nav-tabs .link {
    height: 170px;
  }
  .sc-info .info-menu-area .nav-tabs .link .icon {
    max-width: 100px;
  }
  .sc-info .info-menu-area .tab-horizontal {
    top: -100px;
    margin-bottom: -100px;
  }
  .sc-our-service {
    padding: 60px 0 150px 0;
  }
  .sc-our-service .whead {
    margin-bottom: 60px;
  }
  .sc-our-service .service-area + .service-area {
    margin-top: 100px;
  }
  .sc-our-service .service-area .content {
    min-width: 600px;
  }
  .sc-our-service .service-area .content .icon {
    width: 100px;
    height: 100px;
  }
  .sc-our-service .service-area .content .icon img {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  .sc-our-service .service-area .content .title {
    font-size: 48px;
    margin-bottom: 20px;
  }
  .sc-our-service .service-area .content .desc {
    margin-bottom: 20px;
  }
  .sc-our-service .service-area .thumbnail-wrapper {
    width: 400px;
  }
  .sc-our-service .service-area .thumbnail-wrapper .graphic > .obj {
    max-width: 140px;
  }
  .sc-our-service .service-area .thumbnail-wrapper .graphic .obj:nth-child(1) {
    margin-top: -50px;
    margin-right: -50px;
  }
  .sc-our-service .service-area .thumbnail-wrapper .graphic .obj:nth-child(2) {
    margin-bottom: -50px;
    margin-left: -50px;
  }
  .sc-our-service .service-area:nth-child(odd) .thumbnail-wrapper .graphic .obj:nth-child(1) {
    margin-top: -50px;
    margin-left: -50px;
  }
  .sc-our-service .service-area:nth-child(odd) .thumbnail-wrapper .graphic .obj:nth-child(2) {
    margin-bottom: -50px;
    margin-right: -50px;
  }
  .sc-our-service .service-area .graphic-outside.-I0 img {
    margin-left: -10%;
  }
  .sc-our-service .service-area .graphic-outside.-I1 img {
    max-width: 550px;
  }
  .sc-our-service .service-area .graphic-outside.-I2 img {
    max-width: 650px;
  }
  .sc-our-service .service-area .graphic-outside.-I3 img {
    max-width: 550px;
  }
  .sc-services {
    padding: 60px 0 80px 0;
  }
  .sc-services .h-title {
    margin-bottom: 40px;
  }
  .sc-services .services-tab-pane {
    margin-top: 30px;
  }
  .sc-services .services-tab-pane .swiper-slide {
    padding: 30px;
  }
  .sc-services .services-tab-pane .item-list li:nth-child(n+5) {
    margin-top: 30px;
  }
  .sc-services .services-tab-pane .item-list li:nth-child(1)::before,
  .sc-services .services-tab-pane .item-list li:nth-child(2)::before,
  .sc-services .services-tab-pane .item-list li:nth-child(3)::before {
    height: 80px;
  }
  .sc-news .h-title {
    margin-bottom: 40px;
  }
  .sc-news .swiper {
    padding: 0 15px;
  }
  .sc-news .link .content .title {
    margin-bottom: 10px;
  }
  .sc-news .action {
    margin-top: 50px;
  }
  .sc-customer-sevice {
    padding-top: 0;
  }
  .sc-customer-sevice .h-title {
    margin-bottom: 40px;
  }
  .sc-customer-sevice .img-ship {
    max-width: 800px;
    margin-bottom: -70px;
  }
  .sc-customer-sevice .item-list li .wrapper {
    gap: 12px;
    min-width: 310px;
  }
  .sc-customer-sevice .item-list .title {
    font-size: 18px;
  }
  .sc-customer-sevice .item-list .icon {
    width: 110px;
    height: 110px;
  }
  .sc-customer-sevice .item-list .icon img {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
@media (max-width: 991px) {
  .hero-banner .swiper-pagination {
    bottom: 15px;
  }
  .sc-info .info-content-area .h-title {
    height: 130px;
  }
  .sc-info .info-content-area .h-title .number {
    font-size: 100px;
  }
  .sc-info .info-content-area .h-title .text {
    font-size: 40px;
    line-height: 50px;
  }
  .sc-info .info-content-area {
    padding-top: 30px;
    padding-bottom: 0;
  }
  .sc-info .info-content-area .content {
    margin-top: 80px;
    min-width: auto;
  }
  .sc-info .info-content-area .thumbnail-wrapper {
    width: 50%;
    height: auto;
    margin-left: auto;
  }
  .sc-info .info-content-area .thumbnail-wrapper .image {
    position: relative;
    left: unset;
    top: 0;
    -webkit-transform: unset;
            transform: unset;
    min-width: auto;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 450px;
    margin-left: auto;
  }
  .sc-info .info-content-area .thumbnail-wrapper .image > img {
    margin-top: 0;
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
    opacity: 0.2;
  }
  .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);
    -webkit-box-shadow: inset #FFC70F 0px 0px 30px 0px;
            box-shadow: inset #FFC70F 0px 0px 30px 0px;
    border-radius: 30px;
  }
  .sc-info .info-menu-area .selector {
    display: none;
  }
  .sc-our-service {
    padding: 40px 0 40px 0;
  }
  .sc-our-service .whead {
    margin-bottom: 50px;
  }
  .sc-our-service .service-area + .service-area {
    margin-top: 60px;
  }
  .sc-our-service .service-area .content {
    min-width: 400px;
  }
  .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: 80px;
    height: 80px;
  }
  .sc-our-service .service-area .content .icon img {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  .sc-our-service .service-area .content .title {
    font-size: var(--typo-xxl);
    margin-bottom: 15px;
  }
  .sc-our-service .service-area .thumbnail-wrapper {
    width: 350px;
  }
  .sc-our-service .service-area .thumbnail-wrapper .graphic > .obj {
    max-width: 130px;
  }
  .sc-our-service .service-area .thumbnail-wrapper .graphic .obj:nth-child(1) {
    margin-top: -15px;
    margin-right: -15px;
  }
  .sc-our-service .service-area .thumbnail-wrapper .graphic .obj:nth-child(2) {
    margin-bottom: -15px;
    margin-left: -15px;
  }
  .sc-our-service .service-area:nth-child(odd) .thumbnail-wrapper .graphic .obj:nth-child(1) {
    margin-top: -15px;
    margin-left: -15px;
  }
  .sc-our-service .service-area:nth-child(odd) .thumbnail-wrapper .graphic .obj:nth-child(2) {
    margin-bottom: -15px;
    margin-right: -15px;
  }
  .sc-our-service .service-area .graphic-outside > img {
    opacity: 0.5;
  }
  .sc-services {
    padding: 40px 0 50px 0;
  }
  .sc-services .h-title {
    margin-bottom: 30px;
  }
  .sc-services .services-tab-pane .swiper-slide {
    padding: 20px;
  }
  .sc-services .services-tab-pane .item-list li {
    width: 100%;
  }
  .sc-services .services-tab-pane .item-list li + li {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1843137255);
  }
  .sc-services .services-tab-pane .item-list li:nth-child(n+5) {
    margin-top: 15px;
  }
  .sc-services .services-tab-pane .item-list li::before {
    display: none;
  }
  .sc-services .services-tab-pane .item-list .link {
    font-size: var(--typo-sm);
  }
  .sc-services .services-tab-pane .tab-pane-list,
  .sc-services .services-tab-pane .tab-pane-border {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
  .sc-services .services-tab-pane .tab-pane-border .item:not(:first-child) {
    display: none;
  }
  .sc-news {
    padding: 40px 0 40px 0;
  }
  .sc-news .h-title {
    margin-bottom: 30px;
  }
  .sc-news .link .content {
    height: 140px;
    padding: 15px;
  }
  .sc-news .action {
    margin-top: 40px;
  }
  .sc-customer-sevice {
    padding-bottom: 40px;
    overflow: hidden;
  }
  .sc-customer-sevice .h-title {
    margin-bottom: 30px;
  }
  .sc-customer-sevice .img-ship {
    margin-bottom: 0;
    -webkit-filter: grayscale(1);
            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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            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 {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
}
@media (max-width: 767px) {
  .hero-banner .cover {
    padding-top: calc(80dvh - 120px);
  }
  .hero-banner .swiper-pagination {
    bottom: 10px;
  }
  .sc-info .info-content-area .content {
    margin-top: 0;
    text-align: center;
  }
  .sc-info .info-content-area .sub-title {
    text-align: left;
  }
  .sc-info .info-content-area .desc {
    margin-bottom: 20px;
    text-align: left;
  }
  .sc-info .info-content-area .thumbnail-wrapper {
    width: 60%;
  }
  .sc-info .info-menu-area .nav-tabs .link {
    height: 150px;
    gap: 15px;
  }
  .sc-info .info-menu-area .desc {
    font-size: var(--typo-sm);
  }
  .sc-our-service .whead {
    margin-bottom: 40px;
  }
  .sc-our-service .service-area:nth-child(odd) > .container > .row {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            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 > h3 {
    display: block;
  }
  .sc-our-service .service-area .content .title {
    display: none;
  }
  .sc-our-service .service-area .content .icon {
    width: 70px;
    height: 70px;
  }
  .sc-our-service .service-area .content .title {
    font-size: var(--typo-xl);
  }
  .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-our-service .service-area .graphic-outside > img {
    display: none;
  }
  .sc-services {
    padding: 40px 0 40px 0;
  }
  .sc-services .services-tab-pane {
    margin-top: 20px;
  }
  .sc-services .services-nav .item {
    height: 50px;
  }
  .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 .link .content {
    height: 130px;
  }
  .sc-news .action {
    margin-top: 30px;
  }
  .sc-customer-sevice .item-list .icon {
    width: 70px;
    height: 70px;
  }
  .sc-customer-sevice .img-ship {
    max-width: 800px;
  }
}
@media (max-width: 575px) {
  .sc-info .info-content-area {
    margin-bottom: -50px;
  }
  .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;
  }
}
body > div.skiptranslate {
  opacity: 0;
  visibility: hidden;
}

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

.topgraphic-inner .title {
  font-size: var(--typo-xl);
  color: transparent !important;
  -webkit-text-stroke: 1px var(--color-light);
}
.topgraphic-inner .title::before {
  display: none;
}

.default-inner-page {
  padding-bottom: 70px;
}
.default-inner-page .preparing-info {
  text-align: center;
  padding: 50px 0 80px 0;
}
.default-inner-page .preparing-info .icon {
  width: -webkit-max-content;
  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;
  -webkit-transition: var(--transition);
  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%;
  -webkit-transform: translateY(-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;
  -webkit-transform: unset;
          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 {
  margin-top: 120px;
}
.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 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          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 .sc-news-hilight {
  padding: 50px 50px 20px 50px;
  background-color: var(--color-primary);
}
.default-inner-page .sc-news-hilight .link {
  text-decoration: none;
}
.default-inner-page .sc-news-hilight .link:hover .cover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.default-inner-page .sc-news-hilight .link:hover .content {
  background-color: var(--color-secondary);
}
.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;
  -webkit-transform: translateX(0) scale(1);
          transform: translateX(0) scale(1);
}
.default-inner-page .sc-news-hilight .cover {
  width: 800px;
  padding-top: 600px;
  overflow: hidden;
}
.default-inner-page .sc-news-hilight .cover img {
  -webkit-transition: var(--transition-btn);
  transition: var(--transition-btn);
}
.default-inner-page .sc-news-hilight .content {
  position: relative;
  height: 100%;
  padding: 35px 35px 50px 35px;
  background-color: var(--color-light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.default-inner-page .sc-news-hilight .content .n-title {
  font-size: var(--typo-lg);
  font-weight: var(--fw-medium);
  color: var(--color-secondary);
  -webkit-line-clamp: 2;
  min-height: 2.8em;
  line-height: 1.4em;
  margin-bottom: 30px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.default-inner-page .sc-news-hilight .content .desc {
  font-size: var(--typo-sm);
  color: var(--color-default);
  -webkit-line-clamp: 3;
  min-height: 4.2em;
  line-height: 1.4em;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.default-inner-page .sc-news-hilight .content .readmore {
  color: var(--color-secondary);
  font-size: var(--typo-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: auto;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.default-inner-page .sc-news-hilight .content .readmore .icon-arrow-right {
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: translateX(-10px) scale(0.8);
          transform: translateX(-10px) scale(0.8);
}
.default-inner-page .sc-news-hilight .swiper-horizontal > .swiper-pagination-bullets,
.default-inner-page .sc-news-hilight .swiper-pagination-bullets.swiper-pagination-horizontal {
  padding-top: 20px;
}
.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 {
  -webkit-transform: translateX(5px);
          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 {
  -webkit-transition: var(--transition-btn);
  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;
  -webkit-transition: var(--transition);
  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;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-bottom: 35px;
}
.default-inner-page .sc-news-list .news-list-area .readmore {
  color: var(--color-secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.default-inner-page .sc-news-list .news-list-area .readmore .icon-arrow-right {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.default-inner-page .pagination-wrapper {
  margin-top: 80px;
}
.default-inner-page .editor-content {
  margin-top: 30px;
}

.news-page .sc-news-hilight {
  background-color: transparent;
}
.news-page .sc-news-hilight .link {
  display: block;
}
.news-page .sc-news-hilight .link .content {
  background-color: var(--color-primary);
}
.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-hilight .link:hover .content {
  background-color: var(--color-primary);
}
.news-page .sc-news .news-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.news-page .sc-news .link .content .title {
  font-size: var(--typo-md);
  margin-bottom: 15px;
  top: 15px;
}
.news-page .sc-news .link:hover .content .title {
  top: 0;
}
.news-page .sc-news .link .content .desc {
  font-size: var(--typo-default);
}
.news-page .sc-news .link .content .readmore {
  font-size: 12px;
}

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

.gallery-detail-list .slider-nav .wrapper .image .cover {
  border: 2px solid transparent;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.gallery-detail-list .slider-nav .slick-current .wrapper .image .cover {
  border-color: var(--color-light);
}

@media (max-width: 1440px) {
  .default-inner-page .sc-photo-gallery .gallery-main .cover {
    padding-top: 700px;
  }
  .default-inner-page .sc-vdo-block {
    margin-top: 80px;
  }
  .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 .cover {
    width: 700px;
    padding-top: 500px;
  }
  .default-inner-page .sc-news-hilight .content {
    padding: 25px 25px 35px 25px;
  }
  .default-inner-page .sc-news-hilight .content .n-title {
    margin-bottom: 15px;
  }
  .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 .gallery-detail-list .slider-nav {
    padding: 10px 400px 10px 100px;
  }
  .default-inner-page .gallery-detail-list .slider-nav .slick-prev > span,
  .default-inner-page .gallery-detail-list .slider-nav .slick-next > span {
    font-size: 36px;
  }
  .default-inner-page .sc-dowmnload-block {
    margin-top: 80px;
  }
}
@media (max-width: 1199px) {
  .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-bottom: 50px;
  }
  .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 .sc-vdo-block {
    margin-top: 50px;
  }
  .default-inner-page .action.-back {
    padding-top: 30px;
    margin-top: 40px;
  }
  .default-inner-page .sc-news-hilight {
    padding: 40px 40px 20px 40px;
  }
  .default-inner-page .sc-news-hilight .cover {
    width: 600px;
    padding-top: 450px;
  }
  .default-inner-page .pagination-wrapper {
    margin-top: 60px;
  }
  .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;
  }
  .news-page .sc-news .link .content .title {
    top: 10px;
    margin-bottom: 10px;
  }
}
@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-vdo-block {
    margin-top: 40px;
  }
  .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 0;
  }
  .default-inner-page .sc-news-hilight .cover {
    width: 100%;
    padding-top: 60%;
  }
  .default-inner-page .sc-news-hilight .content {
    padding: 20px;
  }
  .default-inner-page .sc-news-hilight .content .readmore {
    margin-top: 30px;
  }
  .default-inner-page .sc-news-hilight .content .readmore .icon-arrow-right {
    -webkit-transform: unset;
            transform: unset;
    opacity: 1;
  }
  .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: 10px 300px 10px 90px;
  }
  .default-inner-page .gallery-detail-list .slider-nav .wrapper {
    height: 100px;
  }
  .default-inner-page .gallery-detail-list .slider-nav .slick-prev,
  .default-inner-page .gallery-detail-list .slider-nav .slick-next {
    width: 50px;
    height: 50px;
  }
  .default-inner-page .gallery-detail-list .slider-nav .slick-prev > span,
  .default-inner-page .gallery-detail-list .slider-nav .slick-next > span {
    font-size: 30px;
  }
  .news-page .sc-news .news-area {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .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-bottom: 30px;
  }
  .default-inner-page h2.title {
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .default-inner-page .sc-vdo-block {
    margin-top: 30px;
  }
  .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 {
    padding: 15px;
  }
  .default-inner-page .sc-news-hilight .content .n-title {
    font-size: var(--typo-md);
  }
  .default-inner-page .sc-news-hilight .content .readmore {
    font-size: var(--typo-sm);
  }
  .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,
  .default-inner-page .gallery-detail-list .slider-nav .slick-next {
    width: 35px;
    height: 35px;
  }
  .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 .slick-prev > span,
  .default-inner-page .gallery-detail-list .slider-nav .slick-next > span {
    font-size: 18px;
  }
  .default-inner-page .gallery-detail-list .slider-nav {
    padding: 10px 60px;
  }
  .default-inner-page .editor-content {
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .default-inner-page .sc-news-list .news-list-area {
    grid-template-columns: repeat(1, 1fr);
  }
  .default-inner-page .gallery-detail-list:before {
    height: 100px;
  }
  .default-inner-page .gallery-detail-list .slider-nav .wrapper {
    height: 80px;
  }
  .news-page .sc-news .news-area {
    grid-template-columns: repeat(1, 1fr);
  }
  .default-inner-page .sc-dowmnload-block .desc {
    font-size: 11px;
  }
}
.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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);
  -webkit-transition: var(--transition);
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px;
  background-color: #EBEBEB;
  font-size: var(--typo-xs);
  font-weight: var(--fw-bold);
  -webkit-transition: var(--transition);
  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;
  -webkit-transition: var(--transition);
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-default);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.product-cat-page .sc-side-collapes .collapse-group .item-list .link::before {
  font-family: "feather";
  content: "\e844";
  -webkit-transition: var(--transition);
  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 {
  -webkit-transform: scale(1.1);
          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 {
  -webkit-transform: translateX(5px);
          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 {
  -webkit-transition: var(--transition-btn);
  transition: var(--transition-btn);
}
.product-cat-page .sc-news-list > .link .content {
  padding: 20px;
  background-color: #F4F4F4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-transition: var(--transition);
  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;
  -webkit-transition: var(--transition);
  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;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.product-cat-page .sc-news-list > .link .readmore {
  color: var(--color-secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin-top: auto;
  height: 15px;
}
.product-cat-page .sc-news-list > .link .readmore .icon-arrow-right {
  -webkit-transition: var(--transition);
  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 .block {
  max-width: 640px;
  padding: 40px;
  background-color: #F4F4F4;
}
.contact-page .form-default .form-group {
  margin-bottom: 10px;
}
.contact-page .form-default .form-group.has-error .form-control {
  border-color: var(--color-secondary);
}
.contact-page .form-default .form-group.has-success .form-control-feedback {
  opacity: 0;
}
.contact-page .form-default .form-group .form-control {
  height: 60px;
  font-size: var(--typo-md);
}
.contact-page .form-default .form-group textarea.form-control {
  height: 120px;
}
.contact-page .form-default .form-group .form-control-feedback {
  background-image: none;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: var(--transition);
  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,
.contact-page .form-default .form-group .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: var(--typo-md);
}
.contact-page .action {
  margin-top: 20px;
}
.contact-page .file-upload {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.contact-page .file-upload .file {
  display: none;
}
.contact-page .file-upload .file-upload-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact-page .file-upload .file-upload-group .file-name {
  height: 60px;
  border: none;
  padding: 15px 45px 15px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 180px;
  pointer-events: none;
}
.contact-page .file-upload .file-upload-group .btn {
  background: -webkit-gradient(linear, left top, right top, from(#417bbb), to(#002359));
  background: linear-gradient(to right, #417bbb 0%, #002359 100%);
  margin-left: -30px;
}
.contact-page .block-address {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 40px;
}
.contact-page .block-address .block-address-wrapper {
  margin-top: auto;
}
.contact-page .block-address .h-title {
  color: var(--color-secondary);
  font-size: var(--typo-xxl);
}
.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: 40px;
}
.contact-page .block-address .block-group .item-list .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.contact-page .block-address .block-group .item-list .wrapper .icon {
  width: 34px;
}
.contact-page .block-address .block-group .item-list .wrapper .icon img {
  min-width: 25px;
}
.contact-page .block-address .block-group .item-list .link {
  color: var(--color-default);
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.contact-page .block-address .block-group .item-list .link:hover {
  color: var(--color-secondary);
}
.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;
}

.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 .desc {
    font-size: 26px;
  }
  .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;
  }
  .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 img {
    min-width: 20px;
  }
  .contact-page .block-address .block-group .item-list li + li {
    margin-top: 30px;
  }
  .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;
  }
  .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 {
    -webkit-transform: scale(0.8);
            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;
  }
}
@media (max-width: 767px) {
  .contact-page .form-default .form-group .form-control {
    font-size: var(--typo-sm);
  }
  .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 .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 img {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    margin-left: -3px;
  }
  .contact-page .block-address .block-group .item-list .wrapper {
    gap: 5px;
  }
  .contact-page .block-address .action {
    margin-top: 30px;
  }
  .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 {
    -webkit-transform: scale(0.6);
            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;
  }
}
.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: -webkit-max-content;
  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%;
  -webkit-transform: translate(-50%, -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: -webkit-max-content;
  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;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.ck-company .sc-elevate .elevate-list .item:nth-child(odd)::before {
  background: -webkit-gradient(linear, left top, right top, from(#ff560f), to(#02255c));
  background: linear-gradient(to right, #ff560f 0%, #02255c 100%);
}
.ck-company .sc-elevate .elevate-list .item:nth-child(even)::before {
  background: -webkit-gradient(linear, left top, right top, from(#02255c), to(#ff560f));
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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: -webkit-max-content;
  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 {
    -webkit-transform: scale(0.9);
            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 {
    -webkit-transform: scale(0.7);
            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 {
    -webkit-transform: scale(0.8);
            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 {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    margin-top: -90px;
  }
  .ck-history {
    padding: 40px 0 60px;
  }
  .ck-history .c-title {
    font-size: 20px;
  }
  .ck-history .icon {
    -webkit-transform: scale(0.7);
            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 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            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: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
  }
  .ck-mission .mission-area .mission-top .content:nth-child(2) span {
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
}/*# sourceMappingURL=source.css.map */