* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

body {
  width: 100%;

  font-family: Montserrat, Montserrat;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
}

a,
span {
  display: inline-block;
}

.polygon {
  position: relative;
  cursor: pointer;
}

.polygon a {
  display: flex;
  align-items: center;
}

.polygon img {
  width: 12px;
  height: 10px;
  margin-left: 6px;
  margin-top: 6px;
}

.polygon .img1 {
  display: block;
}

.polygon .img2 {
  display: none;
}

.header-active .polygon .img1 {
  display: none;
}

.header-active .polygon .img2 {
  display: block;
}

.list-polygon {
  width: 272px;
  background: #ffffff;
  border-radius: 12px 12px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 28px;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  visibility: hidden;
}

.list-polygon.show {
  visibility: visible;
}

.list-polygon p {
  padding: 12px 0;
  padding-left: 20px;
  width: 100%;
  box-sizing: border-box;
  font-family: SF Pro Text, SF Pro Text;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  text-align: left;
  font-style: normal;
  text-transform: none;
  cursor: pointer;
}

.list-polygon p a {
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #000000 !important;
  text-decoration: none;
}

.list-polygon .active {
  background: #f4f1ff !important;
}

.list-polygon p:hover {
  background: #f4f1ff !important;
}

.list-polygon .active a {
  color: #583ceb !important;
}

/* header */
header {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
  display: flex;
  align-items: center;
  background-color: transparent;
}

.header-active {
  background-color: #fff;
  font-weight: bold;
}

.header-active nav .logo a {
  font-family: SF Pro Text, SF Pro Text;
  font-weight: 500;
  font-size: 28px;
  color: #222222;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.header-active nav .nav-links li a {
  font-family: SF Pro Text, SF Pro Text;
  font-weight: 400;
  font-size: 16px;
  color: #222222;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.header-active nav .nav-links li a:hover {
  color: #222222;
  scale: 1.1;
}

.header-active nav .nav-links a.active {
  color: #222222;
}

.header-active nav .nav-links a.active::after {
  background-color: #222222;
}

header nav {
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999999;
}

header nav .logo {
  /* height: 60px; */
}

header nav .logo a {
  font-family: SF Pro Text, SF Pro Text;
  font-weight: 500;
  font-size: 28px;
  color: #ffffff;
  text-align: left;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
}

header nav .logo a img {
  width: 60px;
  height: 60px;
  margin-right: 20px;
}

header nav .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav .nav-links li {
  margin-right: 40px;
}

header nav .nav-links li a {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-decoration: auto;
  position: relative;
}

header nav .nav-links a.active {
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}

header nav .nav-links a.active::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px 2px 2px 2px;
  position: absolute;
  left: 50%;
  margin-left: -15px;
  bottom: -7px;
}

#Home {
  width: 100%;
  height: 938px;
  display: flex;
  flex-direction: column;
  padding-top: 159px;
  background-image: url("../images/bg1.png");
  background-repeat: no-repeat;
  background-size: 100% 938px;
}

#Home .container {
  display: flex;
  align-items: center;
  flex-direction: column;
}

#Home .container .p1 {
  width: 90%;
  font-family: SF Pro Text, SF Pro Text;
  font-weight: 500;
  font-size: 80px;
  color: #ffffff;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-bottom: 34px;
}

#Home .container .p2 {
  width: 90%;
  font-family: SF Pro Text, SF Pro Text;
  font-weight: 500;
  font-size: 32px;
  color: #ffffff;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-bottom: 77px;
}

#Home .container .p3 {
  /* width: 379px;
  height: 105px; */
  background: #ffffff;
  border-radius: 53px 53px 53px 53px;
  padding: 32px 67px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: SF Pro Text, SF Pro Text;
  font-weight: 500;
  font-size: 35px;
  color: #222222;

  font-style: normal;
  text-transform: none;
}

#Home .container .p3 img {
  width: 42px;
  height: 28px;
  margin-left: 10px;
}

#Home .container .p3 a {
  font-size: 28px;
  color: #222222;
  text-decoration: none;
}

#Home .container .p3:hover {
  text-decoration: underline;
  scale: 1.1;
  transition: all 0.3s ease-in-out;
}

#AboutUs {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0;
  background-image: url("../images/bg2.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-color: #f4f1ff;
}

#AboutUs .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#AboutUs .container .title {
  width: 100%;
  font-family: SF Pro Text, SF Pro Text;
  font-weight: 500;
  font-size: 70px;
  color: #222222;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-bottom: 54px;
}

#AboutUs .container .box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(249, 247, 255, 0.76);
  border: 3px solid #fff;

  padding: 60px 40px;
  box-sizing: border-box;
  border-radius: 30px;
}

#AboutUs .container .box img {
  width: 455px;
  height: 386px;
}

#AboutUs .container .box .right {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#AboutUs .container .box .right p {
  font-family: SF Pro Text, SF Pro Text;
  font-weight: 500;
  font-size: 32px;
  color: #222222;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

#AboutUs .container .box .right .p1 {
  margin-bottom: 40px;
}

#AboutUs .container .box .right .p2 {
  margin-bottom: 66px;
}

#AboutUs .container .box .right .p3 {
  margin-bottom: 40px;
}

#OurTeam {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0;
  background-color: #ffffff;
}

#OurTeam .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#OurTeam .container .title {
  width: 100%;
  font-family: SF Pro Text, SF Pro Text;
  font-weight: 500;
  font-size: 70px;
  color: #222222;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-bottom: 64px;
}

#OurTeam .container .small {
  width: 100%;
  font-family: SF Pro Text, SF Pro Text;
  font-weight: 400;
  font-size: 32px;
  color: #222222;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 60px;
}

#OurTeam .container .p1 {
  width: 100%;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  font-size: 50px;
  color: #222222;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 36px;
}

#OurTeam .container .list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#OurTeam .container .list .item {
  width: 273px;
  height: 377px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 36px;
  box-sizing: border-box;
  flex: 1;
  background: #f4f1ff;
  border-radius: 20px 20px 20px 20px;
  padding: 60px 14px;
}

#OurTeam .container .list .item img {
  width: 100px;
  height: 100px;
  margin-bottom: 27px;
}

#OurTeam .container .list .item p {
  font-family: SF Pro Text, SF Pro Text;
  font-weight: 400;
  font-size: 22px;
  color: #222222;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

#ContactUs {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0;
  background: #f4f1ff;
}

#ContactUs .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#ContactUs .container .title {
  width: 100%;
  font-family: SF Pro Text, SF Pro Text;
  font-weight: 500;
  font-size: 70px;
  color: #222222;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-bottom: 68px;
}

#ContactUs .container .boxs {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

#ContactUs .container .boxs .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#ContactUs .container .boxs .left .p1 {
  font-family: SF Pro Text, SF Pro Text;
  font-weight: 500;
  font-size: 50px;
  color: #222222;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-bottom: 30px;
}

#ContactUs .container .boxs .left .p2 {
  font-family: SF Pro Text, SF Pro Text;
  font-weight: 400;
  font-size: 32px;
  color: #222222;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 70px;
}

#ContactUs .container .boxs .left .p3 {
  font-family: SF Pro Text, SF Pro Text;
  font-weight: 500;
  font-size: 50px;
  color: #222222;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-bottom: 44px;
}

#ContactUs .container .boxs .left .list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

#ContactUs .container .boxs .left .list .item {
  width: 100%;
  height: 233px;
  background: rgba(248, 246, 255, 0.76);
  border-radius: 30px;
  border: 1px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px 30px;
  box-sizing: border-box;
}

#ContactUs .container .boxs .left .list .item:first-child {
  margin-right: 30px;
}

#ContactUs .container .boxs .left .list .item img {
  width: 72px;
  height: 72px;
  margin-bottom: 12px;
}

#ContactUs .container .boxs .left .list .item p {
  font-family: SF Pro Text, SF Pro Text;
  font-weight: 500;
  font-size: 22px;
  color: #222222;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 20px;
}

#ContactUs .container .boxs .left .list .item2 {
  width: 100% !important;
}

#ContactUs .container .boxs .right {
  width: 527px;

  background: rgba(249, 247, 255, 0.76);
  border-radius: 30px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 47px 25px;
  box-sizing: border-box;
}

#ContactUs .container .boxs .r-title {
  width: 100%;
  font-family: SF Pro Text, SF Pro Text;
  font-weight: 500;
  font-size: 32px;
  color: #222222;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 30px;
}

#ContactUs .container .boxs .form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#ContactUs .container .boxs .form .item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 30px;
}

#ContactUs .container .boxs .form .item p {
  width: 100%;
  font-family: SF Pro Text, SF Pro Text;
  font-weight: 400;
  font-size: 22px;
  color: #222222;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 20px;
  padding-left: 30px;
  box-sizing: border-box;
}

#ContactUs .container .boxs .form .item input {
  width: 100%;
  height: 76px;
  background: #ffffff;
  border-radius: 15px 15px 15px 15px;
  padding: 10px 25px;
  border: none;
  font-size: 20px;
  color: #222;
}

#ContactUs .container .boxs .form .item textarea {
  width: 100%;
  height: 200px;
  background: #ffffff;
  border: none;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 15px 15px 15px 15px;
  font-size: 20px;
  color: #222;
}

.error {
  color: red;
  margin-top: 5px;
  display: none;
}

.success {
  color: green;
  margin-top: 10px;
  display: none;
}

#submit {
  width: 221px;
  height: 76px;
  background: #583ceb;
  border-radius: 23px 23px 23px 23px;
  font-family: SF Pro Text, SF Pro Text;
  font-weight: 400;
  font-size: 28px;
  color: #ffffff;
  text-align: left;
  font-style: normal;
  text-transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#submit:hover {
  background-color: #3f29c5;
}

#Footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 87px 0;
  background: #2f2f2f;
}

#Footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
}




#Footer .container .left {
  width: 525px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


#Footer .container .left .p1 {
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  font-size: 50px;
  color: #FFFFFF;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 40px;
}

#Footer .container .left p {
  width: 100%;
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 50px;
}

#Footer .container .left p:last-child {
  margin-bottom: 0;
}

#Footer .container .right {
  flex: 1;
  width: 459px;
  height: 233px;
  border-radius: 30px 30px 30px 30px;
  border: 1px solid #606060;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 43px;
  box-sizing: border-box;

}

#Footer .container .right .p1 {
  width: 100%;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  font-size: 32px;
  color: #FFFFFF;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-bottom: 17px;
}

#Footer .container .right .p2 {

  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: 22px;
  color: #FFFFFF;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-bottom: 23px;
  display: flex;
  align-items: center;
}

#Footer .container .right .p2 a {
  color: #FBC257;
  text-decoration: none;
}
#Footer .container .right .p2 a:hover{
  text-decoration: underline;
}
#Footer .container .right .p3 {

  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: 22px;
  color: #FFFFFF;
  text-align: center;
  font-style: normal;
  text-transform: none;
  display: flex;
  align-items: center;
}

#Footer .container .right .p3 a {
  color: #FBC257;
  text-decoration: none;
}
#Footer .container .right .p3 a:hover{
  text-decoration: underline;
}
#backTop {
  width: 32px;
  height: 32px;
  position: fixed;
  bottom: 80px;
  right: 80px;
  z-index: 999;
  cursor: pointer;
  opacity: 0.6;
}

#backTop:hover {
  opacity: 1;
}

#backTop img {
  width: 100%;
  height: 100%;
}