html,
body {
  overflow-x: hidden;
}

.logo {
  transform: translateX(-2%);
}

@keyframes slideInFromBottom {
  from {
    /*opacity: 0; */
    transform: translateY(100%);
  }
  to {
    /*opacity: 1 */
  }
}

.notification-banner {
  animation: 1.5s ease-out 5s 1 slideInFromBottom;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2147483645;
  box-sizing: border-box;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  /*background-color: #F1F6F4; */
}

.notification-banner__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 0;
}

.notification-banner__copy {
  margin-bottom: 16px;
}
/*
.notification-banner__actions {    
}
*/
.notification-banner__header {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #162447;
}

.notification-banner__description {
  font-weight: 400;
  color: #5b657e;
  font-size: 16px;
  line-height: 24px;
}

.notification-banner__cta {
  box-sizing: border-box;
  display: inline-block;
  min-width: 164px;
  padding: 11px 13px;
  border-radius: 2px;
  background-color: #2ce080;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-family: "CeraPRO-Regular", sans-serif, arial;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
}

.notification-banner__cta--secondary {
  padding: 9px 13px;
  border: 2px solid #3a4649;
  background-color: transparent;
  color: #2ce080;
}

.notification-banner__cta:hover {
  background-color: #20ba68;
}

.notification-banner__cta--secondary:hover {
  border-color: #838f93;
  background-color: transparent;
  color: #22c870;
}
/*
.notification-banner__cta:last-child {
margin-left: 16px; uncomment this if using more than one button 
}
*/
.sticky .navbar .navbar-nav .nav-item ab {
  color: #162447;
}

.sticky .navbar .navbar-nav .nav-item ab::before {
  color: #162447;
}

.sticky .navbar .navbar-toggler .toggler-icon {
  background: #162447;
}

.navbar-nav .nav-item ab {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 10px 0;
  position: relative;
  z-index: 1;
}

.navbar-nav .nav-item ab::before {
  content: "";
  position: absolute;
  height: 5px;
  width: 0;
  border-radius: 16px;
  /*background: #fdd446; */
  bottom: 15px;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-nav .nav-item ab::before {
    top: auto;
    bottom: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-nav .nav-item ab {
    display: inline-block;
    padding: 6px 0px;
    color: #162447;
  }
}

.navbar-nav .nav-item ab:hover::before,
.navbar-nav .nav-item ab.active::before {
  width: 100%;
}

#blurb,
#blurb1 {
  transition: opacity 0.5s ease-in-out;
}

@keyframes bob {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

.scroll-bottom {
  display: inline-block;
  animation: bob 2s infinite ease-in-out;
  animation-delay: 5s;
}

.scroll-bottom:hover {
  animation-play-state: paused;
}

.floating-image {
  transition: box-shadow 1s ease;
  border-radius: 6px; /* optional: for smoother edges */
}

.floating-image:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.tilt-wrapper {
  perspective: 1000px; /* Gives depth to the 3D effect */
  display: inline-block;
}

.tilt-image {
  transform: rotateX(0deg) rotateY(-10deg); /* initial tilt */
  transition: transform 0.1s ease;
  transform-style: preserve-3d;
  will-change: transform;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); /* Optional */
}

#logo-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: #000000; /* Bootstrap primary or your brand color */
  letter-spacing: 0.03em;
  margin-top: 2px;
}

/* Default: no line break (mobile) */
.desktop-break {
  display: none;
}

/* Show line break on wider screens */
@media (min-width: 768px) {
  .desktop-break {
    display: inline;
  }
}
