.note-editor .note-editable {
  font-family: "Poppins", sans-serif;
}
/* SLIDER FIX */
.carousel-item {
  height: 550px;
  position: relative;
}

/* Image */
.slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tablet */
@media (max-width: 992px) {
  .carousel-item {
    height: 350px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .carousel-item {
    height: 220px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .carousel-item {
    height: 180px;
  }
}

/* CAPTION */
.carousel-caption {
  bottom: 220px;
}

.carousel-caption h5 {
  font-size: 45px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.carousel-caption p {
  width: 60%;
  margin: auto;
  font-size: 18px;
  line-height: 1.9;
}

/* DARK OVERLAY */
.carousel-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; /* FIXED */
  background: rgba(0, 0, 0, 0.25);
}

#main-menu ul ul {
  max-height: 450px; /* height of dropdown */
  overflow-y: auto; /* enable vertical scroll */
  overflow-x: hidden;
}
html {
  overflow-x: hidden;
}

.scroll-outer {
  display: flex;
  justify-content: center;
  width: 100%;
}

.scroll {
  overflow-x: hidden;
  display: flex;
  width: 100%;
}

.scrolling-card {
  display: inline;
}

.scrolling-card > img {
  padding: 10px;
  border-radius: 20px;
  height: 300px;
  transition: padding 0.5s;
}

.scrolling-card > img:hover {
  padding-left: 28px;
  padding-right: 28px;
  transition: padding 0.5s;
}
/* Hide text by default */
.mobile-text,
.mobile-tagline,
.mobile-title {
  display: none;
}

/* MOBILE VIEW FIX */
@media (max-width: 768px) {
  /* Make navbar row flex */
  #navigation .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Logo + text inline */
  .site-logo a {
    display: flex;
    align-items: center;
  }

  .site-logo img {
    height: 50px;
  }
  .mobile-text {
    display: flex;
    flex-direction: column;
    margin-left: 6px;
    line-height: 1.1;
  }

  .mobile-title {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #00356b;
    white-space: nowrap;
  }
  .mobile-tagline {
    display: block;
    font-size: 10px;
    font-style: italic;
    color: #00356b;
    white-space: nowrap;
  }

  /* Make menu area smaller so hamburger stays right */
  #navigation .col-9 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  /* Ensure hamburger stays right */
  .mobile_menu {
    margin-left: auto;
  }
}
