.flex{
    display: flex;
    justify-content: space-between;
}

.flex-start{
    display: flex;
    justify-content:flex-start;
}

.inner{
    width: 99.99%;
    margin: 0 auto;
}

.internal{
    width: 85%;
    margin: 0 auto;
}

.enroll{
    border: none;
    background-color: #EEA02C;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 2rem;
    padding: 0.8rem 2.5rem;
}
@media only screen and (max-width: 300px) {
    .enroll {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}
.more{
    border: none;
    background-color: #EEA02C;
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 2rem;
    padding: 0.8rem 2.5rem;
}

.scroll {
    width: 50px;
    height: 50px;
    background-color:#EEA02C;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 200;
    border-radius: 100%;
    text-align: center;
    line-height: 50px;
    transition: background-color 0.5s ease, color 0.5s ease;
    cursor: pointer;
  }
  
  .scroll:hover{
    background: #ffff;
    box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.4);
  }
  
  .scroll:hover i{
    color: #EEA02C;
  }

  .scroll i{
    color: #fff;
    font-size: 1.5rem;
    margin-top: 0.8rem;
  }