.main-container {
}

/* banner */
#banner {
  width: 100%;
  background-color: #000000;
  color: #ffffff;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 150px 0;
}

.banner-wrapper {
  width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.banner-content {
}

.banner-topic {
  font-size: 18px;
}

.banner-heading {
  font-size: 42px;
  font-weight: 500;
  margin: 50px 0;
}

.banner-description {
  font-size: 18px;
}

.banner-more {
  width: 100px;
  margin: 30px 0 0 0;
  padding: 8px 10px;
  border-radius: 30px;
  background: #0344b8;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}

/* welcome */
#welcome {
  background-color: #ffffff;
  padding: 100px 0;
  border-bottom: 6px solid #0344b8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.welcome-wrapper {
  width: 1380px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.welcome-heading {
  font-size: 36px;
  margin: 0 0 20px 0;
  color: #0d0d0d;
  font-weight: 500;
}

.welcome-content {
  font-size: 18px;
  line-height: 1.7;
  color: #333333;
  max-width: 950px;
}

/* products */
#products {
  background-color: #f6f7f8;
  padding: 120px 0;

  display: flex;
  justify-content: center;
}

.products-wrapper {
  width: 1380px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.products-content1 {
}

.products-heading {
  font-size: 42px;
  font-weight: 500;
  margin: 0;
}

.products-description {
  font-size: 20px;
  margin: 12px 0 20px 0;
}

.products-nav {
  margin: 0px 0 5px 0;
}

.products-nav ul {
  padding: 0;
  display: flex;
}

.products-nav ul li {
  list-style-type: none;
  display: flex;
  cursor: pointer;
  transition: color 0.3s, background-color 0.3s;
  color: #333;
}

.products-nav ul li.active {
  color: #333;
  font-weight: 600;
}

.products-nav ul li:not(.active) {
  color: #999;
}

.products-nav ul li:first-child::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 16px;
  background: #0344b8;
  margin: 0 8px;
}

.products-content2 {
  display: flex;
  width: 100%;
  height: 400px;
}

.products-content2-wrapper {
  display: flex;
  background-color: #ffffff;
  flex-direction: row;
  align-items: center;
  padding: 0 0 0 50px;
}
.products-content2-wrapper-wrapper {
  width: 50%;
  border-left: 4px solid #f7c600;
  padding: 0px 20px;
}

.products-content2-wrapper-wrapper h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.products-content2-wrapper-wrapper p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.products-image {
  width: 50%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* datacenter */
#datacenter {
  background-color: #ffffff;
  padding: 120px 0;

  display: flex;
  justify-content: center;
}

.article-wrapper {
  width: 1380px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.article-content1 {
}

.article-content1 h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 5px 0;
}

.article-heading {
  font-size: 42px;
  font-weight: 500;
  margin: 0;
}

.article-description {
  font-size: 20px;
  margin: 12px 0 50px 0;
}

.article-content2 {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.article-swiper-wrapper {
  position: relative;
  width: 100%;
}

.datacenterSwiper {
  position: static;
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.card-slider-wrapper {
  min-width: 400px;
  background-color: #000;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
}

#news .card-slider-wrapper {
  min-width: 400px;
  background-color: #fff;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
}

.card-content {
  padding: 24px 25px;
}

.title_wrapper {
  display: flex;
  flex-direction: column;
}

.card-content p {
  color: #f7c600;
  font-size: 15px;
  margin-bottom: 40px;
  text-align: right;
  text-transform: uppercase;
}

#news .card-content p {
  color: #f7c600;
  font-size: 15px;
  margin-bottom: 0px;
  text-align: left;
  text-transform: uppercase;
}

.card-content h3 {
  max-width: 350px;
  color: #fff;
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 500;
}

#news .card-content h3 {
  max-width: 350px;
  color: #000;
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 500;
}

.card-arrow {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #f7c600;
  font-size: 20px;
}

.card-img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.card-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

#news .card-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.swiper-button-prev,
.swiper-button-next {
  color: #ffffff;
  width: 35px;
  height: 35px;
  background: #f7c600;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.article-swiper-wrapper .swiper-button-prev {
  left: -80px;
  top: 50%;
}

.article-swiper-wrapper .swiper-button-next {
  right: -80px;
  top: 50%;
}

.datacenterSwiper .swiper-pagination,
.newsSwiper .swiper-pagination {
  display: none;
  bottom: -50px;
}

.swiper-pagination-bullet-active {
  background: #f7c600;
}

/* news */
#news {
  background-color: #f6f7f8;
  padding: 100px 0;

  display: flex;
  justify-content: center;
}

.newsSwiper {
  position: static;
  overflow: hidden;
}

/* company */
#company {
  background-color: #282828;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  color: #ffffff;
}

.company-content-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.company-content {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 10px;
  align-items: center;
}

.company-card {
  background-color: #333333;
  border-radius: 12px;
  padding: 30px;
  width: 380px;
  text-align: center;
  transition: transform 0.3s, background-color 0.3s;
}

.company-card i {
  font-size: 48px;
  color: #f7c600;
  margin: 10px 0;
}

.company-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 500;
}

.company-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
}

.company-card:hover {
  transform: translateY(-10px);
  background-color: #444444;
}
