<!-- Start: Show CTA at bottom -->
html {
    scroll-behavior: smooth;
}
.float-action-elm {
    position: fixed;
    bottom: -400px;
    left: 0;
    width: 100%;
    background: #FFF;
    box-shadow: 0px -3px 20px 0px rgba(0, 0, 0, 0.08);
    transition: bottom 0.3s ease-in-out;
}
.float-action-elm-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 12px;
    gap: 16px;
}
.arrow-right-elm {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
}
.find-course {
    display: block;
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
    background-color: #068433;
    border-color: #068433;
    width: max-content;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
}
.find-course:hover {
    text-decoration: none;
    color: #fff;
    background-color: #068433c0;
    border-color: #068433c0;
}
.float-action-elm .container:after, .float-action-elm .container:before {
    display: none;
}

