.contact {
    background: var(--background-light);
    text-align: center;
}

.contact .container {
/*     padding-inline: 160px; */
	margin-top: 20px;
}

.contact h3 {
    display: inline-block;
}

.contact-form-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.contact_form {
    background: #ffffff;
    width: 75%;
    height: 865px;
    margin-top: 2rem;
	border-radius: 10px;
}

.contact_form iframe {
    width: 100%;
    display: block;
    border: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .contact .container {
        padding-inline: 32px;
    }

    .contact_form {
        width: 80%;
    }
}

@media screen and (max-width: 767px) {
	.contact {
		padding-top: 50px;
	}
	.contact .container {
        padding-inline: 16px;
    }

    .contact_form {
        width: 100%;
    }
}