

/*CSS RESET START*/

html, body, div, span, 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%;
vertical-align: baseline;
}


article, aside, details, figcaption, figure, footer, header, hgroup, menu,
nav, section
{
display: block;
}

body {
line-height: 1.2;
}

ol {
padding-left: 1.4em;
list-style: decimal;
}

ul
{
padding-left: 1.4em
list-style: square;
130 Часть 1. Основы CSS
}

table
{
border-collapse: collapse;
border-spacing: 0;
}

/*CSS RESET END*/



body
{
  background-color: #FFFFFF;
  min-width: 320px;
  font-family: 'Open Sans Condensed', arial, sans-serif;
  color: #000;
}

a
{
  text-decoration: none;
  font-size: 14px;
}

h1
{
	font-size: 65px;
	font-weight: 100;
	letter-spacing: 7px;
}

h2
{
	font-size: 50px;
	font-weight: 100;
	letter-spacing: 2px;
}

p
{
	font-size: 14px;
	font-family: 'Montserrat', arial, sans-serif;
}

ul
{
	font-family: 'Montserrat', arial, sans-serif;
}

section
{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 150px 0 0 0;
}

.container
{
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-direction: column;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1170px;
	margin: 0 15px;
}

.no-scroll
{
	overflow:hidden;
}

.shadow
{
	position:fixed;
	left: -50000px;
	height:0;
	width:0;
	z-index: 10;
	background-color: #F7F7F7;
	opacity: 0;
}

.shadow-open
{
	left: 0;
	opacity: .8;
}


















header
{
	display: flex;
	justify-content: center;
	width: 100%;
	height: 40px;
	background-color: #000;
	z-index: 100;
}

header > div:first-child
{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	max-width: 1170px;
}

header h1
{
	display: none;
	font-size: 18px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 3px;
	text-align: left;
	padding: 0 0 0 7px;
	width: 100%;
}

.header-fixed
{
	position: fixed;
	top: 0;
	height: 0;
	padding: 0;
	overflow: hidden;
	border:0;
}

.header-fixed-open
{
	height: 40px;
	padding: 0;
	border-bottom: 1px solid #264653;
	border-bottom: 1px solid rgba(38, 70, 84, 0.15);
	transition: height .5s;
}

.header-fixed-open-mobile h1
{
	display: block;
}


.header-fixed-open-mobile .main-menu
{
	margin: 0 10px 0 0;
}

#header-mobile-icon
{
  display: none;
  width: 40px;
  height: 40px;
  background: url(../images/header-mobile-icon.png) transparent no-repeat center;
  background-size: contain;
  margin: 0 0 0 10px;
}


















.main-menu
{
	width: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.main-menu a
{
	font-family: 'Montserrat', arial, sans-serif;
	position: relative;
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 1px;
	transition: .3s;
}

.main-menu a:after
{
	content:"";
	width: 0;
	height: 1px;
	background-color: #fe5f55;
	display: block;
	margin: 3px 0 0 0;
	transition: .3s;
}

.main-menu a:hover
{
	color: #fe5f55;
}

.main-menu a:hover:after
{
	width: 100%;
}















.menu-burger-icon
{
	display: none;
}

.menu-burger-icon > ul
{
	width: 30px;
	height: 30px;
	padding: 0;
	border-radius: 5px;
	list-style-type: none;
	transition: .5s;
	cursor: pointer;
	border: 1px solid transparent;
}

.menu-burger-icon > ul li
{
	width: 25px;
	height: 3px;
	margin: 4px auto 0 auto;
	background-color: #fff;
	transition: .5s;
}

.menu-burger-icon-open > ul:hover
{
	margin-bottom: -2px;
}

.menu-burger-icon-open > ul li:first-child
{
	margin: 7px auto 0 auto;
}

.menu-burger-icon-open > ul li:not(:nth-child(2))
{
	margin:0 auto;
}

.menu-burger-icon-open > ul li:nth-child(2)
{
	margin: -3px auto -3px auto;
	opacity:0;
}

.menu-burger-icon-open > ul li:nth-child(1)
{
	margin: 13.5px auto 0 auto;
	transform: rotate(45deg);
}

.menu-burger-icon-open > ul li:nth-child(3)
{
	transform: rotate(-45deg);
}
















.burger-items
{
	position: fixed;
	right: -100000px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 0;
	overflow: hidden;
	background-color: #000;
	border-radius: 0 0 0 5px;
	transition: width .2s;
	z-index:20;
}

.burger-items-open
{
	width: 100%;
	border-top: 1px solid #fff;
}

.burger-items a
{
	width: 150px;
	height: 40px;
	margin: 10px 0 0 0;
	border: 2px solid #FFF;
	border-radius: 5px;
	text-decoration: none;
	text-align: center;
	line-height: 40px;
	letter-spacing: 2px;
	color:#fff;
	opacity:0;
}

.burger-items-open a
{
	opacity:1;
}

.burger-items a:last-child
{
	margin: 10px 0 10px 0;
}

.burger-items-active
{
	color: #e76f51!important;
	border: 2px solid #e76f51!important;
}




















/*
.top-site
{
	display: none;
	position: fixed;
	bottom: 3%;
	right: 3%;
	width: 50px;
	height: 50px;
	border: 1px solid #4f6367;
	border-radius: 50px;
	font-size: 30px;
	font-weight: thin;
	line-height: 50px;
	text-align: center;
	padding: 0;
	margin: 0;
	background-color: #fff;
	z-index: 100;
}

.top-site i
{
	color: #4f6367;
}

.top-site-show
{
	display: block;
}

*/











.public-offer
{
	margin-bottom: 150px;
}

.public-offer .wrapper
{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-around;
	max-width: 700px;
}

.public-offer a
{
	font-size: 18px;
	letter-spacing: 3px;
	color: #388DEE;
	margin: 5px 15px;
	transition: .5s;
}


.public-offer a:hover
{
	color: #EF433D;
}
















.mobile-buy-block
{
	display: flex;
  justify-content: center;
	position: fixed;
	bottom: 0;
	width: 100%;
	background-color: #E6F8F6;
	z-index: 100;
}

.mobile-buy-block > div
{
	display: flex;
	justify-content: space-around;
	align-items: center;
  width: 100%;
  max-width: 700px;
	overflow: hidden;
	transition: height .5s;
	height: 0;
}

.mobile-buy-block-open > div
{
	height: 45px;
}

.mobile-buy-block > div > a
{
	display: flex;
	align-items: center;
	flex-direction: column-reverse;
	text-decoration: none;
	color: #000;
	letter-spacing: 2px;
	text-align: center;
	background-color: #E6F8F6;
	height: 30px;
	line-height: 15px;
	margin: 5px 0 0 0;
	padding: 0;
	font-size: 16px;
	font-weight: normal;
	transition: .5s;
}

.mobile-buy-block > div > a > i
{
	font-size: 18px;
	font-weight: bold;
	margin: 0;
}

.mobile-buy-block > div > a:nth-child(3)
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	margin: 0;
}

.mobile-buy-block > div > a:nth-child(3) > i
{
	font-size: 30px;
}







.social-block
{
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 10px auto 0 auto;
	width: 100%;
	max-width: 250px;
}

.social-block a
{
	width: 50px;
	height: 50px;
	background-color: #F58884;
	border-radius: 50px;
	font-size: 26px;
	text-align: center;
	line-height: 50px;
	color: #fff;
	text-decoration: none;
	transition: .5s;
}

.social-block a:hover
{
	background-color: #EF433D;
}









.button-F58884
{
	display: block;
	padding: 0 30px;
	margin: 0 0 30px 0;
	height: 50px;
	background-color: #F58884;
	color: #000;
	font-size: 22px;
	line-height: 50px;
	text-align: center;
	letter-spacing: 2px;
	border-radius: 10px;
	transition: .3s;
}

.button-F58884:hover
{
	background-color: #EF433D;
}











.instagram
{
	display: block;
	width: 50px;
	height: 50px;
	color: #fff;
	background-color: #F58884;
	font-size: 28px;
	line-height: 50px;
	text-align: center;
	letter-spacing: 2px;
	border-radius: 50px;
	transition: .3s;
	margin: 0 auto 10px auto;
}

.instagram:hover
{
	background-color: #EF433D;
}










.button-shadow
{
	box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
