.btn {
    font-family: 'Titillium Web', sans-serif !important;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    padding: 10px 20px;
}

.btn:hover {
    text-decoration: none;
    opacity: 0.8;
}

.btn-primary {
    background-color: #068ac5;
}

.btn-primary:hover {
    background-color: #068ac5;
}

.btn-secondary {
    background-color: white;
    border: 2px solid #068ac5;
    color: #068ac5;
}

.btn-secondary:hover {
    background-color: #068ac5;
    border-color: #068ac5;
    color: white;
}