legend {
	font-family: 'Open Sans'; 
	font-size: 24px;
	text-transform: uppercase;
	color: #666666;
	font-style: normal;
	margin-bottom: 20px;
	margin-top: 0px;
	font-weight: 400;

}

.ContactRowContainer {
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	margin: 40px;
	
}
.ContactRow {
	display: flex;
}
.ContactRow label {
	flex: 1;
}
.ContactRow input {
	flex: 3;
	font-size: 14px;
	line-height: 45px;
	color: #555555;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.ContactRow textarea {
	flex: 3;
	font-size: 14px;
	line-height: 45px;
	color: #555555;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.ContactButton {
	margin-bottom: 10px;
	margin-top: 20px;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 80%;
  position: relative;
  transition: all 5s ease-in-out;
}

.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #ddd;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 700px){
  .box{
    width: 70%;
  }
  .popup{
    width: 70%;
  }
}