html{
	height: 100%;
}
body{
	font-family: "Open Sans", sans-serif;
	color: #111;
	background-color: #FFF;
	min-height: 100%;
	position: relative;
}
a{
	color: #f6b024;
}
a:hover{
	color: #1ba8ec;
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6{
	font-family: "Raleway", sans-serif;
}
textarea{
	resize: none;
}
.bg-white-50{
	background-color: rgba(255,255,255,.5);
}
.btn:focus{
	box-shadow: none;
	text-decoration: none;
}
.back-to-top{
	position: fixed;
	display: none;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
}
.back-to-top i{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	background: #0880e8;
	color: #fff;
	transition: all 0.4s;
}
.back-to-top i:hover{
	background: #f6b024;
	color: #fff;
}
#preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #fff;
}
#preloader:before{
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #1616be;
	border-top-color: #bfe0fd;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
}
@keyframes animate-preloader{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
}
header{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}
header > .header_bg{
	background: url(../img/tukushima-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	min-height: 100vh;
}
header > .header_bg_50{
	background: url(../img/tukushima-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom right;
	min-height: 350px;
}
header .logo {
	margin: 0;
	padding: 0;
}
header .logo a {
	color: #fff;
}
header .logo img {
	max-height: 60px;
}

.nav-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav-menu > ul {
	display: flex;
}
.nav-menu > ul > li {
	position: relative;
	white-space: nowrap;
	padding: 10px 0 10px 24px;
}
.nav-menu a {
	display: block;
	position: relative;
	color: rgba(255, 255, 255, 0.7);
	transition: 0.3s;
	font-size: 14px;
	padding: 0 3px;
	font-family: "Open Sans", sans-serif;
}
.nav-menu > ul > li > a:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: -5px;
	left: 0;
	background-color: #fff;
	visibility: hidden;
	width: 0px;
	transition: all 0.3s ease-in-out 0s;
}
.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
	visibility: visible;
	width: 100%;
}
.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
	color: #fff;
}
.inner-content{
	z-index: 1031;
	margin-top: 150px;
	margin-bottom: 4rem;
}
.head-title{
	margin-bottom: 100px;
}
.link-footer{
	color: #FFF;
}
.number{
    width: 35px;
    height: 35px;
    font-size: 18px;
    line-height: 20px;
    padding: 5px;
    border-width: 2px !important;
    box-shadow: inset -5px -5px 10px rgba(0,0,0,.5);
	background-color: #14375e !important;
	border-color: #02101f !important;
}
.number + .number{
	margin-left: 3px;
}
.number-blue{
	background-color: #034ea2!important;
	color: #acccf9;
	border-color: #093362 !important;
}
footer{
	background-color: #000077;
	width: 100%;
	position: absolute;
	z-index: 1032;
	bottom: 0;
}