html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
@media screen {
  body {
    font: 78% "Noto Sans",arial,helvetica,sans-serif;
  }
}
#bread-crumb {
  padding: 70px 0 0 0;
  margin: 0 0 0 42px;
}
.container {
  max-width: 80rem;
  width: auto;
  margin: auto;
}
main {
  z-index: 5;
  position: relative;
  padding: 0 42px;
}
header {
  background: #254F99;
  text-align: left;
  padding: 30px 40px;
}
.banner {
  position: relative;
  margin-bottom: 4rem;
}
h1 {
  font-weight: normal;
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
}
h1 strong {
  display: inline-block;
  margin-top: -1rem;
  font-size: 6rem;
}
.claim-offer {
  background: #27509C;
  width: 36%;
  min-width: 24rem;
  border-radius: .5rem;
  margin-top: -14rem;
}
.claim-offer > div {
  padding: 3rem;
}
.claim-offer .link {
  text-align: right;
}
.claim-offer a {
  display: inline-block;
  padding: 1rem;
  margin: -1rem -1rem 0 0;
  text-align: right;
  font-size: 1rem;
  color: #fce500;
  text-decoration: none;
  transition: transform .3s ease-out;
}
.claim-offer a span {
  padding: 0 .5rem .5rem 0;
  border-bottom: 2px solid #fce500;
}
.claim-offer a:hover {
  transform: scale(1.05);
  transform-origin: 50% 100%;
}
@media screen and (max-width: 750px) {
  .claim-offer {
    margin: -5rem 1rem 0;
    max-width: 18rem;
    min-width: 0;
    width: auto;
  }
  .claim-offer > div {
    padding: 2rem;
  }
  h1 strong {
    margin-top: 0;
    font-size: 3rem;
  }
  .claim-offer a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 560px) {
  main {
    padding: 0 1rem;
  }
  h1 strong {
    margin-top: 0;
    font-size: 2rem;
  }
  .claim-offer a {
    font-size: .8rem;
  }
}
h3 {
  text-align: center;
  color: #254F99;
  font-size: 1.4rem;
  margin: 0 0 4rem;
}
.tabs {
  border-radius: .5rem;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 0, 0, .1);
  position: relative;
}
.tabs .bar {
  display: flex;
  border-bottom: 1px solid #e4e4e4;
  padding: 0;
  background: rgba(37,73,153,.1);
}
.tabs .bar a {
  display: block;
  border-bottom: .25rem solid #254F99;
  background: #fff;
  text-align: center;
  min-width: 160px;
  padding: 1rem 1.5rem;
  color: #254F99;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
}
.tabs .bar a.active {
  color: #fff;
  background: #254F99;
}
.tabs .data > div {
  background: #fff;
  padding: 40px;
  border-bottom: .5rem solid #254F99;
}
.tabs .data img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  border: 1px solid #254F99;
}
#terms {
  color: #393939;
  padding: 0;
}
#terms > div {
  max-height: 10rem;
  overflow: auto;
  margin: 10px 10px 0 10px;
  padding: 30px 50px;
  scrollbar-width: thin;
  scrollbar-color: #254F99 #ECECEC;
}
#terms > div::-webkit-scrollbar {
  background: #ECECEC;
  width: 6px;
  border-radius: 6px;
}
#terms > div::-webkit-scrollbar-thumb {
  background: #254F99;
  width: 6px;
  border-radius: 6px;
}
#terms p,
#terms li {
  margin-bottom: 1rem;
}
#terms ol {
  list-style: decimal;
  padding-left: 1.5rem;
}
#terms ol li {
  padding-left: 1rem;
}
@media screen and (max-width: 480px) {
  .tabs .bar {
    flex-direction: column;
  }
  #terms > div {
    max-height: 60vh;
  }
}
h2 {
  margin: 0;
  padding: 0 0 1rem;
  color: #fff;
  font-size: 1.625rem;
  position: relative;
  line-height: 1.7;
}
.bg-shaded {
  background: #F4F4F4;
  margin: -6rem -3rem -12.5rem;
  padding: 10rem 2.6rem 14.5rem;
}
#find {
  border: 1px solid #e4e4e4;
  position: relative;
  min-height: 400px;
  margin: 1rem 0;
  overflow: hidden;
}
#find #map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fce500;
}
#find form {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: rgba(39, 80, 156, 0.9);
  box-sizing: border-box;
  padding: 40px;
  transition: left 0.15s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
#find form a.show {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 2rem;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  background: #fce500;
  text-decoration: none;
  font-size: 2rem;
  color: #27509b;
  text-align: center;
  opacity: .5;
  transition: opacity 0.1s ease-in-out;
}
#find form a.show:before {
  content: "»";
  display: block;
  width: 1.6rem;
}
#find form.away {
  left: -42.2%;
}
#find form.away a.show {
  display: flex;
}
#find form.away a.show:hover {
  opacity: 1;
}
#find form input {
  display: block;
  margin: .4rem 40px .4rem 0;
  box-sizing: border-box;
  padding: .5rem 1rem;
  width: 100%;
  border: 1px solid #ccc;
  font-family: "Noto Sans", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #393939;
}
#find form input[disabled] {
  color: #ccc;
}
#find form input:not([disabled])::-webkit-input-placeholder {
  color: #999;
}
#find form input:not([disabled])::-moz-placeholder {
  color: #999;
}
#find form input:not([disabled]):-ms-input-placeholder {
  color: #999;
}
#find form span {
  display: block;
  color: #999;
  padding-left: 1rem;
}
#find form button {
  margin-top: .4rem;
  color: #393939;
  padding: 1rem 2.5rem;
  display: inline-block;
  transition: background 0.1s ease-in-out;
  border: 0;
  position: relative;
  font-family: "Noto Sans", Arial, Helvetica, sans-serif;
  background: #fce500;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 10rem;
}
#find form button:hover {
  background: #f2dc00;
}
#find form button[disabled] {
  color: #bbb;
}
#find form.loading:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 60px);
  left: calc(50% - 60px);
  border: 16px solid #fce500;
  border-top: 16px solid #1d3180;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@media screen and (max-width: 950px) {
  #find {
    min-height: auto;
    display: flex;
    flex-direction: column-reverse;
  }
  #find form {
    width: 100%;
  }
  #find h2 {
    width: 100%;
    text-align: center;
    padding: 0 0 .2rem;
  }
  #find form button {
    margin: .4rem auto;
  }
  #find form.away {
    left: -95%;
  }
  #find #map {
    position: static;
    min-height: 400px;
  }
}
#steps > div {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}
.step {
  position: relative;
  min-width: 8rem;
  max-width: 90%;
  flex: 1;
  background: #fff;
  border-radius: .5rem;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 0, 0, .1);
  margin: 0 1rem 1rem;
  padding: 2rem 2rem 9rem;
}
@media screen and (max-width: 480px) {
  .step {
    min-width: 60%;
  }
}
.step:after {
  content: "";
  display: block;
  background: #254F99;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4rem;
}
.step a {
  color: #254F99;
}
.step-number {
  display: inline-block;
  background: #fce500;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 0 1rem;
  padding: .3rem .6rem;
  font-size: .7rem;
}
.step a.button {
  display: inline-block;
  height: auto;
  margin-top: 1rem;
  font-size: .5rem;
  color: #2c2c2c;
  background: #fce500;
  border-radius: .5rem;
  padding: .6rem .9rem;
  text-decoration: none;
}
.step-image {
  position: absolute;
  bottom: 1rem;
  left: 25%;
  width: 50%;
  background: url(../assets/step-1.png) no-repeat 100% 100%;
  background-size: contain;
  height: 7rem;
  z-index: 10;
}
.step:first-child .step-image {
  left: 30%;
  width: 70%;
  bottom: 0;
  height: 50%;
}
.step:nth-child(2) .step-image {
  background-image: url(../assets/step-2.png);
}
.step:nth-child(3) .step-image {
  background-image: url(../assets/step-3.png);
}
.step:nth-child(4) .step-image {
  background-image: url(../assets/step-4.png);
}
footer {
  margin: 3rem 0 -3rem;
  padding: 25px 0 75px;
  color: #5a5a5a;
}
