:root {
  font-size: 16px;
  font-family: Arial, Helvetica, "Microsoft YaHei", sans-serif;
  background-color: #fff;
  color: #141822;
  -webkit-font-smoothing: antialiased;
  --gold-color: #d9c78b;
  --gold-color2: #a7813c;
  --gray-color: #828282;
  --gray-color2: #e5e5e5;
  --blue-light: #0081e3;
}
html,
body {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: #141822;
}
p {
  margin: 0;
  padding: 0;
}
.light-blue {
  color: var(--blue-light);
  font-size: 22px !important;
}
.bg-yellow {
  background-color: #e0c268;
}
.bg-blue {
  background-color: #aaaaaa;
}
.bg-grey {
  background-color: #7ecef4;
}
.flex {
  display: flex;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.align-center {
  align-items: center;
}
.space-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.w100 {
  width: 100%;
}
.w1320 {
  width: 1320px;
  margin: 0 auto;
}
.mb10 {
  margin-bottom: 0.6rem;
}
.mb20 {
  margin-bottom: 1.2rem;
}
.mb40 {
  margin-bottom: 40px;
}
.mb120 {
  margin-bottom: 120px;
}
.mr10 {
  margin-right: 0.6rem;
}
.mr20 {
  margin-right: 1.2rem;
}
.header {
  width: 100vw;
  height: 100px;
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  padding: 0 60px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .left {
  display: flex;
  align-items: baseline;
}
.header .right {
  align-items: baseline;
}
.header .right > div {
  margin-left: 34px;
  cursor: pointer;
}
.header .right .login {
  border-left: 1px solid #141822;
  padding-left: 20px;
  margin-left: 20px;
}
.header .right .lang {
  padding: 1rem 0;
  position: relative;
}
.header .right .lang .lang-box {
  display: none;
  position: absolute;
  top: 100%;
  border: 1px solid #c9c9c9;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
}
.header .right .lang .lang-box a {
  display: block;
  min-width: 6rem;
}
.header .right .lang img {
  display: block;
  margin-left: 10px;
}
.header .right .lang:hover .lang-box {
  display: block;
}
.header .right .create-account {
  background-color: #0f3a5f;
  color: #fff;
  border-radius: 6px;
  width: 200px;
  line-height: 44px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.header .right .create-account:hover {
  background-color: #0081e3;
}
.header .nav {
  margin-left: 130px;
  display: flex;
  align-items: baseline;
}
.header .nav li {
  list-style: none;
  margin: 0 10px;
}
.header .nav li a {
  color: #0f3a5f;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
}
.header .nav li a:hover {
  opacity: 0.8;
}
section {
  padding-bottom: 7rem;
}
.form {
  width: 512px;
}
.form .title {
  font-size: 50px;
  color: #0f3a5f;
}
.form .input {
  margin-bottom: 30px;
  background-color: #eee;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 6px;
}
.form .input input {
  padding: 20px 0;
  flex: 1;
  font-size: 1.2rem;
  border: none;
  outline: none;
  background-color: transparent;
  width: 100%;
}
.form .input img,
.form .input a {
  cursor: pointer;
}
.form .input a {
  padding-left: 10px;
  border-left: 1px solid #828282;
}
.form .check-box {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.form .check-box input {
  margin-right: 10px;
}
.form .check-box span {
  font-size: 14px;
}
.form .check-box a {
  color: #0081e3;
}
.form .submit-btn {
  width: 100%;
  line-height: 54px;
  height: 54px;
  background-color: #0f3a5f;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  margin-bottom: 30px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.form .submit-btn:hover {
  background-color: #0081e3;
}
.section1 {
  padding-top: 120px;
  display: flex;
}
.section1 .text-left .mr20 {
  transition: all 0.3s ease-in-out;
}
.section1 .text-left:hover .mr20 {
  margin-right: 40px;
}
.section1 .right {
  width: 582px;
  height: 733px;
  padding-right: 40px;
  position: relative;
}
.section1 .right .main-swiper {
  border-radius: 20px;
  overflow: hidden;
}
.section1 .right .main-swiper img {
  width: 542px !important;
  height: auto;
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
  display: block;
}
.section1 .right .swiper-control {
  position: absolute;
  right: 0px;
  top: 300px;
}
.section1 .right .swiper-control .prev {
  transform: rotateZ(180deg);
  margin-bottom: 16px;
}
.section1 .right .swiper-control .next,
.section1 .right .swiper-control .prev {
  opacity: 0.4;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.section1 .right .swiper-control .next:hover,
.section1 .right .swiper-control .prev:hover {
  opacity: 1;
}
.section1 .right .item-list {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 40px;
  right: -30px;
}
.section1 .right .item-list .item {
  width: 360px;
  height: 80px;
  border: 1px solid #ddd;
  padding: 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 0px;
  transform: scale(0.9);
  background-color: #fff;
}
.section1 .right .item-list .icon {
  width: 44px;
  height: 44px;
  border-radius: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section1 .right .item-list .name {
  font-size: 18px;
  margin-left: 10px;
  flex: 1;
}
.section1 .right .item-list .up {
  font-size: 30px;
  font-weight: bold;
}
.section2 {
  padding-top: 100px;
}
.section2 .title {
  font-size: 46px;
  font-weight: bold;
  margin-bottom: 55px;
}
.section2 .text {
  font-size: 22px;
  margin-bottom: 40px;
}
.section2 .text span {
  margin-right: 20px;
  font-weight: normal;
}
.section2 .text span:first-child {
  margin-left: 46px;
}
.section2 .text .right {
  display: flex;
  align-items: center;
}
.section2 .text .right a {
  display: block;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.section2 .text .right a:hover {
  opacity: 1;
}
.section2 .text .right a:first-child {
  transform: rotateZ(180deg);
  margin-bottom: 3px;
  margin-right: 20px;
}
.section2 .card-list {
  width: 100%;
  overflow-x: hidden;
}
.section2 .card-list .content {
  display: flex;
  transition: all 0.3s ease-in-out;
}
.section2 .card-list .card {
  width: 244px;
  height: 305px;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 34px 25px;
  line-height: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 24px;
}
.section2 .card-list .card .card-title span {
  flex: 1;
}
.section2 .card-list .card .icon {
  width: 48px;
  height: 48px;
  margin-right: 10px;
  background-color: #e0c268;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section2 .card-list .card .icon img {
  display: block;
}
.section2 .card-list .card p {
  font-size: 36px;
  font-weight: bold;
  text-align: end;
}
.section2 .card-list .card > span {
  text-align: end;
}
.section3 {
  background: #1c202a;
  padding: 100px 0;
  color: #fff;
}
.section3 .top-text {
  margin-bottom: 50px;
}
.section3 .top-text > span {
  width: 500px;
  font-size: 22px;
}
.section3 .top-text > span:first-child {
  font-size: 60px;
}
.section3 .video {
  border-radius: 20px;
  margin-bottom: 80px;
}
.section3 .bottom-text .btn {
  flex: 1;
  display: flex;
  justify-content: end;
}
.section3 .bottom-text .btn .b {
  width: 300px;
  line-height: 50px;
  height: 50px;
  background-color: #00a0e9;
  font-size: 24px;
  border-radius: 10px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.section3 .bottom-text .sec {
  width: 340px;
}
.section3 .bottom-text .sec p {
  font-size: 18px;
}
.section3 .bottom-text .sec > p:first-child {
  font-size: 36px;
  margin-bottom: 20px;
}
.section4 {
  padding: 100px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.section4 .mobile-type {
  display: none;
}
.section4 ul {
  padding: 0;
}
.section4 .right {
  position: relative;
  width: 765px;
  overflow: visible !important;
}
.section4 .right img {
  position: sticky;
  left: 0;
  top: 25%;
  z-index: 10;
  width: 765px;
  height: 493px;
  display: block;
  border-radius: 20px;
}
.section4 .title {
  font-size: 60px;
  font-weight: bold;
}
.section4 > p {
  font-size: 17px;
}
.section4 .w1320 {
  padding: 100px 0;
  display: flex;
  justify-content: space-between;
}
.section4 .w1320 .left {
  width: 450px;
}
.section4 .w1320 .left .item {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section4 .w1320 .left .item-title {
  font-size: 48px;
  font-weight: bold;
  line-height: 60px;
  margin-bottom: 30px;
}
.section4 .w1320 .left .item-desc {
  font-size: 18px;
  line-height: 26px;
}
.section4 .w1320 .left ul {
  list-style: none;
  padding-top: 20px;
}
.section4 .w1320 .left ul li {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: bold;
}
.section4 .w1320 .left ul li::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #00a0e9;
  display: inline-block;
  margin-right: 20px;
  margin-left: -30px;
  margin-bottom: 2px;
}
.section4 .card-list {
  display: flex;
  align-items: center;
  width: 1320px;
  flex-wrap: wrap;
  justify-content: center;
}
.section4 .card-list .card {
  width: 180px;
  height: 120px;
  margin: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  transform: scale(0.9);
}
.brand-swiper {
  width: 90vw;
  height: 60vw;
  margin-bottom: 2rem;
  display: none;
}
.section5 {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c09d60;
  padding-top: 80px;
}
.section5 .text {
  width: 500px;
  color: #141822;
}
.section5 .title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
}
.section5 ul {
  list-style: none;
  padding-top: 20px;
}
.section5 ul li {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: bold;
}
.section5 ul li::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #fff;
  display: inline-block;
  margin-right: 20px;
  margin-left: -30px;
  margin-bottom: 2px;
}
.section6 {
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f5f5f5;
}
.section6 .title {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 50px;
}
.section6 .w1320 {
  margin-bottom: 80px;
}
.section6 > p {
  width: 90vw;
  margin: 0 auto 2rem;
  text-align: center;
}
.section6 .item {
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 30px;
  width: 310px;
  padding: 30px;
}
.section6 .item .top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.section6 .item .top .avatar {
  width: 54px;
  height: 54px;
  margin-right: 10px;
  border-radius: 50%;
}
.section6 .item .top .avatar img {
  width: 100%;
  display: block;
}
.section6 .item .top .name {
  font-weight: bold;
  margin-bottom: 10px;
}
.section6 .item .content {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
}
.section6 .item .date {
  align-self: flex-end;
  color: #bbb;
}
.comment-swiper {
  width: 90vw;
  height: 80vw;
  margin-bottom: 2rem;
  display: none;
}
.comment-swiper-pagination {
  width: 80vw;
  height: 2rem;
  display: none;
}
.section7 {
  padding-top: 100px;
  padding-bottom: 0;
  position: relative;
}
.section7 .w1320 {
  align-items: flex-end;
}
.section7 .left {
  width: 540px;
  margin-right: 100px;
}
.section7 .left .title {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 50px;
}
.section7 .left .step {
  padding: 56px 65px;
  border: 1px solid #eee;
  margin-bottom: 50px;
  border-radius: 20px;
}
.section7 .left .step p {
  font-size: 24px;
  margin-bottom: 30px;
}
.section7 .left .step .text {
  font-size: 36px;
  line-height: 42px;
}
.section7 .left .step.active {
  border: 1px solid #0081e3;
  background-color: #0081e3;
  color: #fff;
}
.section7 .right {
  position: sticky;
  bottom: 0;
  transform: scale();
}
.section7 .right img {
  width: 400px;
  display: block;
}
.section8 {
  padding-top: 160px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #141822;
}
.section8 .title {
  font-size: 60px;
  margin-bottom: 100px;
  font-weight: bold;
  color: #fff;
}
.section8 .form {
  color: #fff;
}
.section8 .form > p {
  font-size: 18px;
  margin-bottom: 30px;
  text-align: center;
}
.section8 .form .light-blue {
  margin: 0;
  margin-bottom: 10px;
  text-align: start;
}
.section8 .form .google {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section8 .submit-btn {
  background-color: #0081e3;
}
.footer {
  padding: 80px 0 35px;
}
.footer p {
  font-size: 18px;
  line-height: 26px;
  color: #abacb0;
}
.footer .flex {
  font-size: 14px;
}
.footer .flex > span {
  margin-left: 50px;
  cursor: pointer;
}
.footer .icons .icon {
  margin-left: 40px;
  cursor: pointer;
}
.fixbox {
  position: fixed;
  top: 38%;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.fixbox .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-radius: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.fixbox .item .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  transform: scale(0.9);
}
.fixbox .item .text {
  max-width: 0;
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.fixbox .item:nth-child(1) {
  background-color: #0f3a5f;
}
.fixbox .item:nth-child(1) {
  background-color: #25d366;
}
.fixbox .item:nth-child(2) {
  background-color: #28a7e8;
}
.fixbox .item:nth-child(3) {
  background-color: #12b643;
}
.fixbox .item:hover .text {
  max-width: 200px;
  padding-left: 20px;
  opacity: 1;
}
.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 64px;
  box-sizing: border-box;
  background-color: #fff;
  z-index: 999;
  align-items: center;
  padding: 16px;
  display: none;
  justify-content: space-between;
}
.mobile-header .left {
  display: flex;
  align-items: center;
}
.mobile-header .left-icon {
  display: flex;
  flex-direction: column;
}
.mobile-header .left-icon .line {
  width: 22px;
  height: 2px;
  margin: 3px;
  background-color: #1c202a;
}
.mobile-header .logo img {
  margin-top: -10px;
  display: block;
  transform: scale(0.8);
}
.mobile-header .right {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.mobile-header .right > a {
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  font-size: 16px;
  background-color: #e6e6e6;
}
.mobile-header .right .sign-hightlight {
  background-color: #0f3a5f;
  color: var(--gold-color);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1000;
  padding: 32px;
  display: none;
}
.mobile-menu .close-icon .line {
  width: 23px;
  height: 2px;
  background-color: #141822;
}
.mobile-menu .close-icon .line:first-child {
  transform: rotate(45deg);
}
.mobile-menu .close-icon .line:last-child {
  transform: rotate(-45deg) translateY(-2px) translateX(1px);
}
.mobile-menu .nav {
  padding: 3rem 0 1rem;
  list-style: none;
}
.mobile-menu .nav li {
  margin: 2rem 0;
  font-size: 1.4rem;
}
.mobile-menu .login {
  margin-bottom: 2rem;
  font-size: 1.4rem;
}
.mobile-menu .lang {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}
.mobile-menu .lang span {
  margin-right: 10px;
}
@media (max-width: 900px) {
  body,
  html {
    width: 100vw ;
    overflow-x: hidden;
  }
  .mobile-header {
    display: flex;
  }
  .comment-swiper {
    display: block;
  }
  .comment-swiper-pagination {
    display: flex;
    justify-content: center;
  }
  .header {
    display: none;
  }
  .w1320 {
    width: 90vw;
  }
  section {
    padding-bottom: 2rem;
    box-sizing: border-box;
  }
  .form {
    width: 90vw;
    margin-bottom: 2rem;
  }
  .form .title {
    width: 90vw;
    margin-bottom: 0 auto 2rem;
    font-size: 2.3rem;
  }
  .section1 .w1320 {
    flex-direction: column;
  }
  .section1 .w1320 .right {
    width: 90vw;
    height: 425px !important;
  }
  .section1 .w1320 .right .item-list {
    bottom: 1rem;
  }
  .section1 .w1320 .right .item-list .item {
    width: 330px;
    height: 62px;
  }
  .section1 .w1320 .right .swiper-control {
    top: 150px;
  }
  .section1 .w1320 .right .main-swiper img {
    width: 80vw !important;
  }
  .section2 .title {
    font-size: 2rem;
  }
  .section2 .w1320 .text.flex {
    flex-direction: column;
    align-items: flex-start;
  }
  .section2 .w1320 .text.flex .left {
    flex-direction: column;
    align-items: flex-start;
  }
  .section2 .w1320 .text.flex .left > div {
    margin-bottom: 1rem;
  }
  .section2 .w1320 .text.flex .left span:first-child {
    margin-left: 0px;
  }
  .section3 .w1320 > div {
    flex-direction: column;
  }
  .section3 .w1320 .top-text {
    justify-content: center;
    width: 90vw;
  }
  .section3 .w1320 .top-text span {
    font-size: 1rem;
    width: 100%;
  }
  .section3 .w1320 .top-text span:first-child {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .section3 .w1320 .video {
    margin-bottom: 2rem;
  }
  .section3 .w1320 .bottom-text {
    align-items: flex-start;
  }
  .section3 .w1320 .bottom-text .sec {
    margin-bottom: 2rem;
  }
  .section3 .w1320 .bottom-text .sec p:first-child {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold;
  }
  .section4 {
    padding-bottom: 2rem;
  }
  .section4 .title {
    width: 90vw;
    margin: 0 auto;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  .section4 .mobile-type {
    width: 90vw;
    display: flex;
    flex-direction: column;
    margin: 2rem 0;
  }
  .section4 .mobile-type .item {
    margin: 3rem 0 3rem;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .section4 .mobile-type .item img {
    width: 100%;
    margin-bottom: 2rem;
  }
  .section4 .mobile-type .item .item-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
  }
  .section4 .mobile-type .item .item-desc {
    text-align: center;
    font-size: 18px;
    line-height: 24px;
  }
  .section4 .mobile-type .item ul {
    list-style: none;
  }
  .section4 .mobile-type .item ul li {
    font-weight: bold;
    font-size: 21px;
    margin-bottom: 1rem;
    text-align: center;
  }
  .section4 > p {
    width: 90vw;
    text-align: center;
  }
  .section4 > .w1320 {
    display: none;
  }
  .section4 .card-list {
    display: none;
  }
  .section4 .brand-swiper-pagination {
    display: flex;
    justify-content: center;
  }
  .section4 .brand-swiper {
    display: block;
  }
  .section4 .brand-swiper .swiper-slide {
    width: 90vw;
  }
  .section4 .brand-swiper .card {
    width: 90vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .section4 .brand-swiper .card .img {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 100px;
    margin: 10px;
    display: block;
    transform: scale(0.8);
  }
  .section5 {
    flex-direction: column;
  }
  .section5 img,
  .section5 .text {
    width: 90vw;
    margin: 1rem auto;
  }
  .section6 .title {
    width: 90vw;
    margin: 0 auto;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
  }
  .section6 .w1320 {
    display: none;
  }
  .section7 > .w1320 {
    flex-direction: column;
    align-items: center;
  }
  .section7 > .w1320 .title {
    width: 90vw;
    margin: 0 auto;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
  }
  .section7 > .w1320 .left .light-blue {
    text-align: center;
  }
  .section7 > .w1320 .left {
    width: 90vw;
    margin: 1rem auto;
  }
  .section7 > .w1320 .right {
    position: relative;
    width: 70vw;
  }
  .section7 > .w1320 .right img {
    width: 100%;
    margin: 1rem auto 0;
  }
  .section7 .left .step {
    padding: 2rem;
  }
  .section7 .left .step .text {
    font-size: 1.5rem;
  }
  .section8 .title {
    font-size: 2.3em;
    width: 90vw;
    margin: 0 auto 2rem;
  }
  .fixbox {
    display: none;
  }
  .footer .images {
    flex-direction: column;
    align-items: center;
    width: 90vw;
    margin-bottom: 0;
  }
  .footer .images > div {
    margin-bottom: 2rem;
  }
  .footer .images .icons {
    justify-content: space-between;
    width: 100%;
  }
  .footer .images .icon {
    margin: 0;
  }
  .footer .mb120 {
    margin-bottom: 5rem;
  }
  .footer .bottom {
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
  }
  .footer .bottom > div {
    margin-bottom: 1rem;
  }
  .footer .bottom > .flex {
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
  }
  .footer .bottom > .flex a {
    margin-bottom: 1rem;
    margin-right: 0;
  }
  .footer .bottom > .flex span:last-child {
    margin-left: 0;
  }
}
.section10{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  padding: 60px 0 0 0;
}
.section10 .certificate-item p{
  text-align: center;
  font-family: TimesNewRomanPS-BoldMT;
  font-weight: bold;
	font-size: 18px;
	line-height: 24px;
	color: #131313;
}
.mt20{
  margin-top: 20px;
}