@charset "utf-8";

:root {
    font-size: 16px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background: #EDEDEB url("../images/bg.jpg") no-repeat;
    background-size: cover;
	color: #3C3C3C;
 
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
   margin: 25px auto;
	width: 790px;
	background: #ffffff;

	-webkit-box-shadow: 0px 0px 25px -12px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 25px -12px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 25px -12px rgba(0,0,0,0.5);
    
    position: relative;
  
    margin: 1rem auto;
    overflow: hidden;
}
a {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
h1, h3, li:before, a, em, .mark {
	color: #122b62;
}


.logo {
	display: block;
}
.logo img {
	display: block;
	width: 300px;
	padding: 25px 60px;
}
.head {
	position: relative;
}
.head div {
	padding: 55px 60px 0 60px;
}
.head img {
	display: block;
}

article {
	padding: 0 60px;
}


footer {
	padding: 0 60px 40px 60px;
}
.box_left {
    float: left;
    width: 48%;
}
.box_right {
    float: right;
    width: 48%;
}
.footer_left {
    width: 48%;
	float: left;
}
.footer_right {
    width: 48%;
	float: right;
}
h1 {
	font-size: 31px;
	line-height: 1.3;
    text-transform: inherit;
	padding: 20px 0 20px 0;
}
h1 span {
    font-size: inherit;
    font-weight: inherit;
}
.h1_small {
    font-size: 80%;
    text-transform: inherit;
    font-weight: inherit;
	color: inherit;
}
h3 {
	font-size: 18px;
	padding: 18px 0 8px 0;
}
h1, h1 strong, h1 b {
	font-weight: 700;
}
h3, h3 strong, h3 b {
	font-weight: 700;
}
b, strong {
	font-weight: 700;
}
p {
	padding: 0 0 20px 0;
}
ul  {
    padding: 0 0 20px 0;
    list-style-type: none;
}
li  {
    padding: 0 0 2px 20px;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: inherit;
    margin: 0 0 0 -16px;
    content: "\00a0";
    position: absolute;
    width: 6px;
    height: 6px;
    margin: 9px 0 0 -18px;
    background-color: #3C3C3C;
    -webkit-border-radius: 100%; -moz-border-radius: 100%;
    border-radius: 100%;
}
img {
	border: none;
	max-width: 100%;
	height: auto;
}
small {
 	font-size: 75%;
}
div.breaker {
	clear: both;
	overflow: hidden;
}
.mobile {
	display: none;
}
.btn {
	display: inline-block;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
    text-transform: inherit;
    color: #ffffff;
    background: #122b62;
    padding: 10px 20px 10px 20px;
    margin: 20px auto 15px auto;
}
.btn:hover {
    background: #122b62;
    color: #ffffff;
    text-decoration: none;
}


  .slider {
    position: relative;
  }

  .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;
    }
  }
  

@media only screen and (max-width:810px) {
	* {
		padding: 0;
		margin: 0;
		
	    box-sizing: border-box!important;
	}
	body {
		-webkit-hyphens: auto;
		-moz-hyphens: auto;
		hyphens: auto;
	}
	#wrapper {
		margin: 10px auto;
	    width: auto;
	    border: 0;
	}
	.logo img {
		width: 200px;
		padding: 25px 5%;
	}
	.head div {
		padding: 5% 5% 0 5%;
	}
	article {
		padding: 0 5%
	}
	footer {
		padding: 0 5% 40px 5%;
	}

	h1 {
		font-size: 28px;
	}
	
}