/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap');
/*-----------------------for PC-----------------------*/
@media screen and (min-width:801px) {
  /*-----------------------body-----------------------*/
  #getting-startedWrapper {
    position: relative;
    top: 80%;
    left: 70%;
    /*width: 360px;
  
    height: 150px;*/
  }
  #getting-started ol {
    width: auto;
    display: flex;
    /*flex-wrap: nowrap;
    flex-direction: row;*/
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: stretch;
  }
  #getting-started li {
    /* width: 120px;*/
    color: #fff;
    margin: 0px 5px;
  }
  #getting-started li span {
    /* background: #AF0D68;*/
    color: #fff;
    font-size: 60px;
    font-family: "Oswald";
    width: auto;
  }
  #getting-started li i {
    display: block;
    /*color: #9CCAFF;
    font-size: 10px;*/
    width: auto;
    padding-top: 30px;
    float: left;
  }
  #getting-started li b {
    display: block;
    color: #fff;
    font-size: 20px;
    width: auto;
    padding-top: 50px;
    float: left;
  }
  .floatReg {
    width: 150px;
    height: 150px;
    background-color: #af0d69;
    opacity: 1;
    color: #fff;
    position: fixed;
    bottom: 10%;
    right: 30px;
    border-radius: 50%;
    font-weight: bold;
    text-align: center;
    line-height: 30px;
    letter-spacing: 2px;
    /* padding-top: 20px;*/
    font-size: 24px;
    box-shadow: 3px 2px 2px 1px rgb(75 5 5 / 40%);
    z-index: 1000;
  }
  .floatReg:hover {
    background-color: #dd2689;
    animation: heartBeat 2s;
    animation-iteration-count: 1;
  }
}
/*------------------for mobile------------------------*/
@media screen and (max-width:800px) {
  /*-----------------------body-----------------------*/
  #getting-startedWrapper {
    position: relative;
    top: 80%;
    left: 35%;
  }
   #getting-started ol {
    width: auto;
    display: flex;
    /*flex-wrap: nowrap;
    flex-direction: row;*/
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: stretch;
  }
  #getting-started li {
    /* width: 120px;*/
    color: #fff;
    margin: 0px 5px;
  }
  #getting-started li span {
    /* background: #AF0D68;*/
    color: #fff;
    font-size: 50px;
    font-family: "Oswald";
    width: auto;
  }
  #getting-started li i {
    display: block;
    /*color: #9CCAFF;
    font-size: 10px;*/
    width: auto;
    padding-top: 30px;
    float: left;
  }
  #getting-started li b {
    display: block;
    color: #fff;
    font-size: 20px;
    width: auto;
    padding-top: 50px;
    float: left;
  }
  .floatReg {
    width: 100px;
    height: 100px;
    background-color: #af0d69;
    opacity: 0.8;
    color: #fff;
    position: fixed;
    bottom: 20px;
    right: 10px;
    border-radius: 50%;
    font-size: 16px;
    text-align: center;
    line-height: 20px;
    /*  padding-top: 15px;*/
    z-index: 1000;
  }
  .floatReg a {
    color: #FFFFFF;
    text-decoration: none;
  }
}