@charset "UTF-8";
body,
sub,
sup {
  position: relative;
}
body {
  font-family: Sarala, sans-serif;
  color: #082a40;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  background-color: #f5f5f5;
  margin: 0 auto;
  max-width: 2000px;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: #fff0;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}
p {
  font-size: 1em;
}
a {
  color: white;
  text-decoration: none;
}
a:hover {
  color: #1da76e;
  text-decoration: none;
}
.master {
  padding: 5em 8.3% 6em;
}
.btn {
  display: inline-block;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border-radius: 0.25rem;
  font-size: 1.2rem;
  padding: 0.6rem 1rem;
  transition: color 0.5s ease, background-color 0.5s ease,
    border-color 0.5s ease, box-shadow 0.5s ease;
}

/** Primary BTN **/

.btn-primary {
  color: #082a40;
  background-color: white;
  border: 2px solid;
  border-color: #082a40;
  text-decoration: none;
}

a.btn-primary:hover,
a.white.btn-primary,
a.btn-primary:active,
a.btn-primary.active,
.show > a.btn-primary.dropdown-toggle,
.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
  color: white;
  background-color: #082a40;
  border: 2px solid;
  border-color: #082a40;
  text-decoration: none;
}

a.btn-primary:visited:hover {
  color: white;
}

.darkblue .btn-primary {
  color: #082a40 !important;
  background-color: white;
  border: 2px solid;
  border-color: hsl(204, 78%, 14%);
  text-decoration: none;
}

.darkblue a.btn-primary:hover,
.darkblue a.white.btn-primary,
.darkblue a.btn-primary:active,
.darkblue a.btn-primary.active,
.show > .darkblue a.btn-primary.dropdown-toggle,
.darkblue .btn-primary:hover,
.darkblue .btn-primary:active,
.darkblue .btn-primary.active,
.show > .darkblue .btn-primary.dropdown-toggle {
  color: white !important;
  background-color: #1da76e;
  border: 2px solid;
  border-color: #082a40;
  text-decoration: none;
}

.darkblue a.btn-primary:visited:hover {
  color: white;
}
/** Secondary BTN **/

.btn.btn-secondary,
a.btn.btn-secondary:link,
a.btn.btn-secondary:visited {
  color: white;
  background-color: #35824f;
  border: 2px solid #35824f;
  text-decoration: none;
}

.btn.btn-secondary:hover,
.btn.btn-secondary:active,
.btn.btn-secondary.active,
.show > .btn.btn-secondary.dropdown-toggle,
a.btn.btn-secondary:hover,
a.btn.btn-secondary:active {
  color: white;
  background-color: #1da76e;
  border-color: #1da76e;
}

.btn .icon {
  fill: currentColor;
}

.footer-main {
  padding: 5em 7em 15px;
}
@media (max-width: 1200px) {
  .footer-main {
    padding: 5em 8.3% 15px;
  }
}

.darkblue {
  background-color: #082a40;
  color: #fff;
}

.white {
  background-color: #fff;
  color: #082a40;
}
/** Navigation (general) **/
.nav-link {
  color: white;
}
.nav-link:hover,
nav-link:focus {
  color: #1d72a7;
}

/** Go to top **/
.nav-top.active,
.navbar .dropdown:hover > ul,
.navbar-mobile .dropdown ul {
  visibility: visible;
  opacity: 1;
  text-decoration: none;
}
.nav-top {
  position: fixed;
  opacity: 0;
  right: 15px;
  bottom: 6px;
  z-index: 996;
  background: #35824f;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: 0.4s;
}
.nav-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.nav-top:hover {
  background: #1da76e;
  color: #fff;
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}

/** Animation right **/
.animate-icon,
.btn .animate-icon {
  transition: transform 0.3s;
}
.btn:hover .move-right {
  transform: translateX(3px);
}

/** Animation student **/
@keyframes rotate360 {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  12.5% {
    transform: translateY(-3px) rotate(45deg);
  }
  25% {
    transform: translateY(-5px) rotate(90deg);
  }
  37.5% {
    transform: translateY(-3px) rotate(135deg);
  }
  50% {
    transform: translateY(0) rotate(180deg);
  }
  62.5% {
    transform: translateY(3px) rotate(225deg);
  }
  75% {
    transform: translateY(5px) rotate(270deg);
  }
  87.5% {
    transform: translateY(3px) rotate(315deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}
.rotate360 {
  will-change: transform;
  transform-origin: center;
}
.btn:hover .rotate360 {
  animation: rotate360 0.7s linear forwards;
}

/** Timeline **/

ul.timeline:before,
ul.timeline > li:before {
  content: " ";
  z-index: 400;
  position: absolute;
}
.dot,
ul.timeline > li:before {
  display: inline-block;
  border-radius: 50%;
}
ul.timeline {
  position: relative;
}
ul.timeline:before {
  background: #d4d9df;
  display: inline-block;
  left: 29px;
  width: 2px;
  height: 90%;
}
ul.timeline > li {
  margin: 20px 0;
  padding-left: 20px;
  padding-bottom: 20px;
}
ul.timeline > li:before {
  background: #fff;
  border: 3px solid #fff;
  left: 20px;
  width: 20px;
  height: 20px;
}
.fa-ul,
.list-group-numbered,
ul.timeline {
  list-style-type: none;
}

/** video **/
video {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.video-wrapper {
  border: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}
.video-wrapper > video {
  position: absolute;
  inset: 0; /* shorthand for top/right/bottom/left: 0 */
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; /* avoids stray inline gaps */
}

/** Navbar **/
.navbar {
  position: relative;
  background-image: linear-gradient(to bottom right, #082a40, #0d4263);
  color: #fff;
  border: 0;
  padding: 4px;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0 15px 40px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}
/* Right-align collapsed navbar links on mobile */
@media (max-width: 991.98px) {
  /* Overlay the mobile menu below the fixed navbar to avoid layout shift */
  #mainNav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0px 0px 5px 5px;
  }
  #mainNav.show {
    display: block;
  }
  #mainNav .navbar-nav {
    width: 100%;
    align-items: flex-end;
  }
  #mainNav .nav-link {
    width: 100%;
    text-align: right;
    padding-left: 0;
    padding-right: 1rem;
    color: #082a40;
  }
}
/* Adjust spacing between navbar links — desktop only (≥ lg) */
@media (min-width: 992px) {
  #mainNav .nav-item {
    margin-right: 1.4rem;
    color: #082a40;
  }
  #mainNav .nav-item:last-child {
    margin-right: 0;
  }
}
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}
/* Mega menu layout */
.dropdown-menu.mega-menu {
  width: 530px;
  max-width: min(90vw, 900px);
  padding: 10px 10px 20px 10px;
  column-count: 2;
  column-gap: 5px;
  border-radius: 8px;
}
.footer-main {
  padding-right: 7em;
  padding-left: 7em;
  padding-top: 5em;
  padding-bottom: 15px;
}
/* Always use site color scheme for mega menu */
.dropdown-menu.mega-menu {
  background-color: #ffffff; /* white background */
  border: 1px solid #dfdfdf; /* subtle border */
  color: #082a40; /* dark blue text */
}
.dropdown-menu.mega-menu a.dropdown-item {
  color: #082a40;
}
.dropdown-menu.mega-menu a.dropdown-item:hover {
  background-color: #f0f7f3; /* light greenish background on hover */
  border-radius: 5px;
  color: #1da76e;
  padding-left: 18px;
}

/* Ensure items flow nicely into columns */
.dropdown-menu.mega-menu > li {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  padding: 0;
  list-style: none;
}
.dropdown-menu.mega-menu a.dropdown-item {
  white-space: normal;
  line-height: 1.2;
  padding: 6px 20px;
}
/* Keep headings full-width within columns */
.dropdown-menu.mega-menu p {
  margin-right: 20px;
}
/* Disable Bootstrap's pointer arrow caret since we're not using toggle JS */
.nav-link.dropdown-toggle::after {
  display: none;
}
/* On touch / small screens, keep it simple (no mega menu) */
@media (max-width: 991.98px) {
  .dropdown-menu.mega-menu {
    display: none !important;
  }
}
@media (max-width: 991.98px) {
  /* Hide dropdown menus completely on mobile */
  .dropdown-menu {
    display: none !important;
  }
  .dropdown-toggle::after {
    display: none !important;
  }
}

/** Secondary navigation **/
.nav-a .active,
.nav-a .active:focus,
.nav-a a:hover,
.nav-a li:hover > a {
  color: #35824f;
}
/** reCAPTCHA **/
.grecaptcha-badge {
  visibility: hidden;
}
/** Links for White  **/
.white a {
  color: #082a40;
}
.white a:hover {
  color: #1da76e;
}
.darkblue a {
  color: white;
}
.darkblue a:hover {
  color: #1da76e;
}

/** sample analysis mobile spacing **/
@media (max-width: 992px) {
  .img-mobile {
    min-height: 450px;
  }
  .footer-main {
    padding: 3em 8.3% 1em;
  }
  #sampleanalysis .master {
    padding-top: 0 !important;
  }
  #tailored .master {
    padding-bottom: 0 !important;
  }
}
@media (max-width: 768px) {
  .img-mobile {
    min-height: 240px;
  }
  .footer-main {
    padding: 3em 8.3% 1em;
  }
  #sampleanalysis .master {
    padding-top: 0 !important;
  }
  #tailored .master {
    padding-bottom: 0 !important;
  }
}
@media (max-width: 575.98px) {
  .master {
    padding-top: 3em;
    padding-bottom: 3em;
  }
  #sampleanalysis .master {
    padding-top: 0 !important;
  }
  #tailored .master {
    padding-bottom: 0 !important;
  }
  .titles-mobile {
    font-size: 1.8rem !important;
  }
}
@media (max-width: 992px) {
  .img-mobile {
    min-height: 240px;
  }
}

/** Font-awesome size **/
#f-social .fab,
#f-social .fa-brands {
  font-size: 30px !important;
  line-height: 1 !important;
}

/** image and video cover/no repeat **/
.lazy-background {
  background-size: cover !important; /* force if something overrides */
  background-repeat: no-repeat;
}

.navbar-toggler svg {
  stroke: #ffffff; /* your desired color */
  stroke-width: 2; /* optional thickness */
}

/****/

:root {
  --fixed-bottom-height: 58px;
}

.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  min-height: 320px;
}
#dynamicVideo,
#dynamicImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
dotlottie-player {
  display: block;
  margin: 0 auto;
}
.is-hidden {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.ajax-slot {
  min-height: 320px;
  contain: content;
}
.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em; /* matcher typisk FA baseline */
  margin-right: 10px;
  fill: currentColor;
}

/* Fixing mobile layout shift */
#navbar-boot {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: none;
  max-width: 2000px;
  margin: 0 auto;
  background-image: linear-gradient(to top right, #082a40, #0d4263);
}
@media (min-width: 992px) {
  #navbar-boot {
    display: block;
  }
}
body {
  padding-bottom: 0;
}
@media (min-width: 992px) {
  :root {
    --fixed-bottom-height: 58px;
  }
  body {
    padding-bottom: var(--fixed-bottom-height);
  }
}
.card {
  --bs-card-border-color: white;
}
ul {
  font-size: 1em;
}
ol {
  font-size: 1em;
}
