body{
    overflow-x: hidden;
    padding-right: 0 !important;
}

/* ── Splash / Loading Screen ──────────────────────────────── */
#cca-splash {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#cca-splash.splash-hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#cca-splash .splash-logo {
    width: 90px;
    height: auto;
    /* logo.gif carries its own animation - no CSS pulse on top of it */
}

/* Animated logo.gif is square with grey corners - clip to a circle so it
   sits flush on the white splash. Art stays well inside the circle. */
#cca-splash .splash-logo-anim {
    border-radius: 50%;
}

/* Static PNG fallback (reduced-motion, or if the GIF fails to load) */
#cca-splash .splash-logo-static {
    animation: splashPulse 1.6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    #cca-splash .splash-logo-static { animation: none; }
    #cca-splash .splash-bar-fill    { animation: none; width: 40%; margin-left: 30%; }
}

#cca-splash .splash-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #001498;
    text-transform: uppercase;
    opacity: 0.8;
}

#cca-splash .splash-bar-track {
    width: 180px;
    height: 4px;
    border-radius: 4px;
    background: rgba(0, 20, 152, 0.12);
    overflow: hidden;
}

#cca-splash .splash-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, #001498, #f78d3f);
    animation: splashBar 1.8s ease-in-out infinite;
}

@keyframes splashPulse {
    0%, 100% { transform: scale(1);   opacity: 1;    }
    50%       { transform: scale(1.04); opacity: 0.85; }
}

@keyframes splashBar {
    0%   { width: 0%;    margin-left: 0%;    }
    50%  { width: 70%;   margin-left: 15%;   }
    100% { width: 0%;    margin-left: 100%;  }
}

    /* ── Comet cursor trail ─────────────────────────────────────
    .comet-trail {
        position: fixed;
        border-radius: 50%;
        pointer-events: none;
        z-index: 99999;
        mix-blend-mode: screen;
    } */

/* ── Gift Card FAB widget ─────────────────────────────────── */
#gc-fab-container {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

#gc-fab-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #001498, #f78d3f);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0, 20, 152, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

#gc-fab-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(247, 141, 63, 0.45);
}

.gc-fab-tooltip {
    position: absolute;
    right: 68px;
    background: #001498;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

#gc-fab-btn:hover .gc-fab-tooltip {
    opacity: 1;
}

#gc-fab-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    animation: gcMenuIn 0.2s ease;
}

#gc-fab-menu.gc-hidden {
    display: none;
}

.gc-fab-item {
    background: #ffffff;
    color: #001498;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 24px;
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(0, 20, 152, 0.18);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease;
}

.gc-fab-item:hover {
    background: #001498;
    color: #fff;
    transform: translateX(-4px);
}

@keyframes gcMenuIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.btn-overall {
    margin-bottom: 5px;
    background-color: #001498;
    color: #fff;
    padding: 8px 20px;
    border-radius: 15px;
    text-decoration: none;
    transition: 0.3s background-color, 0.3s color, 0.3s border-color;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-overall:hover {
    background-color: #ffffff;
    border-color: #001498;
    color: #001498;
}
.btn-overall:active {
    background-color: #e6eaf7;
    color: #001498;
    box-shadow: rgba(0, 20, 152, .2) 0 1px 0 inset;
}


/* ------------------- Animation CSS-------------------------*/

.reveal{
    transform: translateY(150px);
    opacity: 0;
    transition: all 1s ease;
}

.reveal.active{
    transform: translateY(0px);
    opacity: 1;
}

/* ------------------- Card Hover Animation CSS-------------------------*/

  .animate-border {
    box-sizing: border-box;
    transition: all .35s ease;
    display: inline-block;
    list-style: outside none none;
    margin: .5em 1em;
    padding: .5em .8em;
    color: rgba(255,255,255,.5);
    position: relative;
    text-decoration: none;
    font-size: 20px;
  }
  
  .animate-border::before,
  .animate-border::after {
    content: '';
    height: 50px;
    width: 50px;
    position: absolute;
    transition: all .35s ease;
    opacity: 0;
  }
  
  .animate-border::before {
    content: '';
    right: 0;
    top: 0;
    border-top: 5px solid #001498;
    border-right: 5px solid #f78d3f;
    transform: translate(-100%, 50%);
  }
  
  .animate-border:after {
    content: '';
    left: 0;
    bottom: 0;
    border-bottom: 5px solid #001498;
    border-left: 5px solid #f78d3f;
    transform: translate(100%, -50%)
  }
  
  .animate-border:hover:before,
  .animate-border:hover:after{
    transform: translate(0,0);
    opacity: 1;
  }
 .hover-scale {
  transition: transform 0.5s ease;
}
.hover-scale:hover {
  transform: scale(1.1);
}
/* --------------------------- Navbar CSS-------------------------------*/

/* --------------------------- Navbar CSS-------------------------------*/

.navbar {
    background-color: #ffffff2c;
    padding: 0.5rem 20px;
    margin: 0;
    top: 12px !important;
    left: 20px !important;
    right: 20px !important;
    width: auto !important;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar-transparent {
    background-color: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(4px);
    box-shadow: none;
}

.navbar-scrolled {
    background-color: #ffffff;
    backdrop-filter: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-scrolled .nav-link {
    color: #001498;
}

.navbar-scrolled .navbar-toggler {
    color: #001498;
}

.navbar-white {
    background-color: #ffffff;
    color: #001498; 
}
.navbar-nav .nav-link.active{
    color: #fff;
}

.navbar-white .navbar-brand, .navbar-white .nav-link, .navbar-white .navbar-nav, .navbar-white .nav-link.active{
    color: #001498;
}

.navbar-brand{
    font-weight: 500;
    color: #185ca4;
    font-size: 24px;
    transition: 0.3s color;
    display: flex;
    justify-content: center;
}
.navbar-brand img{
    border-radius:10px;
    
}
.container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* ---- Beating heart icon on donate buttons ---- */
@keyframes heartBeat {
    0%    { transform: scale(1);    filter: drop-shadow(0 0 0px transparent); }
    12%   { transform: scale(1.55); filter: drop-shadow(0 0 10px rgba(255,80,80,0.85)) drop-shadow(0 0 22px rgba(247,141,63,0.55)); }
    25%   { transform: scale(1.15); filter: drop-shadow(0 0 4px rgba(255,80,80,0.35)); }
    38%   { transform: scale(1.38); filter: drop-shadow(0 0 8px rgba(255,80,80,0.65)) drop-shadow(0 0 16px rgba(247,141,63,0.40)); }
    60%   { transform: scale(1);    filter: drop-shadow(0 0 0px transparent); }
    100%  { transform: scale(1);    filter: drop-shadow(0 0 0px transparent); }
}
.donate-button-nav i,
.donate-button i {
    display: inline-block;
    animation: heartBeat 1.7s ease-in-out infinite;
    transform-origin: center;
}
.donate-button-nav:hover i,
.donate-button:hover i {
    animation: none;
    transform: scale(1.25);
    filter: drop-shadow(0 0 7px rgba(247,141,63,0.75));
}
@media (prefers-reduced-motion: reduce) {
    .donate-button-nav i, .donate-button i { animation: none; }
}

.donate-button-nav{
    height: 38px;
    background-color: #f78d3f;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.donate-button-nav:hover{
    background-color:#fff;
    color: #f78d3f;
    border-color:#f78d3f;
    box-shadow: 0 4px 20px rgba(247,141,63,0.30);
}

.donate-button-nav:active {
    background-color: #ffffff6e;
    box-shadow: rgba(20, 70, 32, .2) 0 1px 0 inset;
}

.login-button{
    background-color: #001498;
    color: #fff;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s background-color, 0.3s color, 0.3s border-color;
    border: 2px solid transparent;
}

.login-button:hover{
    background-color: #fff;
    color: #001498;
    border-color:#001498;
    
}

.login-button:active {
    background-color: #ffffff6e;
    box-shadow: rgba(20, 70, 32, .2) 0 1px 0 inset;
}

.navbar-toggler{
    text-align: left;
    border: none;
    font-size: 1.75rem;
    outline: none;
    display: block;
    /* Ensure toggler is always clickable and visible */
    cursor: pointer;
    z-index: 1;
    position: relative;
    /* Force pointer events to ensure tap works on first load */
    pointer-events: auto !important;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler:focus .btn-close:focus{
    box-shadow: none;
    outline: none;
}

.nav-link{
    color: #fff;
    font-weight: 500;
    position: relative;
}

.nav-link:hover, .nav-link.active{
    color: #000;
}

@media (min-width: 991px){
    
    .nav-link::before{
        content:"";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: #185ca4;
        visibility: hidden;
        transition: 0.3s ease-in-out;
    }

    .nav-link:hover::before, .nav-link.active::before{
        width: 100%;
        opacity: 1;
        color: #000;
    }

    
}

@media (max-width: 991px){
    
    .nav-link::before{
        content:"";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: #185ca4;
        visibility: hidden;
        transition: 0.3s ease-in-out;
    }

    .nav-link:hover::before, .nav-link.active::before{
        width: 100%;
        opacity: 1;
        color: #000;
    }
    .navbar-scrolled{
        margin-top: 3.5vh;
    }
    .offcanvas-backdrop.show{
        background-color: white;
        opacity: 1;
    }
    .offcanvas-body{
                overflow-y: visible ;
    }
              body:has(.offcanvas-backdrop.show){
            padding-right: 12px;
    }
}
.offcanvas-header {
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.centered-header-content {
    flex-grow: 1; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center; 
}

.btn-close {
    position: absolute;
    right: 10px; 
    top: 10px; 
}

.navbar-buttons {
    display: flex;
    align-items: center;
}
.navbar.navbar-scrolled .nav-link.active{
    color:#f78d3f;
}
/* Hide Referral Login button on desktop */
@media (min-width: 992px) {
    .btn-login {
        display: none; 
    }
    .donate-button{
        display: none;
    }
}

@media (max-width: 991px) {
    
    .navbar-brand{
        margin-bottom: 10px;
        
    }

    .donate-button-nav{
        visibility: hidden;
    }
    .navbar-brand img{
   
        width:130px !important;
        height:40px !important;
    }
    .donate-button{
        background-color: #f78d3f;
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        padding: 8px 20px;
        border-radius: 10px;
        text-decoration: none;
        border: 2px solid transparent;
        margin-bottom: 10px;
        margin-right: 5px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    }

    .donate-button:hover{
        background-color:#fff;
        color: #f78d3f;
        border-color:#f78d3f;
    }

    .donate-button:active {
        background-color: #ffffff6e;
        box-shadow: rgba(20, 70, 32, .2) 0 1px 0 inset;
    }
    
    .navbar-buttons {
        display: none;
    }
    .btn-login {
        width: 100%; 
        margin-bottom: 5px; 
        background-color: #001498;
        color: #fff;
        font-size: 14px;
        padding: 8px 20px;
        border-radius: 10px;
        text-decoration: none;
        transition: 0.3s background-color;
        display: block; 
    }
    
    .btn-login:hover{
        background-color: #fff;
        color: #001498;
        border-color:#001498;
        
    }
    .btn-login:active {
        background-color: #0f3a68;
        box-shadow: rgba(20, 70, 32, .2) 0 1px 0 inset;
    }
    .navbar-brand{
        font-weight: 500;
        color: #185ca4;
        font-size: 24px;
        transition: 0.3s color;
    }
    
    .nav-link, .nav-link:active, .navbar-nav .nav-link.active{
        color: #000;
    }

    .nav-link::before{
        content:"";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: #185ca4;
        visibility: hidden;
        transition: 0.3s ease-in-out;
    }

    .nav-link:hover::before, .nav-link.active::before{
        width: 50%;
        visibility: visible;
    }
}

.navbar-nav .nav-link, .donate-button-nav, .login-button {
    margin: 0 5px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 16px;
}

.dropdown-menu {
    background-color: #ffffff; 
    border-radius: 4px; 
    border: 1px solid #ddd; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
}

.dropdown-item {
    color: #001498; 
    padding: 8px 20px; 
}

.dropdown-item:hover, .dropdown-item:focus {
    color: #185ca4;
    background-color: #f8f9fa; 
}


.dropdown:hover > .dropdown-menu {
    display: block;
}


/* --------------------------------------------------------- Body CSS-------------------------------------------------------------------------*/


/* ------------------------------------ Homepage CSS--------------------------------------------*/

/* ------------------- Carousel CSS-------------------------*/
.carousel-item img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    filter: brightness(30%);
}

@media (min-width: 768px) {
    .carousel-item img {
        height: 85vh;
    }
}

.main-header {
    font-size: 70px; 
}

.main-subheader {
    font-size: 24px; 
}

@media (max-width: 991px) {
    .main-header {
        font-size: 40px; 
    }

    .main-subheader {
        font-size: 20px; 
    }
}

/* ------------------- Counter CSS-------------------------*/

.counter
{
  text-align: center;
}

.counter-count
{
  font-size: 50px;
  font-weight: bold;
  position: relative;
  text-align: center;
  display: inline-block;
}

/* ------------------- FEATURETTES CSS-------------------------*/

.hr {
    border-top: 1px solid rgb(0, 0, 0);
}
.featurette-divider {
    margin: 5rem 0;
    color: #666777;
  }
  
  .featurette-heading {
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.05rem;
    content: '';
    transform: translate3d(-10px,0,0);
    transition: .2s ease;

  }

.featurette-heading::before{
    content: '';
    transform: translate3d(-10px,0,0);
}

.featurette-heading:hover{
    padding-left: 30px;
}

.featurette-heading:hover .featurette-heading::before{
    transform: translate3d(0,0,0);
}

.zoom-animate {
    display: inline-block;
    transition: transform 0.3s ease;
}

.zoom-animate:hover {
    transform: scale(1.03);
}

/* News carousel images - uniform sizing without distortion */
.news-carousel-img {
    height: 50vh;
    width: 100%;
    max-width: 480px;
    object-fit: cover;
    border-radius: 12px;
}

  @media (min-width: 40em) {
    .carousel-caption p {
      margin-bottom: 1.25rem;
      font-size: 1.25rem;
      line-height: 1.4;
    }
  
    .featurette-heading {
      font-size: 50px;
    }
  }
  
  @media (min-width: 62em) {
    .featurette-heading {
      margin-top: 7rem;
    }
  }

  .card.mb-6.box-shadow{
    background-color: #ffffff00;
  }

  .card.mb-6.box-shadow:hover{
    background-color: #fff;
  }
/* ------------------- Corporate Slider CSS-------------------------*/

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-4250px);
    }
}

.slider {
    height: 200px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider .slide-track {
    margin-top: 20px;
    animation: scroll 25s linear infinite;
    display: flex;
    width: max-content;
}

.slider .slide {
    height: 150px;
    width: auto;
    padding: 0 50px; 
    box-sizing: border-box;
    display: flex; 
    align-items: center; 
}

/* ------------------- Footer CSS-------------------------*/

.custom-footer .row {
    margin: 30px 0;
}

.custom-footer h6, .custom-footer p, .custom-footer h5 {
    font-size: 1.2rem;
}

.custom-footer a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.custom-footer a:hover {
    color: #f78d3f !important;
}

footer .border-bottom a {
    transition: opacity 0.2s ease;
}

footer .border-bottom a:hover {
    opacity: 0.75;
}

.col-md-3.col-lg-3.col-xl-3.mx-auto.mb-md-0.mb-4 {
    text-align: left;
}

.col-lg-3.col-md-3.col-xl-3.mb-4.mb-md-0 {
    text-align: left;
}
.col-md-2.col-lg-3.col-xl-3.mx-auto.mb-4{
    text-align: left;
}

@media (max-width: 991px) {
    .col-lg-3.col-md-3.col-xl-3.mb-4.mb-md-0 {
        text-align: center;
    }
    .col-md-3.col-lg-3.col-xl-3.mx-auto.mb-md-0.mb-4 {
        text-align: center;
    }
    .col-md-2.col-lg-3.col-xl-3.mx-auto.mb-4{
        text-align: center;
    }
}


/* ------------------------------------ About Us Page CSS--------------------------------------------*/

/* ------------------------------------ About Us - About Us Page CSS--------------------------------------------*/

/* ------------------- Our Value Icons CSS-------------------------*/

.value-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 30px;
}

.fa-4x {
    font-size: 4em;
    color:#001498;
}
.value-content-inner:hover .fa-4x {
    color: #ffffff;
}

/* ------------------- Hover Animations CSS-------------------------*/

.value-content-inner {
    background-color: white;
    border-radius: 20px;
    border: 1px solid #0014985e;
    transition: background-color 0.3s, color 0.3s;
}

.value-content-inner:hover {
    background-color: #001498;
    color: white;
}

.value-icon, .value-content h5, .value-content p {
    color: #001498;
    transition: color 0.3s;
}

.value-content-inner:hover .value-icon,
.value-content-inner:hover .value-content h5,
.value-content-inner:hover .value-content p {
    color: white;
}

.content-inner{
    background-color: #fff;
}

.col-lg-6:hover h1, 
.col-lg-6:hover h6
{
    color: white;
}


.content-inner:hover {
    background-color: #001498;
    border-color: #001498;
}


.col-lg-6 h1, 
.col-lg-6 h6, 
.content-inner {
    transition: color 0.3s, background-color 0.3s;
}


.heading-overall{
    color:#001498;
}

.content-inner:hover .lead,
.content-inner:hover .heading-overall,
.content-inner:hover .paragraph-overall{
    color:#fff;
}

.content-inner .lead{
    color: #001498;
}

/* ------------------------------------ Undercover Project Page CSS--------------------------------------------*/


/* ------------------- Undercover Chart Mobile View CSS-------------------------*/

@media (max-width: 991px) {
    .custom-mob-center {
        justify-content: center; 
        align-items: center;    
        flex-direction: column;
        }
    }
    
/* ------------------------------------ Board of Directors Page CSS--------------------------------------------*/

.bod-section{
    margin-left: 400px;
    margin-right:400px;
}

@media (max-width: 991px) {
    .bod-section{
        margin-left: 200px;
        margin-right: 200px;
    }
}

/* ------------------------------------ DONATION PAGE CSS--------------------------------------------*/

/* ------------------------- CORPORATE PRICING TABLE CSS---------------------------*/

.pricing {
  margin-top: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 8px 16px 0px rgba(0, 0, 0, 0.1);
}

.pricing-card-heading {
  padding: 10px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
}

.pricing-card-heading-silver {
    background: linear-gradient(
        90deg,
        #C9CCD5 0%,
        #C7C7C7 100%
      );
  color: #fff;
  font-weight: 700;
}

.pricing-card-heading-gold {
  background: linear-gradient(
    90deg,
    #9A9483 0%,
    #D9CAB3 100%
  );
  color: #fff;
  font-weight: 700;
}

.pricing-card-heading-diamond {
  background: linear-gradient(
    90deg,
    #C9CCD5 0%,
    #787A91 100%
  );
  color: #fff;
  font-weight: 700;
}

.pricing-card-list {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  margin: 30px;
}

.pricing-card-list-item {
  position: relative;
}

.icon-yes::before {
  position: absolute;
  left: -30px;
  top: -5px;
  display: inline-block;
  content: "";
  width: 20px;
  height: 25px;
  background: url("https://cdnjs.cloudflare.com/ajax/libs/open-iconic/1.1.1/png/check-4x.png")
    no-repeat;
  background-size: 15px;
  background-position: bottom center;
  filter: invert(75%) sepia(27%) saturate(459%) hue-rotate(76deg)
    brightness(90%) contrast(88%);
}

.icon-no::before {
  position: absolute;
  left: -27px;
  top: -5px;
  display: inline-block;
  content: "";
  width: 20px;
  height: 25px;
  background: url("https://cdnjs.cloudflare.com/ajax/libs/open-iconic/1.1.1/png/plus-4x.png")
    no-repeat;
  background-size: 15px;
  background-position: bottom center;
  filter: invert(45%) sepia(88%) saturate(908%) hue-rotate(312deg)
    brightness(90%) contrast(86%);
  transform: rotate(45deg);
}

.icon-no {
  color: #999;
  text-decoration: line-through;
}


/* ------------------------------------ Blog Page CSS--------------------------------------------*/

header.masthead {
    position: relative;
    margin-bottom: 3rem;
    padding-top: calc(8rem + 57px);
    padding-bottom: 8rem;
    background: no-repeat center center;
    background-color: #6c757d;
    background-size: cover;
    background-attachment: scroll;
  }
  header.masthead:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #212529;
    opacity: 0.5;
  }
  header.masthead .page-heading,
  header.masthead .post-heading,
  header.masthead .site-heading {
    color: #fff;
  }
  header.masthead .page-heading,
  header.masthead .site-heading {
    text-align: center;
  }
  header.masthead .page-heading h1, header.masthead .page-heading .h1,
  header.masthead .site-heading h1,
  header.masthead .site-heading .h1 {
    font-size: 3rem;
  }
  header.masthead .page-heading .subheading,
  header.masthead .site-heading .subheading {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.1;
    display: block;
    margin-top: 0.625rem;
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  }
  header.masthead .post-heading h1, header.masthead .post-heading .h1 {
    font-size: 2.25rem;
  }
  header.masthead .post-heading .meta,
  header.masthead .post-heading .subheading {
    line-height: 1.1;
    display: block;
  }
  header.masthead .post-heading .subheading {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0.75rem 0 2rem;
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  }
  header.masthead .post-heading .meta {
    font-size: 1.25rem;
    font-weight: 300;
    font-style: italic;
    font-family: "Lora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  }
  header.masthead .post-heading .meta a {
    color: #fff;
  }
  @media (min-width: 992px) {
    header.masthead {
      padding-top: 12.5rem;
      padding-bottom: 12.5rem;
    }
    header.masthead .page-heading h1, header.masthead .page-heading .h1,
    header.masthead .site-heading h1,
    header.masthead .site-heading .h1 {
      font-size: 5rem;
    }
    header.masthead .post-heading h1, header.masthead .post-heading .h1 {
      font-size: 3.5rem;
    }
    header.masthead .post-heading .subheading {
      font-size: 1.875rem;
    }
  }

  .post-preview > a:focus, .post-preview > a:hover {
    text-decoration: none;
    color: #f78d3f;
  }
  .post-preview > a > .post-title {
    font-size: 1.875rem;
    margin-top: 1.875rem;
    margin-bottom: 0.625rem;
  }
  .post-preview > a > .post-subtitle {
    font-weight: 300;
    margin-bottom: 0.625rem;
  }
  .post-preview > .post-meta {
    font-size: 1.125rem;
    font-style: italic;
    margin-top: 0;
    color: #6c757d;
  }
  .post-preview > .post-meta > a {
    text-decoration: none;
  }
  @media (min-width: 992px) {
    .post-preview > a > .post-title {
      font-size: 2.25rem;
    }
  }
  

