@charset "utf-8";

/* noto-sans-regular - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Noto Sans';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/noto-sans-v42-latin-regular.eot');
	/* IE9 Compat Modes */
	src: url('../fonts/noto-sans-v42-latin-regular.eot?#iefix') format('embedded-opentype'),
		/* IE6-IE8 */
		url('../fonts/noto-sans-v42-latin-regular.woff2') format('woff2'),
		/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
		url('../fonts/noto-sans-v42-latin-regular.woff') format('woff'),
		/* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
		url('../fonts/noto-sans-v42-latin-regular.ttf') format('truetype'),
		/* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
		url('../fonts/noto-sans-v42-latin-regular.svg#NotoSans') format('svg');
	/* Legacy iOS */
}

/* noto-sans-700 - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Noto Sans';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/noto-sans-v42-latin-700.eot');
	/* IE9 Compat Modes */
	src: url('../fonts/noto-sans-v42-latin-700.eot?#iefix') format('embedded-opentype'),
		/* IE6-IE8 */
		url('../fonts/noto-sans-v42-latin-700.woff2') format('woff2'),
		/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
		url('../fonts/noto-sans-v42-latin-700.woff') format('woff'),
		/* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
		url('../fonts/noto-sans-v42-latin-700.ttf') format('truetype'),
		/* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
		url('../fonts/noto-sans-v42-latin-700.svg#NotoSans') format('svg');
	/* Legacy iOS */
}

:root {
	font-size: 16px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #333;
	font-family: "Noto Sans", "Arial", sans-serif;
	font-size: 15px;
	line-height: 1.5;
	background: linear-gradient(180deg, rgba(239, 239, 239, 0.3) 300px, rgba(239, 239, 239, 1) 800px), url(../images/bg.jpg)no-repeat top center;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

#wrapper {
	position: relative;
	max-width: 800px;
	margin: 16px auto;
}

a:link,
a:visited,
a:active {
	color: #e40010;
	text-decoration: underline 1px dotted #e40010;
	white-space: nowrap;
}

a:hover {
	text-decoration: underline 1px solid #e40010;
	color: #333;
}

p {
	margin: 0 0 26px;
}

span {
	white-space: nowrap
}

h1 {
	font-size: 26px;
	margin: 0 0 26px;
	color: #e40010;
	font-weight: 700;
}

h3 {
	font-size: 20px;
	padding: 12px 26px 12px 26px;
	color: #e40010;
	background-color: #e6e6e6;
	font-weight: 700;
}

ul {
	list-style: none;
	margin: 0 0 26px;
	padding: 0;
}

ul li {
	padding-left: 22px;
}


ul li:before {
	content: "\2022";
	float: left;
	margin-left: -1.375rem;
	font-size: 1.5em;
	line-height: 1;
}

header {
	padding: 24px 26px 17px 26px;
	background: #fff;
	margin: 0 0 8px;
	margin-bottom: 17px;
	border: 1px solid rgba(0, 0, 0, 0.125);
	box-shadow: 0 0 26px rgba(0, 0, 0, .125);
}

.logo_img:hover {
	opacity: 0.62;
}

.slider {
	position: relative;
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.125);
	box-shadow: 0 0 26px rgba(0, 0, 0, .125);
	margin-bottom: 17px;
}

.slider > img {
	display: block;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	animation: imageAnimation 18s linear infinite 0s;
}

.slider > img:nth-of-type(1) {
	position: static;
	opacity: 1;
}

.slider > img:nth-of-type(2) {
	animation-delay: 6s;
}

.slider > img:nth-of-type(3) {
	animation-delay: 12s;
}

@keyframes imageAnimation {
	4% {
		opacity: 1;
	}

	33% {
		opacity: 1;
	}

	38% {
		opacity: 0;
	}
}

.section {
	padding: 12px 26px 0;
	
	
}
.box{
	margin-bottom: 17px;
	border: 1px solid rgba(0, 0, 0, 0.125);
	box-shadow: 0 0 26px rgba(0, 0, 0, .125);
	background: #fff;
}

a.apply {
	background: #e40010;
	font-size: 17px;
	text-align: center;
	color: #fff;
	border: solid 2px #e40010;
	border-radius: 5px;
	padding: 9px 30px;
	display: block;
	width: 330px;
	margin: 53px auto 53px;
	text-decoration: none;
	transition: all 0.5s;
	font-weight: 600;
}

a.apply:hover {
	background-color: transparent;
	color: #e40010;
	opacity: 0.62;

}

.iframe-wrapper {
	width: 100%;
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 1.875rem;
	height: 0;
	overflow: hidden;
}

.iframe-wrapper iframe,
.iframe-wrapper object,
.iframe-wrapper embed {
	border: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media only screen and (max-width: 799px) {
	#wrapper {
		border: none;
		margin: 0 auto;
		padding: 16px;
	}

	p,
	ul {
		-moz-hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
		margin: 0 0 16px
	}
	
	h3{
		padding: 12px 16px 12px 16px;
	}


	.section {
		padding: 16px 16px 0;
	}

	a.apply {
		margin: 20px auto;
	}
}



@media only screen and (max-width: 710px) {


	h2 {
		font-size: 22px;
	}


}

@media only screen and (max-width: 480px) {
	

	a.apply {
		width: fit-content;
		padding: 8px 30px;
	}
	h3{
	font-size: 18px;	
	}
}