:root {
  --bluetext: #0A254D;
  --lightgrey: #F7F9FC;
  --linkblue: #10346E;
  --white: #fff;
  --black: #212021;
  --accent: #FFA40E;
}

html, body {
  font-family: "sofia-pro", sans-serif !important;
  font-size: 62.5% !important;
  overflow-x: hidden;
}

figure {
  margin: 0;
}

h1, h2, h3, h4, p {
  color: var(--black);
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: clamp(3rem, 2.64rem + 1.8vw, 4.8rem);
}

h2 {
  font-size: clamp(2.4rem, 2.12rem + 1.4vw, 3.8rem);
}

h3 {
  font-size: clamp(1.6rem, 1.52rem + 0.4vw, 2rem);
}

i, a, span {
  font-size: inherit;
}

small, .small {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
}

p {
  font-size: clamp(1.4rem, 1.28rem + 0.6vw, 2rem);
  letter-spacing: 0px;
  font-weight: 300;
  margin-bottom: 20px;
}

a {
  color: #003E7E;
}
a:hover, a:focus {
  color: var(--black);
  transition: color ease-out 0.3s;
}

img {
  width: 100%;
}

.blueCTA {
  border-radius: 40px;
  padding: 10px 20px;
  color: var(--white) !important;
  background-color: var(--linkblue);
  color: var(--white);
  display: inline-block;
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  text-decoration: none;
}
.blueCTA:hover, .blueCTA:focus {
  background-color: var(--bluetext) !important;
  transition: background-color ease-out 0.3s;
}
.blueCTA i {
  padding-left: 5px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1027px !important;
  }
}
@media (max-width: 576px) {
  .container {
    width: 90%;
  }
}

@keyframes pulse {
  from {
    transform: translateX(0px);
  }
  to {
    transform: translateX(3px);
  }
}
.navbar-nav {
  margin-bottom: -10px !important;
}

.navbar {
  width: 100%;
  z-index: 100;
  position: fixed;
  background-color: #0A254D;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
}
@media (max-width: 991px) {
  .navbar {
    border-bottom: 2px solid var(--white);
  }
}
.navbar span {
  display: flex;
  align-items: center;
}
.navbar ul {
  margin: 0 auto;
}
.navbar ul li {
  padding: 0 15px;
}
.navbar ul li.active > a {
  border-bottom: solid 5px var(--accent);
  font-weight: bold;
}
@media (max-width: 991px) {
  .navbar ul li.active > a {
    border-bottom: none;
    font-weight: 300;
  }
}
.navbar ul li a {
  text-decoration: none;
  padding-bottom: 20px;
  font-weight: 300;
}
.navbar .nav-link {
  color: var(--white);
  font-size: 1.4rem;
  padding: 1.9rem 1rem;
}
.navbar .blueCTA {
  color: var(--black) !important;
  background: var(--accent);
}
.navbar .blueCTA:hover, .navbar .blueCTA:focus {
  background: var(--white) !important;
}
@media (max-width: 991px) {
  .navbar .navbar-toggler {
    display: flex;
    align-items: center;
  }
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar .nav-link.buymobile {
  display: none !important;
}
@media (max-width: 991px) {
  .navbar .nav-link.buymobile {
    display: block !important;
  }
  .navbar .nav-link.buymobile i {
    padding-left: 5px;
  }
}
@media (max-width: 991px) {
  .navbar .nav-link.buydesktop {
    display: none !important;
  }
}
.navbar .registration {
  font-size: 12px;
  padding: 10px 25px;
  border-radius: 40px;
  color: var(--black);
  background: var(--accent);
  display: inline-block;
  text-decoration: none;
}
.navbar .registration:hover, .navbar .registration:focus {
  background-color: var(--white) !important;
  transition: background-color ease-out 0.3s;
}
@media (max-width: 991px) {
  .navbar .registration {
    display: none;
  }
}
.navbar .fa-bars {
  color: var(--white);
  font-size: 2rem;
}
.navbar #navbarNav {
  justify-content: space-between;
}
.navbar img {
  width: 40px;
}

header.overview {
  background: linear-gradient(180deg, #0A254D 0%, #05162F 81%, #05162E 100%);
  padding: 130px 0 95px;
}
header.overview .intro {
  width: 45%;
}
header.overview .blocks {
  width: 55%;
}
header.overview a {
  color: var(--black) !important;
  background: var(--accent);
}
header.overview a:focus, header.overview a:hover {
  background-color: var(--white) !important;
}
@media (max-width: 991px) {
  header.overview .intro {
    width: 60%;
  }
  header.overview .blocks {
    width: 40%;
  }
}
@media (max-width: 767px) {
  header.overview {
    padding-bottom: 60px;
  }
  header.overview .intro {
    width: 100%;
  }
  header.overview .intro-text {
    width: 70%;
    float: right;
  }
  header.overview .blocks {
    width: 300px;
    position: absolute;
    left: -150px;
    bottom: 30px;
  }
}
@media (max-width: 576px) {
  header.overview {
    padding-top: 100px;
  }
  header.overview .intro-text {
    width: 60%;
  }
}
@media (max-width: 440px) {
  header.overview .intro-text {
    width: 55%;
  }
  header.overview .blocks {
    width: 250px;
    left: -120px;
    bottom: 80px;
  }
}
header.overview .accent {
  color: var(--accent) !important;
}
header.overview .d-flex p {
  margin-bottom: 0;
}
header.overview .d-flex i {
  color: var(--accent);
  margin-right: 10px;
  font-size: 2rem;
}
@media (max-width: 500px) {
  header.overview .d-flex i {
    margin-right: 5px;
    font-size: 1.5rem;
  }
}
header.overview .hero_buy {
  padding: 10px 30px;
  margin-top: 10px;
}
header.overview .fforward {
  margin-bottom: 30px;
}
header.overview .d-flex.icon {
  margin-bottom: 30px;
}
header.overview .d-flex.icon:first-child {
  margin-right: 30px;
}
@media (max-width: 500px) {
  header.overview .d-flex.icon:first-child {
    margin-right: 15px;
  }
}
header.overview .row h1,
header.overview .row p {
  color: var(--white);
}

.attend {
  padding: 90px 0 40px;
}
.attend h1 {
  font-size: clamp(2.4rem, 2.12rem + 1.4vw, 3.8rem);
}
.attend h2 {
  margin-bottom: 70px;
}
.attend h3 {
  margin: 30px 0 20px;
}
@media (max-width: 576px) {
  .attend h3 {
    margin: 20px 0 10px;
  }
}
.attend h3 i {
  color: var(--accent);
  font-size: 2.5rem;
  margin-right: 5px;
}
.attend p.intro {
  max-width: 900px;
}
.attend .vidyard-player-container {
  max-width: 600px !important;
  margin-top: 30px !important;
}
@media (max-width: 768px) {
  .attend .vidyard-player-container {
    margin-top: 20px !important;
  }
}
.attend .row.perks {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .attend .row.perks {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .attend {
    padding: 30px 0 0;
  }
  .attend h2 {
    margin-bottom: 30px;
  }
  .attend h3 {
    margin: 20px 0 10px;
  }
  .attend .perks {
    gap: 45px;
  }
  .attend .perks div:last-of-type {
    margin-bottom: 45px;
  }
}

.champ {
  padding: 100px 0 65px 0;
}
@media (max-width: 768px) {
  .champ {
    padding: 50px 0 40px 0;
  }
}

.recap {
  background-color: var(--lightgrey);
  margin-top: 75px;
  padding: 110px 0 60px;
}
.recap h2 {
  color: var(--white);
  margin-bottom: 0;
}
.recap .heading {
  background-color: var(--bluetext);
  padding: 20px 40px;
  width: 400px;
  top: -60px;
}
.recap .subhead {
  margin-bottom: 0;
  color: var(--accent);
}
.recap .recap-img {
  position: relative;
  z-index: 1;
}
.recap .accent-1 {
  right: -50px;
  bottom: -50px;
  width: 600px;
}
.recap .accent-2 {
  z-index: 2;
  width: 160px;
  right: -40px;
  bottom: -80px;
}
.recap .stat-item {
  border-radius: 20px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.0784313725);
  width: 23%;
  margin-top: 75px;
  background-color: var(--white);
  padding-top: 20px;
}
.recap .stat-item span {
  font-size: 3rem;
  border-bottom: 4px solid var(--accent);
  padding: 0 10px;
  display: inline-block;
}
@media (max-width: 767px) {
  .recap {
    padding: 90px 0 40px;
  }
  .recap .heading {
    left: 0;
  }
  .recap .align-items-center {
    flex-direction: column-reverse;
    gap: 35px;
  }
  .recap .accent-1 {
    right: 100px;
    bottom: 0;
  }
  .recap .accent-2 {
    display: none;
  }
  .recap .recap-stats {
    gap: 25px;
    margin-top: 25px;
  }
  .recap .stat-item {
    margin-top: 0;
    width: calc(50% - 12.5px);
  }
}

.dualcta {
  background-color: var(--bluetext);
  padding: 100px 0 75px;
}
@media (max-width: 991px) {
  .dualcta .col-md-4 {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .dualcta {
    padding-bottom: 50px;
  }
  .dualcta .justify-content-between {
    gap: 90px;
  }
}
.dualcta .card-body {
  padding: 50px 35px 35px;
}
@media (max-width: 1200px) {
  .dualcta .card-body {
    padding: 50px 20px 20px;
  }
}
.dualcta p.card-text {
  min-height: 220px;
}
@media (max-width: 1018px) {
  .dualcta p.card-text {
    min-height: 190px;
  }
}
@media (max-width: 991px) {
  .dualcta p.card-text {
    min-height: unset;
  }
}
.dualcta h3 {
  margin-top: 15px;
}
@media (max-width: 768px) {
  .dualcta h3 {
    margin: 0 0 10px;
  }
}
.dualcta .card {
  border-radius: 0;
}
.dualcta .card-body #blue, .dualcta .card-body #yellow {
  width: 170px;
  top: -75px;
}
@media (max-width: 768px) {
  .dualcta .card-body #blue, .dualcta .card-body #yellow {
    width: 150px;
  }
}
.dualcta .card-body figure {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
.dualcta .card-body a {
  border-radius: 40px;
  background-color: var(--linkblue);
  display: inline-block;
  color: var(--white);
  font-size: 1.4rem;
  text-decoration: none !important;
  font-weight: 500;
  position: relative;
  padding: 10px 35px 10px 20px;
}
.dualcta .card-body a:hover {
  font-weight: 600;
}
.dualcta .card-body a:after {
  content: "\f061";
  padding-left: 5px;
  font-size: 1.4rem;
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  position: absolute;
}
.dualcta .card-body a:hover:after {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
.dualcta .card-body a:hover, .dualcta .card-body a:active {
  background-color: var(--bluetext);
  transition: background-color ease-out 0.3s;
}
.dualcta .card-body .visa-btn {
  padding: 10px 20px;
}
.dualcta .card-body .visa-btn i {
  padding-left: 5px;
}
.dualcta .card-body .visa-btn::after {
  content: "";
}

footer {
  background: var(--lightgrey);
}
footer p {
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
  padding: 20px 0 20px 0;
  margin: 0;
}

.agenda-ff header {
  padding: 80px 0 50px;
}
.agenda-ff header h1 {
  margin-top: 60px;
}
@media (max-width: 990px) {
  .agenda-ff header h1 {
    margin: 30px 0 20px;
  }
}
.agenda-ff header p {
  max-width: 700px;
}
.agenda-ff header .offers {
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 50px 30px 35px 30px;
  border-radius: 18px;
  background-color: var(--lightgrey);
  position: relative;
}
@media (max-width: 576px) {
  .agenda-ff header .offers {
    padding: 40px;
    max-width: 400px;
  }
}
.agenda-ff header .offers p {
  margin: 0;
  font-weight: 600;
  font-size: clamp(1.2rem, 1.1rem + 0.5vw, 1.7rem);
}
.agenda-ff header .offers figure.bino img {
  width: 100px;
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .agenda-ff header .offers figure.bino img {
    width: 80px;
    top: -35px;
  }
}
.agenda-ff header .offers ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 0;
  gap: 25px;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .agenda-ff header .offers ul {
    flex-direction: column;
    justify-content: start;
    flex-wrap: nowrap;
    gap: 5px;
    margin-bottom: 20px;
  }
}
.agenda-ff header .offers ul li {
  list-style-type: none;
  font-size: clamp(1.2rem, 1.1rem + 0.5vw, 1.7rem);
  display: flex;
  align-items: center;
}
.agenda-ff header .offers ul li i {
  --fa-primary-color: var(--black);
  --fa-secondary-opacity: 1;
  --fa-secondary-color: var(--accent);
  margin-right: 8px;
}
.agenda-ff .agenda {
  background: var(--bluetext);
  padding: 80px 0 50px;
}
@media (max-width: 990px) {
  .agenda-ff .agenda {
    padding: 50px 0 30px;
  }
}
@media (max-width: 650px) {
  .agenda-ff .agenda {
    padding-bottom: 10px;
  }
}
.agenda-ff .agenda h2, .agenda-ff .agenda p {
  color: white;
}
.agenda-ff .agenda .card-body {
  background-color: var(--bluetext);
}
@media (max-width: 1140px) {
  .agenda-ff .agenda .card.giving p {
    padding-top: 100px !important;
  }
}
@media (max-width: 650px) {
  .agenda-ff .agenda .pad {
    padding-left: 30px !important;
    padding-top: 35px;
    padding-bottom: 20px;
  }
}
@media (max-width: 650px) {
  .agenda-ff .agenda .hori-timeline {
    margin-left: 30px;
  }
}
.agenda-ff .agenda .hori-timeline .events .event-list {
  display: block;
  position: relative;
  text-align: center;
  margin-right: 0;
  width: 22%;
}
@media (max-width: 650px) {
  .agenda-ff .agenda .hori-timeline .events .event-list {
    width: 100%;
    text-align: left;
    border-left: 2px solid var(--white);
  }
  .agenda-ff .agenda .hori-timeline .events .event-list:last-child {
    border: unset;
  }
}
.agenda-ff .agenda .hori-timeline .events .event-list .event-date {
  background: var(--accent);
  border-radius: 50%;
  height: 20px;
  width: 20px;
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  margin: 0 auto;
  z-index: 1;
}
@media (max-width: 650px) {
  .agenda-ff .agenda .hori-timeline .events .event-list .event-date {
    right: auto;
    top: -15px;
    left: -10px;
  }
}
@media (min-width: 1140px) {
  .agenda-ff .agenda .hori-timeline .events .event-list {
    display: inline-block;
  }
  .agenda-ff .agenda .lrg {
    width: 48% !important;
  }
}
.agenda-ff .agenda .card {
  border: none;
  margin: 70px 0 20px;
}
@media (max-width: 650px) {
  .agenda-ff .agenda .card {
    margin: 30px 0 0;
  }
}
@media (max-width: 576px) {
  .agenda-ff .agenda .card {
    margin: 0;
  }
}
.agenda-ff .agenda .card .events {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 650px) {
  .agenda-ff .agenda .card .events {
    display: block;
  }
}
.agenda-ff .agenda .card .px-4 {
  position: relative;
}
.agenda-ff .agenda .card p {
  font-size: 1.4rem;
}
.agenda-ff .agenda .card p:first-of-type {
  padding-top: 20px;
  font-weight: 600;
}
@media (max-width: 650px) {
  .agenda-ff .agenda .card p:first-of-type {
    padding-top: 0;
    margin-bottom: 5px;
  }
}
.agenda-ff .agenda .card .logos-flex {
  display: flex;
}
@media (max-width: 500px) {
  .agenda-ff .agenda .card .logos-flex {
    flex-direction: column;
  }
}
.agenda-ff .agenda .card .logos-flex figure {
  flex: 1;
}
.agenda-ff .agenda .card .logos-flex figure img {
  max-width: 150px;
}
.agenda-ff .agenda .card .logos-flex figure img.last {
  max-width: 80px !important;
}
.agenda-ff .agenda .top-date {
  position: absolute;
  top: -60px;
  width: 100%;
}
.agenda-ff .agenda .top-date i {
  color: var(--accent);
  font-size: 3.5rem;
}
@media (max-width: 650px) {
  .agenda-ff .agenda .top-date {
    top: -10px;
    padding-left: 30px !important;
  }
  .agenda-ff .agenda .top-date i {
    font-size: 3rem;
  }
}
.agenda-ff .agenda li::after {
  content: "";
  position: absolute;
  width: 110%;
  height: 2px;
  background-color: var(--white);
  top: 0px;
  left: -64%;
}
@media (max-width: 650px) {
  .agenda-ff .agenda li::after {
    display: none;
  }
}
.agenda-ff .agenda li:nth-child(1)::after {
  display: none;
}
.agenda-ff .check-out {
  padding: 80px 0;
  background-color: var(--lightgrey);
}
@media (max-width: 990px) {
  .agenda-ff .check-out {
    padding: 40px 0;
  }
  .agenda-ff .check-out h2 {
    margin-bottom: 20px;
  }
}
.agenda-ff .check-out figure {
  max-width: 450px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .agenda-ff .check-out figure {
    max-width: 300px;
  }
}
.agenda-ff .check-out h3 {
  margin-bottom: 20px;
}
.agenda-ff .check-out a {
  text-decoration: none !important;
  font-weight: 500;
  position: relative;
  font-weight: 600;
}
.agenda-ff .check-out a:hover {
  font-weight: 600;
}
.agenda-ff .check-out a:after {
  content: "\f061";
  padding-left: 5px;
  font-size: 1.4rem;
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  position: absolute;
}
.agenda-ff .check-out a:hover:after {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
.agenda-ff .check-out a:after {
  font-size: 1.6rem;
  bottom: 3px;
  top: auto;
}
@media (max-width: 576px) {
  .agenda-ff .check-out a:after {
    font-size: 1.2rem;
    bottom: 0;
  }
}
.agenda-ff .recommend {
  background-color: var(--white);
}

.recommend {
  background: var(--lightgrey);
  padding: 80px 0;
}
@media (max-width: 576px) {
  .recommend {
    padding: 40px 0;
  }
}
.recommend p {
  font-size: clamp(1.5rem, 1.32rem + 0.9vw, 2.4rem);
  max-width: 990px;
  margin: 0 auto;
}
.recommend p strong {
  font-weight: 600;
}

.passes h1 {
  max-width: 400px;
}
.passes .includes {
  padding: 160px 0 70px 0;
}
@media (max-width: 990px) {
  .passes .includes {
    padding: 110px 0 40px 0;
  }
}
.passes .includes ul {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}
.passes .includes ul li {
  margin-bottom: 20px;
}
.passes .includes ul i {
  font-size: 2rem;
  color: var(--linkblue);
  margin-right: 20px;
  padding-top: 2px;
}
.passes .includes ul .fa-podium-star {
  font-size: 2.5rem;
}
.passes .includes .small:first-of-type {
  padding-left: 40px;
  margin-top: 20px;
}
@media (max-width: 990px) {
  .passes .includes .small:first-of-type {
    margin: 0 0 30px;
  }
}
.passes .includes .early .smbrick {
  position: absolute;
  top: -45px;
  right: 30px;
  max-width: 70px;
}
@media (max-width: 990px) {
  .passes .includes .early {
    margin-bottom: 20px;
  }
  .passes .includes .early .smbrick {
    max-width: 50px;
    top: -25px;
    right: -25px;
  }
}
.passes .includes .regular {
  background: #F7F9FC;
  border: none !important;
}
.passes .includes .regular .price,
.passes .includes .regular .time,
.passes .includes .regular .type {
  opacity: 0.3;
}
@media (max-width: 990px) {
  .passes .includes .regular {
    margin-bottom: 30px;
  }
}
.passes .includes .pricing {
  border: 4px solid var(--accent);
  border-radius: 20px;
  padding: 30px 50px;
  position: relative;
  margin-bottom: 30px;
}
.passes .includes .pricing a {
  padding: 10px 18px;
}
@media (max-width: 990px) {
  .passes .includes .pricing {
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
  }
}
@media (max-width: 450px) {
  .passes .includes .pricing {
    padding: 20px;
  }
  .passes .includes .pricing .d-flex:nth-child(2) {
    flex-direction: column;
    position: relative;
  }
  .passes .includes .pricing .d-flex:nth-child(2) .blueCTA {
    position: absolute;
    bottom: -50px;
    padding: 10px 35px;
  }
}
@media (max-width: 350px) {
  .passes .includes .pricing .blueCTA {
    padding: 10px 25px !important;
  }
}
.passes .includes .pricing span.save {
  position: absolute;
  width: 150px;
  top: -25px;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 40px;
  background-color: var(--accent);
  display: inline-block;
  font-size: 2rem;
  padding: 8px 30px;
  text-align: center;
}
@media (max-width: 990px) {
  .passes .includes .pricing span.save {
    font-size: 1.5rem;
    padding: 8px 20px;
    width: unset;
  }
}
.passes .includes .pricing .type {
  margin-bottom: 10px;
  font-size: 2.4rem;
}
@media (max-width: 990px) {
  .passes .includes .pricing .type {
    font-size: 1.5rem;
  }
}
.passes .includes .pricing .time {
  margin-bottom: 0;
}
.passes .includes .pricing .price {
  font-size: 7.8rem;
  margin-bottom: 0;
}
@media (max-width: 990px) {
  .passes .includes .pricing .price {
    font-size: 4.8rem;
    justify-content: flex-end;
  }
}
.passes .includes .pricing .price span {
  font-size: 4rem;
  margin-top: 5px;
}
@media (max-width: 991px) {
  .passes .includes .pricing .price span {
    font-size: 3rem;
  }
}
.passes .check-out {
  background: var(--bluetext);
  padding: 50px 0;
}
.passes .check-out figure {
  max-width: 450px;
}
@media (max-width: 576px) {
  .passes .check-out figure {
    max-width: 300px;
  }
}
.passes .check-out h2 {
  margin-bottom: 20px;
}
.passes .check-out p {
  margin-bottom: 30px;
}
.passes .check-out h2, .passes .check-out p {
  color: var(--white);
}
.passes .check-out a {
  text-decoration: none !important;
  font-weight: 500;
  position: relative;
  color: var(--accent);
  font-weight: 600 !important;
}
.passes .check-out a:hover {
  font-weight: 600;
}
.passes .check-out a:after {
  content: "\f061";
  padding-left: 5px;
  font-size: 1.4rem;
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  position: absolute;
}
.passes .check-out a:hover:after {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
.passes .check-out a:after {
  font-size: 1.6rem;
  top: auto;
  bottom: 3px;
}
@media (max-width: 576px) {
  .passes .check-out a:after {
    font-size: 1.2rem;
    bottom: 0;
  }
}
.passes .hotel-book {
  padding: 90px 0 140px;
}
@media (max-width: 990px) {
  .passes .hotel-book {
    padding: 50px 0 30px;
  }
  .passes .hotel-book h2 {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .passes .hotel-book .hide {
    display: none;
  }
}
.passes .hotel-book a {
  background-color: var(--linkblue);
  color: var(--white) !important;
  padding: 10px 25px;
  margin: 20px 0;
}
.passes .hotel-book a:hover, .passes .hotel-book a:active {
  background-color: var(--bluetext) !important;
}
.passes .hotel-book p:nth-child(n+4) {
  font-size: clamp(1.2rem, 1.1rem + 0.5vw, 1.7rem);
}

@media (max-width: 990px) {
  .approval h1 {
    margin-bottom: 20px;
  }
}
.approval .bgsolid {
  background-color: var(--lightgrey);
  padding: 30px 60px;
  margin-bottom: 20px;
  border-radius: 30px;
  margin-bottom: 170px;
}
@media (max-width: 990px) {
  .approval .bgsolid {
    margin-bottom: 90px;
  }
}
@media (max-width: 768px) {
  .approval .bgsolid {
    padding: 20px 40px;
  }
}
@media (max-width: 576px) {
  .approval .bgsolid {
    margin-bottom: 60px;
  }
}
.approval .header-cont {
  position: relative;
}
.approval .header-cont figure.summit {
  width: 400px;
  position: absolute;
  bottom: -100px;
  right: 0;
}
@media (max-width: 990px) {
  .approval .header-cont figure.summit {
    width: 300px;
    bottom: -260px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .approval .header-cont figure.summit {
    width: 200px;
    bottom: -190px;
    margin-left: auto;
  }
}
.approval header {
  padding: 170px 0 30px 0;
}
@media (max-width: 990px) {
  .approval header {
    padding: 100px 0 200px 0;
  }
}
@media (max-width: 768px) {
  .approval header {
    padding: 100px 0 150px 0;
  }
}
.approval header figure {
  padding-top: 30px;
}
@media (max-width: 576px) {
  .approval header figure {
    max-width: 400px;
    margin-left: 20%;
  }
}
.approval .signimg {
  position: relative;
}
.approval .signimg a {
  padding: 10px 20px !important;
}
.approval .signimg a::after {
  display: none;
}
.approval .template {
  padding: 40px 40px 20px 40px;
  border-bottom: 1px solid #CCCCCC;
}
@media (max-width: 768px) {
  .approval .template {
    padding: 35px 0 15px;
  }
}
.approval .template h3 {
  margin-bottom: 10px;
}
.approval .template figure {
  max-width: 214px;
  position: absolute;
  bottom: -80px;
  left: -100px;
}
@media (max-width: 576px) {
  .approval .template figure {
    max-width: 150px;
    left: -60px;
    bottom: -50px;
  }
}
.approval .template:last-child {
  border-bottom: none;
}
.approval .template a {
  background-color: var(--linkblue);
  color: var(--white) !important;
  text-decoration: none !important;
  font-weight: 500;
  position: relative;
  padding: 10px 35px 10px 20px;
}
.approval .template a:hover {
  font-weight: 600;
}
.approval .template a:after {
  content: "\f061";
  padding-left: 5px;
  font-size: 1.4rem;
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  position: absolute;
}
.approval .template a:hover:after {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
.approval .template a:hover, .approval .template a:focus {
  background-color: var(--bluetext) !important;
}

.slides-ff .height {
  min-height: 100vh;
}
.slides-ff .overview {
  margin-bottom: 70px;
  padding: 80px 0;
  overflow: hidden;
}
.slides-ff .overview .container {
  position: relative;
}
.slides-ff .overview figure.shape_one,
.slides-ff .overview figure.shape_two,
.slides-ff .overview figure.shape_three,
.slides-ff .overview figure.shape_four {
  position: absolute;
}
@media (max-width: 767px) {
  .slides-ff .overview figure.shape_one,
  .slides-ff .overview figure.shape_two,
  .slides-ff .overview figure.shape_three,
  .slides-ff .overview figure.shape_four {
    display: none;
  }
}
.slides-ff .overview figure.shape_one {
  max-width: 250px;
  top: 100px;
  left: -50px;
}
.slides-ff .overview figure.shape_two {
  max-width: 230px;
  bottom: 80px;
  right: -40px;
}
.slides-ff .overview figure.shape_three {
  max-width: 200px;
  top: 50px;
  right: 40px;
}
.slides-ff .overview figure.shape_four {
  max-width: 300px;
  bottom: 80px;
  left: 40px;
}
.slides-ff .overview h1 {
  color: #ffffff;
  text-align: center;
  font-size: 3rem;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .slides-ff .row {
    margin-bottom: 60px;
  }
}
.slides-ff .row div.card {
  background-color: #F3F6F9 !important;
  border: none;
  transition: 0.2s;
}
@media (max-width: 767px) {
  .slides-ff .row div.card {
    margin-bottom: 30px;
  }
}
.slides-ff .row div.card:hover {
  margin-top: -10px;
  box-shadow: 10px 10px 33px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .slides-ff .row div.card:hover {
    margin-top: auto;
  }
}
.slides-ff .row div.card figure {
  margin-bottom: 0;
}
.slides-ff .row div.card a.link-cover {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 10000;
  cursor: pointer;
}
.slides-ff .row div.card a.link-cover:hover ~ .text-start a:after {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
.slides-ff .row div.card .text-start {
  padding: 30px 0 30px 20px;
  background-color: #F3F6F9;
  margin: 0;
}
.slides-ff .row div.card .text-start a {
  background: #14499A;
  color: white;
  border-radius: 27px;
  text-align: center;
  font-size: 1.6rem;
  padding: 0px 35px 0 20px;
  font-weight: 600 !important;
  display: inline-block;
  height: 43px;
  line-height: 43px;
  width: auto;
  text-decoration: none;
  text-decoration: none !important;
  font-weight: 500;
  position: relative;
}
.slides-ff .row div.card .text-start a:hover {
  font-weight: 600;
}
.slides-ff .row div.card .text-start a:after {
  content: "\f061";
  padding-left: 5px;
  font-size: 1.4rem;
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  position: absolute;
}
.slides-ff .row div.card .text-start a:hover:after {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.carousel {
  padding: 30px 0 40px 0;
  background-color: var(--lightgrey);
}
.carousel .owl-dots {
  display: none;
}
.carousel .owl-dots .owl-dot {
  padding: 3px !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  cursor: default !important;
}
@media (max-width: 500px) {
  .carousel .owl-dots {
    display: block;
  }
}
.carousel .owl-nav.disabled {
  display: block !important;
}
.carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 650px) {
  .carousel .owl-nav {
    position: relative;
    max-width: 230px;
    margin: 0 auto;
  }
}
.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  cursor: default;
}
@media (max-width: 500px) {
  .carousel .owl-nav .owl-prev,
  .carousel .owl-nav .owl-next {
    position: absolute;
    top: -10px;
  }
}
.carousel .owl-nav .owl-prev span,
.carousel .owl-nav .owl-next span {
  display: none;
}
.carousel .owl-nav .owl-prev:before, .carousel .owl-nav .owl-next:before {
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 50%;
  background: var(--linkblue);
  cursor: pointer;
  content: "\f053";
  font-family: "Font Awesome 6 Pro";
  font-size: 1.5rem;
  line-height: 2;
}
.carousel .owl-nav .owl-next:before {
  content: "\f054";
}
@media (max-width: 500px) {
  .carousel .owl-nav .owl-prev {
    left: 0;
  }
}
@media (max-width: 500px) {
  .carousel .owl-nav .owl-next {
    right: 0;
  }
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.item {
  background: white;
  padding: 30px;
  border-radius: 30px;
  min-height: 300px;
  box-shadow: 3px 3px 25px rgba(0, 0, 0, 0.12);
}
.item p {
  font-size: clamp(1.4rem, 1.34rem + 0.3vw, 1.7rem);
}
@media (max-width: 1200px) {
  .item {
    min-height: 250px;
  }
}
@media (max-width: 460px) {
  .item {
    min-height: 350px;
  }
}

.owl-stage-outer {
  margin-left: -50%;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
@media (max-width: 650px) {
  .owl-stage-outer {
    margin-left: auto;
  }
}

.person_feature {
  position: absolute;
  bottom: 30px;
}
.person_feature p {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  margin-bottom: 5px;
}
@media (max-width: 460px) {
  .person_feature p {
    max-width: 200px;
  }
}
