#watto-contacts-contacts {
    display: flex;
    flex-direction: row;
    gap: var(--sectionGap);
    padding-top: 15vh;
    padding-bottom: 15vh;
}

#watto-contacts-contacts-section {
    display: flex;
    flex-direction: column;
    width: 40%;
    gap: var(--sectionGap)
}

#watto-contacts-contacts-title-2 {
    font-size: var(--textSizeDesktop);
    font-weight: var(--semiBoldWeight);
}

.contacts-list {
    color: var(--black);
    list-style-type: none;
    padding: 0;
}

.contacts-list a {
            color: var(--black, black);
            text-decoration: none;
            font-weight: var(--textFontWeight);
            font-size: var(--ctaSizeDesktop);
        }

#watto-contacts-form-section {

    width: 60%;
}

#contact-section-form {
    display: flex;
    flex-direction: column;
    gap: var(--sectionGap)
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-half {
    flex: 1;
}

.contact-form-input {
    border: none;
    background-color: var(--thirdiaryColor);
}

.contact-form-input:focus {
    outline: none;
    background-color: var(--thirdiaryColor);
}

#watto-contacts-form-section-5 {
    border: var(--buttonBorderAddColor);
    border-radius: var(--siteBorderRadius);
    padding: 12px;
}

#contact-section-form-group-consent-message {
    color: var(--mainColor);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1em;
    line-height: 1.19em;
}

.contact-form-input-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form-underline {
    border: none;
    width: 100%;
    height: 1px;
    background-color: var(--mainColor);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

#contact-section-form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#contact-section-form-group-submit-button {
    width: 100%
}

@media screen and (max-width: 768px) {

    #watto-contacts-contacts {
        flex-direction: column;
        gap: var(--innerSectionTitlesGap);
    }

    #watto-contacts-contacts-container {
        display: none;
    }

    #watto-contacts-form-section {
        width: 100%;
    }

    #contacts-section {
        flex-direction: column;
        gap: 48px;
    }

    #contact-section-form {
        width: 100%;
    }

}