body {
	    margin: 0 !important;
    padding: 0 !important;
	background-color: #111d24;

	font-family: 'Inter', sans-serif;
}
.ccm-page,
.main-container,
#main,
.wrapper {
    margin-top: -25px !important;
    padding-top: 0 !important;
}



/*-----------------------------
  Headings & Sections
------------------------------*/

/* Scalable H1 font size */
h1 {
    font-size: clamp(2.3rem, 2.5vw, 6.5rem) !important;
}

/* Scroll offset for anchor links */
section {
    scroll-margin-top: 100px;
}

/* Heading with underline effect */
.heading {
    font-size: 18px;
    position: relative;
    display: inline-block;
    margin-top: 1rem;
    margin-bottom: 28px;}

.heading::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: darkorange;
    margin-top: 6px;
}
footer {
    display: block;
    background-color: #111d24;
    color: #FFF;
    font-weight: 300;
    text-align: center;
    padding: 40px;
    line-height: 16px;
    /*background-image: url(../images/glitter-footer-background-2018.jpg);*/
    background-repeat: repeat-y;
    background-position: center top;
    background-size: cover;
}
footer img {
    width: 65%;
    max-width: 275px;
    margin: 0 auto 15px auto;
}

.mkenye .btn {
    background:#f82544 !important;
    border-radius:30px !important;;
    padding:12px 35px !important;;
    color:white !important;;
}

.about-content {
  color: #15252e;
  margin-bottom: 0;
  padding-top: 0;
  font-size: 45px;
  line-height: 140%;
  letter-spacing: 2px;
  font-weight: 200;
}

p.about-content span.highlighted {
  color: #15252e;              /* base color */
  transition: color 0.3s ease, transform 0.3s ease;
}

p.about-content span.highlighted.active {
  color: #ccc;                  /* highlighted color */
  transform: translateY(-4px);  /* optional little pop */
}

.spade-anim {
  display: block;
  width: 290px;
  max-width: 100%;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.spade-anim.show {
  opacity: 1;
  transform: translateY(0);
}

.lazy-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.lazy-animate.visible {
  opacity: 1;
  transform: translateY(0);
}