﻿{
	margin: 0;
	padding: 0;
}
.wrapper {
	width: 100%;
}

	.img-banner {
		display: block;
		width:360px;
		        margin-left: auto;
        margin-right: auto;

}
	.img-banner2 {
		display: none;
		margin
}

	.img-banner3 {
		display: none;

}


.img-info {
	width:  100%;
	}

.img-info h2 {
	padding: 30px 30px 20px;
	font-family: arial;
	font-size: 30px;
	color: #fff;
	line-height: 44px;

}

.img-info p {
	padding: 0px 30px 20px;
	font-family: arial;
	font-size: 16px;
	color: #fff;
	line-height: 24px;

}
.img-banner_mobile_footer {
	
	display: none;
	width:100%;
}

.img-banner_footer 
{
	width: 100%;
	}

@media only screen and (min-width: 768px) {
		.img-banner2 {
			display: block;
			width:  768px;
		margin-left: auto;
        margin-right: auto;
			padding-bottom: 30px;
			}

.img-banner {
		display: none;
	width:100%;

}
.img-banner3 {
		display: none;
	width:100%;
}


	.wrapper {
		width: 600px;
		        margin-left: auto;
        margin-right: auto;

	}
	
	.img-info h2 {
	padding: 20px 0px 0px;

}

.img-info p {
	padding: 20px 0px 0px;

}

}	
	
@media only screen and (min-width: 1024px) {
	.wrapper {
		width: 1366px;
		margin: 0 auto;
	}

	
	.img-info h2 {
	padding: 20px 0px 0px 30px;

}

.img-info p {
	padding: 20px 0px 0px 30px;

}
.img-info {
	width:  65%;
	float: center;
	}


		.img-banner3 {
			display: block;
			padding-bottom: 30px;
			}



.img-banner {
	
	display: none;
	width:100%;
}	

.img-banner2 {
	
	display: none;
	width:100%;

}

}
.grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
	grid-template-areas:
	"title title"
	"header header"
	"sidebar sidebar"
	"content content"
	"footer footer";
	grid-gap 10px;

	}

.title {
	grid-area: title;
	}
.header {
	grid-area: header;
	}
.sidebar {
	grid-area: sidebar;
	}

.content {
	grid-area: content;
	}

.footer {
	grid-area: footer;
	}

.grid div:nth-child(even) {
	background-color: red;
	}

.grid div:nth-child(odd) {
	background-color: green;
	}

@media screen and (min-width: 736px)
{
.grid {
	display: grid;
	grid-template-columns: 1fr 1000px 1000px 1fr;
	grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
	grid-template-areas:
	". title title ."
	". header header ."
	". sidebar sidbar ."
	". content content ."
	". footer footer .";
	grid-gap 10px;
	}
}

