body{
	font-family: 'Arial', sans-serif;
	font-weight: normal;
	padding: 0;
	margin: 0;
	background-color: #fff;
	font-size: 12px;
	line-height: 21px;
	color: #808080;
}
a {
	color: #808080
}
p {
	margin: 21px 0 0 0;
}
p:first-child {
	margin:0;
}

ul, li {
	padding: 0;
	margin: 0;
	display: block;
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
	padding: 0;
	margin: 0;
	font-family: 'Futura', sans-serif;
	font-weight: 300;
}
h2 {
	font: 24px 'futurabook', sans-serif;
	text-transform: uppercase;
	letter-spacing: 3px;
}

div, section, form, button, span, a, input {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

a, a:active, a:hover {
	text-decoration: none;
}

button:active, button:hover, button:focus {
    outline: 0;
    outline-offset: 0;
}
img {
	width: auto;
	height: auto;
}

.container {
	max-width: 700px;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 0 75px 0 95px;
}

.flex__between {
	display: flex;
	justify-content: space-between;	
}
@media only screen and (max-width:700px){
	body {
		background: url(../img/bg_mob_2.jpg) center bottom no-repeat;
		background-size: contain;
		background-attachment: fixed;
	}
	.container {
		padding: 0 20px;
	}
	.flex__between {
		display: block;
	}
	h2 {
		text-align: center;
		padding-bottom: 8px;
	}
	p {
		margin: 14px 0 0 0;
	}
}

.header {
	background: url(../img/bg1.png) 0 0 repeat-x #d4dfcf;
	padding-top: 93px;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 5;
	width: 100%;
}
.header__address {
	text-align: center;
	background: #e8e8e8;
	border-top: 2px solid #fff;
	margin-top: 48px;
	color: #000000;
	font: 10px 'TradeGothicLH', sans-serif;
	letter-spacing: 2px;
	padding: 5px 0 6px 0;
}
.header__nav {
	height: 23px;
	top: 16px;
	position: fixed;
	z-index: 5;
	left: 0;
	top: 16px;
	width: 100%;
	background: rgba(121,135,114,0.31);
	transition: all 0.3s linear;
}
.header__nav ul {
	position: relative;
}

.header__nav .flex__between {
	max-width: 700px;
	margin: 0 auto;
	justify-content: center;
}

.header__nav li {
	margin: 0 3px;
	position: relative;
	font: 10px/22px 'TradeGothicLH', sans-serif;
	letter-spacing: 3px;
	position: relative;
	z-index: 1;
}
.header__nav li.active_class {
	position: absolute;
	margin: 0;
	left: 0;
	top: 0;
	height: 100%;
	background: rgba(121,135,114,0.39);
	z-index: 0;
}
.header__nav li+li:before {
	content:"";
	position: absolute;
	left: -4px;
	height: 8px;
	top: 8px;
	border-left: 1px solid #fff;
}
.header__nav li.active_class:before {
	display: none;
}

.header__nav li a {
	display: block;
	padding: 0 27px;
	height: 23px;
	color: #fff;
}
.header__nav li a:hover, .header__nav li.active a  {
	
}
.header__logo {
	text-align: center;
}
.header__logo img {
	max-width: 100%;
}
.fixed.header__nav {
	top: 0;
	background: rgba(121,135,114,0.51);
}
.fixed.header__nav li.active_class{
	background: rgba(121,135,114,0.89);
}
.header_wrap {
	height: 224px;
}
.header_wrap .container {
	display: none;
}
.header_wrap img {
	max-width: 100%;
}
.logo_mob {
	display: none;
}
@media only screen and (max-width:700px){
	.header__nav {
		display: none;
	}
	.header__address_hide {
		display: none;
	}
	.header_wrap {
		height: auto;
		padding-top: 2px;
	}
	.header_wrap .container {
		display: block;
	}
	.header {
		background: url(../img/bg_mob_1.png) 0 0 repeat-x #d4dfcf;
		padding-top: 26px;
	}
	.header__address {
		border-top: 0;
		margin-top: 17px;
		color: #fff;
		background: #98a38c;
		font: 12px/18px 'TradeGothicLH', sans-serif;
		letter-spacing: 3px;
		padding:0;
		height: 18px;
	}
	.header__logo img {
		display: none;
	}
	.header__logo img.logo_mob {
		display: inline-block;
		vertical-align: top;
	}
}



/*welcome*/
.welcome {
	background: url(../img/bg2.jpg) center bottom repeat-x;
	width: 100%;
	overflow: hidden;	
}
.welcome .container {
	position: relative;
	padding-top: 68px;
	padding-bottom: 142px;
}
.welcome .container:before, .welcome .container:after {
	content:"";
	position: absolute;
	left: 100%;
	bottom: 0;
	height: 263px;
	width: 700px;
	background: url(../img/bg2.jpg) 0 bottom no-repeat;
	transform: scale(-1, 1);
	margin: 0 -1px;
}
.welcome .container:after {
	left:auto;
	right: 100%;
}
.welcome__chapter {
	position: relative;
	padding-right: 34px;
	flex-grow: 2;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	padding-top: 5px;
}
.welcome__text {
	flex-grow: 1;
	border-left: 2px solid #cfcfcf;
	padding-left: 31px;
	padding-top: 5px;
	font-size: 11px;
}
.welcome__img_hide {
	display: none;
}
@media only screen and (max-width:700px){
	.welcome {
		background: none;
	}
	.welcome__chapter {
		padding-right: 0
	}
	.welcome__img {
		display: none;
	}
	.welcome__img_hide {
		display: inline-block;
		margin: 4px 15px 0 0;
		float: left;
		width: 92px;
	}
	.welcome__text {
		border-left:0;
		padding-left: 0;
		padding-top: 5px;
	}
	.welcome .container {
		padding-bottom: 18px;
	}
}

/*address*/
.address {
	margin-top: 25px;
}
.address  .flex__between {
	flex-wrap: wrap;
	align-items: flex-end;
}
.address__left {
	width: 358px;
	text-align: right;
	font: 10px/18px 'TradeGothicLH', sans-serif;
	color: #000000;
	letter-spacing: 1px;
	padding-right: 45px;
	border-right: 2px solid #cfcfcf;
}
.address__left  a {
	color: #000000;
}
.address__copiright {
	 width: 100%;
	 text-align: center;
	 font-size: 8px;
}
.address  .address__join {
	padding-left: 44px;
}
.address__join_links {
	font: 10px/36px 'TradeGothicLH', sans-serif;
	width: 123px;
	letter-spacing: 1px;
}
.address__join_links a {
	text-align: center;
	color: #000
}
@media only screen and (max-width:700px){
	.address__left {
		width: auto;
		text-align: center;
		padding-right: 0;
		border: 0;
	}
	.address__join .address__join_links {
		display: flex;
		line-height: 30px;
	}
	.address .address__join  {
		padding-left: 0;
		margin: 0 auto;
		padding-top: 12px;
	}
	.address__join_links {
		width: 135px;
		margin: 0 auto;
	}
}

/*appointments*/
.appointments {
	padding-top: 68px;
	background: url(../img/bg3.png) center bottom repeat-x;
	padding-bottom: 45px;
}
.appointments  .welcome__chapter {
	padding-right: 28px;
}
.appointments .welcome__text {
	padding-left: 22px;
}
.appointments__download {
	text-align: center;
	font-size: 11px;
	padding-top: 20px;
}
.appointments__list {
	padding-top: 20px;
}
.appointments__list li {
	line-height: 14px;
	font-size: 11px;
	color: #000000;
	text-align: center;
	position: relative;
}
.appointments__list li a {
	display: block;
	padding-bottom: 70px;
	color: #000;
}
.appointments__list li:before {
	content:"";
	position: absolute;
	background: url(../img/notice.png) 0 0 no-repeat;
	width: 50px;
	height: 50px;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	margin-left: 10px;
	pointer-events: none;
}
.appointments__little {
	font-size: 9px;
}
@media only screen and (max-width:700px){
	.appointments {
		background: none
	}
	.appointments .welcome__text {
	    padding-left: 0;
	}
	.appointments__list.flex__between {
		display: flex;
		flex-wrap: wrap;
	}
	.appointments__list li {
	    width: 50%;
	    margin-bottom: 35px;
	    display: flex;
	    align-items: flex-end;
	    justify-content: center;
	}
	.appointments__list li a {
		padding-bottom: 55px;
	}
}

/*payments*/
.payments {
	padding-top: 74px;
}
.payments__img {
	text-align: center;
	padding-top: 34px;
}
@media only screen and (max-width:700px){
	.payments {
		padding-top: 0px;
	}
	.payments__img {
	    padding-top: 14px;
	}
}

/*insurance*/
.insurance {
	overflow: hidden;
	
}
.insurance .container {
	position: relative;
	padding-top: 72px;
	padding-bottom: 40px;
}


@media only screen and (max-width:700px){
	.insurance {
		background:none;
	}
	.insurance .container {
		padding-bottom: 30px;
	}

}

.payments2 {
	background: url(../img/bg4.jpg) center bottom no-repeat;
	padding-top: 40px;
	overflow: hidden;
}
.payments2 .container {
	position: relative;
	padding-bottom: 120px;
}
.payments2 .container:before, .payments2 .container:after {
	content:"";
	position: absolute;
	left: 100%;
	bottom: 0;
	height: 249px;
	width: 700px;
	background: url(../img/bg4.jpg) 0 bottom no-repeat;
	transform: scale(-1, 1);
	margin: 0 -3px;
}
.payments2 .container:after {
	left:auto;
	right: 100%;
}
@media only screen and (max-width:700px){
	.payments2 {
		background:none;
	}
	.payments2 .container {
		padding-bottom: 30px;
	}
}

/*footer*/
.footer {
	position:relative;
	padding-bottom: 12px;
}
.footer__img {
	margin-top: -45px;
	width: 324px;
	background: url(../img/map.png) center no-repeat;
	border: 1px solid #000;
}
.footer_flex__between {
	align-items: flex-start;
}
.footer__img iframe {
	border: 0;
	vertical-align: top;
	width: 100%;
	height: 247px;
}
.footer__text {
	width: 185px;
	color: #000000;
	font-size: 10px;
	line-height: 18px;
	padding-top: 25px;
}
.footer .address__join_links {
	padding-top: 22px;
}
.footer__copiright {
	padding-top: 9px;
}
@media only screen and (max-width:700px){
	.footer__text {
		width: auto;
		text-align: center;
		font-size: 12px;
		padding-top: 15px;
	}
	.footer__img {
		margin-top: 15px;
		width: 100%;
	}
	.footer .address__join_links {
		display: flex;
	}
}
