:root {
  --bg-color: #000;
  --footer-bg-color: #1d1d1d;
  --main-bg: url("../images/background.png") no-repeat top center/cover;
  --header-bg: rgba(0, 0, 0, 0.4);
  --theme-btn-bg: linear-gradient(90deg, #007f72, #9108a4);
  --black-white: #fff;
  --box-bg: rgba(255, 255, 255, 0.04);
  --arrow-bottom: url("../images/ic-arrow-bottom.png") no-repeat right
      center/34px;
  --trophy-icon: url("../images/ic_thropy.png") no-repeat left center/20px;
}

[data-theme=light] {
  --bg-color: #ffffff;
  --footer-bg-color: #ffffff;
  --main-bg: url("../images/background_white.png") no-repeat top center/cover;
  --header-bg: rgba(255, 255, 255, 0.2);
  --theme-btn-bg: linear-gradient(90deg, #00f6de, #df00ff);
  --black-white: #000;
  --box-bg: rgba(0, 0, 0, 0.04);
  --arrow-bottom: url("../images/ic-arrow-bottom-black.png") no-repeat right
      center/34px;
  --trophy-icon: url("../images/ic_thropy_black.png") no-repeat left
      center/20px;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  outline: none;
  box-sizing: border-box;
}

body {
  background: var(--bg-color);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

ul,
ol {
  list-style: none;
}

button,
a {
  background: transparent;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.main_btn,
.white_btn {
  background: linear-gradient(135deg, #ac1695 0%, #1148b6 100%);
  padding: 15px 20px;
  border-radius: 18px;
  display: inline-block;
  color: white;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 2px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 0 20px;
}
header::before {
  content: "";
  width: 100%;
  height: 95px;
  display: block;
  background: var(--header-bg);
  position: absolute;
  top: 0;
  left: 0;
  backdrop-filter: blur(69px);
  -webkit-backdrop-filter: blur(69px);
}
header .container {
  height: 95px;
  position: relative;
}
header #logo {
  width: 135px;
  height: 67px;
  display: block;
  background: url("../images/logo-lenovo.png") no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  text-indent: -9999px;
  transform: translateY(-50%);
}
header .action_box {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 430px) {
  header .action_box {
    gap: 10px;
  }
}
header .action_box .theme_btn {
  width: 100px;
  height: 40px;
  border-radius: 9999px;
  background: var(--theme-btn-bg);
  cursor: pointer;
  position: relative;
}
@media (max-width: 430px) {
  header .action_box .theme_btn {
    width: 80px;
    height: 34px;
  }
}
header .action_box .theme_btn .theme_text {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 40px;
  padding-left: 10px;
  text-align: left;
  transition: padding 0.4s ease, text-align 0.4s ease;
}
@media (max-width: 430px) {
  header .action_box .theme_btn .theme_text {
    font-size: 10px;
    line-height: 34px;
  }
}
header .action_box .theme_btn .circle {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 9999px;
  transform: translateX(60px);
  transition: transform 0.4s ease;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.8);
}
@media (max-width: 430px) {
  header .action_box .theme_btn .circle {
    width: 26px;
    height: 26px;
    top: 4px;
    left: 10px;
    transform: translateX(40px);
  }
}
header .action_box .theme_btn.dark .theme_text {
  text-align: right;
  padding-left: 0;
  padding-right: 10px;
}
header .action_box .theme_btn.dark .circle {
  transform: translateX(0px);
}
@media (max-width: 430px) {
  header .action_box .theme_btn.dark .circle {
    transform: translateX(0px);
    left: 5px;
  }
}

section {
  background: var(--main-bg);
}
section .section_one {
  padding: 200px 0 0;
  text-align: center;
  color: #fff;
  margin-bottom: 160px;
}
section .section_one h5 {
  font-size: 20px;
  padding-left: 25px;
  background: var(--trophy-icon);
  display: inline-block;
  margin-bottom: 40px;
  color: var(--black-white);
}
section .section_one h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--black-white);
}
section .section_one p {
  color: #5b5b5b;
  margin-bottom: 40px;
}
section .section_one .button_wrapper {
  margin-bottom: 60px;
}
section .section_one .button_wrapper .main_btn {
  text-transform: none;
  box-shadow: 0 4px 20px rgba(var(--black-white), 0.25);
  margin: 0 15px;
}
section .section_one .button_wrapper .main_btn span {
  display: inline-block;
  background: url("../images/ic-arrow-next.png") no-repeat right center/contain;
  padding-right: 20px;
}
section .section_one .button_wrapper .white_btn {
  background: #fff;
  color: var(--black-white);
  text-transform: none;
}
section .section_one .button_wrapper .white_btn span {
  display: inline-block;
  background: url("../images/ic-arrow-right-up.png") no-repeat right center/contain;
  padding-right: 20px;
}
section .section_one .certif_info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
section .section_one .certif_info .ci_box {
  margin: 0 25px;
}
section .section_one .certif_info .ci_box:first-child span {
  color: #9f1a98;
}
section .section_one .certif_info .ci_box:nth-child(2) span {
  color: #4e84f0;
}
section .section_one .certif_info .ci_box:last-child span {
  color: #5133a8;
}
section .section_one .certif_info .ci_box span {
  font-size: 24px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
section .section_two {
  margin-bottom: 160px;
  padding: 0 20px;
}
section .section_two .container {
  text-align: center;
  color: var(--black-white);
}
section .section_two h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
section .section_two h3 span {
  background: linear-gradient(90deg, #ac1695, #1148b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
section .section_two .choose_certif {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}
section .section_two .choose_certif .cc_box {
  width: calc((100% - 40px) / 3);
  margin-right: 20px;
  font-size: 12px;
  color: #474747;
  text-align: left;
  padding: 20px 15px;
  border-radius: 20px;
  background: var(--box-bg);
  transition: all 0.3s ease;
}
section .section_two .choose_certif .cc_box:hover {
  box-shadow: 0 4px 20px rgba(159, 26, 152, 0.45);
  border: 1px solid #9f1a98;
  transform: translateY(-8px);
}
section .section_two .choose_certif .cc_box:last-child {
  margin-right: 0;
}
section .section_two .choose_certif .cc_box img {
  width: 42px;
  display: block;
  margin-bottom: 20px;
}
section .section_two .choose_certif .cc_box .title {
  font-size: 14px;
  font-weight: 700;
  color: var(--black-white);
  margin-bottom: 5px;
  display: block;
}
section .section_two .choose_certif .cc_box p {
  font-size: 12px;
}
section .section_two .choose_certif .cc_box .desc {
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 15px;
  display: block;
}
section .section_two .choose_certif .cc_box ul li {
  padding-left: 20px;
  margin-bottom: 10px;
  background: url("../images/ic-checklist-green.png") no-repeat left center/12px;
}
section .section_two .choose_certif .cc_box .action_box {
  padding: 15px 0 0;
  border-top: 0.8px solid var(--black-white);
  margin-top: 25px;
}
section .section_two .choose_certif .cc_box .action_box .ab_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section .section_two .choose_certif .cc_box .action_box .ab_flex .ab_left span {
  display: block;
  font-size: 14px;
  color: var(--black-white);
  font-weight: 700;
}
section .section_three {
  margin-bottom: 160px;
  padding: 0 20px;
}
section .section_three .container {
  padding: 60px;
  background: var(--box-bg);
  border-radius: 40px;
  backdrop-filter: blur(69px);
  -webkit-backdrop-filter: blur(69px);
  color: var(--black-white);
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  section .section_three .container {
    flex-direction: column;
  }
}
section .section_three h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
section .section_three h3 span {
  background: linear-gradient(90deg, #ac1695, #1148b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
section .section_three .sthree_left {
  width: 400px;
}
section .section_three .sthree_right {
  flex: 1;
  padding-left: 40px;
}
@media (max-width: 1024px) {
  section .section_three .sthree_right {
    padding-left: 0;
    margin-top: 30px;
  }
}
section .section_three .sthree_right .str_box {
  position: relative;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--black-white);
  padding-left: 30px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
section .section_three .sthree_right .str_box.show {
  color: #e429ff;
  border-bottom: 1px solid #e429ff;
}
section .section_three .sthree_right .str_box.show p {
  display: block;
  color: #e429ff;
}
section .section_three .sthree_right .str_box p {
  display: none;
}
section .section_three .sthree_right span {
  position: absolute;
  top: 5px;
  left: 0;
  font-size: 16px;
}
section .section_three .sthree_right h4 {
  font-size: 24px;
}
section .section_four {
  margin-bottom: 160px;
  padding: 0 20px;
}
section .section_four .container {
  display: flex;
  flex-wrap: wrap;
  color: var(--black-white);
}
section .section_four h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
section .section_four h3 span {
  background: linear-gradient(90deg, #ac1695, #1148b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
section .section_four .sfour_left {
  width: 460px;
  padding-right: 40px;
  margin-right: 20px;
}
section .section_four .sfour_right {
  flex: 1;
}
section .section_four .sfour_right .sfr_flex {
  border: 1px solid rgba(var(--black-white), 0.2);
  border-radius: 40px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
}
section .section_four .sfour_right .sfr_box {
  width: 50%;
  margin-top: 60px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
section .section_four .sfour_right .sfr_box:first-child, section .section_four .sfour_right .sfr_box:nth-child(2) {
  margin-top: 0;
}
section .section_four .sfour_right .sfr_box span {
  background: linear-gradient(90deg, #6b2ba3, #3d39ac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 48px;
  font-weight: 700;
}
section .section_four .list_performance {
  margin-top: 25px;
  display: block;
}
section .section_four .list_performance .lp_box {
  border-bottom: 1px solid var(--black-white);
  margin-bottom: 20px;
}
section .section_four .list_performance .lp_top {
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
section .section_four .list_performance .lp_top.show img {
  transform: rotate(180deg);
}
section .section_four .list_performance .lp_top img {
  width: 34px;
  height: 34px;
  transition: transform 0.4s ease;
  transform: rotate(0deg);
}
section .section_four .list_performance .lp_bottom {
  display: none;
}
section .section_four .list_performance .lp_bottom .lp_btn {
  display: block;
  width: 100%;
  color: var(--black-white);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  padding: 15px;
  margin-bottom: 10px;
}
section .section_four .list_performance .lp_bottom .lp_btn:hover {
  background: var(--box-bg);
}
section .section_five {
  margin-bottom: 90px;
}
section .section_five h3 {
  font-size: 24px;
  margin-bottom: 40px;
  text-align: center;
  color: var(--black-white);
}
section .section_five h3 span {
  background: linear-gradient(90deg, #ac1695, #1148b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
section .section_five .cs_box {
  padding: 30px 40px;
  color: var(--black-white);
  border-radius: 30px;
  border: 1px solid rgba(var(--black-white), 0.2);
  margin: 0 10px;
  background: var(--box-bg);
  font-size: 16px;
}
section .section_five .cs_box p {
  margin-bottom: 10px;
  margin-top: 10px;
}
section .section_five .cs_box .name {
  font-weight: 700;
  color: var(--black-white);
  display: block;
}
section .section_five .cs_box .tag {
  color: #4c41b1;
  display: block;
  font-size: 16px;
}
section .section_five .slick-next {
  right: 5%;
  top: -80px;
  transform: none;
  z-index: 1000;
  width: 48px;
  height: 48px;
  text-indent: -9999px;
  background: url("../images/ic-arrow-right-slick.png") no-repeat center/contain;
}
section .section_five .slick-next::before {
  display: none;
}
section .section_five .slick-prev {
  left: 5%;
  top: -80px;
  transform: none;
  z-index: 1000;
  width: 48px;
  height: 48px;
  text-indent: -9999px;
  background: url("../images/ic-arrow-left-slick.png") no-repeat center/contain;
}
section .section_five .slick-prev::before {
  display: none;
}

footer {
  background: var(--footer-bg-color);
  padding: 0 20px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
footer img {
  width: 135px;
  display: block;
}
footer p {
  color: #ddd;
  font-size: 12px;
  font-weight: bold;
}

@media only screen and (max-width: 743px) {
  header #logo {
    left: 20px;
  }
  header .main_btn {
    right: 20px;
  }
  section .section_one .container {
    padding: 0 20px;
  }
  section .section_one h5 {
    font-size: 18px;
  }
  section .section_one h2 {
    font-size: 24px;
  }
  section .section_one h2 br {
    display: none;
  }
  section .section_one p br {
    display: none;
  }
  section .section_one .button_wrapper .main_btn {
    margin-left: 0;
    margin-right: 5px;
  }
  section .section_one .button_wrapper .white {
    margin-left: 5px;
    margin-right: 0;
  }
  section .section_two .container {
    padding: 0 20px;
  }
  section .section_two .choose_certif .cc_box {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }
  section .section_two .choose_certif .cc_box:last-child {
    margin-right: 0;
  }
  section .section_three {
    padding: 0 20px;
  }
  section .section_three .container {
    padding: 20px;
    border-radius: 20px;
  }
  section .section_three .sthree_left {
    width: 100%;
    margin-bottom: 20px;
  }
  section .section_three .sthree_right {
    width: 100%;
    padding-left: 0;
  }
  section .section_three .sthree_right h4 {
    font-size: 20px;
  }
  section .section_four .container {
    padding: 0 20px;
  }
  section .section_four .sfour_left {
    padding-right: 0;
    margin-right: 0;
  }
  section .section_four .sfour_right .sfr_flex {
    padding: 30px 10px;
  }
  section .section_four .sfour_right .sfr_flex p {
    font-size: 15px;
  }
  section .section_five .slick-next {
    right: 10px;
    top: 50%;
    transform: none;
    z-index: 1000;
    width: 32px;
    height: 32px;
    text-indent: -9999px;
    background: url("../images/ic-arrow-right-slick.png") no-repeat center/contain;
  }
  section .section_five .slick-next::before {
    display: none;
  }
  section .section_five .slick-prev {
    left: 10px;
    top: 50%;
    transform: none;
    z-index: 1000;
    width: 32px;
    height: 32px;
    text-indent: -9999px;
    background: url("../images/ic-arrow-left-slick.png") no-repeat center/contain;
  }
  section .section_five .slick-prev::before {
    display: none;
  }
  footer .container {
    padding: 0 20px;
  }
  footer p {
    font-size: 10px;
  }
}/*# sourceMappingURL=main.css.map */