@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap');
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #000;
  font: 0.8125em/1.3em 'Open Sans', Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 700px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 0;
}
p {
  padding-bottom: 1rem;
}
h1 {
  margin: 0 0 2rem;
  font-size: 2.3em;
  line-height: 1.1em;
  text-align: center;
}
h1 span {
  font-size: 0.7em;
}
h2 {
  font-size: 2em;
  line-height: 1.3em;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1rem;
  line-height: 1.3em;
  margin-bottom: 1rem;
}
h1, h2, h3, .color {
  color: #236fa1;
}
a {
  color: #000;
  text-decoration: none;
}
a ins {
  color: #0645ad;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  padding: 0;
  list-style: none;
}
li {
  padding: 0 0 0.5rem 2.75rem;
}
ul li:before {
  content: "\2022";
  font-size: 1.5em;
  float: left;
  margin: 0 0 0 -1rem;
}
main {
  padding: 2rem;
}
section {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
section div:first-of-type {
  width: 357px;
}
section div:last-of-type {
  width: 223px;
}
.apply {
  font-size: 0.875rem;
  display: block;
  width: fit-content;
  padding: 0.875rem 1.75rem;
  border-radius: 4px;
  background: #236fa1;
  color: #fff;
  margin: 0 auto;
}
footer {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}
@media only screen and (max-width:699px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  li {
    padding-left: 1rem;
  }
  main {
    padding: 1rem;
  }
  section {
    display: block;
  }
  section div {
    width: auto !important;
  }
  footer {
    position: static;
    display: flex;
    justify-content: center;
  }
}