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{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}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:none}table{border-collapse:collapse;border-spacing:0}a{text-decoration:none;}
/*=====================================================================================================================================================================================*/
/*  OpenSans
    ------------------------------------------------------- */
@font-face {
    font-family: 'OpenSans-Light';
    src: url('/fonts/OpenSans-Light.eot');
    src: url('/fonts/OpenSans-Light.eot?#iefix') format('embedded-opentype'),
         url('/fonts/OpenSans-Light.woff2') format('woff2'),
         url('/fonts/OpenSans-Light.woff') format('woff'),
		 url('/fonts/OpenSans-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'OpenSans-Regular';
    src: url('/fonts/OpenSans-Regular.eot');
    src: url('/fonts/OpenSans-Regular.eot?#iefix') format('embedded-opentype'),
         url('/fonts/OpenSans-Regular.woff2') format('woff2'),
         url('/fonts/OpenSans-Regular.woff') format('woff'),
		 url('/fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'OpenSans-Semibold';
    src: url('/fonts/OpenSans-Semibold.eot');
    src: url('/fonts/OpenSans-Semibold.eot?#iefix') format('embedded-opentype'),
         url('/fonts/OpenSans-Semibold.woff2') format('woff2'),
         url('/fonts/OpenSans-Semibold.woff') format('woff'),
		 url('/fonts/OpenSans-Semibold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'OpenSans-Bold';
    src: url('/fonts/OpenSans-Bold.eot');
    src: url('/fonts/OpenSans-Bold.eot?#iefix') format('embedded-opentype'),
         url('/fonts/OpenSans-Bold.woff2') format('woff2'),
         url('/fonts/OpenSans-Bold.woff') format('woff'),
		 url('/fonts/OpenSans-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/*  FONTAWESOME
    ------------------------------------------------------- */
@font-face {
    font-family: 'FontAwesome';
    src: url('/fonts/FontAwesome.eot');
    src: url('/fonts/FontAwesome.eot?#iefix') format('embedded-opentype'),
         url('/fonts/FontAwesome.woff2') format('woff2'),
         url('/fonts/FontAwesome.woff') format('woff'),
		 url('/fonts/FontAwesome.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/*  FONTAWESOME STYLES
    ------------------------------------------------------- */
.fa {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-close:before {
  content: "\f00d";
}
.fa-check:before {
  content: "\f00c";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
/*=====================================================================================================================================================================================*/
html,
body,
#main {
	height: 100%;
}
#page {
	background: #fff;
    color: #333;
    font-family: 'OpenSans-Regular', sans-serif;
    font-size: 16px;
	position: relative;
}
#page::after {
    content: "";
	position: fixed;
	z-index: 9001;
	top: 0;
	left: 0;
    height: 0;
    width: 0;
    opacity: 0;
	background: rgba(0, 0, 0, 0.6);
	-webkit-transition: opacity 0.4s ease-out 0s;
    		transition: opacity 0.4s ease-out 0s;
}
#page.form-open {
	overflow: hidden;
}
#page.form-open::after {
    height: 100%;
    width: 100%;
	opacity: 1;
}
#main {
	width: 100%;
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
			flex-direction: column;
	-webkit-justify-content: space-between;
			justify-content: space-between;
}
/*  HEADER
    ------------------------------------------------------- */
#header {
	position: relative;
	-webkit-flex: 0 0 auto;
			flex: 0 0 auto;
	height: 507px;
	background: url('/img/header_bg.jpg') no-repeat;
	background-position: center;
	color: #ead6b6;
}
#header > .container {
	width: 1110px;
	margin: 0 auto;
	padding-top: 20px; 
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
			justify-content: space-between;
	margin-bottom: 65px;
}
#header h1 {
	font-size: 50px;
	text-align: center;
	color: #f7850f;
	font-family: 'OpenSans-Bold';
	text-transform: uppercase;
}
#header p {
	font-size: 22.4px;
	text-align: center;
	font-family: 'OpenSans-Light';
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 50px;
}
#header .logo {
	display: inline-block;
	height: 98px;
}
#header .address {
	position: relative;
	font-size: 14px;
	line-height: 34px;
	padding: 10px 0 0 29px;
}
#header .address > span {
	display: block;
	cursor: pointer;
}
#header .address > span::before {
	position: absolute;
	top: 17px;
	left: 0;
	content: url('/img/location.png');
}
#header .address > a {
	display: inline-block;
	color: #ead6b6;
	text-decoration: underline;
}
#header .tel {
	position: relative;
	font-size: 18.2px;
	line-height: 34px;
	padding: 10px 0 0 28px;
	font-family: 'OpenSans-Semibold';
	letter-spacing: 1.4px;
}
#header .tel::before {
	position: absolute;
	top: 17px;
	left: 0;
	content: url('/img/tel.png');
}
#header .tel > span {
    font-size: 18px;
	font-family: 'OpenSans-Regular';
}
#header .mouse {
	position: absolute;
	bottom: 47px;
	left: 50%;
	margin-left: -13px;
	width: 26px;
	height: 68px;
	background: url('/img/mouse.png') no-repeat;
}
/*  Footer
    ------------------------------------------------------- */
#footer {
	-webkit-flex: 0 0 auto;
			flex: 0 0 auto;
	height: 54px;
	line-height: 54px;
	background: #190e07;
	color: #ead6b6;
	font-size: 15px;
	text-align: center;
	font-family: 'OpenSans-Light';
}
/*=====================================================================================================================================================================================*/
#content {
	-webkit-flex-grow: 1;
			flex-grow: 1;
}
#content .container {
	margin: 0 auto;
	width: 1110px;
}
/*=====================================================================================================================================================================================*/
#one {
	padding: 63px 0 0;
}
#one > h2 {
	margin-bottom: 65px;
	line-height: 60px;
	font-size: 40.6px;
	text-align: center;
	color: #423025;
	font-family: 'OpenSans-Bold';
	letter-spacing: -1.4px;
	text-transform: uppercase;
}
#one > h2::first-line {
	font-size: 47.6px;
}
#one > h2 > span {
	color: #c2221a;
}

.wrap-items {
	width: 1110px;
	margin: 0 auto 20px;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
			flex-wrap: wrap;
	-webkit-justify-content: space-between;
			justify-content: space-between;
}
.wrap-items .item {
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 37px;
	border-bottom: 1px dotted #d9d5d2;
}
.wrap-items .item::before {
	content: '';
	position: absolute;
	top: -15px;
	right: 0;
	bottom: 32px;
	left: 0;
	opacity: 0;
	background: rgba(37, 24, 13, 0.8);
	box-shadow: 0 13px 21px rgba(0, 0, 0, 0.35);
	z-index: 2;
}
.wrap-items .item:hover::before {
	opacity: 1;
	cursor: pointer;
}
.wrap-items .item.last {
	margin: 0;
	border: none;
}
.wrap-items .title {
	margin-bottom: 12px;
	font-size: 24px;
	line-height: 30px;
	color: #333;
	font-family: 'OpenSans-Semibold';
}
.wrap-items img {
	display: inline-block;
	width: 350px;
	height: 234px;
}
.wrap-items .details {
	padding-top: 10px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
			justify-content: space-between;
	-webkit-align-items: center;
			align-items: center;
}
.wrap-items .old-price {
	position: relative;
	font-size: 25px;
	color: #423025;
	font-family: 'OpenSans-Regular';
}
.wrap-items .old-price::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -36.5px;
	width: 73px;
	height: 2px;
	background: #c2221a;
	transform: rotate(-30deg);
}
.wrap-items .price {
	display: inline-block;
	width: 123px;
	height: 52px;
	line-height: 52px;
	text-align: center;
	border-radius: 61px 62px 62px 61px/26px;
	background: #f07d06;
	color: #fff;
	font-size: 30px;
	font-family: 'OpenSans-Semibold';
}
.wrap-items .title-h {
	display: none;
	position: absolute;
	top: 25px;
	left: 0;
	right: 0;
	text-align: center;
	color: #faedd8;
	font-size: 24px;
	font-family: 'OpenSans-Semibold';
	z-index: 2;
}
.wrap-items .title-h::before {
	content: '';
	position: absolute;
	left: 50%;
	margin-left: -42px;
	bottom: -15px;
	width: 85px;
	height: 1px;
	background: #faedd8;
}
.wrap-items .text-h {
	display: none;
	position: absolute;
	top: 85px;
	left: 0;
	right: 0;
	padding: 0 10px;
	text-align: center;
	color: #faedd8;
	font-size: 16px;
	line-height: 26px;
	font-family: 'OpenSans-Light';
	z-index: 2;
}
.wrap-items .text-h2 {
	font-size: 14px;
	line-height: 22px;
}
.wrap-items .it-button {
	display: none;
	position: absolute;
	bottom: 72px;
	left: 50%;
	height: 55px;
	line-height: 55px;
	width: 310px;
	margin-left: -155px;
	text-align: center;
	border-radius: 10px;
	background: #c2221a;
	color: #fff;
	font-size: 24px;
	text-transform: uppercase;
	letter-spacing: 2.8px;
	box-shadow: 0 2px rgba(144, 13, 6, 0.91);
	z-index: 2;
}
.wrap-items .item:hover .it-button,
.wrap-items .item:hover .title-h,
.wrap-items .item:hover .text-h {
	display: inline-block;
	cursor: pointer;
}
/*=====================================================================================================================================================================================*/
#two {
	position: relative;
	height: 996px;
	background: url('/img/discounts.jpg') no-repeat;
	background-position: center;
}
#two > .discounts {
	position: absolute;
	top: 536px;
	right: 0;
	left: 0;
	text-align: center;
	text-transform: uppercase;
}
#two > .discounts .first {
	color: #423025;
	font-size: 22px;
	margin-bottom: 10px;
}
#two > .discounts .last {
	color: #c2221a;
	font-size: 56px;
	line-height: 56px;
	font-family: 'OpenSans-Semibold';
	letter-spacing: 2.8px;
}
/*=====================================================================================================================================================================================*/
#three {
	margin-top: -20px;
	position: relative;
	z-index: 2;
}
#three > p {
	line-height: 60px;
	font-size: 40.6px;
	text-align: center;
	color: #423025;
	font-family: 'OpenSans-Bold';
	letter-spacing: -1.4px;
	text-transform: uppercase;
}
#three > .last {
	margin-bottom: 80px;
	font-size: 47.6px;
}
#three > p > span {
	color: #c2221a;
}
#three .wrap-items .it-button {
	bottom: 290px;
}
#three .wrap-items img {
	width: 350px;
	height: 500px;
	border: 1px solid #dec6a0;
}
/*=====================================================================================================================================================================================*/
#four {
	position: relative;
	height: 1121px;
	background: url('/img/four_bg.jpg') no-repeat;
	background-position: center;
}
.header {
	padding-top: 30px;
	margin-bottom: 130px;
	line-height: 60px;
	font-size: 47.6px;
	text-align: center;
	color: #faedd8;
	font-family: 'OpenSans-Light';
	text-transform: uppercase;
}
.header::first-line {
	font-size: 40.6px;
}
.arrow-bottom {
	position: absolute;
	top: 195px;
	left: 50%;
	margin-left: -49px;
	width: 98px;
	height: 33px;
	background: url('/img/arrow_bottom.png');
}
#four > p {
	line-height: 60px;
	font-size: 40.6px;
	text-align: center;
	color: #423025;
	font-family: 'OpenSans-Bold';
	letter-spacing: -1.4px;
	text-transform: uppercase;
}
#four > .last {
	font-size: 47.6px;
}
#four > p > span {
	color: #c2221a;
}
#four > .text {
	position: absolute;
	bottom: 160px;
	left: 50%;
	color: #423025;
	font-size: 24px;
	text-transform: uppercase;
	font-family: 'OpenSans-Semibold';
}
#four > .text > span {
	display: inline-block;
	box-sizing: border-box;
	height: 43px;
	padding: 0 10px 2px;
	background: #c2221a;
	color: #fff;
	font-size: 34px;
	text-transform: lowercase;
	font-family: 'OpenSans-Bold';
}
.button {
	position: absolute;
	bottom: 50px;
	left: 50%;
	height: 65px;
	line-height: 65px;
	text-align: center;
	border-radius: 10px;
	background: #f07d06;
	color: #fff;
	font-size: 26px;
	text-transform: uppercase;
	letter-spacing: 2.8px;
	box-shadow: 0 2px rgba(183, 94, 3, 0.91);
	font-family: 'OpenSans-Semibold';
}
#four > .button {
	margin-left: -335px;
	width: 670px;
}
/*=====================================================================================================================================================================================*/
#five {
	position: relative;
	height: 955px;
	background: url('/img/five_bg.jpg') no-repeat center;
}
#five > p {
	padding-top: 50px;
	line-height: 60px;
	font-size: 47.6px;
	text-align: center;
	color: #faedd8;
	font-family: 'OpenSans-Light';
	text-transform: uppercase;
}
#five > .text {
	position: absolute;
	bottom: 240px;
	left: 50%;
	margin-left: 175px;
	line-height: 60px;
	font-size: 40.6px;
	text-align: center;
	color: #fff;
	font-family: 'OpenSans-Semibold';
	text-transform: uppercase;
	letter-spacing: 1.4px;
}
#five > .button {
	margin-left: -215px;
	width: 430px;
}
/*=====================================================================================================================================================================================*/
#six {
	position: relative;
	box-sizing: border-box;
	padding-bottom: 90px;
	height: 962px;
	background: #fbfbfc url('/img/six_bg.jpg') no-repeat;
	background-position: bottom center;
}
#six > p {
	padding-top: 90px;
	line-height: 60px;
	font-size: 47.6px;
	text-align: center;
	color: #423025;
	font-family: 'OpenSans-Light';
	text-transform: uppercase;
}
#six > .wrap {
	width: 1110px;
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
			flex-wrap: wrap;
	-webkit-justify-content: center;
			justify-content: center;
	text-align: center;
}
#six .item {
	margin: 50px 30px 0;
	width: 230px;
	position: relative;
	padding-top: 235px;
}
#six .item:nth-child(1) {
	margin: 50px 30px 0 0;
}
#six .item:nth-child(4) {
	margin: 50px 0 0 30px;
}
#six .item::before {
	position: absolute;
	top: 0;
	left: 0;
}
#six .item:hover::before {
	cursor: pointer;
}
#six .item1::before {
	content: url('/img/why_we/1.png');
}
#six .item1:hover::before {
	content: url('/img/why_we/1_hover.png');
}
#six .item2::before {
	content: url('/img/why_we/2.png');
}
#six .item2:hover::before {
	content: url('/img/why_we/2_hover.png');
}
#six .item3::before {
	content: url('/img/why_we/3.png');
}
#six .item3:hover::before {
	content: url('/img/why_we/3_hover.png');
}
#six .item4::before {
	content: url('/img/why_we/4.png');
}
#six .item4:hover::before {
	content: url('/img/why_we/4_hover.png');
}
#six .item5::before {
	content: url('/img/why_we/5.png');
}
#six .item5:hover::before {
	content: url('/img/why_we/5_hover.png');
}
#six .item6::before {
	content: url('/img/why_we/6.png');
}
#six .item6:hover::before {
	content: url('/img/why_we/6_hover.png');
}
#six .item7::before {
	content: url('/img/why_we/7.png');
}
#six .item7:hover::before {
	content: url('/img/why_we/7_hover.png');
}
#six > .wrap .title {
	font-size: 18px;
	line-height: 28px;
	color: #423025;
}
#six > .wrap .title span {
	color: #5f270f;
	font-family: 'OpenSans-Bold';
}
/*=====================================================================================================================================================================================*/
#map-block {
	position: relative;
	height: 690px;
	padding-top: 199px;
}
#map-block > .header {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 255px;
	background: url('/img/map_bg.png') no-repeat;
	background-position: top center;
	z-index: 2;
}
#map-block > .arrow-bottom {
	z-index: 3;
}
#map {
	width: 100%;
	height: 690px;
}
/*=====================================================================================================================================================================================*/
.fs-form {
	box-sizing: border-box;
	width: 730px;
	padding: 30px 55px 60px;
	background: url('/img/form_bg.jpg') bottom no-repeat,
				url('/img/form_bg_r.jpg') repeat;
    box-shadow: 0 13px 21px rgba(0, 0, 0, 0.35);
	border-radius: 15px;
}
.fs-success {
	background: url('/img/form_bg_r.jpg') repeat;
}
.fs-form > .title {
	margin-bottom: 26px;
	line-height: 36px;
	font-size: 26px;
	text-align: center;
	color: #423025;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(95, 39, 15, 0.6);
	font-family: 'OpenSans-Semibold';
}
.fs-form > .title::first-line {
	font-size: 30px;
	font-family: 'OpenSans-Bold';
}
.fs-form > p {
	margin-bottom: 20px;
	color: #423025;
	font-size: 24px;
	font-family: 'OpenSans-Bold';
}
.fs-success > p {
	margin: 0;
	line-height: 44px;
}
.fs-form > p span {
	color: #c2221a;
}
.fs-form .input__field {
	margin-bottom: 12px;
	box-sizing: border-box;
	width: 100%;
	height: 46px;
	border-radius: 10px;
	background: rgba(130, 91, 69, 0.7);
	color: #fff;
	font-size: 16px;
    line-height: 20px;
    padding: 13px 30px;
	font-family: 'OpenSans-Regular';
    outline: none;
	border: none;
}
.fs-form > .close {
    position: absolute;
	top: 20px;
    right: 20px;
    width: 19px;
	height: 18px;
	background: url('/img/close.png');
}
.fs-button {
	margin-top: 20px;
	display: inline-block;
	width: 287px;
	height: 57px;
	line-height: 57px;
	border-radius: 10px;
	color: #fff;
	font-size: 24px;
	text-transform: uppercase;
	background: #c2221a;
	box-shadow: 0 2px rgba(144, 13, 6, 0.91);
}
:invalid {
  box-shadow: none;
}
input::-moz-placeholder { color: #fff; opacity: 1;}
input::-webkit-input-placeholder { color: #fff; }
input:-ms-input-placeholder { color: #fff; }
input::-ms-input-placeholder { color: #fff; }
input::placeholder { color: #fff; }
/*=====================================================================================================================================================================================*/
/*  MODAL FORM
    ------------------------------------------------------- */
.fs-box {
    height: 100%;
    left: 0;
	overflow: hidden;
	overflow-y: auto;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
	display: none;
	z-index: 10000;
	-webkit-animation-duration: 1s;
    		animation-duration: 1s;
  	-webkit-animation-fill-mode: both;
    		animation-fill-mode: both;
}
.fs-box::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 0;
	height: 100%;
}
.fs-box > section {
    display: inline-block;
    position: relative;
    vertical-align: middle;
}
/*=====================================================================================================================================================================================*/
.popup-info {
	position: fixed;
	z-index: 10003;
	top: 20px;
	left: 20px;
	box-sizing: border-box;
	max-width: 400px;
	padding: 20px 40px 20px 80px;
	background: #306bd3;
	color: #fff;
	border-radius: 3px;
	font-size: 16px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	visibility: visible;
	-webkit-animation-name: bounceInDown;
			animation-name: bounceInDown;
	-webkit-animation-duration: 1s;
			animation-duration: 1s;	
	-webkit-animation-timing-function: ease-in-out;	
			animation-timing-function: ease-in-out;	
}
.popup-info p {
	line-height: 30px;
}
.popup-info > i {
	position: absolute;
	left: 40px;
	line-height: 30px;
	font-size: 25px;   
}
.popup-error {
	background: #e74c3c;
}
@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}
/*  ANIMATIONS
    ------------------------------------------------------- */
@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
            transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
            transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
          animation-name: bounceInUp;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
          animation-name: bounceOutDown;
}
@media screen and (max-width: 1500px) {
	#four {
		height: 977px;
		background: url('/img/four_bg_0.jpg') no-repeat;
		background-position: center;
	}
	#four > .text {
		bottom: 136px;
	}
	#four > .button {
		bottom: 56px;
	}
	#five {
		background: url('/img/five_bg_0.jpg') no-repeat;
		background-position: center;	
	}
	#five > .text {
		font-size: 38px;
    	line-height: 58px;
		margin-left: 100px;
		bottom: 350px;
		bottom: 420px;
	}
	#five > .button {
		margin-left: -150px;
		width: 300px;
		bottom: 200px;
	}
}
@media screen and (max-width: 1280px) {

	
}
@media screen and (max-width: 1110px) {
	#header > .container {
		width: auto;
		padding: 20px 40px 0;
	}
	#header p {
		padding: 0 40px;
		line-height: 40px;
	}
	#one > h2 {
		padding: 0 40px;
	}
	.wrap-items {
		width: auto;
		padding: 0 40px;
		-webkit-justify-content: space-around;
				justify-content: space-around;
	}
	.wrap-items > .item.last {
		border-bottom: 1px dotted #d9d5d2;
		margin-bottom: 30px;
	}
	.wrap-items > .item.last:last-child {
		border: none;
    	margin: 0;
	}
	#three > p {
		padding: 0 40px;
	}
	#four {
		height: 1121px;
		background: url('/img/four_bg_2.jpg') no-repeat;
		background-position: center;
		padding: 0 40px;
	}
	#four > .button {
		bottom: 50px;
	}
	#four > .text {
		bottom: 160px;
		font-size: 26px;
		text-align: center;
	}
	#four > .text > span {
		height: 50px;
		margin-top: 20px;
		font-size: 40px;
	}
	#five {
		background: url('/img/five_bg_2.jpg') no-repeat;
		background-position: center;	
	}
	#five > .text {

		margin-left: 140px;
		bottom: 220px;
	}
	#five > .button {
		bottom: 60px;
	}
	#six {
		height: auto;
	}
	#six > .wrap {
		width: auto;
	}
	#six > .wrap .item {
		margin: 50px 30px 0;
	}
}
@media screen and (max-width: 800px) {
	#header .logo {
		height: 80px;
	}
	#header .address {
		font-size: 13px;
		line-height: 26px;
	}
	#header .tel {
		font-size: 20px;
		line-height: 26px;
	}
	#header h1 {
		font-size: 60px;
	}
	#header p {
		margin-bottom: 40px;
		font-size: 26px;
	}
	#one > h2 {
		margin-bottom: 50px;
		font-size: 40px;
		line-height: 60px;
	}
	#one > h2::first-line {
		font-size: 30px;
	}
	#two > .discounts .first {
		font-size: 26px;
	}
	#two > .discounts .last {
		font-size: 50px;
		line-height: 60px;
	}
	.header {
		padding-top: 40px;
		font-size: 50px;
		line-height: 60px;
	}
	.header::first-line {
		font-size: 40px;
	}
	#three > p {
		font-size: 40px;
		line-height: 60px;
	}
	#three > .last {
		font-size: 30px;
		margin-bottom: 60px;
	}
	#four > p {
		font-size: 40px;
    	line-height: 60px;
	}
	#five > p {
		font-size: 50px;
    	line-height: 60px;
	}
	#four > .last {
		font-size: 50px;
		margin-bottom: 60px;
	}
	.button {
		font-size: 20px;
		height: 55px;
		line-height: 55px;
	}
	#four > .button {
		margin-left: -250px;
		width: 500px;
	}
	
	#six > p {
		font-size: 50px;
		line-height: 1;
		padding-top: 70px;
	}
}
@media screen and (max-width: 768px) {
	.fs-form {
		width: 600px;
	}
}
@media screen and (max-width: 480px) {
	#header > .container {
		padding: 20px 20px 0;
	}	
	#header .tel {
		font-size: 16px;
		line-height: 22px;
	}
	#header p {
		padding: 0 20px;
		font-size: 20px;
		line-height: 30px;
		margin-bottom: 30px;
	}
	#header h1 {
		font-size: 48px;
	}
	#header .address {
		display: none;
	}
	#one > h2 {
		padding: 0 20px;
	}
	.wrap-items {
		padding: 0 20px;
	}
	#three > p {
		padding: 0 20px;
	}
	.wrap-items .it-button {
		font-size: 18px;
		height: 45px;
		line-height: 45px;
		margin-left: -130px;
		width: 260px;
	}
	#one > h2::first-line {
		font-size: 24px;
	}
	#one > h2::first-line {
		font-size: 34px;
	}
	#three > p {
		font-size: 30px;
		line-height: 45px;
	}
	#three > .last {
		font-size: 24px;
		margin-bottom: 50px;
	}
	.header::first-line {
		font-size: 26px;
	}
	.header {
		font-size: 34px;
		line-height: 50px;
	}
	#four {
		padding: 0 20px;
		background: url('/img/four_bg_3.jpg') no-repeat;
		background-position: center;	
	}
	#four > .header {
		margin-bottom: 140px;
	}
	#four > p {
		font-size: 24px;
		line-height: 45px;
	}
	#four > .last {
		font-size: 30px;
		margin-bottom: 50px;
	}
	#four > .text {
		left: 20px;
		right: 20px;
		bottom: 140px;
		margin: 0;
		font-size: 20px;
	}
	#four > .text > span {
		margin: 0;
		font-size: 24px;
		height: 36px;
		line-height: 36px;
	}
	.button {
		font-size: 14px;
	}
	#four > .button {
		margin-left: -200px;
		width: 400px;
	}
	#five {
		background: url('/img/five_bg_3.jpg') no-repeat;
		background-position: center;	
	}
	#five > p {
		font-size: 30px;
		line-height: 45px;
	}
	#five > .text {
		top: 290px;
		margin-left: -40px;
		font-size: 20px;
		line-height: 30px;
	}
	#five > .button {
		top: 500px;
		margin-left: -140px;
		width: 280px;
	}
	#six > p {
		font-size: 30px;
		padding-top: 50px;
	}
	.fs-form {
		width: auto;
	}
	.fs-form > .title::first-line {
		font-size: 24px;
	}
	.fs-form > .title {
		font-size: 20px;
		line-height: 1.5;
		margin-bottom: 20px;
		padding-bottom: 15px;
	}
	.fs-form > p {
		font-size: 18px;
		margin-bottom: 15px;
	}
	.fs-form .input__field {
		font-size: 15px;
	}
	.fs-button {
		font-size: 18px;
		height: 45px;
		line-height: 45px;
		margin-top: 15px;
		width: 240px;
	}
}
@media screen and (max-width: 414px) {
	#header .logo {
		height: 60px;
	}
	#header h1 {
		font-size: 38px;
	}
	.wrap-items img {
		width: 300px;
		height: auto;
	}
	#three .wrap-items img {
		width: 300px;
		height: auto;
	}
	#three .wrap-items .it-button {
		bottom: 250px;
	}
	.wrap-items .text-h {
		font-size: 16px;
		line-height: 24px;
	}
	.wrap-items .text-h2 {
		font-size: 12px;
		line-height: 19px;
	}
	#four > .text > span {
		margin-top: 10px;
	}
	.button {
		font-size: 12px;
	}
	#four > .button {
		margin-left: -150px;
		width: 300px;
	}
	#five > .text {
		font-size: 16px;
		line-height: 24px;
		margin-left: -25px;
	}
}