html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*{
	box-sizing: border-box;
}
a, p, span{
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
}
body{
	background: #cecdcd38;
	font-family: 'Roboto',Arial,sans-serif;
		color: #585858; 
}
.wrapper{
	width: 100%;
	position: relative;
}
.wrapper-block{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.logo{
	width: 300px;
	height: 80px;
}
.logo img{
	width: 100%;
	height: 100%;
}
.main{
	margin-top: 85px;
	margin-bottom: 85px;
}
.top-anchor{
	display: flex;
	justify-content: flex-start;
}
.top-name{
	width: 100%;
	max-width: 760px;
	font-size: 64px;
	font-weight: 600;
	padding-bottom: 45px;	
}
.anchor{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding-top: 40px;
}
.anchor ul li a{
	font-size: 22px;
	color: #000;
}
.row{
	padding-top: 60px;
}
.name-row{
	text-align: center;	
	font-size: 42px;

}
.name-off-top{
	padding-top:0;
	padding-bottom: 15px;
	font-size: 26px;
	text-align: center;
	font-weight: bold;
}
.offers{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.offer-itm{
	width: 360px;
	margin: 0 10px 15px 0;
}
.offer-itm:last-child{
	margin: 0;
}
.off-img{
	width: 360px;
	height: 400px;
	margin: 0 auto;
}
.off-img img{
	width: 100%;
	height: 100%;
}
.name-off{
	font-size: 26px;
	font-weight: bold;
	padding: 15px 0;
}
.about-off{
	font-size: 17px;
}
.btn-off {
	display: flex;
	justify-content: center;
    background: #ff8562;
    width: 150px;
    padding: 9px 0;
    border-radius: 5px;
    margin-top: 35px;
}
.btn-off a{
	color: #fff;
	text-decoration: none;	
}
.footer-full {
    position: absolute;
    left: 0;
    background: #000;
    width: 100%;
}
.footer-fix{
	width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}
.footer-text p{
	text-align: center;
	color: #fff;
}
.footer-text p a{
	color: #fff;
	text-decoration: none;
}
@media(max-width: 1200px){
	.wrapper-block{
		width: 100%;
		max-width: 980px;
		margin: 0 auto;
	}
	.offers{
	justify-content: space-around;
	}
	.offer-itm{
		width: 320px;
	}
	.off-img{
		width: 320px;
		height: 365px;
	}
	.name-off {
    font-size: 20px;
	}
	.about-off {
    font-size: 16px;
	}
}
@media(max-width: 980px){
	.wrapper-block{
		width: 100%;
		max-width: 640px;
	}	
	.main {
    	margin-top: 84px;
	}
	.top-name {
    	width: 100%;
   	 	max-width: 760px;
    	font-size: 55px;
    	font-weight: 600;
    	padding-bottom: 20px;
	}
	.top-anchor {	
    	flex-direction: column;
	}
	.anchor ul{
		margin: 0 auto;
	}
	.offers {
    	justify-content: center;
    	flex-direction: column;
	}
	.offer-itm {
    	width: 100%;
    	padding: 15px;
	}
	.off-img {
    	width: 100%;
    	max-width: 450px;
   		height: auto;
	}
	.text{
		max-width: 450px;
		margin: 0 auto
	}
}
@media(max-width: 520px){
	.top-name {
	text-align: center;
    font-size: 40px;
	}
	.anchor {
    	padding-top: 30px;
	}
	.anchor ul li a {
    font-size: 20px;
	}
}
#back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 30px;
    background: #a9a9a9;
    color: #444;
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;
}
#back-to-top:hover {
    background: #e9ebec;
}
#back-to-top.show {
    opacity: 1;
}