
/* 
@font-face {
    font-family: Roboto;
    src: url(Roboto.ttf)
} */



html,
body {
    background: #fff;
    flex-direction: column;
    align-items: center;
    display: flex
}

.main {
    max-width: 14.4rem;
    flex-direction: column;
    align-items: center;
    display: flex;
    font-size: .35rem;
}

.main .header {
    text-align: left;
    margin: .7rem 0 .4rem
}

.main h1 {
    color: black;
    font-family: Roboto;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1.41rem
}

.main ul,
.main li {
    color: black;
    margin-top: .3rem;
    font-family: Roboto;
    font-size: .2rem;
    font-style: normal;
    font-weight: 400;
    line-height: .3rem;
    list-style: disc
}

.main ul p,
.main li p {
    padding-left: .1rem
}

.main .label {
    color: black;
    mix-blend-mode: normal;
    opacity: .8;
    text-align: center;
    margin-top: .2rem;
    font-family: Roboto;
    font-size: .2rem;
    font-style: normal;
    font-weight: 400;
    line-height: .3rem
}

.main .card {
    width: 85%;
    background: #fff;
    margin-bottom: .1rem;
}

.main .card h4 {
    color: black;
    font-family: Roboto;
    font-size: .35rem;
    font-style: normal;
    font-weight: 700;
    line-height: .33rem
}

.main .card h6 {
    color: black;
    margin-top: .3rem;
    font-family: Roboto;
    font-size: .22rem;
    font-style: normal;
    font-weight: 700;
    line-height: .31rem
}

.main .card p {
  text-indent: 2em;
  color: black;
  font-family: Roboto;
  font-size: .28rem;
  font-style: normal;
  font-weight: 400;
  line-height: .6rem
}

.main .card h3 {
  position: relative;
  bottom: -0.25rem;
  color: black;
  font-family: Roboto;
  font-size: .4rem;
  font-style: normal;
  font-weight: 700;
  line-height: .4rem
}

.imgbox {
    height: 4.5rem;
    width: 100%;
    text-align: center;
    margin-top: 1.55rem;
}

.bookimg {
    height: 100%;
}


@media screen and (max-width:767px) {

    .main h1 {
        font-size: .8rem
    }

    .main .card {
        width: 85%
    }

    .main .card h4 {
        color: black;
        font-family: Roboto;
        font-size: .32rem;
        font-style: normal;
        font-weight: 700;
        line-height: .33rem
    }

    .main .card p {
        text-indent: 2em;
        color: black;
        font-family: Roboto;
        font-size: .28rem;
        font-style: normal;
        font-weight: 400;
        line-height: .6rem
    }

    .main .card h3 {
        position: relative;
        bottom: -0.25rem;
        color: black;
        font-family: Roboto;
        font-size: .4rem;
        font-style: normal;
        font-weight: 700;
        line-height: .4rem
    }
    
}

.wave {
    position: relative;
    align-items: center;
    max-height: 50vh;
    width: 100%;
    background-color: #fff;
    overflow: hidden;

    &:before, &:after {
        content: "";
        position: absolute;
        left: 50%;
        min-width: 300vw;
        min-height: 300vw;
        background-color: #fff;
        animation-name: rotate;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }

    &:before {
        top: 4.6rem;
        border-radius: 70%;
        animation-duration: 10s;
    }

    &:after {
        top: 4.5rem;
        opacity: .7;
        border-radius: 70%;
        animation-duration: 10s;
    }
}

@keyframes rotate {
    0% {
        transform: translate(-50%, 0) rotateZ(0deg);
    }
    50% {
        transform: translate(-50%, -2%) rotateZ(180deg);
    }
    100% {
        transform: translate(-50%, 0%) rotateZ(360deg);
    }
}
 

.flow-button {
    position: fixed;
    bottom: .5rem;
    text-align: center;
}

.flow-button button {
    background-color: #5FC77E;
    border: none;
    color: #1A1A1A;
    padding: .2rem .3rem;
    font-size: .35rem;
    cursor: pointer;
    border-radius: .2rem;
}

.show {
    display: block;
}


.footer {
    margin-bottom: 1.5rem;
    text-align: center;
    width: 90%;
}

.footer {
    background-color: #F0FFF4;
    opacity: .9;
    border: none;
    color: #1A1A1A;
    padding: .2rem .3rem;
    font-size: .25rem;
    cursor: pointer;
    border-radius: .4rem;
}


@keyframes pulse {
    0% {
      -webkit-transform: scale(1);
    }
  
    50% {
      -webkit-transform: scale(0.9);
    }
  
    100% {
      -webkit-transform: scale(1);
    }
  }
  
  @-webkit-keyframes pulse {
    0% {
      -webkit-transform: scale(1);
    }
  
    50% {
      -webkit-transform: scale(0.9);
    }
  
    100% {
      -webkit-transform: scale(1);
    }
  }
  
  @-moz-keyframes pulse {
    0% {
      -moz-transform: scale(1);
    }
  
    50% {
      -moz-transform: scale(0.9);
    }
  
    100% {
      -moz-transform: scale(1);
    }
  }
  

.animation {
    animation: pulse 1.2s infinite;
    -webkit-animation: pulse 1.2s infinite;
    -moz-animation: pulse 1.2s infinite;
}

.top {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient( 270deg, #5FC77E 0%, #5FC77E 100%);
  padding: 10px 0;
  z-index: 9;
}

.top .left {
  margin-left: 4vw;
  display: flex;
  align-items: center;
}

.top .right {
  margin-right: 4vw;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  /* box-shadow: 0 0 4px rgba(0, 0, 0, 0.2); */
}

.name {
  color: #1A1A1A;
  margin-left: 6px;
  font-weight: 600;
  font-family: PingFang SC;
}

.download_button {
  position: relative;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background-image: linear-gradient(270deg, #ffffff 3.8%, #ffffff 95.32%);
  border-radius: 100px;
  padding: 8px;
}

.download_button .download_button_text {
  width: 100%;
  height: 100%;
  font-size: 18px;
  font-family: PingFang SC;
  font-weight: 600;
  color: #1A1A1A;
  border-radius: 100px;
  background-image: linear-gradient(90deg, #ffffff 0%, #ffffff 94%);
  padding: 0;
}

.download_button .download_button_text span {
  padding: 0 15px;
}