/* Global */

@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

html {
	font-size: 24px;
}

body {
	background-image: url('../img/bg.svg');
	background-position: center;
	background-size: cover;
	font-family: "Red Hat Display", sans-serif;
	line-height: 1.2;
	padding: 0 40px;
}

.logo {
	width: 640px;
}

.no-wrap {
	white-space: nowrap;
}

.left {
	margin-right: 45px;
}

.right {
	margin-left: 45px;
	max-width: 630px;
}


/* Typography */

.email-link {
	background-color: #9d896a;
	border-radius: 19px;
	height: 38px;
	margin: 3px 0 3px -14px;
	padding: 0 14px;
	text-decoration: none;
}

.fw-300 {
	font-weight: 300;
}


/* Media Queries */

/* 992px */
@media (max-width: 991px) { 
	html {font-size: 18px;}
	.left {margin-right: 25px;}
	.right {margin-left: 25px;}
}

/* 768px */
@media (max-width: 767px) { 
	html {font-size: 18px;}
	body {padding: 0 24px}
	.col-md-6 {max-width: 480px;}
	.left {margin-right: 0;}
	.right {margin-left: 0;}
}