* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

@font-face {
  font-family: 'Poppins-SemiBold';
  src: url("../font/Poppins-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: 'Poppins-Medium';
  src: url("../font/Poppins-Medium.ttf") format("truetype");
}

@font-face {
  font-family: 'Poppins-Light';
  src: url("../font/Poppins-Light.ttf") format("truetype");
}

html, body {
  width: 100%;
  height: 100%;
  background-color: white;
  min-width: 1340px;
  font-family: 'Poppins-Light', sans-serif;
}

.header {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  position: fixed;
  z-index: 1;
  background-color: white;
}

.header .center {
  width: 1300px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .center .logo {
  width: 330px;
  height: 42.04px;
}

.header .center .nav {
  display: flex;
  align-items: center;
  gap: 50px;
}

.header .center .nav .nav-item {
  color: #004285;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Poppins-SemiBold', sans-serif;
}

.banner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner .center {
  position: absolute;
  width: 1300px;
}

.banner .center p:nth-child(1) {
  font-size: 62px;
  font-weight: 400;
  color: white;
  letter-spacing: 0.457px;
  text-align: center;
}

.banner .center p:nth-child(2) {
  font-size: 62px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.457px;
  text-transform: uppercase;
  text-align: center;
  font-family: 'Poppins-Medium', sans-serif;
}

.banner .center p:nth-child(3) {
  font-size: 24px;
  font-weight: 400;
  color: white;
  letter-spacing: 0.457px;
  text-align: center;
  margin-top: 40px;
}

.section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.section .center {
  width: 1300px;
}

.part-two {
  padding: 92px 0 103px 0;
}

.part-two .title {
  color: #1B1C1D;
  text-align: center;
  font-size: 32px;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.part-two .box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: 100%;
}

.part-two .box > div {
  box-shadow: 0px 2px 16px 0px rgba(27, 28, 29, 0.08);
}

.part-two .box > div .img-box {
  width: 100%;
  height: 242px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.part-two .box > div .img-box img {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}

.part-two .box > div .img-box img.active {
  transform: scale(1.5);
}

.part-two .box > div p:nth-child(2) {
  color: #1B1C1D;
  font-size: 20px;
  font-weight: 300;
  margin: 36px 36px 12px 36px;
}

.part-two .box > div p:nth-child(3) {
  color: #1B1C1D;
  font-size: 15px;
  font-weight: 300;
  margin: 0 36px 36px 36px;
}

.part-three {
  background-color: #F6F6F6;
  padding: 121px 0 0 0;
  flex-direction: column;
  align-items: center;
}

.part-three .title {
  max-width: 1021px;
  width: 100%;
  color: #000;
  text-align: center;
  font-size: 32px;
  font-weight: 300;
  line-height: 40px;
}

.part-three .content {
  width: 100%;
  display: flex;
  justify-content: center;
}

.part-three .content .center {
  width: 1300px;
  display: flex;
  justify-content: space-between;
  gap: 161px;
  padding: 64px 0;
}

.part-three .content .center img {
  height: 370px;
}

.part-three .content .center div p:nth-child(1) {
  color: #1B1C1D;
  font-size: 32px;
  font-weight: 500;
  margin-top: 88px;
  font-family: 'Poppins-Medium';
}

.part-three .content .center div p:nth-child(2) {
  color: #1B1C1D;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  margin-top: 52px;
}

.part-four {
  padding: 104px 0 161px 0;
}

.part-four .title {
  color: #1B1C1D;
  text-align: center;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 74px;
}

.part-four .title span {
  color: #0070D2;
}

.part-four .box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.part-four .box div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.part-four .box div img {
  width: 110px;
  height: 110px;
  margin-bottom: 17px;
}

.part-four .box div p:nth-child(2) {
  color: #0070D2;
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 12px;
  text-align: center;
}

.part-four .box div p:nth-child(3) {
  color: #1B1C1D;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  text-align: center;
}

.part-five {
  padding: 317px 0 157px 0;
  background: url("../img/bg.png") no-repeat;
  background-size: cover;
}

.part-five p {
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-weight: 300;
  line-height: 52px;
}

.footer {
  padding: 66px 0 61px 0;
  background-color: #313131;
  display: flex;
  justify-content: center;
}

.footer .center {
  width: 1300px;
}

.footer .center .title {
  color: #FFF;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer .center .box {
  display: flex;
  justify-content: space-between;
}

.footer .center .box div:nth-child(1) {
  display: flex;
}

.footer .center .box div:nth-child(1) img {
  width: 18px;
  height: 18px;
  margin-right: 15px;
  margin-top: 5px;
}

.footer .center .box div:nth-child(1) span {
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.footer .center .box div:nth-child(2) img {
  width: 16px;
  height: 12px;
  margin-right: 15px;
}

.footer .center .box div:nth-child(2) a {
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-decoration-line: underline;
}
