#bottom-form {
    background: var(--yellow-gray);
    padding: 66px 0 50px;
}

#bottom-form .container > p {
    margin-top: 50px;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--ugly-gold);
    text-align: center;
}

#bottom-form h2 {
    margin: 0;
    margin-bottom: 100px;
}

#bottom-form .input-wrapper {
    display: grid;
    grid-gap: 1.5rem;
    grid-template-columns: 100%;
}

#bottom-form .input-wrapper input {
    font-family: "Panton", sans-serif;
}

#bottom-form .btn-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 3rem;
}

#bottom-form .btn-wrapper button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-family: "Panton", sans-serif;
    text-transform: unset;
}

#bottom-form .btn-wrapper :is(input, button) {
    color: black;
}

#bottom-form .icon {
    margin-right: 1rem;
    /*font-size: 30px;*/
}


@media (max-width: 610px) {
    #bottom-form .btn-wrapper {
        grid-gap: 1.5rem;
    }
}


@media (max-width: 480px) {
    #bottom-form {
        padding: 50px 0 50px;
    }

    #bottom-form h2 {
        margin-bottom: 50px;
    }
}
#form-response {
    font-size: 30px;
    background: var(--yellow-gray);
    margin: 50px 0px 0px 0px;
    padding: 50px 0px;
}
#form-response p {
    text-align: center;
    width: 500px;
    margin: auto;
    padding: 20px;
}
@media (max-width: 480px) {
    #form-response {
    font-size: 24px;
    margin: 0px;
}
#form-response p {
    width: 320px;
}
}
.hide {
    display: none;
}