/* system */
.system-home {
  padding-top: 4rem;
}
.system-home .grid-cols-2 {
  display: flex;
}
.system-home .col-1 {
  width: calc(100% - 27.6875rem);
}
.system-home .col-2 {
  width: 27.6875rem;
  border-radius: 1.25rem;
}
.system-home .col-1 .title-main {
  margin-bottom: 3rem;
  padding-right: 6rem;
}
.system-home .col-1 .title-main h2 {
  margin-bottom: 1.25rem;
  line-height: 1.4;
}
.system-home .col-1 .title-main p {
  margin-bottom: 0;
  font-weight: 500;
}
.system-slider .image-cover {
  padding-top: 68%;
  border-radius: 0.625rem;
}

.system-slider::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 9.4375rem;
  background: linear-gradient(90deg, rgba(115, 115, 115, 0) 0%, #d9d9d9 100%);
  z-index: 2;
}
.autoplay-linear {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.system-home .col-2 .image-cover {
  padding-top: 115%;
  border-radius: 0.625rem;
}
@media (max-width: 767.98px) {
  .system-home {
    padding-top: 2.75rem;
  }
  .system-home .sec-container {
    padding: 0;
  }
  .system-home .col-1 .title-main {
    padding: 0 var(--section);
    margin-bottom: 2rem;
  }
  .system-home .title-main p {
    font-size: 0.9375rem;
  }
  .system-home .grid-cols-2 {
    flex-direction: column;
  }
  .system-home .col-1 {
    width: 100%;
    padding: 0;
  }
  .system-slider::after {
    width: 8.4375rem;
    background: linear-gradient(90deg, rgba(115, 115, 115, 0) 0%, #fff 100%);
  }
}
/** Team */
.team-home .title-main .title-inner {
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.team-home .group-swiper .swiper-button {
  border-color: var(--white);
}
.team-home .group-swiper .swiper-button:hover {
  background-color: var(--white);
}
.team-home .group-swiper .swiper-button:hover svg {
  fill: var(--theme-color);
}
.team-home .title-main h2 {
  color: var(--white);
  margin-bottom: 0;
}
.team-content {
  border-radius: 1.25rem;
  overflow: hidden;
  padding: 2rem 3.56rem;
}
.team-grid {
  margin-top: 2.3rem;
  display: flex;
  gap: 1.25rem;
}
.team-grid .slider-thumb {
  width: 6.1875rem;
  height: 21.5625rem;
}

.team-grid .slider-content {
  width: calc(100% - 6.1875rem);
}
.team-grid .slider-content .img {
  padding: 1rem 2rem 0;
  height: 100%;
}
.team-grid .slider-thumb .img {
  border-radius: 0.625rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(
    180deg,
    rgba(1, 104, 220, 0.3) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  backdrop-filter: blur(15px);
  padding: 1rem 1.2rem 0;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  cursor: pointer;
}
.team-grid .slider-thumb .img:hover,
.team-grid .slider-thumb .swiper-slide-thumb-active .img {
  border-color: rgba(255, 255, 255, 1);
}
.team-grid .slider-thumb img {
  object-fit: contain;
}
.team-grid .slider-content .img img {
  object-fit: contain;
  margin-bottom: -1.35rem;
}
.box-team {
  display: grid;
  grid-template-columns: 21.5625rem 1fr;
  column-gap: 4rem;
  align-items: center;
}
.box-team .box-image {
  margin: 0;
  padding: 1.3rem;
  border-radius: 0.9375rem;
  border: 1px solid #fff;
  background: #fff;
  overflow: hidden;
  height: 21.5625rem;
}
.box-team .box-image .img {
  border-radius: 0.5rem;
  background: linear-gradient(
    180deg,
    rgba(1, 104, 220, 0.4) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  backdrop-filter: blur(15px);
}
.box-team .box-text {
  padding: 0;
}
.box-team .box-text .name {
  font-weight: 700;
  font-size: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.box-team .box-text .name span {
  font-weight: 500;
  text-transform: none;
}
.box-team .box-text .desc ul {
  margin: 0 0 0 1.3rem;
}
.box-team .box-text .desc ul li {
  font-size: 1.125rem;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.box-team .box-text .group-btn {
  margin-top: 2.8rem;
  display: flex;
  gap: 1.85rem;
  align-items: center;
}
.box-team .box-text .group-btn .button {
  width: 9.5rem;
}
@media screen and (max-width: 767.98px) {
  .team-home .sec-container {
    padding: 0;
  }
  .team-content {
    padding: 2rem 1rem;
    border-radius: 0;
  }
  .team-grid {
    flex-direction: column;
    gap: 1rem;
  }
  .team-grid .slider-thumb {
    display: none;
  }
  .team-grid .slider-content {
    width: 100%;
  }
  .box-team {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 1rem;
  }
  .box-team .box-text .name {
    font-size: 1.125rem;
    margin-bottom: 1.125rem;
  }
  .box-team .box-text .desc ul li {
    font-size: 0.9375rem;
  }
  .box-team .box-text .group-btn {
    margin-top: 1.5rem;
  }
}
/* Press */
.press-home {
  padding-top: 3.15rem;
}
.press-home .title-main h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
  text-transform: math-auto;
}
.press-home .title-main p {
  line-height: 1.4;
  margin-bottom: 2.8rem;
}
.press-content {
  border-radius: 1.25rem;
  overflow: hidden;
  padding: 2rem 3.56rem;
}
.press-grid {
  display: flex;
  column-gap: 5.5rem;
  width: 100%;
}
.press-grid .col-1 {
  width: calc(42% - 2.75rem);
}

.press-grid .col-2 {
  width: calc(58% - 2.75rem);
}
.box-press {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.56rem;
  padding: 1.25rem 2rem;
  background-color: var(--white);
  border-radius: 0.9375rem;
  align-items: flex-end;
}
.box-press .box-text {
  padding: 0;
  order: -1;
}
.box-press .box-text .title a {
  margin: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 1.125rem;
  line-height: 1.4;
  color: var(--theme-color);
  font-weight: 700;
}
.box-press .box-text .logo {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #d0d8dd;
  height: 4.9375rem;
}
.box-press .box-text .logo img {
  height: 100%;
  width: fit-content;
  object-fit: contain;
  margin-left: 0;
  margin-right: auto;
}
.box-press .box-image {
  margin: 0;
}
.box-press .box-image .image-cover {
  padding-top: 72.25%;
  border-radius: 0.625rem;
}
.box-press .description {
  grid-column: span 2;
  margin-top: 1.3rem;
  color: var(--black-200);
  line-height: 1.4;
}
.box-press .btn__text {
  margin-top: 1.25rem;
}
.press-grid .slider-thumb .img {
  height: 4.4375rem;
  border-radius: 0.625rem;
  border: 1px solid #fff;
  background: var(--theme-color3);
  padding: 0.62rem;
  cursor: pointer;
}
.press-grid .slider-thumb .swiper-slide-thumb-active .img {
  background-color: var(--white);
  box-shadow: 0 0 5px 0 #0168dc inset;
}
.press-grid .slider-thumb .img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.press-grid .group-swiper {
  margin-top: 3rem;
}
.press-grid .group-swiper .swiper-button {
  border-color: var(--white);
}
.press-grid .group-swiper .swiper-button svg {
  fill: var(--white);
}
.press-grid .group-swiper .swiper-button:hover {
  background-color: var(--white);
}
.press-grid .group-swiper .swiper-button:hover svg {
  fill: var(--theme-color);
}
.team-home .pagination-progress .swiper-pagination-bullet-active span,
.press-grid .pagination-progress .swiper-pagination-bullet-active span {
  background-color: #ffffff;
}
.team-home .pagination-progress .circle-origin,
.press-grid .pagination-progress .circle-origin {
  stroke: var(--white);
}
@media (max-width: 767.98px) {
  .press-home .sec-container {
    padding: 0;
  }
  .press-home .title-main p {
    font-size: 0.9375rem;
  }
  .press-content {
    border-radius: 0;
    padding: 2rem 1rem;
  }
  .press-grid {
    flex-direction: column;
    margin: 0;
  }
  .press-grid .col-1,
  .press-grid .col-2 {
    width: 100%;
  }
  .press-grid .slider-thumb {
    display: none;
  }
  .box-press {
    grid-template-columns: minmax(0, 1fr);
    padding: 1rem;
  }
  .box-press .box-image {
    order: -1;
  }
  .box-press .description {
    grid-column: inherit;
    margin: 0;
  }
  .box-press .box-text .logo {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
    height: 3.9375rem;
    background-color: var(--theme-color3);
    width: fit-content;
    border-radius: 0.625rem;
    margin-top: -1.875rem;
    margin-left: 1rem;
    padding: 0.5rem;
    margin-bottom: 1rem;
  }
  .box-press .box-text .title {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #d0d8dd;
  }
  .box-press .box-text .title a {
    font-size: 1rem;
  }
}

/* Custommer */
.custommer-home {
  padding: 4rem 0 3rem;
}
.custommer-home .sec-container {
  padding-right: 0;
}
.custommer-home .title-main {
  padding-right: var(--section);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.56rem;
}
.custommer-home .title-main h2 {
  margin-bottom: 0;
}
.box-custommer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  padding: 1rem 0.75rem 1rem 1.5rem;
  background-color: var(--white);
  border-radius: 0.9375rem;
  border: 1px solid #d0d8dd;
}
.box-custommer:hover {
  background-color: var(--theme-color3);
}
.box-custommer .box-image {
  margin: 0;
  width: 100%;
  order: 1;
}

.box-custommer .box-image .video-fit {
  position: relative;
  width: 100%;
  background: #d9d9d9;
  border-radius: 0.625rem;
  padding-top: 0;
  height: 18.9375rem;
}
.video-fit .youtube-video {
  height: 100%;
}
.video-fit .youtube-video .bg-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.video-controls {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
}
.video-controls .control-btn {
  background-color: var(--theme-color);
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--theme-color);
  border-radius: 99rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  line-height: unset;
  min-height: unset;
}
.video-controls .control-btn:hover {
  background-color: var(--white);
  border-color: var(--white);
}
.video-controls .control-btn:hover svg {
  fill: var(--theme-color);
}
.box-custommer .box-text {
  padding: 0.5rem 0 0;
}
.box-custommer .box-text .icon-box {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
.box-custommer .box-text .icon-box .image-cover {
  flex-shrink: 0;
  border-radius: 99rem;
  width: 3.75rem;
  height: 3.75rem;
  padding-top: 0;
}
.box-custommer .box-text .icon-box .text-content .name {
  font-weight: 700;
  color: var(--black);
  margin: 0 0 0.3rem;
}
.box-custommer .box-text .icon-box .text-content .position {
  color: var(--black-200);
  margin-bottom: 0;
  font-size: 0.875rem;
}
.box-custommer .box-text .desc {
  overflow: hidden;
  overflow-y: auto;
  margin-top: 1rem;
  line-height: 1.4;
  height: 9.875rem;
}
.group-swiper {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
.group-swiper .swiper-button {
  position: static;
  transform: none;
}
@media (max-width: 767.98px) {
  .custommer-home {
    padding: 2.75rem 0;
  }
  .custommer-home .sec-container {
    padding-right: var(--section);
  }
  .box-custommer {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 1rem;
    padding: 1rem;
  }
  .box-custommer .box-text {
    padding: 0;
  }
  .box-custommer .box-text .desc {
    overflow: hidden;
    overflow-y: auto;
    margin-top: 1rem;
    line-height: 1.4;
    height: 7rem;
    font-size: 0.9375rem;
  }
  .box-custommer .box-image .video-fit {
    height: 25rem;
  }
}
