.wedo-main {
  max-width: 1520px;
  margin: 0 auto;
  padding: 50px 100px;
}
.wedo-main h2 {
  font-size: 40px;
  color: #0E3267;
  margin-bottom: 30px;
}
.wedo-main .wedo-section {
  display: flex;
  gap: 50px;
  margin-bottom: 100px;
  align-items: center;
}
.wedo-main .wedo-section.reverse {
  flex-direction: row-reverse;
}
.wedo-main .wedo-section.reverse .reverse-box {
  display: flex;
  gap: 50px;
}
.wedo-main .wedo-section.reverse .reverse-box > div p {
  font-size: 2rem;
  color: #0E3267;
}
.wedo-main .wedo-section .wedo-content {
  flex: 1;
  overflow: hidden;
}
.wedo-main .wedo-section .wedo-content h2 {
  font-size: 40px;
  color: #0E3267;
  margin-bottom: 30px;
}
.wedo-main .wedo-section .wedo-content h3 {
  font-size: 30px;
  color: #2968B2;
  margin-bottom: 30px;
}
.wedo-main .wedo-section .wedo-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #0E3267;
  font-weight: bold;
  margin-bottom: 20px;
}
.wedo-main .wedo-section .wedo-content p:nth-child(2) {
  color: #2968B2;
  font-size: 24px;
}
.wedo-main .wedo-section .wedo-content .highlight-box {
  border-radius: 10px;
  margin-top: 30px;
  display: flex;
  align-items: center;
}
.wedo-main .wedo-section .wedo-content .highlight-box > div {
  width: 55%;
  background-color: #4A4C59;
  color: #fff;
  padding: 30px;
}
.wedo-main .wedo-section .wedo-content .highlight-box > div h3 {
  color: #fff;
  font-size: 3.5rem;
  margin-bottom: 20px;
}
.wedo-main .wedo-section .wedo-content .highlight-box > div p {
  color: #fff;
}
.wedo-main .wedo-section .wedo-content .highlight-box > div .btn {
  margin-top: 20px;
  margin: 20px auto;
  background: #4491CE;
}
.wedo-main .wedo-section .wedo-content .highlight-box img {
  flex: 1;
}
.wedo-main .wedo-section .wedo-image {
  width: 40%;
}
.wedo-main .wedo-section .wedo-image img {
  width: 90%;
}
.se-section {
  padding: 50px 0;
  max-width: 1520px;
  margin: 0 auto;
}
.se-section .wedo-content {
  flex: 1;
  overflow: hidden;
}
.se-section .wedo-content h2 {
  font-size: 40px;
  color: #0E3267;
  margin-bottom: 30px;
}
.se-section .wedo-content p {
  font-size: 23px;
  line-height: 1.6;
  color: #0E3267;
  font-weight: bold;
  margin-top: 80px;
  margin-bottom: 20px;
}
.se-section .wedo-content p span {
  color: #2968B2;
}
.se-section .wedo-content a {
  color: #F67826;
  font-size: 20px;
}
.se-section .wedo-content a:hover {
  color: #333;
}
.se-section .atlas-slider {
  margin: 40px 0;
  height: 400px;
  position: relative;
}
.se-section .atlas-slider .swiper {
  overflow: hidden;
  padding-bottom: 60px;
  margin-top: 10px;
}
.se-section .atlas-slider .swiper .swiper-slide {
  display: flex;
  height: 400px;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.se-section .atlas-slider .swiper .swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.se-section .atlas-slider .swiper .swiper-button-prev {
  top: auto;
  bottom: -92px;
  left: 40%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.se-section .atlas-slider .swiper .swiper-button-prev::after {
  content: '';
  font-family: 'Courier New', 'Courier, monospace';
  width: 30px;
  height: 30px;
  background: url('../images/point.svg') no-repeat;
  background-size: 100%;
}
.se-section .atlas-slider .swiper .swiper-button-prev:hover::after {
  transform: translateY(-200px);
  filter: drop-shadow(#333 0 200px);
}
.se-section .atlas-slider .swiper .swiper-button-next {
  top: auto;
  bottom: -91px;
  right: 38%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.se-section .atlas-slider .swiper .swiper-button-next::after {
  content: '';
  font-family: 'Courier New', 'Courier, monospace';
  width: 30px;
  height: 30px;
  filter: drop-shadow(#333 0 200px);
  background: url('../images/right.svg') no-repeat;
  background-size: 100%;
}
.se-section .atlas-slider .swiper .swiper-button-next:hover::after {
  transform: translateY(-200px);
  filter: drop-shadow(#333 0 200px);
}
.se-section .atlas-slider .swiper .swiper-pagination {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
}
.se-section .atlas-slider .swiper .swiper-pagination span {
  width: 20px;
  height: 20px;
  background-color: #65ABDE80;
  opacity: 1;
  border-radius: 50%;
  margin: 0 10px;
  cursor: pointer;
}
.se-section .atlas-slider .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2968B2;
}
@media screen and (max-width: 1520px) {
  .se-section .wedo-content .atlas-slider .swiper .swiper-button-prev {
    left: 37%;
  }
  .se-section .wedo-content .atlas-slider .swiper .swiper-button-next {
    right: 34.5%;
  }
}
@media screen and (max-width: 1208px) {
  .wedo-main {
    padding: 30px 20px;
  }
  .wedo-main .wedo-section {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
  }
  .wedo-main .wedo-section.reverse .reverse-box {
    flex-direction: column;
    gap: 30px;
  }
  .wedo-main .wedo-section.reverse .reverse-box > div p {
    font-size: 1.6rem;
  }
  .wedo-main .wedo-section.reverse .highlight-box {
    flex-direction: column;
  }
  .wedo-main .wedo-section.reverse .highlight-box > div {
    width: 100%;
    padding: 20px;
  }
  .wedo-main .wedo-section.reverse .highlight-box > div h3 {
    font-size: 2.5rem;
  }
  .wedo-main .wedo-section.reverse .highlight-box img {
    width: 100%;
  }
  .wedo-main .wedo-section .wedo-content h2 {
    font-size: 3rem;
  }
  .wedo-main .wedo-section .wedo-content p {
    font-size: 1.6rem;
  }
  .wedo-main .wedo-section .wedo-content .highlight-box {
    padding: 20px;
  }
  .wedo-main .wedo-section .wedo-content .highlight-box h3 {
    font-size: 2rem;
  }
  .se-section {
    padding: 30px 20px;
  }
  .se-section .wedo-content h2 {
    font-size: 3rem;
  }
  .se-section .wedo-content p {
    font-size: 1.8rem;
    margin-top: 40px;
  }
  .se-section .wedo-content a {
    font-size: 1.6rem;
  }
  .se-section .wedo-content .atlas-slider {
    height: 300px;
  }
  .se-section .wedo-content .atlas-slider .swiper .swiper-slide {
    height: 300px;
  }
  .se-section .wedo-content .atlas-slider .swiper .swiper-button-prev {
    left: 32%;
  }
  .se-section .wedo-content .atlas-slider .swiper .swiper-button-next {
    right: 30.5%;
  }
}
@media screen and (max-width: 678px) {
  .se-section .wedo-content .atlas-slider .swiper .swiper-button-prev {
    left: 23%;
  }
  .se-section .wedo-content .atlas-slider .swiper .swiper-button-next {
    right: 17.5%;
  }
  .wedo-main .wedo-section.reverse .reverse-box img {
    width: 100%;
  }
  .se-section .wedo-content h2 {
    font-size: 2.5rem;
  }
  .se-section .wedo-content p {
    font-size: 1.6rem;
    margin-top: 30px;
  }
  .se-section .wedo-content .atlas-slider {
    height: 200px;
  }
  .se-section .wedo-content .atlas-slider .swiper .swiper-slide {
    height: 200px;
  }
}
