/* HERO 1 --------------- */

.z-contact-hero1 {
    width: 50%;
    height: calc(100vh - 140px);
    margin: auto;
    padding: 0 0 60px;
}

@media screen and (max-width: 1128px) {
    .z-contact-hero1 {
        width: 90%;
        height: 36vh;
    }
}

@media screen and (max-width: 560px) {
    .z-contact-hero1 {
        height: calc(100vh - 195px);
    }
}



/* HERO 2 - FORM --------------- */

.z-contact-hero2 {
    width: 50%;
    height: fit-content;
    padding: 110px 0;
}

@media screen and (max-width: 1128px) {
    .z-contact-hero2 {
        width: 90%;
    }
}

.z-contact-form-c {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.z-contact-form {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.z-contact-form-item {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
}

.z-contact-form-item label {
    position: absolute;
    top: -9px;
    left: 10px;
    color: #999;
    font-size: 0.95rem;
    font-weight: 400;
    padding: 0 10px;
    background: #fbfcff;
}

.z-contact-form-item input {
    color: #222;
    font-size: 1.03rem;
    font-weight: 500;
    padding: 0 5vw 5px;
    width: 100%;
    height: 70px;
    background-color: #fbfcff;
    border: 1px solid #aaa;
    border-radius: 2px;
    box-sizing: border-box;
}

.z-contact-form-item textarea {
    color: #222;
    font-size: 1.03rem;
    font-weight: 500;
    padding: 15px 5vw;
    width: 100%;
    height: 120px;
    background-color: #fbfcff;
    border: 1px solid #aaa;
    border-radius: 2px;
    resize: none;
    box-sizing: border-box;
}

.z-contact-form-button {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}



/* HERO 3 --------------- */

.z-contact-hero3 {
    width: 30%;
    height: fit-content;
    padding: 50px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

@media screen and (max-width: 1128px) {
    .z-contact-hero3 {
        width: 50%;
    }
}

.z-contact-hero3 div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (max-width: 560px) {
    .z-contact-hero3 {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        gap: 30px;
    }

    .z-contact-hero3 div {
        align-items: center;
    }
}

.z-contact-hero3 div img {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
}

.z-contact-hero3 div p,
.z-contact-hero3 div a {
    margin-top: 10px;
}