@charset "utf-8";
@font-face {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/fira-sans-v16-latin-regular.eot'); 
  src: local(''),
       url('../fonts/fira-sans-v16-latin-regular.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/fira-sans-v16-latin-regular.woff2') format('woff2'), 
       url('../fonts/fira-sans-v16-latin-regular.woff') format('woff'), 
       url('../fonts/fira-sans-v16-latin-regular.ttf') format('truetype'), 
       url('../fonts/fira-sans-v16-latin-regular.svg#FiraSans') format('svg'); 
}
@font-face {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/fira-sans-v16-latin-700.eot'); 
  src: local(''),
       url('../fonts/fira-sans-v16-latin-700.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/fira-sans-v16-latin-700.woff2') format('woff2'), 
       url('../fonts/fira-sans-v16-latin-700.woff') format('woff'), 
       url('../fonts/fira-sans-v16-latin-700.ttf') format('truetype'), 
       url('../fonts/fira-sans-v16-latin-700.svg#FiraSans') format('svg'); 
}
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #555555;
  font: 400 1em/1.3em "Fira Sans", Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 1024px;
  min-width: 250px;
  margin: 1rem auto;
  box-shadow: 3px 3px 11px 2px #939095;
  overflow: hidden;
  background: url('../images/bg.png') top right no-repeat;
}
h1,h2,h3,strong{
    font-weight: 700;
}
p {
  padding-bottom: 1rem;
}
h3, .black, .table strong {
  color: #000;
}
h1, h2, .color, a {
  color: #004994;
}
h1 {
  margin: 0;
  font-size: 2em;
  line-height: 1.3;
}
h1:after {
  content: "";
  height: 2px;
  background: rgba(0, 73, 148, 0.3);
  display: block;
  margin: 1.5rem 0 1rem;
  width: 69%;
}
h2 {
  font-size: 1.125em;
  line-height: 1.3em;
}
h2:after {
  content: "";
  width: 136px;
  height: 2px;
  background: rgba(0, 73, 148, 0.3);
  display: block;
  margin: 1rem 0 0.5rem;
}
h3 {
  font-size: 1em;
  line-height: 1.3em;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
ul {
  padding: 0 0 1rem;
  list-style: none;
}
li {
  padding-left: 1.3rem;
}
ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.000em;
  position: relative;
  float: left;
  top: -1px;
  margin-left: -1rem;
}
main {
  padding: 3% 4%;
}
header hr {
  border: 0;
  height: 2px;
  background: rgba(0, 73, 148, 0.3);
  display: block;
  margin-bottom: 2rem;
}
.opa {
  height: 1px;
  background: #efefef;
  width: 65%;
}
header hr {
  width: 40%;
  margin: 1rem 0 2rem;
}
hr {
  width: 40%;
  margin-bottom: 2rem;
}
.flex {
  display: flex;
  justify-content: space-between;
}
.flex > div {
  width: 49%;
}
.box {
  border: 1px solid rgba(0, 73, 148, 0.3);
  box-shadow: inset 0 1px 5px 5px #eee, 0 4px 4px 3px #eee;
  padding: 1rem 0.75rem 0;
  margin-bottom: 1rem;
}
.table {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.table p {
  width: calc(50% - 0.5rem);
  padding: 0;
}
footer {
  padding: 0;
}
.box-bg {
  background: url('../images/bgft.png') top left no-repeat;
  background-size: 100% auto;
  color: #fff;
  padding: 3% 4% 2%;
  display: flex;
  justify-content: space-between;
}
.social img {
  height: 35px;
  margin-right: 0.5rem;
}
footer a {
  color: #fff;
}
a.apply {
  display: block;
  padding: 0.5rem 1.5rem;
  background: #004994;
  margin: 0.5rem;
  width: fit-content;
  margin: 0.5rem auto;
}
@media only screen and (max-width:1023px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 780px) {
  #wrapper {
    background-image: none;
  }
  .hide_m {
    display: none;
  }
  .flex, .box-bg {
    flex-direction: column;
  }
  .flex > div {
    width: auto;
  }
  footer {
    text-align: center;
  }
  .social {
    margin-bottom: 1rem;
  }
}