

.cardc{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 48px;
	font-size: 20px;
}
.card-map{
	margin-bottom: 40px;
}

.cardc-icon-man{
	background-image: url("img/icon-man.svg");
	background-position: center 15px;
}
.cardc-icon-map{
	background-image: url("img/icon-map.svg");
	background-position: center 35px;
}
.cardc-icon{
	width: 120px;
	height: 120px;
	background-color: #404040;
	background-repeat: no-repeat;
	border-radius: 50%;
	margin-bottom: 20px;
	transition-duration: 0s;
}
iframe{
	width: 100%;
}


form{
	margin-top: 74px;
	background: #ddd;
	padding: 32px 12px 12px 12px;
	box-shadow: 0 -27px 0 -24px #fdb80a, 0 -20px 0 -12px #404040;
}
label, input, textarea{
	display: block;
	width: 100%;
}
input, textarea{
	border: none;
	margin-bottom: 24px;
	padding: 12px;
	font-family: inherit;
	font-size: 16px;
	background: #fff;
	outline-color: white;
}
input:focus, textarea:focus{
	outline: 1px solid #fdb80a;
}
textarea{
	width: calc(100% - 24px);
	margin-top: 24px;
}
label{
	margin-top: 12px;
	margin-bottom: 8px;
}
input{
	margin-bottom: 12px;
}
input[type=submit]{
	background: #404040;
	color: #fdb80a;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	margin-top: 24px;
}
input[type=submit]:hover{
	color: white;
}
input[type=submit]:active{
	color: #905000;
}

.captcha{
	border-radius: 5px;
	background: #ddd;
	background: red;
	border: 1px solid #aaa;
	padding-top: 20px;
	height: 80px;
}
@media (max-width: 330px){
	p{
		font-size: 6.5vw;
	}
}
@media (min-width: 948px){
	.cards-wrapper{
		display: flex;
		justify-content: space-around;
	}
	.cardc{
		flex-basis: 30%;
	}
}