#contact-section {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: var(--section-padding-y) var(--section-padding-x);
    background: var(--color-bg-light-blue);
    font-family: var(--font-primary);
}

#contact-section .contact-heading {
    font-size: var(--font-size-h2);
}

.contact-options {
    display: flex;
    justify-content: space-between;
}

.contact-options-1,
.contact-options-2 {
    width: 45%;
}

.contact-options-1 video {
    width: 100%;
    border-radius: 5px;
}

.contact-options-1 .sent-notice {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-secondary);
    padding: 10px;
    position: relative;
    bottom: 10px;
    color: var(--color-text-inverse);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.contact-options-1 .sent-notice .form-sent {
    margin-bottom: 5px;
    font-weight: var(--font-weight-regular);
    pointer-events: none;
}

.contact-options-1 .sent-notice .fa-headphones:hover {
    color: var(--color-text-primary);
    cursor: pointer;
}

.speakers-on {
    color: var(--color-text-secondary) !important;
}

.speakers-off {
    animation: speakers .5s ease infinite;
    color: #fff;
}

@keyframes speakers {
    100% {
        transform: scale(1.2);
    }
}

.contact-form {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.contact-form-input,
.contact-form-check {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-input-text,
.form-input-textarea {
    display: flex;
    flex-direction: column;
}

.form-input-text input,
.form-input-text select {
    border: none;
    background: transparent;
    border-bottom: 1px solid var(--color-primary);
    padding: 5px 0 2px 2px;
}

.form-input input:hover {
    cursor: pointer;
}

.contact-form-check .form-input label:hover {
    border-bottom: 1px solid var(--color-primary);
    cursor: pointer;
}

.form-input-textarea {
    margin: var(--spacing-lg) 0;
}

.form-input-textarea textarea {
    padding-left: 2px;
    padding-top: 2px;
    resize: none;
    height: 10vh;
    overflow-y: auto;
    background: transparent;
    border: none;
    border-right: 1px solid var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
}

.form-input-textarea textarea::placeholder,
.form-input-text input::placeholder,
.form-input-text select {
    font-style: italic;
}

.form-btn .btn {
    width: 100%;
}

.privacy--btn {
    background-color: grey !important;
    border: darkgrey;
    opacity: .3;
    cursor: auto;
}

.contact-options-1 .privacy-option {
    margin-bottom: 10px;
}

.contact-options-1 .privacy-option label a {
    font-size: .8rem;
}

.contact-options-2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-options-2-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 60%;
}

.contact-options-2-info p i {
    margin-right: 5px;
}

.contact-options-2-next h1 {
    margin-bottom: var(--spacing-md);
}

@media (max-width: 1000px) {
    #contact-section {
        height: auto;
    }

    .contact-options {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .contact-options-1,
    .contact-options-2 {
        width: 100%;
        margin-bottom: 15px;
    }

    .contact-options-2-hours {
        margin-top: 15px;
    }

    .contact-options-2-next h1 {
        margin-bottom: var(--spacing-sm);
    }

    .contact-options-2-info {
        height: auto;
    }
}

@media (max-width: 576px) {


    .contact-form {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .contact-form-check {
        margin-top: 15px;
    }
}