.contact_form,.contact_info {
	display: inline-block;
	vertical-align: top;
}
	
@media screen and (max-width : 767px) {
	.contact_form,.contact_info { display: block; }
}

.contact_form {
	width: 60%;
	padding-right: 60px;
	border-right: 1px solid rgba(255,255,255,0.3);
}
	
@media screen and (max-width : 767px) {
	.contact_form { width: 100%; padding-right: 0; padding-bottom: 30px; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.2); }
}

	.contact_input {
		width: 100%;
		height: 40px;
		overflow: hidden;
		border: 0;
		background-color: rgba(255,255,255,0.2);
		font-family: 'Montserrat', sans-serif;
		font-weight: 400;
		font-size: 16px;
		border-radius: 20px;
		margin-bottom: 30px;
		padding: 0 20px;
		box-sizing: border-box;
	}

	.contact_input::placeholder {
	  color: var(--second_color);
	  opacity: 1;
	}

	#field4 {
		height: 200px;
		padding: 20px;
		line-height: 20px;
	}

	#div_chk1, #div_chk2 {
		font-size: 14px;
		line-height: 18px;
		margin-bottom: 30px;
	}

	#div_chk1 {
		margin-top: 30px;
	}

	#contact_invia {
		position:relative;
		top:0px;
		left:0px;
		width: 120px;
		height: 40px;
		line-height: 40px;
		background: var(--third_color);
		border-radius: 20px;
		text-align: center;
		cursor: pointer;
		transition: box-shadow 0.3s linear;
		-webkit-transition: box-shadow 0.3s linear;
		-moz-transition: box-shadow 0.3s linear;
		text-transform: uppercase;
		font-weight: 500;
		font-size: 14px;
		color: var(--second_color);
		text-decoration: none;
	}

	#contact_invia:hover {
		-webkit-box-shadow:0px 0px 7px 0px rgba(0,0,0,0.50);
		-moz-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.50);
		box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.50);
	}

	.inactive {
		opacity: .7;
	}

.contact_info {
	width: 40%;
	padding-left: 60px;
}
	
@media screen and (max-width : 767px) {
	.contact_info { width: 100%; padding-left: 0; padding-top: 30px; }
}

	.info {
		position: relative;
		padding-bottom: 60px;
		margin-bottom: 60px;
		border-bottom: 4px dotted rgba(255,255,255,0.3);
	}
	
	@media screen and (max-width : 767px) {
		.info { padding-bottom: 30px; margin-bottom: 30px; }
	}
	
	.info:last-child {
		padding-bottom: 0;
		margin-bottom: 0;
		border-bottom: none;
	}
	
		.info_icon, .info_data {
			display: inline-block;
			vertical-align: middle;
		}
	
		@media screen and (max-width : 767px) {
			.info_icon, .info_data { display: block; }
		}
		
		.info_data {
			font-size: 18px;
			margin-left: 20px;
			white-space: nowrap;
  			overflow: hidden;
  			text-overflow: ellipsis;
		}
	
		@media screen and (max-width : 767px) {
			.info_data { margin-left: 0; margin-top: 20px; }
		}
		
			.info_data a {
				color: var(--second_color);
				transition: color 0.3s linear;
				-webkit-transition: color 0.3s linear;
				-moz-transition: color 0.3s linear;
			}
		
			.info_data a:hover {
				color: var(--third_color);
			}