/* Spam protection visual helpers */
.visually-hidden {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    padding: 0 !important;
    margin: -1px !important;
}

/* Additional hidden class for enhanced compatibility */
.hidden {
    display: none !important;
    visibility: hidden !important;
}

.contactOnsBox {
    box-sizing: content-box;
    width: 100%;
    height: 64%;
    background: #dbe7f0;
    display: flex;
    flex-direction: row;
}
.contactOnsContent {
    box-sizing: content-box;
    margin-left: 10%;
    width: 35%;
    height: 40%;
    background: #dbe7f0;
    margin-top: 15%;
    display: flex;
    flex-direction: column;
}
.contactTitelText {
    font-family: din-condensed-web;
    font-weight: bold;
    font-style: normal;
    font-size: 25px;
    letter-spacing: .15em;
    line-height: 2.3em;
    text-transform: uppercase;
    color: black;
    margin-left: 25%;
    margin-top: 15%;
}
input[type=text]{
    display: block;
    margin-top: 0.5%;
    margin-bottom: 3%;
    padding: 0.8%;
    width: 100%;
    height: 10%;
    border: none;
}
label{
    font-family: Roboto;
    color: #737373;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
}
textarea {
    display: block;
    margin-top: 0.5%;
    margin-bottom: 1%;
    padding: 0.8%;
    width: 100%;
    resize: none;
    border: none;
}
input[type=submit] {
    background-color: #f5f5f5;
    color: #a3a3a3;
    padding: 1.25% 4%;
    border: none;
    cursor: pointer;
}