@import url('https://fonts.googleapis.com/css?family=Nunito&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:700&display=swap');

/**
 * General
 */
html, body {
	background: #f5f5f5 url('../img/bck.jpg') no-repeat;
	background-position: center;
	background-size: cover;
	font-family: 'Nunito', Sans-Serif;
	height: 100%;
	margin: 0;
}
.nav, .menu, .block-banner, .block-buttons {
	margin: 0;
	padding: 0;
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/**
 * Flexbox
 */
.menu {
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.banner {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 450px;
	justify-content: center;
}
.block-buttons {
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin-top: 45px;
}

/**
 * nav
 */
.nav .menu {
	font-family: 'Nunito', Sans-Serif;
	font-size: 16px;
	text-transform: uppercase;
}
.nav li {
	margin: 0 10px 0 0;
	padding: 0;
}
.nav a {
	color: #fefff4;
	display: block;
	padding: 1em;
	text-align: center;
	text-decoration: none;
}
.fas {
	padding-right: 9px;
}
.nav_mobile {
	display: none;
}
.sr-only {
	position:absolute;
	left:-10000px;
	top:auto;
	width:1px;
	height:1px;
	overflow:hidden;
}


/**
 * banner
 */
.banner h1, h2 {
	font-weight: 400;
	margin: 0;
	padding: 0;
	text-align: center;
}
.banner h1 {
	color: #fff;
	font-family: 'Lato', 'Lucida Grande', Tahoma, Sans-Serif;
	font-size: 70px;
}
.banner h1 span {
    font-family: 'Nunito', Sans-Serif;
	font-size: 0.9em;
	font-weight: normal;
}
.banner h2 {
	color: #fefff4;
	font-family: 'Nunito', Sans-Serif;
	font-size: 26px;
	margin-top: 35px;
	line-height: 1.55;
}
.banner h2 abbr {
	text-decoration: none;
}
.heart::after {
	content: " ♥";
}

/**
 * block-buttons
 */
.block-buttons a {
	color: #000;
	font-family: 'Nunito', Sans-Serif;
	font-size: 20px;
	text-decoration: none;
}
.btn {
	background-color: transparent;
	border: 3px solid orange;
	color: #fff;
	cursor: pointer;
	font-size: 19px;
	margin-right: 20px;
	padding: 15px 30px;
	text-shadow: 0.5px 0.5px 1px #000;
}
.btn2 {
	background-color: transparent;
	border: 3px solid #fff;
	color: #fefff4;
	cursor: pointer;
	font-size: 19px;
	padding: 15px 30px;
	text-shadow: 0.5px 0.5px 1px #000;
}
.btn:hover {
	background: orange;
	border: 3px solid #fff;
}

/**
 * media queries
 */
@media(max-width: 750px){
	.banner h2 {
		font-size: 24px;
		margin-left: 10px;
		margin-right: 10px;
	}
	.banner h1 {
		font-size: 65px;
	}
	.btn, .btn2 {
		font-size: 18px;
	}
}
@media(max-width: 700px){
    .menu .fas {
    	color: transparent;
    	display: none;
    }
    .block-buttons {
    	color: #fefff4;
    	flex-direction: column;
    	line-height: 1.7;
    	margin-top: 35px;
    }
    .banner h1 {
    	font-size: 55px;
    	margin-top: 40px;
    }
    .banner h2 {
    	font-size: 23px;
    	margin: 35px 40px 10px 40px;	
    }
    br {
        display: none;
    }
    .heart::after {
    	content: ".";
    }
    .btn, .btn2 {
    	padding: 11px 26px;
    }
    .btn {
    	font-size: 18px;
    	margin-right: 0;
    }
    .btn2 {
    	font-size: 18px;
    	margin-top: 20px;
    }
    *,
    *::before,
    *::after {
    	box-sizing: border-box;
    }
    .nav .menu {
    	display: none;
    }
    .nav_mobile {
    	display: block;
    }
    .select-css {
    	box-sizing: border-box;
    	color: #444;
    	display: block;
    	font-family: sans-serif;
    	font-weight: none;
    	line-height: 1.3;
    	padding: .6em 1.4em .5em .8em;
    	margin: 0 auto;
    	margin-top: 25px;
    	max-width: 100%;
    }
    .select-css:focus {
    	outline: none;
    }
    .select-css option {
    	font-weight:normal;
    }
}
@media(max-width: 445px){
	html, body {
		background-position: top;
		background-size: auto;
		height: auto;
	}
	.menu {
		flex-direction: column;
	}
	.nav_mobile {
		display: inline;
	}	
	.banner {
		height: 100%;
	}
	.banner h1 {
		font-size: 55px;
		margin-top: 35px;
	}
	.banner h2 {
		font-size: 22px;
		margin-top: 25px;
	}
	.block-buttons {
		flex-direction: column;
		margin-bottom: 25px;
	}
	.btn, .btn2 {
		font-size: 18px;
	}
}
