.no-scroll {
  overflow: hidden;
}
#modal {
	height: 100vh;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
#modal h4 {
	text-align: center;
	font-family: 'Poppins','sans-serif';
	font-size: 24px;
	color: white;
}
#modal input {
	width: 100%;
	padding: 10px;
	margin-bottom: 10px;
}
#modal textarea {
	width: 100%;
	padding: 10px;
}
#modal #submit {
	border: none;
	background-color: #b86e38;
	color: white;
	width: 100%;
	margin-top: 10px;
	font-size: 20px;
	cursor: pointer;
}
#modal #submit:hover {
	background-color: #333333;
}
.modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	transition: 200ms ease-in-out;
}
.modal.active {
	transform: translate(-50%, -50%) scale(1);
}
#modal .modal-header {
	text-align: right;
	padding: 0;
	border-bottom: 0;
}
button.close-button {
	scale: 3;
	color: white;
	padding: 10px;
}
.modal-header .close-button {
	cursor: pointer;
	border: none;
	outline: none;
	background: none;
	font-size: 1.25rem;
	font-weight: bold;
}
.modal-body {
	padding: 10px 15px;
}
.modal-link {
	border-radius: 10px;
	transition: .3s;
}
.modal-link:hover {
  background: #b86e38;
}
a.modal-link {
	text-decoration: none;
}
.container {
	width: 700px;
	height: auto;
	max-width: 100%;
	max-height: 100%;
  box-sizing: border-box;
	padding: 0;
	overflow-x: hidden;
}
.container .contact-form-1 {
	padding: 30px;
	background: #00416b;
}
.container .contact-form-2 {
	padding: 30px;
	border: 1px solid #eee;
	background: #ffffff;
}
.container .contact-form-3 {
	font-size: 16px;
}
.container .contact-form-3 > span {
	color: #b86e38;
}
.container .contact-form-2 input, select, textarea {
	font-size: 14px;
	background: #eee;
	border: 1px solid #C4C4C4;
}
.container .contact-form-2 select, option {
	width: 100%;
	font-size: 14px;
	margin-bottom: 15px;
}
@media (max-width: 600px) {
    #modal {
    width: 100%;
	height: 100%;
    align-items: baseline;
	overflow-x: hidden;
	overflow-y: auto;
    }
	button.close-button {
	padding: 10px;
	position: absolute;
	right: 3px;
	opacity: .8;
	}
	.container .contact-form-1, .container .contact-form-2 {
	padding: 20px;
	}
	.container {
	scale: 95%;
	overflow-y: auto;
	overflow-x: hidden;
	}
}
#overlay {
  z-index: 10000;
  position: fixed;
  opacity: 0;
  transition: 200ms ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .5);
  pointer-events: none;
  backdrop-filter: blur(2px);
}
#overlay.active {
  opacity: 1;
  pointer-events: all;
}