/* table of contents

1. global styles
2. navbar
3. footer
4. components
5. pages
  5.1 home
  5.2 mission
  5.3 story
  5.4 founder
  5.5 blog
  5.6 donate
  5.7 prayer (inactive)
  5.8 shop (inactive)
  5.9 events
6. media queries
   (breakpoints:
      x-small:    <  576px
      small:      >= 576px
      medium:     >= 768px
      large:      >= 992px
      x-large:    >= 1200px
      xx-large:   >= 1400px
   )

*/

/* Style organization

  /* Display
  display: flex;
  align-items: center;
  justify-content: center;

  /* Position
  position: absolute;
  left: -15rem;
  right: -15rem;
  bottom: -7rem;
  z-index: 3;

  /* Box Model
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
  padding: 2em;
  background: #333;

  /* Typography
  color: #fff;
  text-align: center;

  /* Miscellaneous
  border-radius: 0.5rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);

*/

/*
================
1. global styles
================ */

:root {
  /* Background Color*/
  --bg-body: #fafafa; /* #fbf5f3 */
  --bg-blue: #000f89;
  --bg-red: #df2935;
  --bg-orange: #e25822;
  --bg-yellow: #fdb10b;
  --bg-maroon: #af2655;
  --bg-light: #fafafa;
  --bg-dark: #000000;

  /* Text Color */
  --text-maroon: #af2655;
  --text-light: #ffffff;
  --text-dark: #333333;
  --text-blue: #000f89;
  --text-aqua: #00ffff;

  /* Typeface */
  --serif-playfair-display: "Playfair Display", serif;
  --sans-serif-atkinson-hyperlegible: "Atkinson Hyperlegible", sans-serif;

  /* Font Size */
  --fs-800: 3rem;
  --fs-750: 2.95rem;
  --fs-725: 2.5rem;
  --fs-700: 2rem;
  --fs-600: 1.5rem;
  --fs-500: 1.25rem;
  --fs-400: 1rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

::-webkit-scrollbar {
  /* hide scrolbar */
  display: none;
}

body {
  background-color: var(--bg-body);
}

textarea {
  resize: none;
}

#preloader {
  background: #fff url("/assets/efoh.gif") no-repeat center center;
  background-size: 8%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 10000;
}

.page-header {
  color: var(--text-blue);
  font-family: var(--serif-playfair-display);
  font-size: 3rem;
}

.page-header-spacer {
  margin-top: 140px;
}

.page-paragraphs p {
  font-size: var(--fs-600);
}

.page-paragraphs {
  font-size: var(--fs-600);
}

p {
  color: var(--text-dark);
  font-family: var(--sans-serif-atkinson-hyperlegible);
  font-size: var(--fs-400);
}

.subhead::first-letter {
  initial-letter: 4;
  padding-right: 5px;
  font-family: var(--serif-playfair-display);
  color: var(--text-blue);
}

/*
=========
2. navbar
========= */

#general-navbar {
  background-color: var(--bg-blue);
}

#home-navbar {
  transition: all 0.7s;
  background-color: rgba(0, 0, 0, 0.2);
}

#general-navbar,
#home-navbar {
  padding-top: 15px;
  padding-bottom: 15px;
}

#home-navbar:hover {
  background-color: var(--bg-blue);
}

.navbar-scrolled#home-navbar {
  background-color: var(--bg-blue);
  /*background-color: rgba(0, 0, 0, .25);
  -webkit-box-shadow: 0 8px 6px -6px #999;
  -moz-box-shadow: 0 8px 6px -6px #999;*/
  box-shadow: 0 8px 6px -6px #999;
}

/* nav item */
.nav-item {
  background-color: rgba(0, 0, 0, 0);
}

.nav-item:hover .nav-link {
  color: var(--text-aqua);
}

/*
.nav-item:hover {
  background-color: var(--bg-light);
}*/

/* nav link */
.nav-link {
  transition: all 0.3s;
  position: relative;
  color: var(--text-light);
  font-family: var(--sans-serif-atkinson-hyperlegible);
  font-size: 1.4rem;
  font-weight: 500;
}

/*
.nav-link:active {
  color: var(--text-accent-4-color);
}

.nav-link:hover {
  color: var(--text-accent-4-color);
}

.nav-link:hover::after {
  opacity: 1;
  color: var(--text-light);
}*/

.dropdown:hover {
  transition: all 1s ease;
}

.no-pointer {
  pointer-events: none;
}

.prevent-select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.dropdown > .dropdown-toggle:active {
  /* Without this, clicking will make it sticky */
  pointer-events: none;
}

/* navbar toggler */
.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active {
  box-shadow: none;
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/*
=========
3. footer
========= */
footer {
  background-color: var(--bg-blue);
  padding-top: 16px;
  padding-bottom: 5px;
}

.footer-copyright {
  color: var(--text-light);
  font-size: 1.2em;
}

.footer-text {
  color: var(--text-light) !important;
}

.form-control {
  border-radius: 0px;
}

.footer-btn-color {
  background-color: var(--bg-yellow) !important;
  color: var(--text-dark) !important;
  font-weight: bold;
  border-radius: 0px;
}

#footer-site-map p a {
  color: var(--text-light);
  font-size: var(--fs-600);
}

#footer-site-map a:hover {
  color: var(--text-aqua);
  transition: all 2s ease;
}

/* Effect 1: Brackets */
.cl-effect-1 a::before,
.cl-effect-1 a::after {
  display: inline-block;
  opacity: 0;
  color: var(--text-aqua);
  -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
  -moz-transition: -moz-transform 0.3s, opacity 0.2s;
  transition: transform 0.3s, opacity 0.2s;
}

.cl-effect-1 a::before {
  margin-right: 10px;
  content: "|";
  -webkit-transform: translateX(20px);
  -moz-transform: translateX(20px);
  transform: translateX(20px);
}

.cl-effect-1 a::after {
  margin-left: 10px;
  content: "|";
  -webkit-transform: translateX(-20px);
  -moz-transform: translateX(-20px);
  transform: translateX(-20px);
}

.cl-effect-1 a:hover::before,
.cl-effect-1 a:hover::after,
.cl-effect-1 a:focus::before,
.cl-effect-1 a:focus::after,
.cl-effect-1 a:active::before,
.cl-effect-1 a:active::after {
  opacity: 1;
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  transform: translateX(0px);
}

/*
=============
4. components
============= */

/* Contact form */
#honey {
  display: none;
}

/*
=============
5.1 home page
============= */
.carousel-item {
  transition: transform 1s ease-in-out;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  transition: opacity 0s 1s;
}

.homepage-section-header {
  color: var(--text-light);
  font-family: var(--serif-playfair-display);
  font-size: var(--fs-750);
}

.lead {
  font-family: var(--sans-serif-atkinson-hyperlegible);
  font-size: var(--fs-700);
  color: var(--text-light);
}

.homepage-section-paragraph {
  color: var(--text-light);
}

.read-more {
  font-size: 1rem;
  color: var(--text-dark);
}

.image-fit-to-object {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* mission - section */
#mission-section p,
i {
  color: var(--text-light);
  font-family: var(--serif-playfair-display);
  font-size: 4.5rem;
}

#mission-section i {
  font-size: 4.6rem;
}

.mission-background {
  background-image: linear-gradient(
      rgba(27, 154, 170, 0.4),
      rgba(27, 154, 170, 0.6),
      rgba(27, 154, 170, 0.8)
    ),
    url("/assets/images/home/mission_section/mission_background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  color: var(--text-light);
  padding: 0;
}

/* who we are - section */
.who-we-are {
  background-color: var(--bg-red);
}

/* what we do - section */
.what-we-do {
  background-color: var(--bg-orange);
}

/* heaven's embrace - section */
.heavens-embrace {
  background-color: var(--bg-yellow);
}

/* donate - section */

.donate-background {
  min-height: 70vh;
}

#donate-section {
  background-color: #000f89;
  min-height: 70vh;
  padding: 0;
}

#donate-section hr {
  width: 10%;
  margin: 0 auto;
}

/* whats next - section */
.whats-next {
  background-color: var(--bg-red);
}

/*
=====================
5.2 mission page
===================== */

.mission-red-text {
  color: var(--text-maroon);
}

/*
==============
5.3 story page
============== */

/* Vertical Timeline */
.timeline {
  position: relative;
}
.timeline::before {
  content: "";
  background: silver; /*#c5cae9*/
  width: 3px;
  height: 95%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.timeline-item {
  width: 100%;
  margin-bottom: 70px;
}
.timeline-item:nth-child(even) .timeline-content {
  float: right;
  padding: 40px 30px 10px 30px;
}
.timeline-item:nth-child(even) .timeline-content .date {
  right: auto;
  left: 0;
}
.timeline-item:nth-child(even) .timeline-content::after {
  content: "";
  position: absolute;
  border-style: solid;
  width: 0;
  height: 0;
  top: 30px;
  left: -15px;
  border-width: 10px 15px 10px 0;
  border-color: transparent #f5f5f5 transparent transparent;
}
.timeline-item::after {
  content: "";
  display: block;
  clear: both;
}
.timeline-content {
  position: relative;
  width: 45%;
  padding: 10px 30px;
  border-radius: 4px;
  background: #f5f5f5;
  box-shadow: 0 20px 25px -15px rgba(0, 0, 0, 0.3);
}
.timeline-content::after {
  content: "";
  position: absolute;
  border-style: solid;
  width: 0;
  height: 0;
  top: 30px;
  right: -15px;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #f5f5f5;
}
.timeline-img {
  width: 20px;
  height: 20px;
  /*background: var(--bg-maroon);*/
  /*content: url("/assets/images/our_story/red-stone-removebg-preview.png");*/
  /*border-radius: 0%;*/
  position: absolute;
  left: 50%;
  margin-top: 0px;
  margin-left: -10px;
  z-index: 10;
  /*transform: rotate(45deg);*/
}
.timeline-image-1 {
  background-color: var(--bg-red);
}
.timeline-image-2 {
  background-color: var(--bg-orange);
}
.timeline-image-3 {
  background-color: var(--bg-yellow);
}
.timeline-anchor {
  background: #3f51b5;
  color: #fff;
  padding: 8px 20px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 20px;
  margin-top: 10px;
  display: inline-block;
  border-radius: 2px;
  box-shadow: 0 1px 3px -1px rgba(0, 0, 0, 0.6);
}
.timeline-anchor:hover,
.timeline-anchor:active,
.timeline-anchor:focus {
  background: #32408f;
  color: #fff;
  text-decoration: none;
}
.timeline-card {
  padding: 0 !important;
}
.timeline-card p {
  padding: 0 20px;
}
.timeline-card a {
  margin-left: 20px;
}
.timeline-item .timeline-img-header {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)),
    url("/assets/images/our_story/frbretone-2-1.jpg") center center no-repeat;
  background-size: cover;
}

#img-2 {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)),
    url("/assets/images/our_story/stjamescathedral.jpg") center center no-repeat;
  background-size: cover;
}
#img-3 {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)),
    url("/assets/images/our_story/chasuble-sketch.jpg") center center no-repeat;
  background-size: cover;
}
#img-4 {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)),
    url("/assets/images/our_story/chasuble-wood-frame.jpg") center center
      no-repeat;
  background-size: cover;
}
#img-5 {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)),
    url("/assets/images/our_story/chasuble-finished.jpg") center center
      no-repeat;
  background-size: cover;
}

.timeline-img-header {
  height: 300px; /* default 200px */
  position: relative;
  margin-bottom: 20px;
}
.timeline-img-header h2 {
  color: #fff;
  position: absolute;
  bottom: 5px;
  left: 20px;
}
blockquote {
  margin-top: 30px;
  color: #757575;
  border-left-color: #3f51b5;
  padding: 0 20px;
}
.date {
  font-size: 20px;
  display: inline-block;
  color: #fff;
  font-weight: 600;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
}

.date-1 {
  background: var(--bg-red);
}
.date-2 {
  background: var(--bg-orange);
}
.date-3 {
  background: var(--bg-yellow);
}

/* Vertical Timeline */

/* END - Our Story */

/*
================
5.4 founder page
================ */

#founder-quote-block {
  border-top: 1px solid var(--bg-maroon);
  border-bottom: 1px solid var(--bg-maroon);
}

#founder-quote-block p {
  font-size: 2.5rem;
  font-family: var(--serif-playfair-display);
}

.education,
.service {
  background: var(--bg-light);
  border: 0px solid var(--bg-maroon);
  padding: 20px;
}

.cv-text {
  font-size: 24px;
}

.es-header {
  border-bottom: 3px solid var(--bg-maroon);
  margin-bottom: 20px;
}

.highlights {
  background: var(--bg-orange);
}

.highlights-card {
  margin-bottom: 20px;
  background: var(--bg-orange);
  color: var(--text-light);
  font-size: 24px;
  box-shadow:  5px 5px 10px #ae441a,
             -5px -5px 10px #ff6c2a;
}

.highlights-width {
  max-width: 1000px;
}

.highlights-para ul {
  color: var(--text-light);
  font-size: 24px;
}

.highlights-para li {
  margin-bottom: 15px;
}

.cv-header {
  margin: 80px 0 40px 0;
  text-align: center;
}

.curriculum-vitae p {
  font-size: 22px;
}

.cv-date {
  font-size: 16px;
  font-weight: bold;
  font-style: italic;
  color: var(--text-maroon);
  margin-bottom: -5px;
}

.short-line-height {
  margin-bottom: -5px;
}

/*
=============
5.5 blog page
============= */
iframe {
  height: 70vh;
}

/*
===============
5.6 donate page
=============== */
#donate-thank-you {
  border-top: 1px solid var(--bg-maroon);
  border-bottom: 1px solid var(--bg-maroon);
}

#donate-thank-you p {
  color: var(--text-dark);
  font-size: var(--fs-600);
  font-style: italic;
  margin-bottom: 0;
  padding: 5px 20px;
}

button#donate-stripe {
  padding: 10px;
  background: var(--bg-blue);
}

button#donate-stripe a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 24px;
  font-weight: bold;
}

button#donate-stripe i {
  margin-right: 15px;
  color: var(--text-light);
}

/* Donate Page Payment Method Cards*/
.donate-card {
  width: auto;
}
.card-header.ch-1 {
  background: var(--bg-red);
}
.card-header.ch-2 {
  background: var(--bg-orange);
}
.card-header.ch-3 {
  background: var(--bg-yellow);
}
.card-header .card-title {
  color: var(--text-light);
}
.material-symbols-outlined {
  color: var(--text-light);
}
.material-symbols-outlined {
  font-size: 48px;
  font-variation-settings: "FILL", "wght" 400, "GRAD" 0, "opsz" 24;
}

/*
=====================
5.7 prayer page
===================== */

.prayer-description {
  padding-left: 0px;
}

.prayer-indent {
  margin-left: 25px;
}

.prayer-container {
  max-width: 700px;
  border-left: 1px solid var(--bg-maroon);
  border-right: 1px solid var(--bg-maroon);
}

.prayer-container b {
  font-size: 22px;
}

.prayer-container * {
  padding-left: 60px;
}

.responsorial {
  padding-left: 0px;
}

.leader,
.response {
  padding-left: 60px;
}

.lr-text {
  padding-left: 0px;
}

.prayer-color {
  color: var(--bg-maroon);
}

/*
=============
5.8 shop page
============= */

#shop-page-main {
  min-height: 70vh;
}

/*
===============
5.9 events page
=============== */

.events-page-height {
  min-height: 65vh;
}

/*
================
6. media queries
================ */

@media (min-width: 40em) {
  :root {
    --fs-400: 1.125rem;
    --fs-800: 5rem;
  }
}

/* Navbar */
/*
@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }
  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    margin-top: 0;
    border-radius: 0px;
  }
  .navbar .nav-item:hover .nav-link {
    color: var(--text-light);
    font-weight: 700;
  }
  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }
  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }
  .navbar .nav-item:hover .dropdown-menu {
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
    border: 1px solid lightgray;
  }

  .navbar .nav-item:hover .dropdown-menu li a:hover {
    background: rgba(0, 15, 137, 0.1);
    width: 99.9%;
  }
}*/

@media (min-width: 992px) {
  .dropdown-menu {
    display: block;
    right: 0;
    opacity: 0;
    transition: all 0.5s;
    background-color: var(--bg-blue);
    border-radius: 0px;
    border-color: var(--bg-blue);
  }

  .dropdown-menu a:active {
    background-color: var(--bg-blue) !important;
  }

  .dropdown-menu a:hover {
    background-color: var(--bg-blue) !important;
    color: var(--text-aqua);
  }

  .dropdown-item {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 400;
  }

  .dropdown:hover > .dropdown-menu {
    display: block;
    background-color: var(--bg-blue);
    right: 0;
    opacity: 1;
  }

  /*
  ul li {
    display: inline-block;
    position: relative;
  }

  ul li:hover:before {
    content: "";
    position: absolute;
    top: 5px;
    background: aqua;
    width: 5px;
    height: 5px;
    border-radius: 80%;
    left:calc(50% - 0px);
  }*/
}

@media (max-width: 991px) {
  .nav-item:hover {
    border-top: none;
  }
}
/* //Navbar */

/* Homepage Sections Text */
@media (max-width: 600px) {
  #mission-section p {
    font-size: var(--fs-700);
    line-height: 45px;
  }
  #mission-section i {
    font-size: var(--fs-700);
    line-height: 45px;
  }
  .homepage-section-header-light {
    font-size: var(--fs-700);
  }
  .donate-section-paragraph {
    font-size: var(--fs-600);
  }
  .home-lead {
    font-size: var(--fs-600);
  }
}
/* //Homepage Sections Text */

/* Homepage Donate Section */
@media (max-width: 600px) {
  #supportUs {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
/* //Homepage Donate Section */

/* Donate Gem Button */
@media (min-width: 601px) {
  #donate-gem,
  #donate-gem-2 {
    width: 100px;
  }
}

@media (max-width: 600px) {
  #donate-gem {
    width: 80px;
    margin-top: 30px;
  }
  #donate-gem-2 {
    width: 80px;
  }
}

@media (max-width: 992px) {
  #donate-gem-solo {
    width: 80px;
  }
}

@media (max-width: 767px) {
  #donate-gem-solo {
    width: 65px;
  }
}

@media (max-width: 575px) {
  #donate-gem-solo {
    width: 50px;
  }
}

/* //Donate Gem Button */

/* Story Page */
@media screen and (max-width: 768px) {
  .timeline::before {
    left: 50px;
  }
  .timeline .timeline-img {
    left: 50px;
  }
  .timeline .timeline-content {
    max-width: 100%;
    width: auto;
    margin-left: 70px;
  }
  .timeline .timeline-item:nth-child(even) .timeline-content {
    float: none;
  }
  .timeline .timeline-item:nth-child(odd) .timeline-content::after {
    content: "";
    position: absolute;
    border-style: solid;
    width: 0;
    height: 0;
    top: 30px;
    left: -15px;
    border-width: 10px 15px 10px 0;
    border-color: transparent #f5f5f5 transparent transparent;
  }
}
/* //Story Page */

/* Founder Page */
@media (max-width: 600px) {
  #founder-quote-block p {
    font-size: 1.7rem;
  }
}
/* //Founder Page */

/* Prayer Page */
@media (max-width: 600px) {
  .prayer-container b {
    font-size: 12px;
  }
  .timeline-img {
    width: 20px;
    margin-left: -10px;
  }
}

@media (min-width: 601px) {
  .prayer-container b {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .prayer-container * {
    padding-left: 20px;
  }

  .responsorial {
    padding-left: 0px;
  }

  .leader,
  .response {
    padding-left: 20px;
  }

  .lr-text {
    padding-left: 0px;
  }
}
/* //Prayer Page */

/* //Scroll to top code */
@media (max-width: 600px) {
  .scrollToTopBtn {
    background-color: var(--bg-blue);
    border: 1px solid var(--bg-light);
    padding: 0 5px;
    border-radius: 10px;
    cursor: pointer;

    /* place it at the bottom right corner */
    position: fixed;
    bottom: 10px;
    right: 25px;
  }
}
/* //Scroll to top code */

/* SANDBOX */

/* Founder Quote Border */
#founder-quote-block {
  border-top: 5px solid var(--bg-red);
  border-bottom: 5px solid var(--bg-red);
  background: var(--bg-red);
}

#founder-quote-block p,
cite {
  color: var(--text-light);
}

/* Curriculum Vitae  and Highlights */
.es-header {
  border-bottom: 3px solid var(--bg-dark);
  margin-bottom: 20px;
}

.cv-date {
  font-size: 16px;
  font-weight: bold;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: -5px;
}



/* Carousel Indicators */

/*
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='blue' viewBox='0 0 8 8'><path d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/></svg>") !important;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='blue' viewBox='0 0 8 8'><path d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/></svg>") !important;
*/

.carousel-indicators [data-bs-target] {
  background-color: var(--text-light);
  width: 10px;
  height: 10px;
  border-radius: 0%;
  margin-bottom: 40px;
}

/* Offcanvas Nav */
.offcanvas-body .nav-item {
  text-align: start;
}
.offcanvas-header img {
  width: 200px;
}
.offcanvas-body {
  background: transparent;
}
.navbar {
  padding-top: 0px;
  padding-bottom: 0px;
}
#offcanvasNavbar {
  transition: all 0.7s ease;
}

@media only screen and (max-width: 991px) {
  .dropdown-menu {
    display: block;
    position: static;
    background-color: var(--bg-blue);
    border: 0 none;
    box-shadow: none;
    margin-top: 0;
    position: static;
    width: 100%;
  }

  .navbar-nav .dropdown-menu > li > a,
  .navbar-nav .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .dropdown-menu > li > a {
    line-height: 20px;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  .navbar-nav .dropdown-menu > li > a {
    margin-left: 20px;
  }
  .navbar-nav .nav-item .nav-link {
    font-size: 1.5rem;
  }
  .navbar-nav .nav-item .nav-link:hover {
    color: aqua;
    transition: all 0.5s ease;
  }
  .dropdown-menu li a:hover {
    background-color: #000f89;
    color: aqua;
  }
  .offcanvas-header,
  .offcanvas-body {
    background: #000f89;
  }
  #donate-gem {
    margin-top: 30px;
  }
}

@media (min-width: 991px) {
  .offcanvas-body .navbar-nav {
    align-items: center;
  }
}

@media (min-width: 992px) {
  .dropdown {
    margin-right: 10px;
    margin-left: 10px;
  }

  .cl-effect-header a::before,
  .cl-effect-header a::after {
    display: inline-block;
    opacity: 0;
    color: var(--text-aqua);
    -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
    -moz-transition: -moz-transform 0.3s, opacity 0.2s;
    transition: transform 0.3s, opacity 0.2s;
  }

  .cl-effect-header a::before {
    margin-right: 10px;
    content: "|";
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    transform: translateX(20px);
  }

  .cl-effect-header a::after {
    margin-left: 10px;
    content: "|";
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  .cl-effect-header a:hover::before,
  .cl-effect-header a:hover::after,
  .cl-effect-header a:focus::before,
  .cl-effect-header a:focus::after,
  .cl-effect-header a:active::before,
  .cl-effect-header a:active::after {
    opacity: 1;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@media (max-width: 575px) {
  .homepage-section-header,
  .page-header {
    font-size: var(--fs-725);
  }
  .subhead::first-letter {
    initial-letter: 2;
  }
  .page-paragraphs p {
    font-size: var(--fs-500);
  }
  .page-paragraphs {
    font-size: var(--fs-500);
  }
}

@media (max-width: 1199px) {
  .donate-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  #carouselHero .carousel-item img {
    height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    /*
    background-repeat: no-repeat;
    background-size: 100% 100%;
    min-height: 100vh;
    */
  }
}

@media (max-width: 576px) {
  #home-navbar {
    background-color: var(--bg-blue);
  }
}

.bi-facebook:hover {
  color: var(--text-aqua);
}
