/*header styles*/
.header-wraper {
	background-color: lightblue;
}
.navigation-wraper {
	display: flex;
	align-items: center;
	justify-content: space-around;
}
.nav-ul {
	display: flex;
}
.nav-ul li {
	margin-right: 20px;
}
.burger-bar {
	color: #fff;
	font-size: 20px;
	display: none;
}
/*icons*/
.fa-facebook {
	font-size: 30px;
	color: blue;
	transition: all 0.4s linear;
	margin-right: 50px;
}
.youtubeicon {
	font-size: 30px;
	color: red;
}
.fa-facebook:hover {
	color: aqua;
}

/*section#2*/
.container {
	max-width: 1169px;
	width: 100%;
	margin: 0 auto;
}
.block1 {
	width: 370px;
	height: 450px;
	background-color: lightblue;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.main-block {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.block1 p {
	max-width: 328px;
	width: 100%;
	background-color: yellow;
	text-align: center;
}
.text-block {
	max-width: 712px;
	width: 100%;
	background-color: yellow;
	margin: 0 auto; 
	text-align: center;
}

/*pseudo classes*/
.block1:first-child {
	background-color: red;
}
.block1:nth-child(2) {
	background-color: yellow;
}
.block1:nth-child(3) {
	background-color: green;
}
.block1:nth-child(4) {
	background-color: aqua;
}
.block1:nth-child(5) {
	background-color: grey;
}
.block1:last-child {
	background-color: pink;
} 

/*.block1:nth-child(odd) {
	background-color: red;
}
.block1:nth-child(even) {
	background-color: yellow;
}*/
.block1:nth-child(1),
.block1:nth-child(2),
.block1:nth-child(3) {
	margin-bottom: 60px;
}
.block1:nth-child(1) h4 {
	color: #fff;
}
