/* General Layout */
h1 {
    text-align: center;
}
.main {
    padding: 0px 8px;
}
.flex-cont {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: fit-content;
    gap: 16px;
}
.contact-cont {
    flex: 2;
    order: 1;
}
/* Contact Form */
.honeypot {
    position: absolute;
    left: -9999px;
}
label {
    display: block;
    margin-top: 32px;
    margin-bottom: 8px;
    font-size: 24px;
    padding-left: 5px;
}
input, textarea {
    width: calc(100% - 24px);
    background-color: #15679310;
    border: none;
    padding: 8px 12px;
    border-radius: 16px;
    font-size: 1.2rem;
}
input:focus, textarea:focus {
    background-color: #15679305;
    outline: dotted 2px black;
    outline-offset: 4px;
}
input::placeholder, textarea::placeholder {
    color: #979797;
}
input:focus::placeholder, textarea:focus::placeholder {
    color: #f5f5f5;
}
input[type="checkbox"] {
    width: max-content;
    margin-top: 16px;
    margin-bottom: 8px;
}
label[for="privacy-checkbox"] {
    font-size: 12px;
    color: #333333;
    width: max-content;
}
textarea {
    height: 250px;
    resize: none;
}
.submitButton {
    font-size: 24px;
    line-height: 1;
    padding: 20px 16px 16px 16px;
    max-width: max-content;
    margin: 16px auto;
    background-color: #156793;
    color: white;
    cursor: pointer;
}
.submitButton:focus {
    outline: dotted 2px black;
    outline-offset: 4px;
    background-color: #156793;
}
.frc-captcha {
    margin-top: 16px;
    width: auto;
    min-width: max-content;
    border-radius: 16px !important;
    padding: 12px 0;
}

/* Socials */
/* Socials layout */
.socials {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    list-style: none;
    padding: 0;
    margin: 32px 0;
    text-align: center;
}
.socials li {
    display: flex;
    align-items: center;
}
.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #000;
    text-decoration: none;
}
.social-logo svg {
    width: auto;
    height: 32px;
    max-height: 32px;
    fill: currentColor;
    color: inherit;
    display: block;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}
.social-name {
    font-size: 1rem;
}


/* Mobile */
@media screen and (max-width:768px) {
    .flex-cont {
        flex-direction: column;
        height: max-content;
        gap: 32px;
    }
    .contact-cont {
        flex: unset;
        order: 2;
    }
}
