@charset "utf-8";

#header a{
	color: var(--dark-blue);
}

/*contact*/
.contact{
	position: relative;
	top: -160px;
}
.contact > .row{
	padding: 40px;
	box-shadow: var(--shadow);
	background-color: white;
	border-radius: 16px;
}
.contact > .row:first-child{
	margin-bottom: 80px;
}
.contact > .row:last-child{
	flex-direction: row-reverse;
}
.contact h2{
	margin-bottom: 16px;
}
.contact p{
	margin-bottom: 8px;
}
.contact .CTA{
	margin-top: 40px;
}
.contact .row div:first-child{
	width: 56%;
	text-align: center;
}
.contact .row > div:last-child{
	width: 40%;
}
.contact .row > div:last-child img{
	width: 64%;
	display: block;
	margin: 0 auto;
}
.contact .row:first-child > div:last-child img{
	width: 36%;	
}
.contact .row p a{
	text-decoration: underline;
}
.contact p strong{
	font-weight: bold;
}
.contact .row .row{
	justify-content: center;
	column-gap: 24px;
}
.contact .row .row img{
	width: 40px;
	aspect-ratio: 1/1;
	transition: all .2s ease-in-out;
}
.contact .row .row a:hover img{
	transform: scale(1.2);
	transform-origin: center;
}

/*responsive*/
@media screen and (max-width: 768px){
	.contact .row > div:first-child{
		width: 100%;
	}
	.contact .row > div:last-child{
		display: none;
	}
}
