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

body {
  font-family: "Gotham";
  font-weight: normal;
  font-size: 16px;
  color: #000;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

a {
  text-decoration: none;
  color: #000;
}

.row_flex {
  display: flex;
  flex-wrap: wrap;
}
.row_flex.center {
  justify-content: center;
  align-items: center;
}
.row_flex.reverse {
  flex-direction: row-reverse;
}

.container {
  width: 100%;
  max-width: 1070px;
  margin: 0 auto;
}

.purple_btn {
  width: 100%;
  height: 48px;
  background: #722ed1;
  color: #fff;
  font-family: "Gotham";
  font-weight: bold;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-align: center;
  line-height: 48px;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  display: block;
  z-index: 1000;
}
header .container {
  height: 104px;
  position: relative;
}
header #logo {
  width: 155px;
  height: 52px;
  display: block;
  background: url("../images/logo_lenovo.png") no-repeat center/contain;
  text-indent: -9999px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
header nav {
  padding-left: 200px;
}
header nav ul li {
  display: inline-block;
}
header nav ul li a {
  padding: 0 20px;
  display: block;
  font-weight: bold;
  line-height: 104px;
}
header nav ul li a.active, header nav ul li a:hover {
  color: #cf1322;
}
header .nav_right {
  position: absolute;
  top: 0;
  right: 0;
}
header .nav_right ul li {
  display: inline-block;
}
header .nav_right ul li a {
  padding: 0 20px;
  display: block;
  font-weight: bold;
  line-height: 104px;
}
header .menu_mobile_btn {
  display: none;
}

section {
  min-height: 100vh;
  padding-top: 104px;
}

.data_not_found {
  width: 100%;
  padding: 100px 0;
  text-align: center;
}
.data_not_found img {
  width: 82px;
  margin: 0 auto 20px;
}
.data_not_found h4 {
  font-size: 32px;
  margin-bottom: 20px;
}
.data_not_found span {
  display: block;
  margin: 10px 0;
}
.data_not_found .red_btn {
  min-width: 207px;
  border: 1px solid #cf1322;
  color: #cf1322;
  height: 48px;
  line-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  display: inline-block;
  margin: 0 auto;
  font-size: 16px;
  font-family: "Gotham";
  font-weight: bold;
}

footer {
  padding: 40px 0 80px;
  background: #f5f5f5;
  position: relative;
}
footer h5 {
  text-align: center;
  margin-bottom: 40px;
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  font-weight: normal;
}
footer .footer_middle {
  margin-bottom: 40px;
  position: relative;
  justify-content: space-between;
}
footer .footer_middle .fm_box {
  width: 350px;
  margin-right: 45px;
}
footer .footer_middle .fm_box:first-child {
  width: 280px;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}
footer .footer_middle .fm_box:last-child {
  margin-right: 0;
}
footer .footer_middle .fm_box:last-child span {
  padding-top: 20px;
}
footer .footer_middle .fm_box .sosmed {
  height: 34px;
}
footer .footer_middle .fm_box .sosmed li {
  width: 27px;
  height: 27px;
  display: block;
  margin: 0 7px;
}
footer .footer_middle .fm_box .sosmed li img {
  display: block;
  width: 100%;
}
footer .footer_middle .fm_box span {
  display: block;
  font-weight: bold;
}
footer .footer_middle .fm_box .row_flex {
  display: flex;
  flex-wrap: wrap;
}
footer .footer_middle .fm_box .row_flex input[type=email] {
  width: calc(100% - 90px);
  margin-right: 10px;
}
footer .footer_middle .fm_box .row_flex button {
  width: 80px;
  height: 34px;
  border: none;
  background: #cf1322;
  display: block;
  color: #fff;
  font-family: "Gotham";
  font-weight: bold;
  margin-top: 10px;
  border-radius: 2px;
}
footer .footer_middle .fm_box input[type=email],
footer .footer_middle .fm_box select {
  width: 100%;
  height: 34px;
  border: 1px solid #000;
  padding: 0 10px;
  margin-top: 10px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.45);
  padding: 0 10px;
  font-family: "Gotham";
  font-weight: normal;
}
footer .footer_menu ul {
  justify-content: center;
  align-items: center;
}
footer .footer_menu ul li a {
  padding: 0 20px;
}

.chat_btn {
  width: 150px;
  height: 150px;
  display: block;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: url("../images/float_chat.png") no-repeat center/contain;
}

.popup_wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  overflow: auto;
  z-index: 1000;
  display: none;
}
.popup_wrapper .overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
.popup_wrapper .popup_box {
  width: 100%;
  min-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.popup_wrapper .popup_container {
  width: 100%;
  max-width: 600px;
  padding: 60px 20px 40px;
  background: #fff;
  border-radius: 36px;
  position: relative;
  display: none;
  margin-top: 40px;
  margin-bottom: 40px;
}
.popup_wrapper .popup_container h3 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}
.popup_wrapper .popup_container img {
  display: block;
  width: 100%;
  margin-bottom: 40px;
}
.popup_wrapper .popup_container p {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: left;
}
.popup_wrapper .popup_container .button_wrapper {
  text-align: center;
}
.popup_wrapper .popup_container .red_solid_btn,
.popup_wrapper .popup_container .red_btn {
  min-width: 120px;
  height: 48px;
  color: #fff;
  display: inline-block;
  border: none;
  line-height: 48px;
  font-family: "Gotham";
  font-weight: bold;
  background: #cf1322;
  border-radius: 6px;
  vertical-align: middle;
  margin: 0 10px;
  cursor: pointer;
}
.popup_wrapper .popup_container .red_solid_btn:disabled,
.popup_wrapper .popup_container .red_btn:disabled {
  background: #d8d8d8;
  color: rgba(0, 0, 0, 0.45);
  cursor: not-allowed;
}
.popup_wrapper .popup_container .red_btn {
  background: #fff;
  border: 1px solid #cf1322;
  color: #cf1322;
}
.popup_wrapper .popup_container .close_btn {
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  top: 24px;
  right: 24px;
  background: url("../images/icon_close.png") no-repeat center/contain;
  cursor: pointer;
}
.popup_wrapper .popup_container ul {
  list-style: disc;
  margin-bottom: 20px;
  text-align: left;
  padding-left: 20px;
}
.popup_wrapper .popup_container .check {
  margin-bottom: 40px;
}
.popup_wrapper #popup_alert {
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
}
.popup_wrapper #popup_alert p {
  text-align: center;
}
.popup_wrapper #popup_iframe {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
}
.popup_wrapper #popup_iframe iframe {
  width: 100%;
  min-height: 100vh;
}
.popup_wrapper #popup_image {
  width: 80%;
  max-width: 100%;
}
.popup_wrapper #popup_tnc {
  width: 100%;
  max-width: 960px;
}
.popup_wrapper #popup_tnc .tnc_box strong {
  font-weight: bold;
}
.popup_wrapper #popup_tnc .tnc_box i {
  font-style: italic;
}
.popup_wrapper #popup_tnc .tnc_box ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}
.popup_wrapper #popup_tnc .tnc_box ol {
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 20px;
}
.popup_wrapper #popup_tnc .tnc_box a {
  text-decoration: underline;
}
.popup_wrapper #popup_tnc .check {
  display: block;
  background: #f5f5f5;
  padding: 10px;
}
.popup_wrapper #popup_tnc .check .check_wrapper {
  display: inline-block;
  position: relative;
}
.popup_wrapper #popup_tnc .check input[type=checkbox] {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
.popup_wrapper #popup_tnc .check input[type=checkbox] + span {
  display: inline-block;
  background: url("../images/checkbox_empty.png") no-repeat left top 1px/16px;
  padding-left: 22px;
}
.popup_wrapper #popup_tnc .check input[type=checkbox]:checked + span {
  background: url("../images/checkbox_fill.png") no-repeat left top 1px/16px;
}
.popup_wrapper #popup_tnc .button_wrapper {
  display: block;
}
.popup_wrapper #popup_tnc .button_wrapper #submit_final_btn span {
  background: url("../images/icon-send.png") no-repeat left center/14px;
  padding-left: 20px;
}
.popup_wrapper #popup_subscribe {
  width: 100%;
  max-width: 800px;
  padding-top: 20px;
}
.popup_wrapper #popup_subscribe h3 {
  padding: 60px 0;
  background: url("../images/gradient_cover.jpeg") no-repeat center/cover;
  color: #fff;
}
.popup_wrapper #popup_subscribe p {
  font-size: 18px;
  text-align: center;
}
.popup_wrapper #popup_subscribe .ps_box {
  width: 660px;
  text-align: left;
  margin: 40px auto;
}
.popup_wrapper #popup_subscribe .ps_box select,
.popup_wrapper #popup_subscribe .ps_box input[type=email],
.popup_wrapper #popup_subscribe .ps_box input[type=text] {
  width: 100%;
  height: 32px;
  display: block;
  padding: 0 10px;
  border: 1px solid #d9d9d9;
  font-family: "Gotham";
  font-weight: 400;
  font-size: 14px;
}
.popup_wrapper #popup_subscribe .ps_box span.select2 {
  width: 100% !important;
}
.popup_wrapper #popup_subscribe .ps_box span.title {
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}
.popup_wrapper #popup_subscribe .ps_box .form_box {
  margin-bottom: 20px;
}
.popup_wrapper #popup_subscribe .ps_box .select2-container--default .select2-selection--single {
  border-radius: 0;
  border-color: #d9d9d9;
}
.popup_wrapper #popup_subscribe .ps_box .select2-container .select2-selection--single {
  height: 32px;
  font-family: "Gotham";
  font-weight: 400;
  font-size: 14px;
}
.popup_wrapper #popup_subscribe .ps_box .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 32px;
}
.popup_wrapper #popup_subscribe .ps_box .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 30px;
}
.popup_wrapper #popup_subscribe .agreement_box {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
.popup_wrapper #popup_subscribe .info_box {
  font-size: 14px;
  text-align: center;
  line-height: 22px;
  margin-bottom: 20px;
}
.popup_wrapper #popup_subscribe .info_box a {
  font-weight: bold;
}
.popup_wrapper #popup_subscribe .close_btn {
  filter: grayscale(100) brightness(100);
  top: 25px;
}

.popup_cookies {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 20px;
  text-align: left;
  background: #f0f0f0;
}
.popup_cookies .container {
  display: flex;
  gap: 20px;
  padding: 0 20px;
  align-items: center;
}
.popup_cookies a {
  color: #722ed1;
  font-weight: bold;
}
.popup_cookies .cookies_btn_ctr {
  display: flex;
  gap: 20px;
}
.popup_cookies .cookies_btn_ctr .accept_btn {
  background: #cf1322;
  color: #fff;
  border: none;
  padding: 10px 20px;
  height: 40px;
}
.popup_cookies .cookies_btn_ctr .reject_btn {
  border: 1.5px solid #cf1322;
  color: #cf1322;
  background: #fff;
  padding: 10px 20px;
  height: 40px;
}
.popup_cookies .close_btn {
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  background: url("../images/icon_close_black.png") no-repeat center/contain;
  cursor: pointer;
  text-indent: -9999px;
}

@media only screen and (max-width: 1069px) {
  .container {
    padding: 0 20px;
  }
  header #logo {
    left: 20px;
  }
  footer .container {
    padding: 0 20px;
  }
  footer .footer_middle .fm_box {
    width: 307px;
  }
}
@media only screen and (max-width: 1023px) {
  header .container {
    height: 90px;
  }
  header .nav_box {
    width: 100%;
    height: calc(100vh - 104px);
    display: none;
    position: fixed;
    background: #fff;
    overflow: auto;
    top: 90px;
    border-top: 1px solid #f0f0f0;
  }
  header nav {
    padding: 0;
  }
  header nav ul {
    display: block;
  }
  header nav ul li {
    display: block;
    text-align: center;
  }
  header nav ul li a {
    padding: 20px 0;
    line-height: normal;
  }
  header .nav_right {
    position: static;
  }
  header .nav_right ul {
    display: block;
  }
  header .nav_right ul li {
    display: block;
    text-align: center;
  }
  header .nav_right ul li a {
    padding: 20px 0;
    line-height: normal;
  }
  header .menu_mobile_btn {
    width: 60px;
    height: 60px;
    background: url("../images/menu_burger.png") no-repeat center/25px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
  }
  section {
    padding-top: 90px;
  }
  footer {
    padding: 20px 0 40px;
    position: relative;
  }
  footer h5 {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  footer .footer_middle {
    margin-bottom: 20px;
  }
  footer .footer_middle .fm_box {
    width: 209px;
    margin-right: 30px;
  }
  footer .footer_middle .fm_box span {
    display: block;
    text-align: center;
  }
  footer .footer_middle .fm_box:first-child {
    width: 250px;
  }
  footer .footer_menu {
    padding-bottom: 20px;
  }
  footer .footer_menu ul {
    display: block;
    text-align: center;
  }
  footer .footer_menu ul li {
    width: auto;
    text-align: center;
    display: inline-block;
  }
  footer .footer_menu ul li a {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  header .nav_box {
    top: 68px;
    height: calc(100vh - 68px);
    left: 0;
    padding-top: 50px;
  }
  header .container {
    height: 68px;
  }
  header #logo {
    width: 120px;
    height: 40px;
    left: 15px;
  }
  section {
    padding-top: 68px;
  }
  footer h5 {
    margin-bottom: 20px;
  }
  footer .footer_middle {
    display: block;
    position: static;
  }
  footer .footer_middle .fm_box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    position: static;
  }
  footer .footer_middle .fm_box:first-child {
    width: 100%;
    position: static;
    transform: none;
  }
  footer .footer_middle .fm_box:last-child span {
    padding-top: 0;
  }
  footer .footer_menu ul li {
    display: block;
    margin-bottom: 20px;
  }
  .chat_btn {
    width: 100px;
    height: 100px;
    bottom: 0;
    right: 0;
  }
  .data_not_found h4 {
    font-size: 28px;
  }
  .popup_wrapper .popup_box {
    width: calc(100% - 40px);
    left: 50%;
    transform: translateX(-50%);
  }
  .popup_wrapper .popup_container {
    border-radius: 20px;
  }
  .popup_wrapper .popup_container h3 {
    font-size: 24px;
  }
  .popup_wrapper #popup_tnc {
    font-size: 12px;
  }
  .popup_wrapper #popup_subscribe .ps_box {
    width: 100%;
  }
  .popup_cookies {
    font-size: 14px;
    padding: 10px 20px;
  }
  .popup_cookies .container {
    flex-direction: column;
  }
  .popup_cookies .close_btn {
    width: 14px;
    height: 16px;
  }
}/*# sourceMappingURL=main.css.map */