* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #8e43e7;
  --secondary-color: #273c66;
  --font-color: #696969;
  --bg-color: #fff;
  --heading-color: #3f3a64;
  --border-radius: 10px;
  --border-color: #ddd;
  --border-light: #ddd;
  --nav-color: #292922;
  --dropdown-color: #fff;
  --bg-light: rgba(147, 107, 232, 0.05);
  --iframe-filter: grayscale(0%);
  --widget-bg: #3f3a64;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

.main {
  width: 90%;
  margin: auto;
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 90px;
  background-color: var(--bg-color);
  box-shadow: 0 3px 9px rgb(0 0 0 / 5%);
  display: flex;
  z-index: 1000;
}

header .main .main1 {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 34px;
  font-family: "Jost", sans-serif;
  color: var(--primary-color);
}

header .menu {
  display: flex;
}

header .menu .icon i {
  /* margin-left: 5px; */
  position: relative;
  left: 100%;
  line-height: 28px;
  cursor: pointer;
  font-size: 22px;
  color: var(--heading-color);
}

header .menu ul {
  list-style: none;
  display: flex;
  font-family: "Jost", sans-serif;
}

header .menu ul li a {
  position: relative;
  color: var(--heading-color);
  text-decoration: none;
  margin: 0 20px;
  padding-bottom: 2px;
  font-size: 19.2px;
  font-family: "Jost", sans-serif;
}

header .menu ul li a:active {
  color: var(--primary-color);
}

header .menu ul li a select {
  border: none;
  outline: none;
  color: var(--heading-color);
  padding-bottom: 2px;
  font-size: 19.2px;
  background-color: var(--bg-color);
}

header .menu ul li a:hover {
  color: var(--primary-color);
}

header .menu ul li .active {
  color: var(--primary-color);
}

header .menu ul li a::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  transition: ease-in-out 0.3s;
  background-color: var(--primary-color);
  bottom: 0;
}

header .menu ul li a:hover::before {
  width: 100%;
}

#click {
  display: none;
}

.toggle {
  display: none;
}

header .main .main1 .menu .toggle {
  /* margin-left: 20px; */
  border-radius: var(--border-radius);
  background-color: var(--primary-color);
  padding: 5px;
  /* margin-top: 10px;
margin-left: 20px; */
  position: relative;
  left: 100%;
  top: 10px;
}

header .main .main1 .menu .toggle .l {
  width: 30px;
  height: 3px;
  margin: 10px;
  background-color: black;
}

@media (max-width: 1050px) {
  .toggle {
    display: block;
  }
  #click:checked ~ ul {
    left: 0;
  }
  header .main .main1 .menu ul {
    position: fixed;
    top: 90px;
    box-shadow: 0 -1px 3px black;
    display: block;
    width: 100%;
    left: -100%;
    text-align: center;
    height: 50%;
    background-color: var(--dropdown-color);
    transition: ease-in-out 0.3s;
  }
  header .main .main1 .menu ul li a {
    line-height: 60px;
    font-size: 25px;
  }
  header .main .main1 .menu .icon {
    position: relative;
    right: 90px;
    line-height: 90px;
  }
  header .main .main1 .menu .icon i {
    font-size: 30px;
  }
}

.one {
  padding: 3rem 0;
  background-color: var(--bg-light);
}

.one .main {
  text-align: center;
}

.one .main h2 {
  font-size: 50px;
  font-weight: 500;
  margin: 0;
  padding: 0;
  color: var(--heading-color);
  font-family: "Jost", sans-serif;
}

.one .main ul {
  display: flex;
  align-items: center;
  list-style: none;
  justify-content: center;
}

.one .main ul li {
  margin: 0 20px;
}

.one .main ul li a {
  color: var(--primary-color);
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-size: 20px;
}

.one .main ul li a i {
  position: relative;
  right: 20px;
  font-size: 16px;
}

.one .main ul li:last-child a {
  color: black;
}

.two {
  padding: 3rem 0;
  background-color: var(--bg-color);
}

.two .main .main1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0px;
}

.two .main .main1 .img img {
  width: 100%;
}

.two .main .main1 .text {
  margin: 0 20px;
  width: 100%;
}

.two .main .main1 .text h5 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 2em;
  font-family: "Jost", sans-serif;
  letter-spacing: 1px;
  color: #8c89a2;
}

.two .main .main1 .text h3 {
  font-size: 35px;
  line-height: 40px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
}

.two .main .main1 .text p {
  margin: 1.3rem 0 0 0;
  padding: 0;
  font-size: 1.2em;
  line-height: 28px;
  color: var(--font-color);
  font-family: "Jost", sans-serif;
}

.two .main .main1 .text .detail {
  margin-top: 24px;
  padding-top: 30px;
}

.two .main .main1 .text .r {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  width: 70%;
}

.two .main .main1 .text .r .b {
  color: var(--heading-color);
  font-weight: 400;
  /* margin-right: 200px; */
  font-weight: 600;
  font-family: "Jost", sans-serif;
  font-size: 1.2em;
}

.two .main .main1 .text .r .b span {
  margin: 0;
  padding: 0;
  font-size: 1em;
  line-height: 28px;
  color: var(--font-color);
  font-family: "Jost", sans-serif;
}

.two .main .main1 .text .r .b span a {
  text-decoration: none;
  font-family: "Jost", sans-serif;
  color: var(--font-color);
}

.two .main .main1 .text .down {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  width: 70%;
}

.two .main .main1 .text .down .icon i {
  font-size: 20px;
  opacity: 0.7;
  margin: 0 8px;
}

.two .main .main1 .text .down .line {
  width: 150px;
  height: 1px;
  background-color: black;
}

.two .main .main1 .text .down a {
  border: none;
  background-color: #8e43e7;
  font-size: 18px;
  color: var(--bg-color);
  margin-right: 20px;
  text-decoration: none;
  line-height: 28px;
  cursor: pointer;
  text-transform: capitalize;
  font-weight: 400;
  padding: 12px 35px;
  border-radius: var(--border-radius);
}

.three {
  padding: 3rem 0;
  background-color: var(--bg-light);
}

.three .main {
  padding: 3rem 0;
}

.three .main h3 {
  font-size: 18px;
  font-weight: 600;
  /* text-transform: uppercase; */
  line-height: 2em;
  letter-spacing: 1px;
  color: #8c89a2;
}

.three .main h5 {
  font-size: 35px;
  line-height: 40px;
  margin-bottom: 1.5rem;
  font-family: "Jost", sans-serif;
}

.three .main p {
  margin: 0;
  padding: 0;
  font-size: 1.2em;
  line-height: 28px;
  color: var(--font-color);
  font-family: "Jost", sans-serif;
}

.three .main .card {
  display: flex;
  padding-top: 10px;
  margin-top: 48px;
}

.three .main .card .cards {
  padding: 0 15px;
}

.three .main .card .cards a {
  font-size: 28px;
  position: relative;
  right: 33px;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  color: var(--heading-color);
}

.three .main .card .cards i {
  font-size: 28px;
  color: var(--primary-color);
  position: relative;
  right: 23px;
  margin-right: 10px;
}

.three .main .card .cards p {
  margin: 0;
  padding: 0;
  font-size: 1.2em;
  line-height: 28px;
  color: var(--font-color);
  font-family: "Jost", sans-serif;
}

.four {
  background-color: var(--bg-color);
  padding: 3rem 0;
}

.four .main {
  display: flex;
  /* justify-content: space-between; */
  /* align-items: center; */
  padding: 3rem 0;
}

.four .main .left {
  width: 50%;
}

.four .main .left h3 {
  font-size: 35px;
  line-height: 40px;
  margin-bottom: 1.5rem;
}

.four .main .left p {
  margin: 0;
  padding: 0;
  font-size: 1.2em;
  line-height: 28px;
  color: var(--font-color);
  font-family: "Jost", sans-serif;
}

.four .main .right h6 {
  font-size: 1.2em;
  color: var(--heading-color);
  margin-bottom: 10px;
  font-weight: 500;
}

.four .main .right progress {
  width: 400px;
  height: 14px;
  /* background-color: red !important; */
  margin-bottom: 30px;
}

.five {
  background-color: var(--bg-light);
}

.five .main {
  display: flex;
  width: 100%;
}

.five .main .img-text1 {
  padding: 1rem 3rem;
}

.five .main .img-text img {
  width: 100%;
}

.five .main .img-text1 h3 {
  font-size: 35px;
  line-height: 40px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  margin-bottom: 50px;
  margin-top: 100px;
}

.five .main .img-text1 input {
  color: var(--font-color);
  background: transparent;
  padding: 0px 20px;
  font-size: 1.2em;
  outline: none;
  width: 280px;
  height: 65px;
  border-radius: 10px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border: 1px solid var(--border-color);
}

.five .main .img-text1 button {
  font-weight: 700;
  text-align: center;
  width: 143px;
  background: var(--primary-color);
  outline: none;
  height: 65px;
  color: #fff;
  font-size: 16px;
  padding: 0;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.six {
  background-color: var(--bg-color);
  padding: 3rem 0;
}

.six .main {
  padding: 3rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.six .main h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 2em;
  letter-spacing: 1px;
  color: #8c89a2;
}

.six .main h3 {
  font-size: 35px;
  font-weight: 600;
  line-height: 2em;
  letter-spacing: 1px;
  color: var(--heading-color);
  font-family: "Jost", sans-serif;
  margin-bottom: 3rem;
}

.six .main .boxs .first {
  display: flex;
  padding: 2rem 1rem;
}

.six .main .boxs .first .one {
  padding: 3rem 1rem;
  border-radius: var(--border-radius);
  margin: 0 40px 0 0;
  transition: ease-in-out 0.3s;
}

.six .main .boxs .first .one:hover {
  background-color: var(--bg-color);
}

.six .main .boxs .first .one a {
  text-decoration: none;
  font-size: 28px;
  line-height: 34px;
  color: var(--heading-color);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Jost", sans-serif;
}

.six .main .boxs .first .one i {
  display: block;
  color: var(--primary-color);
  font-size: 24px;
  margin: 30px 30px 20px 0;
}

.six .main .boxs .first .one p {
  padding: 0;
  font-size: 1.2em;
  line-height: 28px;
  color: var(--font-color);
  font-family: "Jost", sans-serif;
}

footer {
  background-color: var(--bg-color);
  border-top: 1px solid silver;
  box-shadow: 0 3px 5px black;
}

footer .main {
  padding: 3rem 0;
}

footer .main .end {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .main .end .text p {
  margin: 0;
  padding: 0;
  font-size: 1.2em;
  line-height: 28px;
  color: var(--font-color);
  font-family: "Jost", sans-serif;
}

footer .main .end .text p span {
  color: var(--primary-color);
}

footer .main .end .icon {
  display: flex;
  font-size: 20px;
  opacity: 0.7;
}

footer .main .end .icon i {
  margin-left: 20px;
}
