:root {
	--base-primary: #0b293b;
	--primary: #ee4275;
	--primary-active: #fa729b;
}

html {
	height: 100%;
}

body {
	font-family: 'Maven Pro', sans-serif;
	height: 100%;
	/* background-image: url(../img/bg1.jpg); 
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	*/
	background-color: var(--base-primary);
}

body>div {
	width: 100%;
	height: 100%;
	padding-top: 100px;
}

.main {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 100px 50px 60px;
	/* background-color: rgba(255,255,255,.2); */
}

a {
	color: var(--primary);
	text-decoration: none;
}

a:hover {
	color: var(--primary-active);
}

h3 {
	margin-top: 100px;
	font-size: 44px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.11;
	letter-spacing: normal;
	text-align: left;
	color: #f9f9f9;
}

h4 {
	font-size: 32px;
	line-height: 36px;
}

h5 {
	font-size: 26px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.15;
	letter-spacing: normal;
	text-align: left;
	color: #2d4757;
}

img {
	width: 257px;
}

@media (max-width: 768px) {
	img {
		width: 500px;
	}
}

@media (max-width: 576px) {
	.main {
		padding: 50px 30px 30px;
	}

	h3 {
		margin-top: 50px;
		font-size: 26px;
	}

	h5 {
		font-size: 20px;
	}

	img {
		width: 100%;
		height: auto;
	}
}