h1 {
    margin: 0;
}

img {
    width: 100%;
}

.request-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 80%;
    margin-inline: auto;
    justify-content: space-evenly;
    margin-top: 180px;
}

.request-top-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-section {
    margin-inline: auto;
    max-width: 80%;
    margin-top: 200px;
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
}

form {
    display: flex;
    flex-direction: column;
}

.email-phone {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

form input[type=text], input[type=email], input[type=tel], textarea {
    background-color: #e0e0e0;
    border: none;
    border-radius: 5px;
    min-height: 40px;
    font-size: x-large;
}

textarea {
    min-height: 100px;
}

form button {
    max-width: fit-content;
}

.bottom-svg {
    /* position: absolute;
    bottom: 0;
    z-index: -1; */
    width: 100%;
    height: 200px;
}


@media only screen and (max-width: 768px) {

    body {
        text-align: center;
    }
    .contact-top {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 0.9fr 1fr;
        gap: 20px;
        justify-items: center;
    }

    .email-phone {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .form-section {
        margin-top: 50px;
    }

    form input[type=text], input[type=email], input[type=tel], textarea {
        width: 100%;
    }


}