/* BASE
================================================== */

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica.ttf");
}

@font-face {
  font-family: "Marcellus";
  src: url("../fonts/Marcellus-Regular.ttf");
}

html {
    scroll-padding-top: 3rem;
}

body {
    line-height: 1.75;
    color: #575757;
    background: #fff;
}

body,
input,
button,
textarea {
    font-family: 'Helvetica', Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    line-height: 1.25;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

p,
ul,
ol,
table,
figure {
    margin-bottom: 1.5rem;
}

a,
input,
textarea,
button {
    transition: color 0.3s, background-color 0.3s, border-color 0.3s, opacity 0.3s;
}

a {
    text-decoration: none;
    color: #cda053;
}

a:hover {
    color: #00447c;
}

*,
*:focus {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

figure img {
    width: 100%;
}

strong,
b {
    font-weight: 600;
}

p strong {
    font-weight: 700;
    color: #00447c;
}

p a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.c-darkblue {
    color: #00447c;
}

.c-white {
    color: #fff;
}

.c-darkgrey {
    color: #838383;
}

.bg-darkblue {
    background-color: #00447c;
}

/* LAYOUT
================================================== */

/*
	Header
*/

.header {
    position: sticky;
    display: flex;
    align-items: center;
    z-index: 1010;
    top: 0;
    right: 0;
    left: 0;
    height: 4.5rem;
    background: #fbf8f2;
    transition: all 0.3s;
}

.header > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    height: 2rem;
    margin-right: auto;
}

.header__logo img,
.header__logo svg {
    width: auto;
    height: 100%;
}


/*
    Navigation
*/

.mobile-menu-btn {
    display: flex;
    width: 1.75rem;
    height: 1.75rem;
    margin-left: 1.5rem;
    transition: all 0.3s;
}

.mobile-menu-btn svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: #00447c;
}

.main-menu {
    display: flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 500;
}

.main-menu ul {
    margin-bottom: 0;
    padding: 0;
    list-style-type: none;
}

.main-menu li {
    position: relative;
}

.main-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    height: 4.5rem;
    padding: 0;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    color: #00447c;
}

.main-menu > ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-right: calc(0.5rem + 3.5vw);
}

.main-menu ul > li:hover > a,
.main-menu ul > li.active > a {
    color: #00447c;
    border-bottom-color: #00447c;
}

.main-menu ul ul {
    position: absolute;
    z-index: 1;
    visibility: hidden;
    top: 100%;
    left: 0;
    min-width: 15rem;
    margin-left: -2rem;
    padding: 1rem 2rem;
    text-align: left;
    background: #fff;
    opacity: 0;
    transition: all 0.3s;
}

.main-menu ul ul li a {
    padding: 0.25rem 0;
}

.main-menu ul ul li:hover > a {
    border-bottom-color: transparent;
    color: #cda053;
}

.main-menu li:hover > ul {
    visibility: visible;
    opacity: 1;
}

.languages {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    list-style-type: none;
    color: #00447c;
}

.languages li {
    display: flex;
}

.languages a {
    display: block;
    margin-top: 1px;
    border-bottom: 1px solid transparent;
    color: inherit;
}

.languages .active > a,
.languages a:hover {
    border-bottom-color: #00447c;
}

.languages li:not(:last-child):after {
    content: "|";
    padding: 0 0.5rem;
}

.languages li a img {
    display: none;
}

/*
	Footer
*/

.footer {
    padding-top: 5rem;
    padding-bottom: 3.5rem;
    font-size: 0.875rem;
    letter-spacing: -0.0357em;
    color: #fff;
    background: #2b2b2b url("../img/bg-logo-icon-light.svg") no-repeat right top;
    background-size: 45% auto;
}

.footer a {
    color: inherit;
}

.footer a:hover {
    color: rgba(255 255 255 / 70%);
}

.footer p strong {
    color: inherit;
}

.footer__logo {
    height: 3.375rem;
    margin-bottom: 2rem;
}

.footer__logo a {
    display: block;
    height: 100%;
}

.footer__logo a img {
    display: block;
    height: 100%;
    width: auto;
}

.footer__menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.footer__title {
    font-weight: 700;
    font-size: 1.25rem;
}

.footer__title span {
    background: linear-gradient(to right, #cda053 0%, #009fe3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.copyright .author {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255 255 255 / 10%);
}

.copyright .author img {
    vertical-align: baseline;
}

.copyright ul {
    padding: 0;
    list-style-type: none;
}

/*
    Offcanvas
*/

.offcanvas {
    max-width: 85%;
    font-size: 1rem;
    background: #fbf8f2;
}

.offcanvas ul {
    padding: 0;
    list-style-type: none;
}

.offcanvas ul a {
    display: flex;
    align-items: center;
    min-height: 3rem;
    padding: 0.25rem 0;
    color: #00447c;
}

.offcanvas ul a i {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.75rem;
    margin-left: auto;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 100%;
    cursor: pointer;
    transform: rotate(-90deg);
}

.offcanvas ul a i:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-left: 2px solid #00447c;
    border-bottom: 2px solid #00447c;
    transform: rotate(-45deg) translate(1px, -6px);
    transform-origin: center center 0;
}

.offcanvas ul ul {
    margin-left: 1.5rem;
    font-size: 0.875rem;
}

.offcanvas-body > ul ul {
    display: none;
}

.offcanvas-body > ul li.active > ul {
    display: block;
}

.offcanvas ul li.active > a > i {
    transform: rotate(0);
}

.offcanvas-body > ul > li > a {
    font-weight: 600;
}

/*
    Popup and Infobox
*/

.img-shadow {
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.75));
}

#popup .modal-content {
  background-color: transparent;
  border: none;
}

#popup .modal-dialog {
  max-width: 600px;
}

#popup .modal-text {
  background-color: #d9d9d94d;
}

#popup .modal-body h2 {
  letter-spacing: 1px;
}

#popup .modal-header i:hover {
  cursor: pointer;
  color: #00447c;
}

/* Infobox */

.infobox {
  white-space: nowrap;
  overflow: hidden;
}

.infobox .infobox-text {
  display: inline-block;
  position: relative;
  padding-left: 3rem;
}
.infobox:hover .infobox-innerwrap {
  animation-play-state: paused;
}

.infobox .infobox-innerwrap {
  white-space: nowrap;
  animation: swimmingText 30s linear infinite;
}

.infobox .infobox-text.marquee {
  padding-right: 5rem;
}

.infobox .infobox-text img {
  position: absolute;
  top: -1px;
  left: 0;
}

.infobox.static {
  border-radius: 10px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.infobox.static .infobox-text {
  white-space: normal;
}

/* Bottom right logo */

.bottom-container {
  position: fixed;
  bottom: 0px;
  right: 0px;
  width: 300px;
  z-index: 1050;
}

.toggle-btn {
  position: absolute;
  bottom: 100%;
  right: 1rem;
  margin-bottom: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: #3347A3;
  color: white;
  border: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.toggle-btn:hover {
  background-color: #cda053;
}

.toggle-btn i::before {
  font-size: 20px;
}

.rotate {
  transform: rotate(180deg);
}


/* SECTIONS
================================================== */

/*
    Sections
*/

.section {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
}

/*
    Hero
*/

.hero {
    position: relative;
    display: flex;
    min-height: 28rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
    color: #fff;
    background-position: center center;
    background-size: cover;
}

.hero .breadcrumb a {
    color: #fff;
}

.hero .breadcrumb a:hover {
    opacity: 0.8;
}

.hero:after {
    position: absolute;
    content: "";
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    height: 35%;
    background: linear-gradient(to bottom, rgba(255 255 255 / 0%) 0%, rgba(255 255 255 / 100%) 100%);
    opacity: 0.95;
}

.hero-carousel {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-carousel:before,
.hero-carousel:after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.hero-carousel:before {
    z-index: 2;
    background: #000;
    opacity: 0.4;
}

.hero-carousel:after {
    z-index: 3;
    background: linear-gradient(-135deg, #cda053 0%, #cda053 50%, #009fe3 100%);
    opacity: 0.4;
}

.hero-carousel .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero > .container {
    position: relative;
    z-index: 3;
}

.hero .hero-subtitle {
    max-width: 54rem;
    margin-left: auto;
    margin-right: auto;
}

.hero--sm {
    min-height: 18rem;
    color: #f0e5d1;
}

.hero--sm:before {
    position: absolute;
    z-index: 2;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.4;
}

.hero--sm .page-title {
    color: #fff;
}

/* MODULES
================================================== */

/*
    Carousels
*/

.swiper-pagination {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.swiper-pagination-bullet {
    width: 0.875rem;
    height: 0.875rem;
    border: 1px solid #e5e5e5;
    background: #fff;
    transition: all 0.3s;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #00447c;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0;
    margin-top: 2rem;
}

.carousel-3-box .swiper-slide {
    height: auto;
}

.carousel-3-box .testimonial {
    height: 100%;
}

/*
    Media Card
*/

.media-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0.625rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #636363;
    background: #f2f5f8;
    border-radius: 1rem;
}

.media-card figure {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 0.6875rem;
}

.media-card figure:after {
    display: block;
    content: "";
    padding-bottom: 66%;
}

.media-card figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.media-card__body {
    padding: 0 1rem;
}

.media-card__title {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: #00447c;
    transition: color 0.3s;
}

.media-card:not(.benefit):hover {
    color: #fff;
    background: #00447c;
}

.media-card:not(.benefit):hover .media-card__title {
    color: #cda053;
}

.media-card:not(.benefit):hover figure img {
    transform: scale(1.1);
}

/*
    Media Card
*/

.post-box,
.post-box:hover {
    color: #00447c;
    background: #fff;
    box-shadow: 0 0 1.25rem rgba(0 0 0 / 10%);
}

.post-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0.625rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    border-radius: 1rem;
}

.post-box figure {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 0.6875rem 0.6875rem 0 0;
}

.post-box figure:before {
    display: block;
    content: "";
    padding-bottom: 66%;
}

.post-box figure:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom, rgba(0 68 124 / 0%) 0%, #00447c 100%);
}

.post-box figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.post-box__body {
    flex: 1 1 0;
    padding: 1.5rem;
    background: #fbf8f2;
    border-radius: 0 0 0.6875rem 0.6875rem;
    transition: all 0.3s;
}

.post-box__body > *:last-child {
    margin-bottom: 0;
}

.post-box__title {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: #00447c;
    transition: color 0.3s;
}

.post-box time {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.3125rem 1rem;
    font-size: 0.75rem;
    color: #969086;
    background: rgba(0 0 0 / 5%);
    border-radius: 0.25rem;
    transition: all 0.3s;
}

.post-box:hover .post-box__body {
    color: #fff;
    background-color: #00447c;
}

.post-box:hover .post-box__title {
    color: #cda053;
}

.post-box:hover time {
    color: #fff;
    background: rgba(0 0 0 / 20%);
}

.post-box:hover figure img {
    transform: scale(1.1);
}

/*
    Chooser Box
*/

.chooser-box {
    color: #00447c;
}

.chooser-box {
    display: flex;
    flex-direction: column;
    padding: 0.625rem;
    border: 1px solid #dcdcdc;
    text-align: center;
    background: #fff;
    border-radius: 1rem;
    transition: all 0.4s;
}

.chooser-box figure {
    position: relative;
    overflow: hidden;
    margin-bottom: 0.625rem;
    border-radius: 0.6875rem;
}

.chooser-box figure:after {
    display: block;
    content: "";
    padding-bottom: 100%;
}

.chooser-box figure img {
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
}

.chooser-box__title {
    margin: 0;
    padding: 0.6875rem;
    font-size: 1rem;
}

.chooser-box:hover {
    color: #fff !important;
    background-color: #00447c !important;
}

.chooser-box:not(.chooser-box.active):hover figure img {
    transform: scale(1.1);
}

.chooser-box.active,
.chooser-box.active:hover {
    border-color: #cda053 !important;
    color: #fff !important;
    background-color: #cda053 !important;
}

.nav-link.chooser-box-noimage {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    height: 100%;
}
.nav-link.chooser-box-noimage:not(.active) {
    border: 1px solid #00447c !important;
}

/*
    Icon Box
*/

.icon-box {
    display: block;
    height: 100%;
    padding: 2.375rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #575757;
    background: #f2f5f8;
    border-radius: 1rem;
}

.icon-box > *:last-child {
    margin-bottom: 0;
}

.icon-box__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6.25rem;
    height: 6.25rem;
    margin-bottom: 1.5rem;
    margin-left: -0.25rem;
    padding: 1rem;
    background: #fff;
    border-radius: 100%;
}

.icon-box__title {
    margin-bottom: 0.3125rem;
    font-size: 1.125rem;
    color: #00447c;
    transition: color 0.3s;
}

.icon-box__subtitle {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #cda053;
}

a.icon-box:hover {
    color: #fff;
    background-color: #00447c;
}

a.icon-box:hover .icon-box__title {
    color: #fff;
}

/*
    Step Box
*/

.step-box {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    background: rgba(0 68 124 / 5%);
    border-radius: 1rem;
}

.step-box__figure {
    position: relative;
    width: 6.25rem;
    height: 6.25rem;
    margin-bottom: 1.5rem;
}

.step-box__figure span {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 3.5rem;
    height: 3.5rem;
    top: -1.5rem;
    left: -1rem;
    font-size: 1.25rem;
    text-align: center;
    color: #fff;
    background: #cda053;
    border-radius: 100%;
}

.step-box__figure figure {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 100%;
}

.step-box__figure figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-box__title {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: #00447c;
}

.step-box__footer {
    position: absolute;
    right: 0;
    bottom: 1.5rem;
    width: 100%;
}

.step-box__footer:after {
    position: absolute;
    display: block;
    content: "";
    right: 0;
    bottom: 0;
    left: 0;
    border-top: 2px dashed rgba(0 68 124 / 25%);
}

.step-box__footer img {
    position: absolute;
    bottom: -0.5rem;
    right: 2.5rem;
    width: 1.125rem;
    height: 1.125rem;
}

.step-box__footer span {
    position: absolute;
    right: -0.5rem;
    bottom: 1px;
    width: 1.25rem;
    height: 1.25rem;
    border: 3px solid #5f99c9;
    background: #00447c;
    border-radius: 100%;
    transform: translate(0, 50%);
}

.step-box--first .step-box__footer {
    width: 3rem;
}

.step-box--last .step-box__footer {
    left: 0;
    right: 3rem;
    width: auto;
}

/*
    Testimonial
*/

.testimonial {
    position: relative;
    margin: 0;
    padding: 2rem 2.5rem;
    line-height: 1.875;
    letter-spacing: 0.00625em;
    border: 2px solid #ebebeb;
    background: #fff;
    border-radius: 1rem;
}

.testimonial:before,
.testimonial:after {
    position: absolute;
    font-size: 9rem;
    line-height: 1;
    color: #00447c;
    opacity: 0.15;
}

.testimonial:before {
    content: "\201D";
    top: 0.5rem;
    left: 1rem;
}

.testimonial:after {
    content: "\201C";
    right: 1.5rem;
    bottom: -0.5rem;
}

.testimonial cite {
    font-weight: 700;
    color: #00447c;
}

/* Infobox */

.infobox.static {
    border-radius: 10px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.infobox .infobox-text {
    display: inline-block;
    position: relative;
    padding-left: 3rem;
}

.infobox .infobox-text img {
    position: absolute;
    top: 1px;
    left: 0;
}

.infobox .infobox-text p {
    margin-bottom: 0;
}

/* Accordion */

i.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  font-size: 0.75rem;
  margin-left: auto;
  border-radius: 100%;
  cursor: pointer;
}

.single-nav i.accordion-button {
  width: 1.5rem;
  height: 1.5rem;
}

i.accordion-button:not(.collapsed) {
  background: none;
  box-shadow: none;
}

i.accordion-button::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-left: 2px solid #00447c;
  border-bottom: 2px solid #00447c;
  transform: rotate(-45deg) translate(1px, -6px);
  transform-origin: center center 0;
  transition-duration: 0.3s;
}

i.accordion-button:not(.collapsed)::after {
  transform: rotate(-225deg) translate(1px, 6px);
}

.faq i.accordion-button:not(.collapsed)::after {
  transform: rotate(-45deg) translate(1px, -6px);
}

.faq .accordion-button-fullwidth:not(.collapsed) i::after {
  transform: rotate(-225deg) translate(1px, 6px);
}

.faq .accordion-header {
  background-color: #f4f4f4;
  border-radius: 10px;
  letter-spacing: 1px;
  color: #00447c;
}
.faq .accordion-header:hover {
  cursor: pointer;
}

.faq p {
    margin-bottom: 0;
}

.details-toggle {
    transition: all 0.3s;
    color: #00447c !important;
    font-style: italic;
}

.details-toggle.accordion-button:hover {
    cursor: pointer;
    color: #cda053 !important;
}

/*
    Panel
*/

.panel {
    padding: 2rem;
    background: #fbf8f2;
    border-radius: 1rem;
}

/*
    Modal
*/

.modal-backdrop.show {
    opacity: 0.8;
}

.modal--search .modal-content {
    border: 0;
    background: transparent;
}

.modal--search .modal-content form {
    display: flex;
    align-items: center;
    margin: 0;
    border-bottom: 2px solid #fff;
}

.modal--search .modal-content .form-control {
    padding: 1rem 0;
    border: 0;
    font-size: 1.5rem;
    background-color: transparent;
    border-radius: 0;
    color: #fff;
}

.modal--search .modal-content .form-control::placeholder {
    color: #fff;
    opacity: 0.6;
}

.modal--search .modal-content .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 0;
    color: #fff;
    transition: opacity 0.3s;
}

.modal--search .modal-content .btn svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: #fff;
}

.modal--search .modal-content .btn:hover {
    opacity: 0.7;
}

/*
    Page Menu
*/

.page-menu {
    position: sticky;
    top: 8rem;
    padding: 0;
    list-style-type: none;
}

.page-menu li {
    margin-bottom: 2px;
}

.page-menu a {
    display: block;
    padding: 0.5rem 0;
    color: #00447c;
    border-radius: 0.75rem;
}

.page-menu a.active {
    font-weight: 700;
}

/*
    Map
*/

.map {
    padding: 1rem;
    background: #fff;
    box-shadow: 0 0 1.25rem rgba(0 0 0 / 10%);
    border-radius: 1rem;
}

.map iframe {
    display: block;
    width: 100%;
    height: 28.75rem;
    max-height: 70vh;
}

/* COMPONENTS
================================================== */

/*
	Buttons
*/

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1px;
    border-width: 0;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: none;
    border-radius: 3rem;
}

.btn span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0.8125rem 2rem;
    border-radius: 3rem;
}

.btn:focus,
.btn:active:focus {
    box-shadow: 0 0 0 0.25rem rgba(0 0 0 / 10%);
}

.btn--brown,
.btn--brown:focus {
    border-color: #cda053;
    color: #fff;
    background-color: #cda053;
}

.btn--brown:hover,
.btn--brown:first-child:active,
.btn--brown:hover:active,
.btn--brown:focus:active {
    border-color: #00447c;
    color: #fff;
    background-color: #00447c;
}

.btn--white,
.btn--white:focus {
    border-color: #fff;
    color: #00447c;
    background-color: #fff;
}

.btn--white:hover,
.btn--white:first-child:active,
.btn--white:hover:active,
.btn--white:focus:active {
    border-color: #00447c;
    color: #fff;
    background-color: #00447c;
}

.btn-primary,
.btn-primary:focus {
    border-color: #00447c;
    color: #fff;
    background: linear-gradient(to right, #00447c 50%, #1bae97 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
    transition: background-position 0.3s;
}

.btn-primary:hover,
.btn-primary:first-child:active,
.btn-primary:hover:active,
.btn-primary:focus:active {
    background-position: 0 0;
}

.btn--blue,
.btn--blue:focus {
    border-color: #00447c;
    color: #fff;
    background: linear-gradient(to right, #00447c 50%, #1bae97 100%);
    background-size: 200% 100%;
    background-position: 0 0;
    transition: background-position 0.3s;
}

.btn--blue:hover,
.btn--blue:first-child:active,
.btn--blue:hover:active,
.btn--blue:focus:active {
    color: #fff;
    background-position: 100% 0;
}

.btn--blue svg {
    fill: #fff;
}

.btn--outline-blue,
.btn--outline-blue:focus {
    border-color: #00447c;
    color: #fff;
    background: linear-gradient(to right, #00447c 0%, #1bae97 50%);
    background-size: 200% 100%;
    background-position: 0 0;
    transition: background-position 0.3s;
}

.btn--outline-blue span {
    color: #00447c;
    background: #fff;
    transition: all 0.3s;
}

.btn--outline-blue:hover span {
    color: #fff;
    background: transparent;
}

.btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.btn--circle span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn--circle.btn-sm span {
    width: 2.625rem;
    height: 2.625rem;
    padding: 0;
}

.btn i {
    font-size: 1.25rem;
}

.btn-sm span {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    font-size: 0.875rem;
}

.btn-tab {
    display: flex;
    align-items: center;
    min-height: 5.625rem;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.25;
    color: #00447c;
    background: rgba(0 68 124 / 5%);
    border-radius: 1rem;
}

.btn-tab i {
    display: block;
    margin-right: 1rem;
    font-size: 2rem;
}

.btn-tab:hover,
.btn-tab:focus {
    color: #fff;
    background: #00447c;
}

/*
	Form components
*/

textarea[rows="4"] {
    min-height: 9.25rem;
}

.form-control,
.form-select {
    padding: 1.25rem;
    font-size: 0.9375rem;
    border-width: 2px;
    color: #00447c;
    border-radius: 0.625rem;
}

.form-control,
.form-control:focus,
.form-select,
.form-select:focus {
    border-color: #ebebeb;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(0 0 0 / 5%);
}

.form-check {
    padding-left: 2.5em;
    font-size: 0.875em;
    color: #00447c;
}

.form-check a {
    text-decoration: underline;
    color: inherit;
}

.form-check a:hover {
    text-decoration: none;
}

.form-check .form-check-input {
    width: 1.75em;
    height: 1.75em;
    margin-left: -2.5em;
    margin-top: 0;
    border-width: 2px;
    border-color: #ebebeb;
    background-color: #fff;
}

.form-check .form-check-input[type="checkbox"] {
    border-radius: 0.25rem;
}

.form-check .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0 0 0 / 10%);
}

.form-check .form-check-input:checked {
    border-color: #00447c;
    background-color: #00447c;
}

.form-select:hover, .form-check-input:hover {
    cursor: pointer;
}

.form-control::placeholder, .form-select-default {
    color: #00447c96;
}

/*
    Form Field
*/

.form-field {
    position: relative;
}

.form-field .form-control {
    padding: 0.6875rem 3rem 0.6875rem 1rem;
    border-radius: 2rem;
}

.form-field .btn {
    position: absolute;
    top: 50%;
    right: 0.25rem;
    width: 2.5rem;
    height: 2.5rem;
    background: #00447c;
    border-radius: 100%;
    transform: translate(0, -50%);
}

.form-field .btn svg {
    width: 1rem;
    height: 1rem;
    fill: #fff;
}

/*
    Titles
*/

.page-title {
    font-size: 2rem;
    font-family: Marcellus, Arial, sans-serif;
    font-weight: 400;
}

.section-title {
    font-size: 1.5rem;
    color: #00447c;
}

.section-title span {
    background: linear-gradient(to right, #00447c 30%, #cda053 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title--lg {
    font-size: 2.25rem;
}

.article-title {
    font-size: 1.25rem;
    color: #00447c;
}

.article-title-sm {
    font-size: 1.125rem;
}

.article-subtitle {
    font-size: 0.875rem;
    color: #cda053;
}

.section-description {
    font-size: 0.9375rem;
    color: #838383;
}

.section-description--lg {
    font-size: 1.25rem;
    color: #00447c;
}

/*
    Lists
*/

.list-social {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
    list-style-type: none;
}

.list-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.875rem;
    height: 2.875rem;
    font-size: 2rem;
    color: #fff;
    border-radius: 100%;
}

.list-social .icon-facebook {
    background: #156be4;
}

.list-social .icon-instagram {
    background: linear-gradient(-140deg, #783bf6 15%, #e00897 50%, #fbad09 80%);
}

.list-social .icon-youtube {
    background: #fe1101;
}

.list-social .icon-tripadvisor {
    background: #00ca5d;
}

.list-social a:hover {
    color: #fff;
    opacity: 0.7;
}

.list-table {
    padding: 0;
    font-weight: 700;
    font-size: 0.875rem;
    list-style-type: none;
    color: #00447c;
}

.list-table li {
    display: flex;
    padding: 1rem 2rem;
}

.list-table:not(.list-table-2cols) li:nth-child(odd) {
    background: rgba(0 68 124 / 10%);
}

.list-table:not(.list-table-2cols) li:first-child {
    border-radius: 1rem 1rem 0 0;
}
.list-table.list-table-2cols li:nth-child(2) {
    border-radius: 1rem 1rem 0 0;
}

.list-table li:last-child {
    border-radius: 0 0 1rem 1rem;
}

.list-table li span {
    display: block;
    padding-left: 1rem;
    margin-left: auto;
    text-align: right;
    min-width: 6rem;
    color: #cda053;
}

.list-table li span.list-table-head {
    color: #00447c;
}

.list-table.list-table-2cols li > * {
    width: 33.33%;
}

.list-table.list-table-2cols li:nth-child(even) {
    background: rgba(0 68 124 / 10%);
}

.list-with-icon {
    padding: 0;
    list-style-type: none;
}

.list-with-icon li {
    display: flex;
    padding: 1.5rem 0;
}

.list-with-icon li:not(:last-child) {
    border-bottom: 1px solid rgba(0 0 0 / 15%);
}

.list-with-icon a {
    display: flex;
    color: #00447c;
}

.list-with-icon a:hover {
    opacity: 0.8;
}

.list-with-icon svg, .list-with-icon img {
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
    fill: #00447c;
}

article:has(.float-lg-start) ul, .entry:has(.float-start) ul {
    list-style-position: inside;
}

/* 
    Tables
*/

.price-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-weight: 600;
  color: #cda053;
}

.price-table th,
.price-table td {
  padding: 1rem 1.5rem;
}

.price-table th,
.price-table tr:not(.price-table-mobile tr) td:first-child {
  color: #00447c;
}

.price-table tbody tr:nth-child(odd),
.price-table thead tr:not(:last-child) {
  background-color: #00447c1a;
}

.price-table tr td:not(:last-child),
.price-table tr:not(:first-child) th:not(:last-child) {
  border-right: 1px solid #0000001a;
}

.price-table tr:first-child td:first-child {
  border-top-left-radius: 10px;
}
.price-table tr:first-child td:last-child {
  border-top-right-radius: 10px;
}
.price-table tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
.price-table tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

.price-table tbody tr td:not(:first-child) {
  font-weight: 400;
}

.price-table-anchor {
  position: absolute;
  top: -75px;
}

.tooltip-anchor {
  position: relative;
}

.tooltip-anchor i {
  position: absolute;
  top: 0px;
  left: 6px;
  font-size: 24px;
  color: #cda053;
  transition: all 0.3s;
}
.tooltip-anchor i:hover {
  cursor: pointer;
  color: #00447c;
}

/* Tables - mobile view */

.price-table-mobile {
  font-size: 13px;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
}

.price-table-mobile td,
.price-table-mobile th {
  padding: 1rem;
}

.price-table-mobile tr:first-child td {
  background-color: #00447c;
  color: #fff;
  letter-spacing: 1px;
}
.price-table-mobile tr:has(th) {
  background-color: #00447c1a;
  color: #00447c;
}
.price-table-mobile tr:last-child {
  background-color: #a7a7a71a;
  height: 70px;
}

.price-table-mobile tr:not(:first-child) th:not(:last-child),
.price-table-mobile tr:not(:first-child) td:not(:last-child) {
  border-right: 1px solid #0000001a;
}

.price-table-mobile th {
  border-top: 1px solid #0000001a;
}

.price-table-mobile .tooltip-anchor i {
  top: -2px;
  left: 3px;
}

.price-table-mobile .tooltip-anchor i:hover {
    color: #fff;
}

/*
    Breadcrumbs
*/

.breadcrumb {
    font-size: 0.75rem;
}

.breadcrumb,
.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "|";
}

.breadcrumb span {
    font-style: italic;
}

/*
    Date
*/

.date {
    display: inline-block;
    padding: 0.3125rem 1rem;
    font-size: 0.75rem;
    color: #969086;
    background: #f0eae1;
    border-radius: 0.25rem;
}

/* GLOBALS
================================================== */

.bg--light-brown {
    background-color: #fbf8f2;
}

.bg--dark-blue {
    background-color: #012f6b;
}

.bg-layer {
    position: relative;
    background-size: cover;
}

.bg-layer:after {
    position: absolute;
    content: "";
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-layer--dark:after {
    background: #00447c;
    opacity: 0.5;
}

.bg-layer--white:after {
    background: #fff;
    opacity: 0.7;
}

.bg-layer > * {
    position: relative;
    z-index: 2;
}

.c--brown {
    color: #cda053 !important;
}

.rounded {
    border-radius: 1rem !important;
}

.ratio {
    overflow: hidden;
    border-radius: 1rem;
}

.miw--180 {
    min-width: 11.25rem;
}

.miw--260 {
    min-width: 16.25rem;
}

.maw--1200 {
    max-width: 75rem;
}

.maw--360 {
    max-width: 22.5rem;
}

.fit-content {
    width: fit-content;
}

.icon-size--24 {
    font-size: 1.5rem;
}

.position-sticky {
    top: 6rem;
}

.highlighted {
    margin-bottom: 1.5rem;
    padding: 1.5rem 2rem;
    font-weight: 700;
    color: #00447c;
    background: #f2f2f2;
    border-radius: 1rem;
}

.highlighted > *:last-child {
    margin-bottom: 0;
}

.anchor-scroll {
    position: absolute;
    top: -50px;
}

:target.tab-pane {
  scroll-margin-top: 520px;
}

img[data-fancybox]:hover {
    cursor: pointer;
}

.scroll-to {
    scroll-margin-top: 50px;
}

/* RESPONSIVE
================================================== */

/*
	XS
*/

@media screen and (max-width: 575px) {
    .page-menu {
        padding-left: .75rem;
        padding-right: .75rem;
        margin-left: -.75rem;
        margin-right: -.75rem;
    }

    .list-table li {
        padding: .75rem;
    }

    .list-table.list-table-2cols li strong {
        width: 40%;
    }
    .list-table.list-table-2cols li span {
        width: 30%;
    }
}

/*
	SM and down
*/

@media screen and (max-width: 767px) {
    .price-table p {
        margin-bottom: 2rem;
    }
}

/*
	MD and down
*/

@media screen and (max-width: 991px) {
}

/*
	LG and down
*/

@media screen and (max-width: 1199px) {
    .languages a {
        display: flex;
        align-items: center;
        padding: 0.375rem 0.75rem;
        border: 0;
        font-size: 0.625rem;
        background: rgba(0 0 0 / 5%);
    }

    .languages li:first-child a {
        border-radius: 1rem 0 0 1rem;
    }

    .languages li:last-child a {
        border-radius: 0 1rem 1rem 0;
    }

    .languages li.active a {
        color: #fff;
        background: #00447c;
    }

    .languages li a img {
        display: block;
        width: 0.875rem;
        height: 0.875rem;
        margin-right: 0.25rem;
        object-fit: contain;
    }

    .languages li:not(:last-child):after {
        display: none;
    }

    .page-menu {
        display: flex;
        overflow: auto;
        padding-bottom: .25rem;
        gap: .5rem;
        white-space: nowrap;
    }

    .page-menu li {
        padding: 1px;
        background: linear-gradient(to right, #00447c 0%, #1bae97 100%);
        border-radius: 2rem;
    }

    .page-menu li a {
        display: block;
        padding: .5rem 1rem;
        font-weight: 600;
        font-size: .75rem;
        color: #00447c;
        background: #fff;
        border-radius: 2rem;
    }

    .page-menu li a.active,
    .nav-tabs .nav-link.active {
        font-weight: 600;
        color: #fff;
        background-color: transparent;
    }

    .nav-tabs .nav-link {
        margin-bottom: 0;
        border: none;
        border-radius: 2rem;
    }

    .infobox {
        white-space: wrap;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .infobox .infobox-innerwrap {
        white-space: wrap;
        animation: none;
        margin: auto;
    }
    .infobox .infobox-text.marquee {
        padding-right: 0;
    }
}

/*
	LG and up
*/

@media screen and (min-width: 992px) {
    .floating-image {
        width: 48%;
    }
}

/*
    XL and up
*/

@media screen and (min-width: 1200px) {
    .top-bar {
        position: relative;
        display: flex;
        align-items: center;
        z-index: 1020;
        top: 0;
        left: 0;
        width: 100%;
        height: 3.5rem;
        background: #fff;
    }

    .top-bar__list {
        display: flex;
        gap: 1rem;
        margin: 0;
        padding: 0;
        font-weight: 500;
        font-size: 0.8125rem;
        list-style-type: none;
    }

    .top-bar__list a:not(.asw-container *),
    .top-bar__list button:not(.asw-container *) {
        display: flex;
        align-items: center;
        padding: 0;
        border: 0;
        color: #00447c;
        background: transparent;
    }

    .top-bar__list a.address:hover {
        color: #00447c;
    }

    .top-bar__list a span:not(.asw-container *),
    .top-bar__list button span:not(.asw-container *) {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 2.25rem;
        height: 2.25rem;
        background: #f1f1f1;
        border-radius: 100%;
        transition: background-color 0.3s;
    }

    .top-bar__list a span svg:not(.asw-container *),
    .top-bar__list button span svg:not(.asw-container *) {
        display: block;
        width: 1.125rem;
        height: 1.125rem;
        fill: #00447c;
        transition: fill 0.3s;
    }

    .top-bar__list a:not(.address):hover span:not(.asw-container *),
    .top-bar__list button:hover span:not(.asw-container *) {
        background: #00447c;
    }

    .top-bar__list a:not(.address):hover span svg:not(.asw-container *),
    .top-bar__list button:hover span svg:not(.asw-container *) {
        fill: #fff;
    }

    .top-bar__list--text {
        gap: 2.5vw;
    }

    .top-bar__list--text a span,
    .top-bar__list--text button span {
        margin-right: 1rem;
    }

    .top-bar .btn {
        font-size: 0.9375rem;
    }

    .top-bar .btn span {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .hero--sm {
        min-height: 28rem;
    }

    .hero--sm .breadcrumb {
        width: 100%;
    }

    .page-menu a {
        padding: 1rem 1.5rem;
    }

    .page-menu a:hover {
        font-weight: 700;
    }

    .page-menu a.active {
        background: #fbf8f2;
    }

    .nav:not(.row) {
        display: block;
    }

    .nav-tabs, .nav-tabs .nav-link {
        border: none;
    }

    .nav-tabs .nav-link.active,
    .nav-tabs .nav-link:hover {
        border: none;
        background-color: #fbf8f2;
        color: #00447c;
    }

    .nav-subtitle {
        font-size: 14px;
        color: #cda053;
    }

    .chooser-box__title {
        font-size: 1.25rem;
    }

    .border-right--light {
        border-right: 1px solid rgba(255 255 255 / 30%);
    }

    .price-table-anchor {
        top: -115px;
    }
}

/*
    XXL and up
*/

@media screen and (min-width: 1400px) {
    .header {
        height: 5.625rem;
    }

    .header__logo {
        height: 3.375rem;
    }

    .bg--logo-icon {
        background: url("../img/bg-logo-icon.svg") no-repeat right bottom;
        background-size: 30% auto;
    }

    .main-menu li a {
        height: 5.625rem;
    }

    .footer-border-section {
        border-left: 1px solid rgba(255 255 255 / 10%);
        border-right: 1px solid rgba(255 255 255 / 10%);
    }

    .hero {
        min-height: 37.5rem;
        font-size: 1.25rem;
    }

    .hero--sm {
        min-height: 28rem;
    }

    .section {
        padding-top: 5rem;
        padding-bottom: 4rem;
    }

    .panel {
        padding: 3rem;
    }

    .step-box {
        align-items: center;
        flex-direction: row;
        padding: 3rem 2rem 1.5rem 3rem;
    }

    .step-box__figure {
        flex: 0 0 auto;
        margin-right: 2rem;
    }

    .page-title {
        font-size: 4.375rem;
    }

    .anchor-scroll {
        top: -70px;
    }
}

/*
	XXXL and up
*/

@media screen and (min-width: 1700px) {
    .container {
        max-width: 1624px;
    }

    .main-menu > ul {
        gap: calc(0.5rem + 3.5vw);
    }
}

.hero-bg-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
  }
  .gradient-filter {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-image: linear-gradient(
      to left,
      transparent 0%,
      #cda0537e 50%,
      #cda0537e 75%,
      #009fe3d8 100%
    );
  }

  .hero-main .gradient-filter {
    background-image: linear-gradient(
      to left,
      transparent 0%,
      #cda05352 50%,
      #009fe37d 100%
    );
  }

  .search-results ul li a {
    display: block;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    box-shadow: 0 0 10px #d9d9d9;
  }
  .search-results ul li a:hover {
    background-color: #00447c;
    color: #fff;
  }
  .search-results ul li a:hover h5 {
    color: #cda053;
  }

  /* .entry {
    font-size: 14px;
  } */



/* ANIMATIONS */

    @keyframes swimmingText {
        0% {
            transform: translateX(0%);
        }
        100% {
            transform: translateX(-50%);
    }
}
