@charset "utf-8";

@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 */
}

@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;
}

* {
   box-sizing: border-box;
   margin: 0;
}

html {
   min-height: 100%;
}

body {
   font: 1.125em/1.4em 'Noto Sans', Calibri, sans-serif;
   color: #555555;
   hyphens: auto;
   background: url('../images/bg.jpg') no-repeat fixed;
}

#wrapper {
   position: relative;
   margin: 1rem auto;
   overflow: hidden;
   max-width: 740px;
   -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 {
   text-transform: uppercase;
   font-weight: 700;
   color: #fff;
   background: linear-gradient(to right, #0097d4 0%, #052863 100%);
   padding: 20px 50px;
   margin: 0rem -50px 1.5rem;
   font-size: 1.45em;
   line-height: 1.4;
}

h1 span {
   font-weight: 400;
   display: block;
}

h2 {
   font-weight: 400;
   font-size: 1.313em;
   line-height: 1.3;
   padding-bottom: 0.7rem;
}

:is(a:link, a:visited, a:hover, a:active) {
   color: #0060ad;
   text-decoration: none;
}

ul {
   padding: 0rem 0rem 1rem 0rem;
   list-style: none;
}

li {
   padding: 0 0 0 16px;
}

ul li:before {
   content: "\2022";
   font-size: 1em;
   float: left;
   margin: 0 0 0 -16px;
   color: #66b0e2;
}

.slider {
   position: relative;
}

.slider>img {
   display: block;
   width: 100%;
   position: absolute;
   top: 0;
   left: 0;
   opacity: 0;
   animation: imageAnimation 5s linear infinite 0s;
}

.slider>img:nth-of-type(1) {
   position: static;
   opacity: 1;
}

.slider>img:nth-of-type(2) {
   animation-delay: 3s;
}


@keyframes imageAnimation {
   20% {
      opacity: 1;
   }

   50% {
      opacity: 1;
   }
}

.logo {
   padding: 20px 50px;
}

article {
   padding: 20px 50px;
}

.apply_btn:hover {
   background: #fff;
   color: #052a68;
   border: 1px solid #052a68;
   text-decoration: none;
}
.apply{
   padding-top: 1rem;
}
a.apply_btn {
   color: #ffffff;
   font-size: 16px;
   background: #052a68;
   padding: 10px 30px 10px 30px;
   text-decoration: none;
   font-weight: 400;

   text-align: center;
}

footer p {
   padding: 30px 50px;
   background: #eaebeb;
}

.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:739px) {
   body {
      font-size: 1em;
      line-height: 1.3;
   }

   #wrapper {
      border: none;
      margin: 0 auto;
   }

   p {
      text-align: left;
   }

   p :is(span, a) {
      display: inline-block;
   }
}
@media only screen and (max-width:500px){
   .logo,article,footer p{
      padding: 1rem;
   }
 
   h1{
      margin: 1rem -1rem;
      padding: 1rem;
   }
}