/* 


.form-bar {
    width: 100%;
    background-color: #25d366;
    color: #fff;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 0;
    z-index: 3;
}

.form-bar-mobile {
    display: none;
}

.form-bar-desk {
    bottom: 0;
    position: fixed;
    box-shadow: 0px 1px 10px #0000004f;
    border-top: 1px solid #d9d9d9;
}

a.form-bar-desk {
    cursor: pointer;
    text-decoration: none;
}

a.form-bar-desk:hover {
    color: #121D39;
}

@media (max-width:480px) {

    body {
        margin-top: 0px;
    }

    .form-mobile {
        height: 100vh;
        position: fixed;
        z-index: 999;
        background: #fff;
        margin-top: -40px;
    }

    .form-mobile section {
        margin-top: 15%;
    }

    .form-bar {
        display: inherit;
        position: fixed;
        bottom: 0;
        box-shadow: 0px 1px 10px #0000004f;
        border-bottom: 1px solid #d9d9d9;
    }

    .form-bar-desk {
        display: none;
    }

    #top{
        margin-top: 40px
    }
} */