.content-container {
    padding-bottom: 0;
}
.contact-container {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    gap: 1px;
    background-color: var(--primary-bg-color);
    margin-top: 26px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
    width: 34%;
    padding: 32px 16px 48px 16px;
    background-color: var(--secondary-bg-color);
    color: var(--primary-color-2);
}
.contact-open-form-container {
    background-color: var(--primary-bg-color);
    padding: 32px;
    margin-top: 16px;
}
.map-open-hour-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
}
.map-and-choice-container {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.map-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
iframe {
    display: none;
}
iframe.maps-active {
    display: block;
}
.choice {
    width: 100%;
}
.maps-div {
    display: none;
}
.maps-div.maps-active {
    display: block;
    width: 100%;
}
.maps-div.maps-active > button {
    background-color: var(--secondary-bg-color-2);
    color: var(--primary-color-2);
    width: 100%;
    padding: 12px;
    border-radius: 20px;
    border: 0;
    cursor: pointer;
}
.maps-div.maps-active > button:hover {
    background-color: var(--secondary-bg-color);
}
.maps-div.maps-active > button:active {
    background-color: var(--input-bg-color);
    color: var(--primary-color);
}
.opening-hour h2,.section-title {
    margin: 0;
}
.contact-more-info-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    padding: 32px;
}
.contact-description-address {
    padding: 8px 8px 0 8px;
}
.open-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.open {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}
.open-icon {
    width: 40px;
}
.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}
form.content-contact-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 60%;
    min-width: 400px;
    text-align: left;
}
.submit-button {
    align-self: center;
}
.submit-button button {
    padding: 8px 16px;
    background-color: var(--input-bg-color);
    color: var(--input-color);
    border: solid 0.8px var(--input-border-color);
}

.submit-button button:hover {
    cursor: pointer;
    background-color: var(--primary-bg-color);
}

.submit-button button:active {
    background-color: var(--secondary-bg-color);
    color: var(--primary-color-2);
}

input, textarea {
    width: 100%;
    padding: 12px 8px;
    background-color: var(--input-bg-color);
    border: solid 0.8px var(--input-border-color);
    color: var(--input-color);
    font-size: 16px;
}
form label {
    font-size: 20px;
    font-weight: 600;
}
.mandatory {
    color: rgb(182, 0, 6);
}

.contact-names-container {
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: space-between;
}
.contact-names-container > div {
    width: 100%;
}

.candidature input,textarea {
    border-radius: 12px;
}
.cv {
    display: flex;
    flex-direction: column;
    
}

.inputcv {
    width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.inputcv + label {
    font-size: 1.25em;
    font-weight: 700;
    color: var(--input-color);
    background-color: var(--input-bg-color);
    display: inline-block;
    padding: 12px 8px;
    text-align: center;
    width: 100%;
    border: solid 0.8px var(--input-border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.inputcv:focus + label,
.inputcv + label:hover {
    cursor: pointer;
    background-color: var(--input-bg-color);
}
.inputcv + label:hover {
    background-color: aliceblue;
}
.inputcv:active + label {
    border: solid 2px var(--input-border-color);
}

@media screen and (max-width: 1200px) {
    .contact-more-info-container {
        flex-direction: column;
    }
    form.content-contact-right {
        width: 75%;
    }
    .contact-names-container {
        flex-direction: column;
    }
}
@media screen and (max-width: 900px) {
    form.content-contact-right {
        width: 80%;
    }
}
@media screen and (max-width: 850px) {
    form.content-contact-right {
        min-width: 0;
        width: 95%;
    }
    .map-open-hour-container {
        flex-direction: column;
    }
    .map-and-choice-container {
        width: 90%;
    }
}
@media screen and (max-width: 620px) {
    .main-title h1 {
        font-size: 30px;
    }
}
@media screen and (max-width: 550px) {
    .sub-header {
        height: 100px;
    }
    .main-title h1 {
        font-size: 24px;
    }
}
@media screen and (max-width: 450px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-info {
        width: 100%;
        padding: 12px 0;
    }
    
    .main-title h1 {
        font-size: 20px;
    }
}