@charset "utf-8";
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat-v25-latin-regular.eot'); 
  src: local(''),
       url('../fonts/montserrat-v25-latin-regular.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/montserrat-v25-latin-regular.woff2') format('woff2'), 
       url('../fonts/montserrat-v25-latin-regular.woff') format('woff'), 
       url('../fonts/montserrat-v25-latin-regular.ttf') format('truetype'), 
       url('../fonts/montserrat-v25-latin-regular.svg#Montserrat') format('svg'); 
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/montserrat-v25-latin-700.eot'); 
  src: local(''),
       url('../fonts/montserrat-v25-latin-700.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/montserrat-v25-latin-700.woff2') format('woff2'), 
       url('../fonts/montserrat-v25-latin-700.woff') format('woff'), 
       url('../fonts/montserrat-v25-latin-700.ttf') format('truetype'), 
       url('../fonts/montserrat-v25-latin-700.svg#Montserrat') format('svg'); 
}
:root {
   font-size: 16px;
}
* {
   box-sizing: border-box;
   margin: 0;
}
html {
   min-height: 100%;
}
body {
   font: 1em/1.4em 'Montserrat', Arial, sans-serif;
   color: #555555;
   hyphens: auto;
   background: url('../images/bg.jpg') no-repeat;
       background-repeat: no-repeat, no-repeat;
    background-position: top center, top center;
    background-size: cover;
}
#wrapper {
   position: relative;
   margin: 1rem auto;
   overflow: hidden;
   max-width: 800px;
   -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
   box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
   background: #fff;
}
p {
   padding-bottom: 1rem;
}
h1,h2,strong{
   font-weight: 700;
}
h1,h2{
  color: #003973;
}
h1 {
   margin-bottom: 1rem;
   font-size: 1.8em;
   line-height: 1.4;
}
h2 {
   font-size: 1.313em;
   line-height: 1.3;
   padding-bottom: 0.7rem;
}
:is(a:link, a:visited, a:hover, a:active) {
   color: #003973;
   text-decoration: none;
}
p a.ins{
   text-decoration: underline dotted 1px #003973;
   color: #555555;
}
ul {
   padding: 0rem 0rem 2rem 0rem;
   list-style: none;
}
li {
   padding: 0 0 0 16px;
}
ul li:before {
   content: "-";
   font-size: 2em;
   float: left;
   margin: -3px 0 0 -16px;
   color: #003973;
}
@-webkit-keyframes slidy {
0% { left: 0%; }
16.6% { left: 0%; }
33.2% { left: -100%; }
49.8% { left: -100%; }
66.4% { left: -200%; }
83% { left: -200%; }
100% { left: -300%; }
}
@keyframes slidy {
0% { left: 0%; }
16.6% { left: 0%; }
33.2% { left: -100%; }
49.8% { left: -100%; }
66.4% { left: -200%; }
83% { left: -200%; }
100% { left: -300%; }
}
.slider { overflow: hidden; }
.slider figure img { width: 25%; float: left; }
.slider figure { 
  position: relative;
  width:400%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  -webkit-animation-name:slidy;
  -webkit-animation-duration: 15s;
  -webkit-animation-delay: 5s;
  -webkit-animation-iteration-count: infinite;
  animation: 15s slidy infinite; 
}
.logo {
   padding: 20px 50px;
}
article {
   padding: 20px 50px;
}
.apply_btn:hover {
   background: #fff;
   color: #003973;
   border: 1px solid #003973;
   text-decoration: none;
}
.apply{
   padding-top: 1rem;
}
a.apply_btn {
   color: #ffffff;
   font-size: 16px;
   background: #003973;
   padding: 10px 30px 10px 30px;
   text-decoration: none;
   font-weight: 400;
   text-align: center;
}
footer  {
   background: #003973;
   padding: 2rem 50px 0;
}
footer :is(a,p){
   color: #FFF !important;
}
.video-container {
   position: relative;
   padding-bottom: 56.25%;
   /* padding-top: 30px; */
   height: 0;
   overflow: hidden;
}
.video-container iframe,
.video-container object,
.video-container embed {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}
img {
   max-width: 100%;
   height: auto;
}
@media only screen and (max-width: 798px) {
   #wrapper {
      border: none;
      margin: 0 auto;
   }
   p {
      text-align: left;
   }
   p :is(span, a) {
      display: inline-block;
   }
   .logo{
      display: flex;
      justify-content: center;
   }
}
@media only screen and (max-width:500px){
   .logo,article,footer{
      padding: 1rem;
   }
}