/* 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 {
    width: 360px;
    margin: 0 auto;
    height: 150px;
  }
  #getting-started li {
    float: left;
    margin: 5px;
    width: 80px;
    display: block;
    text-align: center;
    ;
  }
  #getting-started li span {
    background: #AF0D68;
    color: #fff;
    font-size: 50px;
    border-radius: 3px;
    padding: 10px;
    display: inline-block;
    font-family: "Oswald";
  }
  #getting-started li i {
    display: block;
    font-style: normal;
    color: #fff;
    font-size: 13px;
    margin-top: 5px
  }
	.floatReg {
    width: 125px;
    height: 125px;
    background-color: #f5a503;
    opacity: 0.95;
    color: #fff;
    position: fixed;
    bottom: 75px;
    right: 30px;
    border-radius: 50%;
    font-weight: bold;
    text-align: center;
    line-height: 30px;
    letter-spacing: 2px;
    padding-top: 30px;
    font-size: 28px;
	line-height: 120%;
    box-shadow: 3px 2px 2px 1px rgb(75 5 5 / 40%);
    z-index: 1000;
  }
  .floatReg:hover {
    background-color: #f0be1d;
    animation: heartBeat 2s;
    animation-iteration-count: 1;
  }

}
/*------------------for mobile------------------------*/
@media screen and (max-width:800px) {
  /*-----------------------body-----------------------*/
  #getting-startedWrapper {
    width: 100%;
    margin: 0 auto;
    height: 120px;
    padding: 2%
  }
  #getting-started li {
    float: left;
    margin: 2%;
    width: 21%;
    display: block;
    text-align: center;
  }
  #getting-started li span {
    background: #AF0D68;
    color: #fff;
    font-size: 30px;
    border-radius: 3px;
    padding: 10px;
    display: inline-block;
    font-family: "Oswald";
  }
  #getting-started li i {
    display: block;
    font-style: normal;
    color: #fff;
    font-size: 13px;
    margin-top: 5px
  }
.floatReg {
    width: 80px;
    height: 80px;
    background-color: #f5a503;
    opacity: 0.9;
    color: #fff;
    position: fixed;
    bottom: 20px;
    right: 10px;
    border-radius: 50%;
    font-size: 16px;
    text-align: center;
    line-height: 20px;
    padding-top: 20px;
    z-index: 1000;
  }
  .floatReg a {
    color: #FFFFFF;
    text-decoration: none;
  }
}