*,
::after,
::before {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 14px;
}
@media screen and (min-width: 320px) {
  html {
    font-size: calc(14px + strip-unit(4px) * ((100vw - 320px) / strip-unit(1080px)));
  }
}
@media screen and (min-width: 1400px) {
  html {
    font-size: 18px;
  }
}

body {
  position: relative;
  padding: 0;
  margin: 0;
  color: var(--txt-base);
  background-color: var(--bg-color);
  font-family: "Inter", sans-serif !important;
  font-size: 1rem !important;
}
body.light {
  --bg-light: #FFFFFF;
  --bg-color: #FAFAFA;
  --bg-muted: #E4E4E4;
  --nav-border: #D6D6D6;
  --txt-base: #202124;
  --txt-muted: #818991;
  --box-shadow: rgba(128, 128, 128, 0.15);
  --filter: 1;
}
body.dark {
  --bg-light: #161616;
  --bg-color: #202124;
  --bg-muted: #333232;
  --nav-border: rgba(129, 99, 1, 0.5);
  --txt-base: #EFF0F1;
  --txt-muted: #C0C5CA;
  --box-shadow: rgba(61, 61, 61, 0.8);
  --filter: 0.4;
}

.text--title {
  font-size: 2rem;
}
.text--qhse {
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
  font-size: 1.5rem;
}

.header {
  position: relative;
}
.header__banner {
  display: block;
  position: relative;
  margin-top: 4.5rem;
  width: 100%;
  height: 230px;
}
.header__nav {
  display: block;
  width: 100%;
  position: fixed;
  top: 0;
  background-color: white;
  z-index: 5;
  box-shadow: 0px 3px 10px 0px rgba(128, 128, 128, 0.15);
  -moz-box-shadow: 0px 3px 10px 0px rgba(128, 128, 128, 0.15);
  -webkit-box-shadow: 0px 3px 10px 0px rgba(128, 128, 128, 0.15);
}
@media (min-width: 576px) {
  .header__banner {
    height: 350px;
  }
}
@media (min-width: 768px) {
  .header__banner {
    margin-top: 0;
  }
  .header__nav {
    position: sticky;
    top: 0;
  }
}
@media (min-width: 992px) {
  .header__banner {
    height: 600px;
  }
}
@media (min-width: 1400px) {
  .header__banner {
    height: calc(100vh - 4.75rem);
  }
}

.nav {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.nav__logo {
  display: block;
}
.nav__logo > img {
  width: auto;
  height: 3.5rem;
}
.nav__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 5.3rem;
  right: 0;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0 0 0 0.5rem;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.nav__list.is-shown {
  opacity: 1;
  visibility: visible;
}
.nav__list__item {
  text-align: right;
  display: block;
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}
.nav__list__link {
  display: block;
  width: 100%;
  padding: 1.5rem 2rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--txt-base);
}
.nav__list__link.is-active {
  color: #0d6efd;
}
.nav__list .hvr-border-center {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  transform: perspective(1px) translateZ(0);
  -o-transform: perspective(1px) translateZ(0);
  -moz-transform: perspective(1px) translateZ(0);
  -webkit-transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px 0 rgb(0 0 0 / 0%);
  -moz-box-shadow: 0 0 1px 0 rgb(0 0 0 / 0%);
  -webkit-box-shadow: 0 0 1px 0 rgb(0 0 0 / 0%);
}
.nav__list .hvr-border-center::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 100%;
  right: 0;
  bottom: 0;
  height: 3px;
  background: #0d6efd;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.nav__list .hvr-border-center:hover::before, .nav__list .hvr-border-center:focus::before, .nav__list .hvr-border-center:active::before {
  left: 0px;
  right: 0px;
}
.nav__toggle {
  cursor: pointer;
  border: none;
  padding: 0.5rem;
  background-color: transparent;
}
.nav__toggle > .hamburger-menu {
  display: inline-block;
  width: 30px;
  height: 25px;
  position: relative;
  transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.nav__toggle > .hamburger-menu span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background-color: black;
  border-radius: 0.5rem;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.nav__toggle > .hamburger-menu span:nth-child(1) {
  top: 0px;
}
.nav__toggle > .hamburger-menu span:nth-child(2), .nav__toggle > .hamburger-menu span:nth-child(4) {
  top: 50%;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.nav__toggle > .hamburger-menu span:nth-child(3) {
  bottom: 0;
}
.nav__toggle > .hamburger-menu.active span:nth-child(1), .nav__toggle > .hamburger-menu.active span:nth-child(3) {
  opacity: 0;
  visibility: hidden;
  top: 50%;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.nav__toggle > .hamburger-menu.active span:nth-child(2) {
  transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.nav__toggle > .hamburger-menu.active span:nth-child(4) {
  transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.nav__theme {
  position: fixed;
  top: 50%;
  right: 0;
  padding: 0.5rem 0.65rem;
  border-radius: 0.5rem 0 0 0.5rem;
  outline: transparent;
  border: solid 2px var(--bg-color);
  background-color: var(--txt-muted);
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.nav__theme > i {
  color: var(--bg-color);
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .nav {
    padding: 0;
    justify-content: center;
  }
  .nav__logo {
    display: none;
  }
  .nav__list {
    position: relative;
    top: 0;
    opacity: 1;
    visibility: visible;
  }
  .nav__list__item {
    display: inline-block;
    border-bottom: none;
  }
  .nav__list__link {
    padding: 1.5rem 1.5rem;
    display: inline-block;
    width: auto;
  }
  .nav__list .hvr-border-center::before {
    left: 51%;
    right: 51%;
    bottom: 1rem;
  }
  .nav__list .hvr-border-center:hover::before, .nav__list .hvr-border-center:focus::before, .nav__list .hvr-border-center:active::before {
    left: 26px;
    right: 26px;
  }
  .nav__toggle {
    display: none;
  }
}

.footer--email {
  display: block;
  color: var(--txt-base);
  text-decoration: none;
}
.footer--icon {
  text-decoration: none;
  color: black;
  transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
}
.footer--icon > img {
  width: auto;
  height: 2.5rem;
}
.footer--icon:hover {
  color: #0d6efd !important;
}
.footer--icon:hover > img {
  filter: invert(37%) sepia(100%) saturate(4480%) hue-rotate(209deg) brightness(101%) contrast(98%) !important;
}

.swiper--banner, .swiper-slide {
  width: 100%;
  height: 100%;
}
.swiper-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.swiper-pagination {
  bottom: 1.25rem !important;
}
.swiper-pagination-bullet {
  margin: 0 0.5rem !important;
  width: 0.85rem !important;
  height: 0.85rem !important;
  background-color: white !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  width: 0.85rem !important;
  height: 0.85rem !important;
  background-color: dodgerblue !important;
}

.wrapper--form, .wrapper--wrap, .wrapper--full {
  display: block;
  position: relative;
  height: auto;
}

.wrapper--full {
  width: 100%;
}
.wrapper--wrap {
  width: 92%;
  max-width: 1440px;
  margin: 0 auto;
}
.wrapper--form {
  width: 92%;
  max-width: 800px;
  margin: 0 auto;
}
.wrapper--background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.wrapper--background > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(var(--filter));
}

.card--partner {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 2rem 1rem;
  text-align: center;
  background-color: #FAFAFA;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.card--partner > img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 5.5rem;
  margin: 0 auto;
}
.card--partner:hover {
  box-shadow: 0px 0 15px 0px rgba(128, 128, 128, 0.15);
  -moz-box-shadow: 0px 0 15px 0px rgba(128, 128, 128, 0.15);
  -webkit-box-shadow: 0px 0 15px 0px rgba(128, 128, 128, 0.15);
}

.button-custom {
  position: relative;
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  color: #fff;
  border-radius: 0.4rem;
  border: solid 3px #0078d0;
  background-color: #0078d0;
  cursor: pointer;
  outline: 0;
  padding: 0.45rem 2.75rem;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
.button-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #ffffff;
  opacity: 0.18;
}
.button-custom:hover {
  color: white;
}
.button-custom--qhse {
  padding: 0.5rem 0 !important;
  width: 200px;
}
.button-custom--qhse-detail {
  padding: 0.5rem 0 !important;
  width: 150px;
}
.button-custom--activities {
  padding: 0.5rem 0 !important;
  width: 200px;
}
@media (min-width: 768px) {
  .button-custom--qhse {
    padding: 0.75rem 0 !important;
  }
  .button-custom--qhse-detail {
    width: 200px;
  }
}
@media (min-width: 1200px) {
  .button-custom--qhse {
    width: 300px;
  }
  .button-custom--activities {
    width: 240px;
  }
}

/* generated by https://loading.io/ */
@keyframes spinner-animation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.loader {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999;
  background-color: rgba(255, 255, 255, 0.75);
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.loader.hide {
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.loader--wrapper {
  width: 180px;
  height: 180px;
  display: inline-block;
  overflow: hidden;
  background: none;
}
.loader--item {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0;
}
.loader--item div {
  box-sizing: content-box;
  left: 82.8px;
  top: 50.4px;
  position: absolute;
  animation: spinner-animation linear 1.3333333333s infinite;
  background: #0571be;
  width: 14.4px;
  height: 14.4px;
  border-radius: 7.2px/7.2px;
  transform-origin: 7.2px 39.6px;
}
.loader--item div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.2s;
  background: #0571be;
}
.loader--item div:nth-child(2) {
  transform: rotate(36deg);
  animation-delay: -1.0666666667s;
  background: #0571be;
}
.loader--item div:nth-child(3) {
  transform: rotate(72deg);
  animation-delay: -0.9333333333s;
  background: #0571be;
}
.loader--item div:nth-child(4) {
  transform: rotate(108deg);
  animation-delay: -0.8s;
  background: #0571be;
}
.loader--item div:nth-child(5) {
  transform: rotate(144deg);
  animation-delay: -0.6666666667s;
  background: #0571be;
}
.loader--item div:nth-child(6) {
  transform: rotate(180deg);
  animation-delay: -0.5333333333s;
  background: #0571be;
}
.loader--item div:nth-child(7) {
  transform: rotate(216deg);
  animation-delay: -0.4s;
  background: #0571be;
}
.loader--item div:nth-child(8) {
  transform: rotate(252deg);
  animation-delay: -0.2666666667s;
  background: #0571be;
}
.loader--item div:nth-child(9) {
  transform: rotate(288deg);
  animation-delay: -0.1333333333s;
  background: #0571be;
}
.loader--item div:nth-child(10) {
  transform: rotate(324deg);
  animation-delay: 0s;
  background: #0571be;
}

/* generated by https://loading.io/ */
.qhse__wrapper {
  position: relative;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 600px;
  transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.qhse__button {
  display: block;
  text-align: center;
  width: 100%;
  position: relative;
  text-align: center;
  text-decoration: none;
  background-color: transparent;
  border: transparent;
}
.qhse__button:first-child {
  margin-bottom: 2rem;
}
.qhse__image {
  display: inline-block;
  padding: 1.75rem;
  border-radius: 5rem;
  background-color: #808184;
}
.qhse__image > img {
  width: auto;
  height: 4rem;
}
.qhse__text {
  font-weight: 600;
  color: #808184;
  vertical-align: middle;
}

.partner-title {
  margin-bottom: 2rem;
}
.partner-title img, .partner-title h2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.partner-title img {
  top: -1rem;
  z-index: -1;
  width: auto;
  height: 4rem;
}
.partner-title h2 {
  top: -0.45rem;
  color: white;
}

@media (min-width: 576px) {
  .qhse__wrapper {
    position: absolute;
    top: -3rem;
  }
  .qhse__button {
    display: inline-block;
    width: 200px;
  }
  .qhse__button:first-child {
    margin-bottom: 0;
  }
}
.google-map {
  width: 100%;
  height: 400px;
}
.google-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@media (min-width: 992px) {
  .google-map {
    height: 450px;
  }
}

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