* {
  font-family: Segoe UI;
  margin: 0;
}
a {
  text-decoration: none;
}
header {
  max-width: 1200px;
  width: 94%;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
}
header .logo img {
  width: 32px;
  height: 32px;
}
header .logo .logo-text p {
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
}
header .logo .logo-text h3 {
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}
header .download {
  width: 203px;
  height: 40px;
  background: #090927;
  border-radius: 4px;
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .download img {
  width: 22px;
  height: 24px;
}
header .download p {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
}
main .main__top-section {
  box-sizing: border-box;
  padding: 40px;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, #02b96c 1.87%, #014a2c 26.86%, #032320 61%, #010101 100%);
  gap: 40px;
}
main .main__top-section .main__top-title h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 96px;
  text-align: center;
  color: #45ffbc;
}
main .main__top-section .main__top-description {
  box-sizing: border-box;
  position: relative;
  margin: 0 auto;
  padding: 30px;
  width: 92%;
  max-width: 1200px;
  border: 4px dashed #45ffbc;
}
main .main__top-section .main__top-description .decorate {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #45ffbc;
}
main .main__top-section .main__top-description .left-top {
  left: -12px;
  top: -12px;
}
main .main__top-section .main__top-description .right-top {
  right: -12px;
  top: -12px;
}
main .main__top-section .main__top-description .left-bottom {
  left: -12px;
  bottom: -12px;
}
main .main__top-section .main__top-description .right-bottom {
  right: -12px;
  bottom: -12px;
}
main .main__top-section .main__top-description .description-content {
  padding-left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main .main__top-section .main__top-description .description-content .description-item {
  width: 470px;
  position: relative;
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  text-align: left;
  color: #fff;
}
main .main__top-section .main__top-description .description-content .description-item::before {
  content: "·";
  font-size: 44px;
  line-height: 34px;
  position: absolute;
  left: -20px;
}
main .main__top-section .main__top-description .description-content .description-item:last-child {
  width: 400px;
}
main .main__top-section .main__top-description img {
  margin: 0 auto;
}
main .container {
  max-width: 1040px;
  width: 92%;
  margin: 0 auto;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
main .container .container-item {
  display: flex;
}
main .container .container-item img {
  width: 50%;
  height: auto;
}
main .container .container-item .item-text {
  padding-left: 100px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
main .container .container-item .item-text h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 50px;
  color: #000;
}
main .container .container-item .item-text p {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: #606060;
}
main .container .container-item:nth-child(2) .item-text {
  padding-right: 100px;
  padding-left: 0;
}
main .main__bottom-section {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f7fdf7;
  gap: 36px;
}
main .main__bottom-section h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 96px;
  color: #000;
}
main .main__bottom-section p {
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  color: #000;
}
footer {
  height: 60px;
  background: #000;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
}
footer p {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #c4c4c4;
}
