html {
  font-family: mr-eaves-modern, sans-serif;
  font-size: 0.5208333333vw;
}
@media (max-width: 991px) {
  html {
    font-size: 1.0090817356vw;
  }
}
@media (max-width: 575px) {
  html {
    font-size: 2.0833333333vw;
  }
}

body {
  font-size: 1.6rem;
  overflow-x: hidden;
}

.font-vox {
  font-family: vox, sans-serif;
}

@media (min-width: 576px) {
  .container-sm,
.container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container-md,
.container-sm,
.container {
    max-width: 72rem;
  }
}
@media (min-width: 992px) {
  .container-lg,
.container-md,
.container-sm,
.container {
    max-width: 114rem;
  }
}
@media (min-width: 1200px) {
  .container-xl,
.container-lg,
.container-md,
.container-sm,
.container {
    max-width: 114rem;
  }
}
.main-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background-color: #FFF;
}
.main-wrapper.blur {
  filter: url(#sharpBlur);
}
.main-wrapper.blur:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #1F4054;
  opacity: 0.9;
}

.main-container {
  padding-left: 9.2rem;
  padding-right: 9.2rem;
}
@media screen and (max-width: 991px) {
  .main-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.main-container-right {
  padding-right: 9.2rem;
}
@media screen and (max-width: 991px) {
  .main-container-right {
    padding-right: 1.5rem;
  }
}

.main-container-left {
  padding-left: 9.2rem;
}
@media screen and (max-width: 991px) {
  .main-container-left {
    padding-left: 1.5rem;
  }
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, hr {
  margin: 0;
}

input {
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input:focus {
  outline: none;
}

ul {
  padding-left: 2rem;
}
ul li {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  height: 100vh;
  background-image: url(../images/bg.jpg);
  background-size: cover;
  background-position: top center;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header {
    height: auto;
    padding-bottom: 5rem;
  }
}
@media screen and (max-height: 415px) {
  .header {
    height: auto;
    padding-bottom: 5rem;
  }
}
.header__logo {
  width: 68.2rem;
  height: 24rem;
  background-image: url(../images/logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  margin: 0 auto;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 100%;
    height: 20rem;
  }
}
@media screen and (max-height: 415px) {
  .header__logo {
    width: 100%;
    height: 20rem;
  }
}
.header__h1 {
  font-size: 7.5rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .header__h1 {
    font-size: 4.5rem;
    margin-top: -7rem;
    margin-bottom: 3rem;
  }
}
@media screen and (max-height: 415px) {
  .header__h1 {
    font-size: 4.5rem;
    margin-top: -7rem;
    margin-bottom: 3rem;
  }
}
.header__box-container {
  height: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header__box-container {
    height: auto;
  }
}
@media screen and (max-height: 415px) {
  .header__box-container {
    height: auto;
  }
}
.header__box {
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 65%;
  background-size: cover;
  display: flex;
  justify-content: center;
  box-shadow: 0 0 3rem rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  flex-direction: column;
}
.header__box::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 40rem;
  height: 30rem;
  background-repeat: no-repeat;
  background-size: contain;
}
.header__box--left {
  background-image: url(../images/left_bg.jpg);
  border-radius: 0 2rem 0 0;
  padding-right: 10rem;
  padding-left: 5rem;
  left: 0;
  transform: translateX(-50%);
  align-items: end;
}
@media screen and (max-width: 767px) {
  .header__box--left {
    padding-right: 5rem;
    border-radius: 0 2rem 2rem 0;
  }
}
@media screen and (max-height: 415px) {
  .header__box--left {
    padding-right: 5rem;
    border-radius: 0 2rem 2rem 0;
  }
}
.header__box--left::before {
  left: 0;
  background-image: url(../images/left_corner.png);
  background-position: left bottom;
}
.header__box.active {
  transform: translateX(0);
  transition: all 0.4s ease;
}
.header__box--right {
  right: 0;
  background-image: url(../images/right_bg.jpg);
  transform: translateX(50%);
  border-radius: 2rem 0 0 0;
  padding-left: 10rem;
  padding-right: 5rem;
  align-items: start;
}
.header__box--right .js-show-content {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__box--right {
    margin-left: 10%;
    padding-left: 5rem;
    border-radius: 2rem 0 0 2rem;
  }
  .header__box--right .js-show-content {
    display: block;
  }
}
@media screen and (max-height: 415px) {
  .header__box--right {
    margin-left: 10%;
    padding-left: 5rem;
    border-radius: 2rem 0 0 2rem;
  }
  .header__box--right .js-show-content {
    display: block;
  }
}
.header__box--right::before {
  right: 0;
  background-image: url(../images/right_corner.png);
  background-position: right bottom;
}
@media screen and (max-width: 767px) {
  .header__box {
    position: relative;
    width: 90%;
    transform: none;
    padding-top: 5rem;
    padding-bottom: 5rem;
    margin-bottom: 3rem;
  }
}
@media screen and (max-height: 415px) {
  .header__box {
    position: relative;
    width: 90%;
    transform: none;
    padding-top: 5rem;
    padding-bottom: 5rem;
    margin-bottom: 3rem;
  }
}
.header__box__header {
  font-size: 4.8rem;
  font-weight: 700;
  color: #FFF;
  padding-bottom: 1rem;
  text-transform: uppercase;
  position: relative;
}
.header__box__header::after {
  position: absolute;
  bottom: 0;
  width: 4rem;
  height: 0.5rem;
  content: "";
  display: block;
}
.header__box__header--left::after {
  right: 0;
  background-color: #55bec9;
}
.header__box__header--right::after {
  left: 0;
  background-color: #163d89;
}
.header__box__p {
  font-size: 3rem;
  font-weight: 400;
  color: #FFF;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 991px) {
  .header__box__p br {
    display: none;
  }
}
.header__box__cta {
  border-radius: 5rem;
  font-size: 2.35rem;
  color: #FFF;
  padding: 1.5rem 4rem 1.5rem 2rem;
  background-color: #163d89;
  position: relative;
  display: inline-block;
}
.header__box__cta:after {
  background-image: url(../images/chevron_white.png);
  background-size: 1rem 2rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: block;
  right: 2rem;
  top: 50%;
  width: 1rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.header__box__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background-color: #FFF;
  width: 6.2rem;
  height: 5.2rem;
  border: 0;
  outline: none;
  background-position: center center;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .header__box__button {
    display: none;
  }
}
@media screen and (max-height: 415px) {
  .header__box__button {
    display: none;
  }
}
.header__box__button::after {
  background-image: url(../images/chevron.png);
  background-size: 1rem 2rem;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 2rem;
}
.header__box__button--left {
  right: 0;
  border-radius: 2rem 0 0 2rem;
  display: none;
}
.header__box__button--left:after {
  transform: translate(-50%, -50%) rotate(-180deg);
}
.header__box__button--right {
  left: 0;
  border-radius: 0 2rem 2rem 0;
}

.footer {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 1.6rem;
  color: #FFF;
}