@font-face {
  font-family: "Lato", sans-serif;
  src: url(fonts/Lato-Black.ttf);
  font-weight: 900;
}
@font-face {
  font-family: "Lato", sans-serif;
  src: url(fonts/Lato-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Lato", sans-serif;
  src: url(fonts/Lato-Bold.ttf);
  font-weight: 700;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
}

figure {
  margin: 0;
  padding: 0;
}

.wrap {
  width: 1200px;
  margin: 0 auto;
}

.grey-bg {
  background: #F2F2F2;
  padding: 100px 0;
}

.space-top {
  margin-top: 100px;
}

header figure {
  width: 100%;
}
header figure img {
  display: block;
  margin: 0 auto;
  padding: 20px 0;
}
header div {
  background: #FF5E19;
  text-align: center;
  padding: 10px 0;
}
header div p {
  color: white;
  font-weight: 900;
}
header div p a {
  color: white;
  font-weight: 400;
}
header div p a:hover {
  color: black;
}

main #video {
  position: relative;
  margin-bottom: 250px;
}
main #video video {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
main #address-check {
  padding: 50px;
  margin: 25px auto 0;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  width: 880px;
  position: absolute;
  bottom: -175px;
  left: 0;
  right: 0;
  background: white;
  transition: all 0.5s;
}
main #address-check h2 {
  margin-top: 0;
  text-align: center;
  font-size: 24px;
  color: #FF5E19;
}
main #address-check p {
  line-height: 1.5em;
  font-size: 20px;
}
main #address-check label {
  font-weight: 700;
  font-size: 18px;
}
main #address-check input {
  margin-bottom: 5px;
  border-radius: 5px;
  padding: 10px;
  border: solid thin #F2F2F2;
  display: block;
  width: calc(100% - 20px);
  font-size: 16px;
  margin-top: 10px;
}
main #address-check input.disable {
  background: #D5D5D5;
  color: #A4A4A4;
  cursor: not-allowed;
}
main #address-check input[type=submit] {
  background: #FF5E19;
  color: white;
  padding: 10px 0;
  cursor: pointer;
  width: calc(25% - 10px);
  border: none;
  margin-top: 10px;
}
main #address-check input[type=submit]:hover {
  background: black;
}
main #address-check #output > div {
  margin-top: 20px;
}
main #address-check .flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
main #address-check .flex > div:first-of-type {
  width: calc(25% - 10px);
}
main #address-check .flex > div:nth-of-type(2) {
  width: 50%;
}
main #address-check .flex > div:nth-of-type(3) {
  width: calc(25% - 10px);
}
main #address-check .input-with-suggestions {
  position: relative;
  width: 48%;
}
main #address-check .input-with-suggestions .suggestions {
  left: 0;
  top: 75px;
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  border: 1px solid #F2F2F2;
  max-height: 200px;
  overflow-y: auto;
  z-index: 9999;
  width: 100%;
}
main #address-check .input-with-suggestions .suggestions li {
  list-style-type: none;
  padding: 5px 10px;
  cursor: pointer;
}
main #address-check .input-with-suggestions .suggestions li:hover {
  background-color: #ddd;
}
main #address-check #output.success .col-2 {
  margin-top: 0;
  display: flex;
  justify-content: space-between;
}
main #address-check #output.success .col-2 figure {
  width: 15%;
}
main #address-check #output.success .col-2 figure img {
  width: 100%;
  height: auto;
  display: block;
}
main #address-check #output.success .col-2 article {
  width: 80%;
  align-self: center;
}
main #address-check #output.success .col-2 article h3 {
  text-transform: uppercase;
  color: #FF5E19;
  font-size: 20px;
  margin-top: 0;
}
main #address-check #output.success .col-2 article p {
  margin-bottom: 0;
}
main #address-check #output.success .col-2 article p a {
  color: black;
  font-size: 0.85em;
}
main #address-check #output.success .col-2:last-of-type {
  margin-top: 25px;
}
main #address-check #output.success .col-2:last-of-type article {
  width: 25%;
}
main #address-check #output.success .col-2:last-of-type article p:first-of-type {
  margin-top: 0;
}
main #address-check #output.success .col-2:last-of-type figure {
  width: 70%;
}
main #address-check #output.success .col-2:last-of-type figure img {
  height: 100%;
  object-fit: cover;
}
main #address-check #output.false .col-2 {
  margin-top: 0;
  display: flex;
  justify-content: space-between;
}
main #address-check #output.false .col-2 figure {
  width: 15%;
}
main #address-check #output.false .col-2 figure img {
  width: 100%;
  height: auto;
  display: block;
}
main #address-check #output.false .col-2 article {
  width: 80%;
  align-self: center;
}
main #address-check #output.false .col-2 article h3 {
  text-transform: uppercase;
  color: #FF5E19;
  font-size: 20px;
  margin-top: 0;
}
main #address-check #output.false .col-2 article p {
  margin-bottom: 0;
}
main #address-check #output.false .col-2 article a {
  color: black;
  float: right;
}
main .col-2 .container {
  display: flex;
  justify-content: space-between;
}
main .col-2 .container article {
  width: 45%;
}
main .col-2 .container article h2 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
}
main .col-2 .container article h3 {
  font-weight: 400;
  font-size: 24px;
  margin-top: 0;
}
main .col-2 .container article p {
  font-size: 20px;
  line-height: 1.5em;
  margin-top: 50px;
}
main .col-2 .container article .value {
  margin: 0 auto;
  background: #FF5E19;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  position: relative;
  text-align: center;
}
main .col-2 .container article .value p {
  font-size: 20px;
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
  white-space: nowrap;
  font-weight: 400;
  line-height: 2em;
}
main .col-2 .container article .value p span {
  font-size: 40px;
  font-weight: 900;
}
main .col-2 .container article .value p sup {
  font-size: 12px;
}
main .col-2.grey-bg h3 {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 24px;
}
main .col-2.grey-bg p:first-of-type {
  margin-top: 20px;
}
main .col-2.grey-bg img {
  height: 100px;
  width: auto;
  margin-top: 20px;
}
main .disclaimer {
  margin-top: 50px;
}
main .disclaimer p {
  line-height: 1.5em;
}

footer {
  padding: 40px 0;
}
footer .wrap {
  width: 1600px;
}
footer .wrap div:first-of-type {
  text-align: center;
  margin-bottom: 10px;
}
footer .wrap div:first-of-type p {
  margin: 0;
}
footer .wrap .col-2 {
  display: flex;
  justify-content: space-between;
}
footer .wrap .col-2 p {
  margin: 0;
}
footer .wrap .col-2 ul {
  margin: 0;
  padding: 0;
}
footer .wrap .col-2 ul li {
  display: inline-block;
  margin-left: 50px;
}
footer .wrap .col-2 ul li a {
  color: black;
  text-decoration: none;
}
footer .wrap .col-2 ul li a:hover {
  color: #FF5E19;
}
footer .wrap .col-2 ul li:first-of-type {
  margin-left: 0;
}

@media only screen and (max-width: 1660px) {
  footer .wrap {
    width: 1200px;
  }
  footer .wrap div:first-of-type {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1340px) {
  .wrap {
    width: 90%;
  }
  footer .wrap {
    width: 90%;
  }
}
@media only screen and (max-width: 1040px) {
  main #address-check {
    width: 80%;
  }
}
@media only screen and (max-width: 880px) {
  #refresh-page {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 780px) {
  main #address-check #output.success .col-2 article p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 740px) {
  footer .wrap .col-2 {
    flex-wrap: wrap;
  }
  footer .wrap .col-2 p, footer .wrap .col-2 ul {
    width: 100%;
    text-align: center;
  }
  footer .wrap .col-2 p {
    order: 2;
    margin-top: 20px;
  }
  footer .wrap .col-2 ul {
    order: 1;
  }
}
@media only screen and (max-width: 640px) {
  main #video {
    margin-bottom: 50px;
  }
  main #video video {
    height: 200px;
  }
  main #address-check {
    position: relative;
    margin-top: 25px;
    bottom: inherit;
    padding: 25px;
  }
  main #address-check p {
    font-size: 16px;
  }
  main #address-check form .flex {
    flex-wrap: wrap;
  }
  main #address-check form .flex > div:first-of-type, main #address-check form .flex > div:nth-of-type(2), main #address-check form .flex > div:last-of-type {
    width: 100%;
    margin-bottom: 10px;
  }
  main #address-check form label {
    font-size: 16px;
  }
  main #address-check input[type=submit] {
    width: 200px;
    margin-right: 0;
    margin-left: auto;
  }
  main .col-2 .container {
    flex-wrap: wrap;
  }
  main .col-2 .container figure, main .col-2 .container article {
    width: 100%;
  }
  main .col-2 .container figure p, main .col-2 .container article p {
    margin-top: 25px;
  }
  main .col-2 .container figure .value, main .col-2 .container article .value {
    margin-top: 50px;
  }
  main .grey-bg {
    padding: 50px 0;
  }
  main .space-top {
    margin-top: 50px;
  }
  main #address-check #output.success .col-2:last-of-type {
    flex-wrap: wrap;
  }
  main #address-check #output.success .col-2:last-of-type figure, main #address-check #output.success .col-2:last-of-type article {
    width: 100%;
  }
  main #address-check #output.success .col-2:last-of-type figure {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 500px) {
  header div p {
    font-size: 14px;
  }
  main #address-check h2 {
    font-size: 20px;
  }
  main .col-2 .container article h2, main .col-2 .container article h3, main .col-2.grey-bg h3 {
    font-size: 20px;
  }
  main .col-2 .container article p {
    font-size: 16px;
  }
  main .grey-bg {
    padding: 25px 0;
  }
  main .col-2.grey-bg img {
    width: 280px;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  footer .wrap .col-2 ul li {
    margin-left: 10px;
  }
  main #address-check #output.success .col-2, main #address-check #output.false .col-2 {
    flex-wrap: wrap;
  }
  main #address-check #output.success .col-2 figure, main #address-check #output.success .col-2 article, main #address-check #output.false .col-2 figure, main #address-check #output.false .col-2 article {
    width: 100%;
  }
  main #address-check #output.success .col-2 figure img, main #address-check #output.success .col-2 article img, main #address-check #output.false .col-2 figure img, main #address-check #output.false .col-2 article img {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto 25px;
  }
  main #address-check #output.success .col-2 figure img.map, main #address-check #output.success .col-2 article img.map, main #address-check #output.false .col-2 figure img.map, main #address-check #output.false .col-2 article img.map {
    width: 100%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 420px) {
  header figure img {
    width: 280px;
    height: auto;
  }
  header div {
    padding: 5px 0;
  }
}

/*# sourceMappingURL=style.css.map */
