* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: DM Sans, sans-serif;
  /* overflow-x:hidden ; */
}
main nav {
  height: 88px;
  padding: 20px 0 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
#left > img {
  width: 33px;
  margin-left: 18px;
}
#left {
  height: inherit;
  width: 18%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#text {
  font-size: 15px;
  font-weight: 600;
}
#right {
  width: 48%;
  height: 100%;
  display: inline-flex;
  justify-content: space-around;
  align-items: center;
}
ol li {
  list-style: none;
  text-align: center;
  font-size: 17px;
  font-weight: 0;
}
ol li .arrow{
    padding-left: 2px;

}
ol li button{
    font-size: 16px;
    font-weight: 500;
    background-color: white;
    padding: 12px;
    border-radius:10px ;
}
ol li:hover,ol li button:hover, #text:hover, #left img:hover{
    cursor: pointer;
    color: #908787;
}

/* section */
section{
    width: 100vw;
    height: calc(100vh - 88px);
    display: flex;
}

section > div:first-child {
    padding: 70px 0 0 100px;
    width: 40%;
    height:100%;
}

section div > h1{
    font-size: 36px;
    font-weight: 600;
    margin-top: 20px;
    color: #2f1c6a;

}
section div p{
    font-size: 18px;
    font-weight: 600;
    color: #2f1c6a;
    margin-top: 15px;
}
section div p > span{
    color: #673de6;
}

section div ol{
    margin: 30px 0 0 15px;
}
section div ol li,section p:last-child {
    text-align: start;
    list-style-type: none;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: lighter;
    color: #2f1c6a;
    padding-left: 15px;
}
section li::marker{
    content: "✔️";
    font-size: 12px;
}
section ol+h1, section p:last-child span{
    font-size: 19px;
    font-weight: 100;
}
section ol+h1  > span{
    font-size: 50px;
    font-weight: 600;
}
section div > h3{
    font-size: 19px;
    font-weight: 600;
    color: #2f1c6a;
    margin: 8px 0 30px 0;
}
section div button{
    width: 35%;
    background-color: #673de6;
    height: 48px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    color: white;
}
section div button+button{
    background-color: #e7e2e2;
    color: #673de6;
}


section > div:last-child {
    width: 70%;
    height:100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top:45px;
}
section div > img{
    width: 88%;
}
section div > h3+button:hover{
    cursor: pointer;
    background-color: #673de6e9;
}

