body {
    font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
}

section {
    overflow: hidden;
}

.main-form {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: flex-start;
}

.content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    align-content: stretch;
}

.contact .contact-form {
    width: 100%;
}

.contact .contact-form .form-group {
    padding-bottom: 4px;
}

.contact .contact-form .error-message {
    display: none;
    color: #fff;
    background: #ff3b3bf7;
    text-align: left;
    padding: 15px;
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 8px;
    border-radius: 8px;
}

.contact .contact-form input,
.contact .contact-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .contact-form input {
    height: 44px;
}

.contact .contact-form textarea {
    padding: 10px 12px;
}

.contact .contact-form button[type="submit"] {
    background: #0d6efd;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    width: 100%;
}

.contact .contact-form button[type="submit"]:hover {
    background: #0640a5;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

textarea {
    resize: none;
}

select {
    color: #495057;
}

.form-group.d-flex {
    gap: 4px;
}

.input-error {
    border: 1px solid #dc3545;
}

.form-phone {
    border: 1px solid #ced4da !important;
    width: 45%;
    max-width: 150px;
}
