.what_section_01 {
  margin-top: 114px;
  background: #101925;
}
.what_section_01 .section_header {
  max-width: var(--container-width);
  margin: 0 auto;
  color: var(--white-c);
}
.what_section_01 .section_header .header_top {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.what_section_01 .section_header .header_top h2 {
  color: var(--what-h01-c);
  margin: 0;
}
.what_section_01 .section_header .header_top p {
  font-weight: var(--font-w-m);
}
.what_section_01 .section_header .line_b::after {
  background: linear-gradient(to right, var(--what-h01-c) 0%, transparent 100%);
}
.what_section_01 .section_header .c_mb {
  color: var(--what-h01-c);
}
.what_section_01 .section_middle {
  max-width: var(--container-width);
  margin: 0 auto;
  color: var(--white-c);
  overflow: hidden;
  display: flex;
  position: relative;
}
.what_section_01 .section_middle > div {
  width: 50%;
}
.what_section_01 .section_middle .middle_text {
  padding-top: var(--section-padding);
  z-index: 10;
}
.what_section_01 .section_middle .middle_img img {
  display: block;
  width: 100%;
  height: auto;
  animation: diagonalFloat 3s ease-in-out infinite alternate;
}
.what_section_01 .section_middle .mouse_icon {
  position: absolute;
  bottom: 10%;
  left: 5%;
}
.what_section_01 .section_middle .mouse_icon img {
  max-width: 70px;
}
.what_section_01 .section_footer {
  padding-top: var(--space-md);
}
.what_section_01 .section_footer .fot_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  width: 100%;
  margin-bottom: 40px;
  color: #ffffff;
}
.what_section_01 .section_footer .fot_box .box_left {
  flex: 0 0 40%;
  padding: 90px 50px;
  border-radius: 16px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
}
.what_section_01 .section_footer .fot_box .box_left h3 {
  display: flex;
  gap: 12px;
  margin: 0 0 16px 0;
  line-height: 1.3;
  font-weight: 700;
}
.what_section_01 .section_footer .fot_box .box_left h3 b {
  color: #18b0ff;
  font-weight: 700;
}
.what_section_01 .section_footer .fot_box .box_left p {
  margin: 0;
  line-height: 1.6;
}
.what_section_01 .section_footer .fot_box .box_left .box_img {
  position: absolute;
  right: -80px;
  bottom: -85px;
  width: 50%;
}
.what_section_01 .section_footer .fot_box .box_left .box_img img {
  max-width: 360px;
}
.what_section_01 .section_footer .fot_box .box_right {
  flex: 1;
}
.what_section_01 .section_footer .fot_box .box_right ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-unit);
}
.what_section_01 .section_footer .fot_box .box_right li {
  color: #ffffff;
  line-height: 1.6;
  position: relative;
  padding-left: 22px;
  opacity: 0.95;
  word-break: keep-all;
}
.what_section_01 .section_footer .fot_box .box_right li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
}
@media (max-width: 1023px) {
  .what_section_01 .section_footer .fot_box {
    flex-direction: column;
    gap: 30px;
    background-color: rgba(255, 255, 255, 0.02);
    padding: 30px 24px;
    border-radius: 16px;
  }
  .what_section_01 .section_footer .fot_box .box_left {
    width: 100%;
    padding: 0;
    background: none;
    box-shadow: none;
  }
  .what_section_01 .section_footer .fot_box .box_left h3 {
    gap: 8px;
  }
  .what_section_01 .section_footer .fot_box .box_right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .what_section_01 .section_middle {
    flex-direction: column-reverse;
  }
  .what_section_01 .section_middle > div {
    width: auto;
  }
}
@keyframes diagonalFloat {
  0% {
    transform: translate(-15px, -15px);
  }
  100% {
    transform: translate(15px, 15px);
  }
}