#contact-cont {
    border: 1px solid rgb(229, 229, 229);
    margin: 4rem 1rem;
    display: block;
    flex-direction: row;
    width: 100%;
}
#contact-info {
    padding: 2rem;
    border-right: 1px solid rgb(229, 229, 229);
    flex: 1;
    line-height: var(--line-height-lg)
}
#contact-form {
    flex: 2;
    text-align: center;
}
.contact-form-row {
    padding-left: 1.8rem;
    border-bottom: 1px solid rgb(229, 229, 229);
    height: 3.5rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
.contact-form-row:last-child {
    border-bottom: none;
}
.contact-form-row input,
.contact-form-row textarea {
    border: none;
    outline: 0;
    padding: 0;
    border-radius: unset;
    -webkit-appearance: none;
    width: 100%;
}
.contact-form-row textarea {
    height: 25rem;
    min-height: 3.5rem;
    padding: 1.2rem 1.8rem 1.2rem 0;
    line-height: var(--line-height-lg);
    resize: vertical;
}
:-ms-input-placeholder {
    color: #000;
    opacity: 1;
}
::-ms-input-placeholder {
    color: #000;
    opacity: 1;
}
::placeholder {
    color: #000;
    opacity: 1;
}
#btn-contact-submit {
    margin: 2rem;
    position: relative;
}
.alert {
    margin: 0 2rem 2rem;
}
.spinner-border {
    color: #FFFFFF;
}

#vertigo .select2-selection__placeholder,
#vertigo .select2-container--default .select2-selection--single .select2-selection__rendered {
    text-align: left;
}
#vertigo .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 1.8rem;
}
#vertigo .select2-container--default .select2-selection--single {
    border: none;
    border-bottom: 1px solid rgb(229, 229, 229);
}
#vertigo .select2-container--default .select2-selection--single .select2-selection__arrow {
    display: block;
    height: 3.5rem;
}

@media only screen and (max-width: 767px) {
    #contact-cont {
        border: none;
        margin: 0;
    }
    #contact-info {
        border-right: none;
        text-align: justify;
    }
    #contact-form {
        padding: 2rem 0 0;
    }
    #page {
        align-items: flex-start;
    }
    .alert {
        margin: 0 0 2rem;
    }
    .contact-form-row textarea {
        height: 20rem;
    }
}
@media only screen and (min-width: 767px) {
    #contact-cont {
        width: 80%;
    }
}
@media only screen and (min-width: 992px) {
    #contact-cont {
        width: 65%;
    }
}
@media only screen and (min-width: 1400px) {
    #contact-cont {
        width: 50%;
    }
}