:root{
  --body-text : #04002B;
  --blue:#0048FF;
  --dark-blue:#090063;
  --green: #00B30F;
  --gray: #FAFAFA;
  --white : #fff;
}
body{
  font-family: 'Figtree';
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: var(--body-text);
  letter-spacing: -0.32px;
  background: #fff;
}
a{
  text-decoration: none !important;
  outline: none !important;
  color: var(--body-text);
}
p{
  margin-bottom: 2.4rem;
}
p:last-child{
  margin-bottom: 0;
}
ul{
  margin-bottom: 2rem;
}
ul:last-child{
  margin-bottom: 0;
}
ul > li{
  position: relative;
  padding-left: 2.8rem;
  margin-bottom: 1.6rem;
  line-height: 2rem;
}
ul > li:last-child{
  margin-bottom: 0;
}
ul > li:after {
  position: absolute;
  content: "";
  height: 2rem;
  width: 2rem;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../images/icon-list-arrow.png);
  background-size: cover;
  background-position: center;
}
ol{
  counter-reset: number;
  margin-bottom: 2.2rem;
}
ol:last-child{
  margin-bottom: 0;
}
ol > li{
  position: relative;
  padding-left: 2.5rem;
  counter-increment: number;
  margin-bottom: 0;
}
ol > li:last-child{
  margin-bottom: 0;
}
ol > li:after{
  content: none;
}
ol > li::before {
  position: absolute;
  content: "";
  width: 1.8rem;
  text-align: right;
  left: 0;
  top: 0;
  content: counter(number)".";
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1150px;
  }
}
@media (min-width: 1360px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1404px) {
  .container {
    max-width: 1374px;
  }
}
.header-blue + main{
  padding-top: 12.9rem;
}
.text-white,
.text-white *{
  color: var(--white) !important;
}
.text-green,
.text-green *{
  color: var(--green) !important;
}
.text-gray,
.text-gray *{
  color: #878992 !important;
}
.bg-blue{
  background: var(--blue);
}
.bg-dark-blue{
  background: var(--dark-blue);
}
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong{
  background: linear-gradient(87.95deg, #0048FF 2.12%, #34B1FF 98.28%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
h1,.h1,.h1 *{
  font-size: 6.9rem;
  line-height: 7.9rem;
  font-weight: normal;
  letter-spacing: -0.14rem;
  margin: 0;
}
h2,.h2,.h2 *{
  font-size: 6rem;
  line-height: 7rem;
  font-weight: normal;
  letter-spacing: -0.12rem;
  margin: 0;
}
h3,.h3,.h3 *{
  font-size: 3.2rem;
  line-height: 4.2rem;
  font-weight: normal;
  letter-spacing: -0.64px;
  margin: 0;
}
h4,.h4,.h4 *{
  font-size: 2.6rem;
  line-height: 3.4rem;
  font-weight: normal;
  letter-spacing: -0.52px;
  margin: 0;
}
h5,.h5,.h5 *{
  font-size: 2rem;
  line-height: 3rem;
  font-weight: normal;
  letter-spacing: -0.4px;
  margin: 0;
}
h6,.h6,.h6 *{
  font-size: 1.6rem;
  line-height: 2.6rem;
  font-weight: normal;
  letter-spacing: -0.3px;
  margin: 0;
}
.fw-54,.fw-54 *{
  font-size: 5.4rem;
  line-height: 6rem;
  font-weight: normal;
  letter-spacing: -0.108rem;
  margin: 0;
}
.fw-28,.fw-28 *{
  font-size: 2.8rem;
  line-height: 3.2rem;
  font-weight: bold;
  letter-spacing: -0.56px;
  margin: 0;
}
.fw-24,.fw-24 *{
  font-size: 2.4rem;
  line-height: 1;
  font-weight: bold;
  letter-spacing: -0.48px;
  margin: 0;
}
.fw-19,.fw-19 *{
  font-size: 1.9rem;
  line-height: 2.4rem;
  font-weight: bold;
  letter-spacing: -0.38px;
  margin: 0;
}
.l-h-1{
  line-height: 1;
}
.btn-100{
  width: 100%;
}
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  padding: 0 3.9rem;
  border: 1px solid transparent;
  font-size: 1.7rem;
  line-height: 1;
  border-radius: 5rem;
  letter-spacing: 0;
  font-weight: normal;
}
.btn-icon{
  padding: 0 2.8rem 0 1.2rem !important;
}
.btn-round-icon{
  width: 4.2rem;
  height: 4.2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.2rem;
  border-radius: 50%;
}
.btn-md{
  height: 5.9rem !important;
}
.btn-lg{
  height: 6.4rem !important;
}
.btn-blue{
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover{
  border-color: var(--dark-blue);
  background: var(--dark-blue);
}
.btn-blue .btn-round-icon{
  background: var(--white);
}
.btn-hover-white:hover{
  border-color: var(--white);
  background: var(--white);
  color: var(--blue);
}
.btn-hover-white:hover .btn-round-icon{
  background: var(--blue);
}
.btn-hover-white:hover .btn-round-icon img{
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.btn-white-outline{
  color: var(--white);
  border-color: var(--white);
}
.btn-white-outline:hover{
  color: var(--blue);
  background: var(--white);
}
.btn-black-outline{
  border-color: var(--body-text);
  color: var(--body-text);
}
.btn-black-outline:hover{
  background: var(--body-text);
  color: var(--white);
}
.btn-white{
  border-color: var(--white);
  background: var(--white);
  color: var(--blue);
}
.btn-white:hover{
  background: transparent;
  color: var(--white);
}
.btn-group{
  display: flex;
  align-items: center;
  margin: 0 -0.4rem -1rem;
}
.btn-group .btn{
  margin: 0 0.4rem 1rem;
}
.btn-link{
  margin: 0 4.4rem;
  display: inline-flex;
  align-items: center;
  font-size: 1.7rem;
  line-height: 2.7rem;
  text-decoration: underline !important;
  letter-spacing: 0;
}
.btn-group .btn-link{
  margin-bottom: 1rem;
}
.btn-link:hover{
  text-decoration: none !important;
}
.btn-link-white{
  color: var(--white);
}
.btn-link:first-child{
  margin-left: 0;
}
.btn-link:last-child{
  margin-right: 0;
}
.badge{
  font-size: 1.4rem;
  line-height: 1;
  height: 3.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  border: 1px solid transparent;
  padding: 0 1.6rem;
  letter-spacing: -0.28px;
  border-radius: 5rem;
}
.badge-white{
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.badge-gray{
  border-color: rgba(4,0,43,0.3);
  color: rgba(4,0,43,0.5);
}
.date{
  font-size: 1.6rem;
}
.date img{
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  margin-right: 0.8rem;
}
.mb-8{
  margin-bottom: 0.8rem;
}
.mb-10{
  margin-bottom: 1rem;
}
.mb-16{
  margin-bottom: 1.6rem;
}
.mb-20{
  margin-bottom: 2rem;
}
.mb-24{
  margin-bottom: 2.4rem;
}
.mb-32{
  margin-bottom: 3.2rem;
}
.mb-40{
  margin-bottom: 4rem;
}
.mt-48{
  margin-top: 4.8rem;
}
.mb-48{
  margin-bottom: 4.8rem;
}
.mt-64{
  margin-top: 6.4rem;
}
.mb-64{
  margin-bottom: 6.4rem;
}
.mb-70{
  margin-bottom: 7rem;
}
.mt-96{
  margin-top: 9.6rem;
}
.mb-96{
  margin-bottom: 9.6rem;
}
.pt-128{
  padding-top: 12.8rem;
}
.pb-128{
  padding-bottom: 12.8rem;
}
.mb-128{
  margin-bottom: 12.8rem;
}
@media(min-width:1360px) and (max-width:1403.98px){
  body {
    font-size: 1.67rem;
    line-height: 2.7rem;
    letter-spacing: -0.28px;
  }
  p {
    margin-bottom: 2rem;
  }
  .header-blue + main {
    padding-top: 11.2rem;
  }
  h1, .h1, .h1 * {
    font-size: 6.5rem;
    line-height: 7.5rem;
  }
  h2, .h2, .h2 * {
    font-size: 5.6rem;
    line-height: 6.6rem;
  }
  h3, .h3, .h3 * {
    font-size: 3rem;
    line-height: 4rem;
    letter-spacing: -0.54px;
  }
  h4, .h4, .h4 * {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
  .fw-54, .fw-54 * {
    font-size: 5rem;
    line-height: 5.6rem;
  }
  .fw-28, .fw-28 * {
    font-size: 2.6rem;
    line-height: 3rem;
  }
  .fw-24, .fw-24 * {
    font-size: 2.2rem;
  }
  .fw-19, .fw-19 * {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
  .btn {
    padding: 0 3.4rem;
    font-size: 1.6rem;
  }
  .btn-lg {
    height: 6rem !important;
  }
  .btn-md {
    height: 5.6rem !important;
  }
  .btn-icon {
    padding: 0 2.4rem 0 1rem !important;
  }
  .btn-link {
    margin: 0 3.6rem;
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
  .date {
    font-size: 1.5rem;
  }
  .mb-32 {
    margin-bottom: 2.8rem;
  }
  .mb-48 {
    margin-bottom: 4rem;
  }
  .mt-48{
    margin-top: 4rem;
  }
  .mt-64 {
    margin-top: 5.6rem;
  }
  .mb-64 {
    margin-bottom: 5.6rem;
  }
  .mb-70 {
    margin-bottom: 6rem;
  }
  .mb-96 {
    margin-bottom: 7.2rem;
  }
  .mt-96 {
    margin-top: 7.2rem;
  }
  .pb-128 {
    padding-bottom: 10.4rem;
  }
  .pt-128 {
    padding-top: 10.4rem;
  }
  .mt-128 {
    margin-top: 10.4rem;
  }
  .mb-128 {
    margin-bottom: 10.4rem;
  }
}
@media(min-width:1200px) and (max-width:1359.98px){
  body {
    font-size: 1.7rem;
    line-height: 2.7rem;
    letter-spacing: -0.22px;
  }
  p {
    margin-bottom: 2rem;
  }
  ul > li {
    margin-bottom: 1.4rem;
  }
  .header-blue + main {
    padding-top: 10.2rem;
  }
  h1, .h1, .h1 * {
    font-size: 5.9rem;
    line-height: 6.9rem;
  }
  h2, .h2, .h2 * {
    font-size: 5.1rem;
    line-height: 6.1rem;
  }
  h3, .h3, .h3 * {
    font-size: 2.8rem;
    line-height: 3.8rem;
    letter-spacing: -0.4px;
  }
  h4, .h4, .h4 * {
    font-size: 2.4rem;
    line-height: 3.2rem;
    letter-spacing: -0.4px;
  }
  .fw-54, .fw-54 * {
    font-size: 4.4rem;
    line-height: 5rem;
  }
  .fw-28, .fw-28 * {
    font-size: 2.6rem;
    line-height: 3rem;
  }
  .fw-24, .fw-24 * {
    font-size: 2.2rem;
  }
  .fw-19, .fw-19 * {
    font-size: 1.7rem;
    line-height: 2.2rem;
  }
  .btn {
    padding: 0 3.4rem;
    font-size: 1.6rem;
  }
  .btn-md {
    height: 5.4rem !important;
  }
  .btn-lg {
    height: 6rem !important;
  }
  .btn-icon {
    padding: 0 2.4rem 0 1rem !important;
  }
  .btn-link {
    margin: 0 3.6rem;
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
  .badge {
    font-size: 1.3rem;
  }
  .date {
    font-size: 1.5rem;
  }
  .mb-24 {
    margin-bottom: 2rem;
  }
  .mb-32 {
    margin-bottom: 2.4rem;
  }
  .mb-48 {
    margin-bottom: 4rem;
  }
  .mt-48{
    margin-top: 4rem;
  }
  .mt-64 {
    margin-top: 4.8rem;
  }
  .mb-64 {
    margin-bottom: 4.8rem;
  }
  .mb-70 {
    margin-bottom: 5.6rem;
  }
  .mb-96 {
    margin-bottom: 7.2rem;
  }
  .mt-96 {
    margin-top: 7.2rem;
  }
  .pb-128 {
    padding-bottom: 9.6rem;
  }
  .pt-128 {
    padding-top: 9.6rem;
  }
  .mt-128 {
    margin-top: 9.6rem;
  }
  .mb-128 {
    margin-bottom: 9.6rem;
  }
}
@media(min-width:992px) and (max-width:1199.98px){
  body {
    font-size: 1.6rem;
    line-height: 2.6rem;
    letter-spacing: -0.2px;
  }
  p {
    margin-bottom: 2rem;
  }
  ul > li {
    margin-bottom: 1rem;
  }
  .header-blue + main {
    padding-top: 9.8rem;
  }
  h1, .h1, .h1 * {
    font-size: 4.8rem;
    line-height: 5.8rem;
    letter-spacing: -0.1rem;
  }
  h2, .h2, .h2 * {
    font-size: 4rem;
    line-height: 5rem;
  }
  h3, .h3, .h3 * {
    font-size: 2.6rem;
    line-height: 3.6rem;
    letter-spacing: -0.4px;
  }
  h4, .h4, .h4 * {
    font-size: 2.2rem;
    line-height: 3rem;
    letter-spacing: -0.32px;
  }
  .fw-28, .fw-28 * {
    font-size: 2.4rem;
    line-height: 2.8rem;
    letter-spacing: -0.4px;
  }
  .fw-54, .fw-54 * {
    font-size: 3.6rem;
    line-height: 4.6rem;
  }
  .fw-24, .fw-24 * {
    font-size: 2rem;
  }
  .fw-19, .fw-19 * {
    font-size: 1.7rem;
    line-height: 2.2rem;
  }
  .btn {
    height: 5rem;
    padding: 0 2.8rem;
    font-size: 1.6rem;
  }
  .btn-lg {
    height: 6rem !important;
  }
  .btn-md {
    height: 5rem !important;
  }
  .btn-icon {
    padding: 0 2.4rem 0 1rem !important;
  }
  .btn-link {
    margin: 0 3.2rem;
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
  .badge {
    font-size: 1.3rem;
    height: 3.3rem;
  }
  .date {
    font-size: 1.5rem;
  }
  .mb-24 {
    margin-bottom: 2rem;
  }
  .mb-32 {
    margin-bottom: 2.4rem;
  }
  .mb-48 {
    margin-bottom: 3.2rem;
  }
  .mt-48{
    margin-top: 3.2rem;
  }
  .mt-64 {
    margin-top: 4rem;
  }
  .mb-64 {
    margin-bottom: 4rem;
  }
  .mb-70 {
    margin-bottom: 4.8rem;
  }
  .mb-96 {
    margin-bottom: 6rem;
  }
  .mt-96 {
    margin-top: 6rem;
  }
  .pb-128 {
    padding-bottom: 8.8rem;
  }
  .pt-128 {
    padding-top: 8.8rem;
  }
  .mt-128 {
    margin-top: 8.8rem;
  }
  .mb-128 {
    margin-bottom: 8.8rem;
  }
}
@media(min-width:768px) and (max-width:991.98px){
  body {
    font-size: 1.6rem;
    line-height: 2.6rem;
    letter-spacing: 0;
  }
  p {
    margin-bottom: 2rem;
  }
  ul > li {
    margin-bottom: 1.2rem;
  }
  .header-blue + main {
    padding-top: 7rem;
  }
  h1, .h1, .h1 * {
    font-size: 4.4rem;
    line-height: 5.4rem;
    letter-spacing: 0;
  }
  h2, .h2, .h2 * {
    font-size: 4rem;
    line-height: 5rem;
    letter-spacing: 0;
  }
  h3, .h3, .h3 * {
    font-size: 2.8rem;
    line-height: 3.8rem;
    letter-spacing: 0;
  }
  h4, .h4, .h4 * {
    font-size: 2.2rem;
    line-height: 3rem;
    letter-spacing: 0;
  }
  .fw-54, .fw-54 * {
    font-size: 3.6rem;
    line-height: 4.2rem;
  }
  .fw-28, .fw-28 * {
    font-size: 2.4rem;
    line-height: 2.8rem;
  }
  .fw-24, .fw-24 * {
    font-size: 2rem;
    letter-spacing: -0.3px;
  }
  .fw-19, .fw-19 * {
    font-size: 1.7rem;
    line-height: 2.2rem;
  }
  .btn {
    padding: 0 2.8rem;
    font-size: 1.6rem;
  }
  .btn-lg {
    height: 5.6rem !important;
  }
  .btn-md {
    height: 5rem !important;
  }
  .btn-icon {
    padding: 0 2.6rem 0 0.9rem !important;
  }
  .btn-link {
    margin: 0 3.2rem;
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
  .badge {
    font-size: 1.3rem;
    height: 3.2rem;
  }
  .date {
    font-size: 1.5rem;
  }
  .mb-24 {
    margin-bottom: 2rem;
  }
  .mb-32 {
    margin-bottom: 2.4rem;
  }
  .mb-48 {
    margin-bottom: 3.2rem;
  }
  .mt-48{
    margin-top: 3.2rem;
  }
  .mt-64 {
    margin-top: 4rem;
  }
  .mb-64 {
    margin-bottom: 4rem;
  }
  .mb-70 {
    margin-bottom: 4.8rem;
  }
  .mb-96 {
    margin-bottom: 5.6rem;
  }
  .mt-96 {
    margin-top: 5.6rem;
  }
  .pb-128 {
    padding-bottom: 6.4rem;
  }
  .pt-128 {
    padding-top: 6.4rem;
  }
  .mt-128 {
    margin-top: 6.4rem;
  }
  .mb-128 {
    margin-bottom: 6.4rem;
  }
}
@media(max-width:767.98px){
  body {
    font-size: 1.6rem;
    line-height: 2.6rem;
    letter-spacing: 0;
  }
  p {
    margin-bottom: 1.6rem;
  }
  ul > li {
    margin-bottom: 1.2rem;
  }
  .header-blue + main {
    padding-top: 7rem;
  }
  h1, .h1, .h1 * {
    font-size: 3.1rem;
    line-height: 4.1rem;
    letter-spacing: 0;
  }
  h2, .h2, .h2 * {
    font-size: 2.8rem;
    line-height: 3.8rem;
    letter-spacing: 0;
  }
  h3, .h3, .h3 * {
    font-size: 2.4rem;
    line-height: 3.4rem;
    letter-spacing: 0;
  }
  h4, .h4, .h4 * {
    font-size: 2.1rem;
    line-height: 2.8rem;
    letter-spacing: -0.2px;
  }
  h5,.h5,.h5 *{
    font-size: 1.8rem;
    line-height: 2.8rem;
    letter-spacing: 0;
  }
  h6,.h6,.h6 *{
    font-size: 1.4rem;
    line-height: 2.4rem;
    letter-spacing: 0;
  }
  .fw-54, .fw-54 * {
    font-size: 2.6rem;
    line-height: 3.6rem;
    letter-spacing: -0.05rem;
  }
  .fw-28, .fw-28 * {
    font-size: 2.2rem;
    line-height: 2.8rem;
    letter-spacing: 0;
  }
  .fw-24, .fw-24 * {
    font-size: 2rem;
    letter-spacing: 0;
  }
  .fw-19, .fw-19 * {
    font-size: 1.6rem;
    line-height: 2.1rem;
    letter-spacing: 0;
  }
  .btn {
    height: 4.8rem;
    padding: 0 2.8rem;
    font-size: 1.6rem;
  }
  .btn-lg {
    height: 5.4rem !important;
  }
  .btn-md {
    height: 4.8rem !important;
  }
  .btn-round-icon {
    width: 3.7rem;
    height: 3.7rem;
    margin-right: 1rem;
  }
  .btn-icon {
    padding: 0 2.4rem 0 1rem !important;
  }
  .btn-link {
    margin: 0 0 0 2rem;
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
  .badge {
    font-size: 1.2rem;
    height: 3rem;
    letter-spacing: -0.1px;
  }
  .date {
    font-size: 1.5rem;
  }
  .mb-20 {
    margin-bottom: 1.6rem;
  }
  .mb-24 {
    margin-bottom: 1.6rem;
  }
  .mb-32 {
    margin-bottom: 2.4rem;
  }
  .mb-48 {
    margin-bottom: 3.2rem;
  }
  .mt-48 {
    margin-top: 3.2rem;
  }
  .mt-64 {
    margin-top: 3.2rem;
  }
  .mb-64 {
    margin-bottom: 3.2rem;
  }
  .mb-70 {
    margin-bottom: 3.2rem;
  }
  .mb-96 {
    margin-bottom: 4rem;
  }
  .mt-96 {
    margin-top: 4rem;
  }
  .pt-128 {
    padding-top: 4.8rem;
  }
  .pb-128 {
    padding-bottom: 4.8rem;
  }
  .mt-128 {
    margin-top: 4.8rem;
  }
  .mb-128 {
    margin-bottom: 4.8rem;
  }
}
@media(max-width:575.98px){
  .btn-group {
    display: block;
  }
  .btn-icon {
    padding: 0 2.4rem !important;
  }
  .btn-link {
    margin: 0;
  }
}
#info-box {
  position: fixed;
  top: calc(50% - 200px);
  left: calc(50% - 160px);
  width: 320px;
  min-height: 120px;
  z-index: 1000;
  background-color: #fff;
  text-align: center;
  padding: 20px;
  display: none;
  box-sizing: border-box;
}