* { box-sizing: border-box; }

body
{
	margin: 120px 0px 0px 0px;
	padding: 0px;
	background: #FFFFFF;
	
	font-family: 'Ubuntu', sans-serif;
	
	margin-bottom: 20px;
}

a
{
	text-decoration: none;
	color: inherit;
}

.header
{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	margin: auto;
	background: #FFF;
	text-align: center;
	
	z-index: 10000;
}

.header a
{
	display: inline-block;
	margin: 10px 20px;
	padding: 10px;
	
	border-bottom: 1px solid #FFF;
	vertical-align: middle;
	
	font-size: 16px;
	
	transition: all 0.3s;
}

.header a:hover
{
	color: #86d05d;
	border-bottom: 3px solid #86d05d;
}

.header a.logoa:hover
{
	border-bottom: 1px solid #FFF !important;
}


.logo
{
	width: 80px;
	height: 80px;
	background: url('/img/logo.jpg');
	background-size: contain;
	background-repeat: no-repeat;
	transform: scale(1);
	
	transition: all 0.3s;
}

.logo:hover
{
	transform: scale(1.2);
}

.small_header .logo
{
	width: 30px;
	height: 30px;
}

.small_header a
{
	margin: 5px 20px;
}

.swiper-wrapper img
{
	width: 100vw;
	height: 56vw;
	
    width: 100vw;
    height: 56vw;
    max-height: calc(100vh - 120px);
	min-height: 500px;
	
    object-fit: cover;
	object-position: top center;
}

.over_slider
{
    position: absolute;
	left: 50%;
	top: 50%;
    width: 450px;
	height: 220px;
	
    margin-left: -225px;
    margin-top: -110px;
	padding: 30px;
	
    text-align: center;
    color: #FFF;
    font-size: 30px;
    background: rgba(0, 0, 0, 0.5);
	
	z-index: 1000;
}

.over_slider a
{
	display: block;
	margin-top: 30px;
	padding: 10px 20px;
	
	background: #86d05d;
	color: #FFF;
	
	transition: background 0.3s;
}

.over_slider a:hover
{
	background: #4cd6ee;
}

.mouse_bottom
{
	position: absolute;
	left: 50%;
	bottom: 0px;
	width: 30px;
	height: 360px;
	
	margin-left: -15px;
	
	background: url('/img/icon_mouse.png');
	
	animation: MoveUpDown 1s linear 2;
	animation-delay: 2s;
	animation-timing-function: ease-in, linear, ease-out;
	
	z-index: 1000;
}

@keyframes MoveUpDown
{
  0%, 100% {
    bottom: 0;
  }
  50% {
    bottom: -50px;
  }
}

.middle_content
{
	max-width: 1500px;
	margin: 50px 0px;
}


.swiper-button-next, .swiper-button-prev
{
	color: #FFF !important;
}

.middle_content1
{
	background-image: url('/img/back_middle.jpg');
	background-size: cover;
	padding: 150px 30px;
	
	text-align: center;
}

.content_title
{
	padding: 20px 20px 50px 20px;
	font-size: 50px;
}

.content_text
{
	max-width: 1000px;
	margin: auto;
	
	font-weight: 100;
	font-size: 20px;
}

.section_title
{
	position: relative;
	width: 500px;
	margin: 50px auto auto auto;
	
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	
}

.section_title::before
{
	content: ' ';
	position: absolute;
	left: 0px;
	top: 50%;
	width: 20%;
	height: 2px;
	
	background: #86d05d;
}

.section_title::after
{
	content: ' ';
	position: absolute;
	right: 0px;
	top: 50%;
	width: 20%;
	height: 2px;
	
	background: #86d05d;
}
	
.section_blocks
{
	max-width: 1000px;
	margin: 50px auto auto auto;
	text-align: center;
}

.section_block
{
	display: inline-block;
	width: 30%;
	margin: 0px 1%;
	padding: 20px;
	
	box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.15);
	vertical-align: top;
}

.sec_text
{
	min-height: 140px;
	font-weight: 100;
}

.sec_title
{
	padding: 20px 0px;
	font-size: 20px;
}

.sec_button
{
	display: inline-block;
	width: 110px;
	margin-top: 20px;
	padding: 6px;

	background: #86d05d;
	color: #FFF;
	
	transition: background 0.3s;
	cursor: pointer;
}

.sec_button:hover
{
	background: #4cd6ee;
}

.sec_image img
{
	max-width: 100%;
	object-fit: cover;
}


.content_text2
{
	max-width: 1000px;
	margin: 50px auto auto auto;
	padding: 0px 30px;
	
	font-weight: 100;
	font-size: 20px;
}

.content_text2 img
{
	max-width: 90%;
	object-fit: contain;
}


.footer
{
	position: relative;
	max-width: 1000px;
	margin: 100px auto auto auto;
}

.footer_menu
{
	text-align: right;
}

.menu_itemf
{
	display: inline-block;
	margin: 0px 10px;
	
	transition: all 0.3s;
}



.footer_logo
{
	position: absolute;
	left: 0px;
	top: 0px;
	
	width: 30px;
	height: 30px;
	background: url('/img/logo.jpg');
	background-size: contain;
	background-repeat: no-repeat;
}



.footer a:hover
{
	color: #86d05d;
}

.footer_copy
{
	margin-top: 50px;
	text-align: center;
	
	font-weight: 100;
}

.content_text2 a
{
	display: block;
	width: 200px;
	margin: 30px auto auto auto;
	padding: 10px 20px;
	
	background: #86d05d;
	color: #FFF;
	text-align: center;
	
	transition: background 0.3s;
}

.content_text2 a:hover
{
	background: #4cd6ee;
}



.content_hospital
{
	min-height: calc(100vh - 350px);
	padding: 50px;
	
	background-image: url('/img/hospital.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	
	text-align: center;	
}

.content_middle
{
	width: 1000px;
	margin: 30px auto 30px auto;
	padding: 50px;
	
	background: rgba(255, 255, 255, 0.95);
}

.subpage_title
{
	padding: 20px 20px 50px 20px;
	font-size: 50px;
}

.subpage_subtitle
{
	max-width: 1000px;
	margin: auto;
	
	font-weight: 100;
	font-size: 20px;
	text-align: left;
}


@media screen and (max-width: 1100px)
{
	.content_hospital { padding: 10px; }
	.content_middle { max-width: 100%; }
	.subpage_title { font-size: 30px; }
}


@media screen and (max-width: 850px)
{
	body { margin-top: 0px; }
	.header { position: relative; }
	.header a { display: block; margin: 0px; padding: 10px; }
	.logo { position: absolute; left: 20px; top: 20px; width: 50px; height: 50px; }
	a.logoa { padding: 0px; }
	
	.section_block { display: block; width: 90%; margin: 20px auto; }
	
	.content_text2 img { width: 90vw; height: 75vw; }
	
	.footer_menu { padding-left: 50px; }
	.footer .menu_itemf { padding-bottom: 20px; }
	
	.mouse_bottom { display: none; }
}


@media screen and (max-width: 600px)
{
	.over_slider { width: 250px; height: auto; margin-left: -125px; }
}


@media screen and (max-width: 500px)
{
	.section_title { width: 100%; padding: 0px 20%; }
}
