:root {
  --primary-color: #031c52;
  --secondary-color: #77ceff;
  --red-color: #ee4734;
}

@font-face {
  font-family: "Micro Grotesk";
  src: url("../assets/Fonts/MicroGrotesk/MicroGrotesk.ttf");
}

html,
body {
  font-family: "Micro Grotesk", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.ww-btn {
  border-radius: 4px;
  padding: 10px 24px;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.2;
  display: inline-block;
}

.ww-btn-primary {
  background: var(--primary-color);
  color: #ffffff;
}

.ww-btn-transparent {
  background: transparent;
  color: var(--primary-color);
  font-weight: 500;
}

.nav-container-inner-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  display: block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

nav ul li a:hover {
  text-decoration: underline;
}

nav ul li ul li {
  min-width: 190px;
}

nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
}

.nav-multi-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.nav-dropdown-icon {
  padding: 1px 4px;
  cursor: pointer;
  transition: ease-in-out 0.3s all;
  border-radius: 3px;
}

.nav-dropdown-icon:hover {
  background-color: #f7f7f7;
}

.nav-dropdown {
  position: absolute;
  z-index: 1;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  display: none;
  top: 35px;
  left: 0;
  border-radius: 6px;
  background-color: #ffffff;
  overflow: hidden;
}

.nav-dropdown-icon.nav-menu-active {
  background-color: var(--secondary-color);
}

.nav-dropdown li:hover {
  background-color: #f7f7f7;
}

.nav-mobile {
  display: none;
}

#nav-toggle {
  cursor: pointer;
  display: block;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 3px;
  height: 5px;
  width: 35px;
  background: #463f3f;
  position: absolute;
  display: block;
  content: "";
  transition: all 300ms ease-in-out;
}

#nav-toggle span:before {
  top: -10px;
}

#nav-toggle span:after {
  bottom: -10px;
}

#nav-toggle.active span {
  background-color: transparent;
}

#nav-toggle.active span:before,
#nav-toggle.active span:after {
  top: 0;
}

#nav-toggle.active span:before {
  transform: rotate(45deg);
}

#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

.nav-list {
  display: flex;
  gap: 32px;
}

.navigation {
  padding: 18px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9998;
  transition: all 0.5s;
}

.nav-shadow {
  box-shadow: 0 4px 6px 0 rgb(32 33 36 / 28%);
  background-color: #ffffff;
}

.hide-nav {
  transform: translateY(-100%) !important;
  -webkit-transform: translateY(-100%) !important;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand a,
.brand a:visited {
  color: #463f3f;
  text-decoration: none;
  display: block;
}

.brand a > img {
  width: 123px;
}

.nav-action-list {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.section-title {
  line-height: 40px;
  font-size: 32px;
  font-weight: 500;
}

/* START TODAY SECTION */
.start-today-section {
  padding-top: 120px;
  background: radial-gradient(ellipse at center bottom, #031c52 60%, #010e29);
}

.start-today-wrapper {
  text-align: center;
}

.start-today-wrapper .section-title {
  margin-bottom: 40px;
  color: #ffffff;
  max-width: 38%;
  margin-left: auto;
  margin-right: auto;
}

.start-today-wrapper .section-title span {
  color: #77ceff;
}

.empower-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.empower-item h5 {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-color);
  margin: 0;
}

.free-points {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.free-points h5 {
  color: #ffffff !important;
}

.system-view {
  text-align: center;
  margin-top: 80px;
}

.system-view img {
  max-width: 80%;
  margin: auto;
  border-radius: 16px 16px 0 0;
  border-top: 8px solid rgba(255, 255, 255, 0.3);
  border-right: 8px solid rgba(255, 255, 255, 0.3);
  border-left: 8px solid rgba(255, 255, 255, 0.3);
}

/* NEWSLETTER SECTION */
.newsletter-section {
  padding-top: 48px;
  padding-bottom: 48px;
  background-color: #082259;
}

.newsletter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.newsletter-info {
  color: #ffffff;
}

.newsletter-info h5 {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.newsletter-info h6 {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}

.newsletter-action {
  display: flex;
  align-items: baseline;
  gap: 16px;
  width: 38%;
}

.newsletter-action .btn {
  background-color: #77ceff;
  color: var(--primary-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  padding-left: 16px;
  padding-right: 16px;
}

.newsletter-action .btn:active {
  background-color: #2db2ff;
  color: var(--primary-color);
}

.newsletter-action .btn:hover {
  background-color: #2db2ff;
  color: var(--primary-color);
}

.newsletter-success {
  display: none;
  background-color: #d3ffdd;
  border-radius: 6px;
  padding: 6px 44px;
}

.error-alert {
  display: none;
}

.newsletter-input {
  flex: 1;
}

/* FOOTER */
footer {
  padding-top: 64px;
  padding-bottom: 48px;
  color: #ffffff;
  background-color: #031c52;
}

.f-brand-note {
  color: #94a3b8;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 32px;
  max-width: 76%;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 40% 20% 20% 20%;
  padding-bottom: 52px;
}

.footer-logo {
  width: 123px;
}

.footer-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-item ul li {
  margin-bottom: 12px;
}

.footer-item ul li a {
  color: #f8fafc;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
}

.footer-item ul li a:hover {
  text-decoration: underline;
  color: #77ceff;
}

.f-item-title {
  color: #94a3b8;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 16px;
}

.footer-copyright {
  border-top: 1px solid #475467;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.f-copyright-note {
  color: #94a3b8;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.f-social {
  display: flex;
  gap: 24px;
}

.f-social a > img {
  width: 24px;
}

.f-social a > img:hover {
  filter: contrast(10);
}

.side-by-side-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sbs-content,
.sbs-cover {
  width: 45%;
}

.sbs-content h1 {
  color: var(--primary-color);
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 56px;
  margin-bottom: 24px;
}

.sbs-content p {
  color: #375188;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.book-now-section {
  padding-top: 120px;
  background: radial-gradient(ellipse at center bottom, #031c52 60%, #010e29);
  text-align: center;
}

.book-now-section .section-title {
  color: #ffffff;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px;
  margin-bottom: 40px;
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.book-now-section .system-view img {
  border-top: 8px solid #ffffff;
  border-right: 8px solid #ffffff;
  border-left: 8px solid #ffffff;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #ffffff;
}

.hero-start-btn {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-size: 16px;
  padding: 16px 24px;
  font-weight: 600;
  display: inline-block;
  line-height: 20px;
  text-align: center;
  transition: ease-in-out 0.3s;
}

.hero-start-btn:hover {
  background-color: #33b4ff;
}

.accordion-item {
  background-color: transparent;
  border-bottom: 1px solid #182e5f;
}

.accordion-button {
  background-color: transparent;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  padding-left: 0;
  padding-right: 0;
  line-height: 24px;
}

.accordion-button::after {
  -webkit-filter: grayscale(1) invert(1);
  filter: grayscale(1) invert(1);
}

.accordion-button:focus {
  border: none;
  box-shadow: none;
}

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

.accordion-button:not(.collapsed) span {
  background-color: #77ceff;
}

.accordion-body {
  color: #ffffff;
  padding: 4px 0 20px 0;
  font-size: 16px;
  font-weight: 300;
}

.accordion-flush .accordion-item:last-child {
  border-bottom: 1px solid #182e5f;
}

::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

::-webkit-scrollbar-thumb:active {
  background: #6b7280;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 20px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
}

.loading-component {
  text-align: center;
  display: none;
}

.loading-component h6 {
  margin-top: 24px;
}

.form-submitted-success {
  display: none;
  text-align: center;
}

.form-submitted-success img {
  margin-bottom: 24px;
  width: 70px;
}

.form-submitted-success h4 {
  margin-bottom: 16px;
  font-weight: 600;
}

.form-submitted-success h6 {
  color: #777777;
}

.submit-spinner {
  display: none;
  margin-right: 6px;
}

.invalid-feedback {
  text-align: left;
}
