.contact-section {
    display: grid;
}

.contact {
    border: 1px solid #ccc;
    padding: 20px;
    margin: 20px;
}

.contact__img {
    width: 100%;
}

.contact__price {
    font-weight: bold;
    padding-bottom: 10px;
}

textarea{
    resize: vertical;
}

.button.formbtn {
    width: 176px;
    padding: 20px;
    background: #0d2954;
    color: white;
    text-decoration: none;
}

.button.formbtn:hover {
    background: white;
    color: #0d2954;
    border: #0d2954 1px solid;
}

.form__input {
    width: 100%;
    display: block;
    padding: 20px;
    margin-top: 5px;
    border: 1px solid #555;
}

/*Estilos para web*/

@media screen and (min-width:1024px) {
    .contact-section {
        grid-template-columns: repeat(2, 1fr);
    }
}