.btn-container {
    /* position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -65px;
    margin-top: -20px; */
    margin-top: 20px;
    width: 130px;
    height: 40px;
    text-align: center;
}

.btn-container button {
    outline: none;
    height: 40px;
    text-align: center;
    width: 130px;
    border-radius: 40px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-container button:hover {
    color: white;
    background: #149ddd;
}

.btn-container button:active {
    letter-spacing: 2px;
}

.btn-container button:after {
    content: "Contact Me";
}

.onclic {
    width: 40px;
    border-color: #bbbbbb;
    border-width: 3px;
    font-size: 0;
    border-left-color: #149ddd;
    animation: rotating 2s 0.25s linear infinite;
}

.onclic:after {
    content: "";
}

.onclic:hover {
    color: #149ddd;
    background: white;
}

.validate {
    font-size: 13px;
    color: white;
    background: #149ddd;
}

.validate:after {
    font-family: 'FontAwesome';
    content: "\f00c";
}

@keyframes rotating {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}