.main {
    padding: 20vh 0;
    display: flex;
    justify-content: space-evenly;
    height: 60vh;
    position: relative;
    align-items: center;
    padding-top: 25vh;
    padding-bottom: 25vh;
}

.contactText, .contactForm {
    width: 49%;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2, h3 {
    font-family: 'Abril Fatface';
    font-weight: 400;
    margin-top: 1vh;
    margin-bottom: 0;
}

h2 {
    font-size: 4vw;
}

h3 {
    font-size: 2.5vw;
}

.emailAndTel {
    display: flex;
    align-items: center;
}

.emailAndTel p {
    margin: 1vh 0;
}

.emailAndTel img {
    height: 3vh;
    margin-right: 0.5vw;
}

.contactText {
    margin-left: 10%;
    margin-right: 10%;
}

.contactForm {
    background-color: #A3CCCE;
    border-radius: 20px;
    padding: 2vw;
    margin-right: 2vw;
}

.contactForm p {
    margin-top: 1vh;
    margin-bottom: 4vh;
}

.row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
}


input::placeholder, textarea::placeholder {
    color: #8A8784;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Raleway';
}   

input, textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: #D0CBC5 1px solid;
    border-radius: 4px;
    background-color: white;
    font-size: 16px;
    color: #666;
    height: 5vh;
    outline: none;
    font-family: 'Raleway';
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-row input {
    flex: 1;
    margin-bottom: 0;
}

textarea {
    height: 15vh;
    resize: none;
}

.submit-button {
    background-color: #F5C362;
    color: #001529;
    border: none;
    border-radius: 4px;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    width: fit-content;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 1vh;
}

.quoteForm {
    margin-right: 0 !important;
    /* margin-top: 5rem; */
    margin-top: 5rem;
}

.quoteForm ul {
    list-style-image: url('../../../static/images/puces.svg');
    margin: 0;
}

.slot li, .slotMobile li {
    margin: 0;
    margin-bottom: 20px;
    margin-top: 20px;
}

.slot li:first-of-type, .slotMobile li:first-of-type {
    margin-top: 5px;
    margin-bottom: 0;
}

.slot a, .slotMobile a {
    padding: 5px 10px;
    text-decoration: none;
    color: black;
    background-color: #FFAEAA;
}

.slotMobile {
    display: none;
}

@media (max-width: 1024px) {
    .quoteForm {
        margin-top: 0;
    }

    .slot {
        display: none;
    }

    .slotMobile {
        display: block;
    }

    .main {
        flex-direction: column;
        align-items: center;
        padding: 7rem 0 3rem 0;
        height: auto;
        gap: 5vh;
        padding: 20vh 0 !important;
    }

    .contactText {
        width: 80%;
        margin-left: 0;
        margin-right: 0;
    }

    h2 {
        font-size: 2rem;
    }

    .contactForm {
        width: calc(80% - 2rem);
        margin-right: 0;
        padding: 1rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}