/* google fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
/* default */
body {
  font-family: "Poppins", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #303030;
}
h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 20px 0;
}
p {
  color: #7c7c7d;
  line-height: 1.5em;
}
main {
  width: 70%;
  margin: 0 auto;
  padding: 50px 0;
}
.title {
  font-size: 48px;
  font-weight: 800;
  text-align: center;
  line-height: 45px;
}
.subTitle {
  color: #404040;
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}
.subTitle2 {
  font-size: 24px;
  color: #191919;
  margin: 15px 0;
}
.top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}
.top p {
  font-size: 18px;
  text-align: center;
  line-height: 25px;
}
.highlightPoints {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 30px;
}
.point {
  padding-right: 50px;
}
.point p {
  text-align: justify;
}
.icon {
  font-size: 35px;
  color: #ff7810;
}
.point ul {
  margin-top: 10px;
  margin-left: 20px;
}
.licenseTop {
  margin-top: 20px;
  margin-bottom: 60px;
  text-align: center;
}
.licenseDescription ol {
  margin-left: 20px;
}
.licenseDescription ol li {
  margin-bottom: 20px;
}
.licenseDescription p {
  color: black;
  text-align: justify;
}

.a {
  text-decoration: none;
  color: #ff7810;
}

.center-align {
  text-align: center;
}

.left-align {
  text-align: left;
}

.right-align {
  text-align: right;
}
.color-black {
  color: rgb(54, 54, 54);
}
.ol_div li {
  margin-bottom: 10px;
  margin-left: 20px;
  margin-top: 10px;
  line-height: 1.5;
}

/* responsive part */
@media only screen and (max-width: 992px) {
  main {
    width: 85%;
  }
  .highlightPoints {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media only screen and (max-width: 600px) {
  main {
    width: 95%;
  }
  .highlightPoints {
    grid-template-columns: repeat(1, 1fr);
  }
}
