.contact_form h3, .modal-content h3 {
    font-size: 36px;
    margin-top: 35px;
    padding-bottom: 17px;
}

.modal-content h3 {
    text-align: center;
}

.contact_form label, .modal-content p {
    display: block;
    width: 100%;
    margin-bottom: 5px;
    margin-top: 20px;
    color: #666;
    font-size: 17px;
    font-family: LatoRegular;
}

.contact_form input[type="text"],
.contact_form input[type="email"],
.contact_form select,
.contact_form textarea {
    border: 1px solid #4c86b5;
    background-color: #fff;
    text-indent: 13px;
    width: 100%;
    height: 32px;
}

.contact_form input[type="checkbox"] {
    width: 25px;
    height: 25px;
    display: block;
}

.contact_form input[type="checkbox"]::before {
    content: "";
    width: 25px;
    height: 25px;
    border: 1px solid #4c86b5;
    display: block;
}

.contact_form input[type="checkbox"].error::before {
    content: "";
    width: 25px;
    height: 25px;
    border: 1px solid red;
    display: block;
}

.contact_form textarea {
    height: 100px;
    text-indent: 0;
    padding: 10px;
}

.submit_contact_form {
    display: block;
    width: 100%;
    text-align: right;
    margin-top: 10px;
}

.cf_term{
    margin-top: 15px;
}
.cf_term input {
    margin-right: 10px;
}

.contact_form .btn {
    padding: 5px 13px;
    border: 0;
    min-width: 100px;
}

.contact_form input[type="text"].error,
.contact_form input[type="email"].error,
.contact_form input[type="checkbox"].error,
.contact_form select.error,
.contact_form textarea.error  {
    border: 1px solid red;
}

label.error {
    display: block;
    font-size: 14px;
    color: red;
    margin-top: 10px;
}

.iti {
    width: 100%;
}
.iti__country-container {
    max-height: 30px;
}

.css-imlxor {
    color: red;
}
/* Modal */
.modal {
    padding: 3rem 6rem;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: flex-start; /* or center */
    z-index: 1000; /* depending on what z-index values exist in your page, in order for the modal layer to sit on top of other content */
    overflow: auto; /* enable scrolling if needed - although this is not really necessary since we are going take care of overflow in modal-content */
    background-color: rgba(0,0,0,0.8);
}
.modal.modal-show {
    animation: fadeIn 0.1s ease-in-out forwards;
}
.modal.modal-hide {
    animation: fadeOut 0.1s ease-in-out 0.1s forwards;
}
.modal-content {
    position: relative;
    background-color: #fff;
    margin: 2rem;
    padding: 2rem;
    border-radius: 0.25rem;
    width: 50%;
    max-height: 75%;
    overflow: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.modal.modal-show .modal-content {
    animation: fadeInDown 0.3s ease-in-out forwards;
}
.modal.modal-hide .modal-content {
    animation: fadeOutUp 0.2s ease-in-out forwards;
}

.modal-close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 3.75rem;
    font-weight: bold;
    padding: 0 0.75rem;
    /* width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center; */
    color: rgba(0,0,0,0.2);
    cursor: pointer;
    user-select: none;
    font-family: LatoRegular;
}
.modal-close:hover, .modal-close:focus {
    color: rgba(0,0,0,0.5);
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-3rem);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeOutUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-3rem);
    }
}

@media(max-width: 992px) {
    html { font-size: 14px; }
    .modal-content { width: 80%; }
}
@media(max-width:767px) {
    html { font-size: 12px; }
    .modal-content { padding: 2rem 1rem 1rem 1rem; width: 90%; }
    .modal-content h1 { margin-bottom: 1.5rem; }
}

.modal-content h3{

}