.fade-in {
    animation: fadeInUp 0.8s ease-out both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.contact-form label {
    font-weight: 400;
    margin-bottom: 6px;
}

.contact-form .form-control {
    border-radius: 0;
}

.lead {
    font-weight: 300;
}