@charset "UTF-8";

/*
Theme Name: RK Foundation
Theme URI: https://wordpress.org/themes/twentytwentyone/
Author: mediaBunker
Author URI: https://mediabunker.co.uk
Description: Bespoke theme created for Racheal Kundananji Foundation
Requires at least: 5.3
Tested up to: 6.0
Requires PHP: 5.6
Version: 2.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rkfoundation
Tags: accessibility-ready, custom-colors, custom-menu, featured-images

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer https://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

article, aside, details, figcaption, figure, footer, header, main, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
}

blockquote, q {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  quotes: none;
}

a:hover, a:active {
  outline: 0;
}

a img {
  border: 0;
}

input:focus, select:focus, textarea:focus, button:focus {
  outline: none;
}

/***********************************/
/*** RK Foundation Styling ***/
/***********************************/

/*** Base Styles ***/
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-optical-sizing: auto;
    font-style: normal;
    -webkit-font-smoothing: antialiased; /* Makes certain fonts look less heavy! */
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px; font-size: 1.6rem;
    color: #4A1B01;

    background-color: #FFFCF7;
    text-align: left;
    line-height: 1.35;
    letter-spacing: -0.2px;
    min-width: 320px;
}

h1 {
    font-family: 'Literata', serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 800; /* ExtraBold */
    font-size: 30px; font-size: 3.0rem;
    line-height: 1.10;
    color: #C95810;
}

h2 {
    font-family: 'Literata', serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 800; /* ExtraBold */
    font-size: 23px; font-size: 2.3rem;
    line-height: 1.3;
    color: #C95810;
}

h3 {
    font-family: 'Literata', serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 800; /* ExtraBold */
    font-size: 20px; font-size: 2.0rem;
    line-height: 1.3;
    color: #C95810;
}

h3.special {
    font-weight: 800; /* ExtraBold */
    font-size: 23px; font-size: 2.3rem;
}

h4 {
    font-weight: 600;
    font-size: 18px; font-size: 1.8rem;
}

h5 {	
    font-weight: 500;
    font-size: 15px; font-size: 1.5rem;
}

.smallPrint {
    font-size: 12px; font-size: 1.2rem;
} 

@media only screen and (min-width: 690px) {

    body {
        font-size: 18px; font-size: 1.8rem;
    }

    h1 {
        font-size: 50px; font-size: 5.0rem;
    }

    h2 {
        font-size: 35px; font-size: 3.5rem;
    }

    h3 {
        font-size: 25px; font-size: 2.5rem;
    }

    h3.special {
        font-size: 35px; font-size: 3.5rem;
    }

    h4 {
        font-size: 18px; font-size: 1.8rem;
    }

    h5 {	
        font-size: 15px; font-size: 1.5rem;
    }

    .smallPrint {
        font-size: 12px; font-size: 1.2rem;
    }
}

h1 strong, h2 strong, h3 strong {
    font-weight: 800; /* ExtraBold */
    color: #F48843;
}

a, a:link, a:visited {
    text-decoration: underline;
    color: inherit;
    font-weight: 600;
    cursor: pointer;
}

a.noUnderline, a.noUnderline:link, a.noUnderline:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a.cta, span.cta, button.cta {
    display: inline-block;
    background-color: #C95810;
    color: #fff;

    padding: 0 14px 0 14px;
    line-height: 38px;
    min-height: 41px;

    font-family: 'Literata', serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 700; /* Bold */
    font-size: 18px; font-size: 1.8rem;
    text-transform: capitalize;
    text-decoration: none;

    pointer: cursor;

    border-radius: 50px;
   
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin-top: 20px;
}

a.cta.invert, span.cta.invert, button.cta.invert {
    background-color: #fff;
    color: #C95810;
}

a.cta.special, span.cta.special, button.cta.special {
    border: 3px solid #fff;
    text-transform: uppercase;
    line-height: 39px;
    min-height: 48px;
    background-color:#C95810;
}

a.cta:hover, a:hover span.cta, a:hover button.cta {
    background-color: #F46408;
}

a.cta.invert:hover, a:hover span.cta.invert, a:hover button.cta.invert {
    background-color: #FFE5D1;
}

a.cta + a.cta {
    margin-top: 10px;
}

@media only screen and (min-width: 890px) {
    a.cta, span.cta, button.cta {
        padding: 0 18px 0 18px;
        line-height: 41px;
        min-height: 45px;
        font-size: 20px; font-size: 2.0rem;
    }
}

i, em {
  font-style: italic;
}

strong {
  font-weight: 600;
}

img {
    display: block;
    color: transparent;
    max-width: 100%;
    height: auto;
}

li {
    margin-bottom: 5px;
}

p + p, p + h1, p + h2, p + h3, p + h4, p + ul, ul + p, p + ol, ol + p, ul + h2, h1 + p, h5 + p, ul + h3, p + input, input + button {
    margin-top: 20px;
}

h2 + p, h3 + p, h3 + ul, h2 + ul, h2 + ol {
    margin-top: 20px;
}

h1.special + h2, p + h3.special {
    margin-top: 40px;
}

h1 + h5.smallPrint, h2 + h5.smallPrint {
    margin-top: 5px;
}

/*** Columns & Responsive Setup ***/

section {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

section#introduction {
    margin-top: 0;
}

section .columnsWrapper,
section h2.preColumnsWrapper,
section h3.preColumnsWrapper {
    margin:	0 auto;
    width: 100%;
    display: flex;

    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
}

section h2.preColumnsWrapper,
section h3.preColumnsWrapper {
    white-space: pre-wrap; 
}

section .columnsWrapper.restrictWidth,
section h2.preColumnsWrapper,
section h3.preColumnsWrapper {
    max-width: 1200px;
}

section .columnsWrapper.extremeRestrictWidth {
    max-width: 800px;
}

section .column {
    flex-grow: 0;
    flex-basis: 100%;
    overflow: hidden;
    position: relative;
}

section .column .contentWrapper {
    display: block;
    padding: 30px 3%;
    overflow: hidden;
}

section .column .contentWrapper.removeTopPadding,
section .column .contentWrapper.removeTopPadding {
  padding-top: 0;
}

section .column .removeBottomPadding {
  padding-bottom: 0;
}

section .column .contentWrapper.removeTopAndBottomPadding {
  padding-top: 0;
  padding-bottom: 0;
}

section .column .contentWrapper.expandedPeripheral {
    padding: 60px 3%;
}

section.twoColumns .column:first-child .contentWrapper,
section.twoColumnsOffsetCTA .column:first-child .contentWrapper {
    padding-bottom: 0;
}

section.twoColumns .column:last-child .contentWrapper,
section.twoColumnsOffsetCTA .column:last-child .contentWrapper {
    padding-top: 20px;
}

section.fourColumns .column, section.fiveColumns .column {
    flex-basis: 50%;
}

@media only screen and (min-width: 690px) {

    section .column .contentWrapper,
    section.twoColumns .column:first-child .contentWrapper,
    section.twoColumnsOffsetCTA .column:first-child .contentWrapper,
    section.twoColumns .column:last-child .contentWrapper,
    section.twoColumnsOffsetCTA .column:last-child .contentWrapper {
        padding: 50px 20px 50px 20px;
    }

    section .column .contentWrapper.expandedPeripheral {
        padding: 100px 20px 100px 20px;
    }

    section.twoColumns .column, section.fourColumns .column {
        flex-basis: 50%;
    }

    section.twoColumnsOffsetCTA .column:first-child {
        flex-basis: 75%;
    }

    section.twoColumnsOffsetCTA .column:last-child {
        flex-basis: 25%;
    }

    section.threeColumns .column {
        flex-basis: 33.3333%;
    }

    section.threeColumns .column {
        flex-basis: 33.3333%;
    }

    section.fiveColumns .column {
        flex-basis: 33.3333%;
    }
}

@media only screen and (min-width: 1024px) {
    
    section.fourColumns .column {
        flex-basis: 25%;
    }

    section.fiveColumns .column {
        flex-basis: 20%;
    }
}

/*** Header & Navigation ***/
header#navigation {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0px,0px,0px); /* Fix to allow instant fixed nav on ios (not just after finger release) */
    display: block;
    z-index: 500;
    position: fixed;
    top: 0;
    width: 100%;
    min-width: 320px;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

header#navigation.hidden {
    margin-top: -200px;
}

header#navigation nav {
    display: block;
    position: relative;
    margin:	15px auto 0 auto;
    padding: 0 10px 0 10px;
    max-width: 1200px;
}

header#navigation .menuOuterWrapper {
    display: inline-block;
    position: relative;

    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.95);

    
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.15);

    width: calc(100% - 15px);
    float: right;
    padding: 0;
    border: 3px solid rgba(255, 255, 255, 0.95);
    background-clip: padding-box;
    border-radius: 50px;
}

header#navigation nav ul.menuWrapper {
    width: 80%;
    float: right;
    text-align: right;
}

header#navigation nav ul.menuWrapper.compact {
    display: flex;
    justify-content: flex-end;
}

header#navigation nav ul.menuWrapper.full {
    display: none;
}

header#navigation nav ul.menuWrapper li {
    margin-bottom: 0;
    position: relative;
}

header#navigation nav .menuOuterWrapper a {
    display: block;
    position: relative;

    color: #C95810;
    text-decoration: none;

    font-family: 'Literata', serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 700; /* Bold */
    font-size: 20px; font-size: 2.0rem;
    text-transform: capitalize;

    padding: 0 18px 0 18px;
    line-height: 45px;
    min-height: 45px;

    -webkit-transition: color .3s ease-in-out;
    -ms-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out; 
}

header#navigation nav .menuOuterWrapper li.special a {
    background-color: #C95810;
    color: #fff;
    text-transform: uppercase;
    border-radius: 50px;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

header#navigation nav .menuOuterWrapper a:hover {
    color:#F46408;
    text-decoration: none;
    cursor: pointer;
}

header#navigation nav .menuOuterWrapper li.special a:hover {
    background-color: #F46408;
}

header#navigation nav .menuOuterWrapper li.donateCTA {
    display: none;
}

header#navigation nav a:link#sideNavigationMenuActivator, header#navigation nav a:visited#sideNavigationMenuActivator {
    float: right;
    text-decoration: none;
    transform: translateY(-3%);
}

header#navigation .logo {
    position: absolute;
    min-width: 60px;
    max-width: 170px;
    z-index: 510;
    margin-top: -14px;
    padding: 5px;
}

@media only screen and (min-width: 680px) {
    
    header#navigation nav {
        margin:	25px auto 0 auto;
    }

    header#navigation .logo {
        max-width: 212px;
        margin-top: -15px;
    }

    header#navigation nav .menuOuterWrapper a {
        line-height: 57px;
        min-height: 60px;
    }

    header#navigation nav .menuOuterWrapper li.donateCTA {
        display: initial;
    }

    header#navigation nav a:link#sideNavigationMenuActivator, header#navigation nav a:visited#sideNavigationMenuActivator {
        transform: translateY(0);
    }
}

@media only screen and (min-width: 1100px) {

    header#navigation nav ul.menuWrapper.compact {
        display: none;
    }

    header#navigation nav ul.menuWrapper.full {
        display: flex;
        justify-content: space-between;
    }
}

/*** WordPress Default Wysiwyg Editor Styling ***/

/* Spacing */
:root { 
    --global--spacing-unit: 20px;
    --global--spacing-measure: unset;
    --global--spacing-horizontal: 25px;
    --global--spacing-vertical: 30px;

  --responsive--spacing-horizontal: calc(2 * var(--global--spacing-horizontal) * 0.6);
  --responsive--aligndefault-width: calc(100vw - var(--responsive--spacing-horizontal));
  --responsive--alignwide-width: calc(100vw - var(--responsive--spacing-horizontal));
  --responsive--alignfull-width: 100%;
  --responsive--alignright-margin: var(--global--spacing-horizontal);
  --responsive--alignleft-margin: var(--global--spacing-horizontal);
}

@media only screen and (min-width: 482px) {

  :root {
    --responsive--aligndefault-width: min(calc(100vw - 4 * var(--global--spacing-horizontal)), 610px);
    --responsive--alignwide-width: calc(100vw - 4 * var(--global--spacing-horizontal));
    --responsive--alignright-margin: calc(0.5 * (100vw - var(--responsive--aligndefault-width)));
    --responsive--alignleft-margin: calc(0.5 * (100vw - var(--responsive--aligndefault-width)));
  }
}
@media only screen and (min-width: 822px) {

  :root {
    --responsive--aligndefault-width: min(calc(100vw - 8 * var(--global--spacing-horizontal)), 610px);
    --responsive--alignwide-width: min(calc(100vw - 8 * var(--global--spacing-horizontal)), 1240px);
  }
}

.alignleft {
  /*rtl:ignore*/
  text-align: left;
  margin-top: 0;
}

.entry-content > .alignleft {
  max-width: var(--responsive--aligndefault-width);
}

@media only screen and (min-width: 482px) {

  .alignleft {

    /*rtl:ignore*/
    float: left;

    /*rtl:ignore*/
    margin-right: var(--global--spacing-horizontal);
    margin-bottom: var(--global--spacing-vertical);
  }

  .entry-content > .alignleft {
    max-width: calc(50% - var(--responsive--alignleft-margin));
  }
}

.aligncenter {
  clear: both;
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.alignright {
  margin-top: 0;
  margin-bottom: var(--global--spacing-vertical);
}

.entry-content > .alignright {
  max-width: var(--responsive--aligndefault-width);
}

@media only screen and (min-width: 482px) {

  .alignright {

    /*rtl:ignore*/
    float: right;

    /*rtl:ignore*/
    margin-left: var(--global--spacing-horizontal);
  }

  .entry-content > .alignright {
    max-width: calc(50% - var(--responsive--alignright-margin));
  }
}

[class*=inner-container] > .alignleft + *,
[class*=inner-container] > .alignright + * {
  margin-top: 0;
}

.alignwide {
  clear: both;
}

.alignfull {
  clear: both;
}

.has-left-content {
  justify-content: flex-start;
}

.has-right-content {
  justify-content: flex-end;
}

.has-parallax {
  background-attachment: fixed;
}

.has-drop-cap:not(:focus)::first-letter {
  font-family: var(--heading--font-family);
  font-weight: var(--heading--font-weight);
  line-height: 0.66;
  text-transform: uppercase;
  font-style: normal;
  float: left;
  margin: 0.1em 0.1em 0 0;
  font-size: calc(1.2 * var(--heading--font-size-h1));
}

.has-drop-cap:not(:focus)::after {
  content: "";
  display: table;
  clear: both;
  padding-top: 14px;
}

.desktop-only {
  display: none;
}
@media only screen and (min-width: 482px) {

    .desktop-only {
        display: block;
    }
}

/*** Section: Generic ***/
main section {
    background-color: #FFFCF7;
}

main section.alt {
    background-color: #FFF4EB;
}

main section .innerContentWrapper {
    display: flex;
    justify-content: left;
    align-items: start;
    flex-direction: column;
}

section h2.preColumnsWrapper {
    text-align: left;
    padding: 30px 3% 0 3%;
}

section.singleColumn .preColumnsWrapper + .columnsWrapper > .column .contentWrapper,
section.twoColumns .preColumnsWrapper + .columnsWrapper > .column .contentWrapper,
section.twoColumnsOffsetCTA .preColumnsWrapper + .columnsWrapper,
section.threeColumns .preColumnsWrapper + .columnsWrapper,
section .preColumnsWrapper + .multiBlockSlider.columnsWrapper {
    padding-top: 20px;
}

section h2.preColumnsWrapper, section h3.preColumnsWrapper {
    text-align: left;
    padding: 30px 3% 0 3%;
}

section.centerAll h2.preColumnsWrapper, section.centerAll h3.preColumnsWrapper {
    text-align: center;
    justify-content: center;
}

section h2.preColumnsWrapper.removeTopPadding,
section h3.preColumnsWrapper.removeTopPadding,
section.twoColumns .columnsWrapper.removeTopPadding,
section.twoColumnsOffsetCTA .columnsWrapper.removeTopPadding,
section.threeColumns .columnsWrapper.removeTopPadding,
section .multiBlockSlider.columnsWrapper.removeTopPadding {
    padding-top: 0;
}

section h2.preColumnsWrapper.removeBottomPadding,
section h3.preColumnsWrapper.removeBottomPadding,
section.twoColumns .columnsWrapper.removeBottomPadding,
section.threeColumns .columnsWrapper.removeBottomPadding,
section .multiBlockSlider.columnsWrapper.removeBottomPadding {
    padding-bottom: 0;
}

section h2.preColumnsWrapper.removeTopAndBottomPadding,
section h3.preColumnsWrapper.removeTopAndBottomPadding,
section.twoColumns .columnsWrapper.removeTopAndBottomPadding,
section.threeColumns .columnsWrapper.removeTopAndBottomPadding,
section .multiBlockSlider.columnsWrapper.removeTopAndBottomPadding {
    padding-top: 0;
    padding-bottom: 0;
}

section .callToActionWrapper {
    padding: 0 3% 30px 3%;
}

section.centerAll .contentWrapper *,
section .column.centerAll .contentWrapper {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

section.centerAll .contentWrapper ul,
section .column.centerAll .contentWrapper ul {
  list-style-position: inside;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}

section.centerAll .contentWrapper ul li,
section .column.centerAll .contentWrapper ul li {
  text-align: left;
}

section.centerAll .contentWrapper ul.hideBullets li,
section .column.centerAll .contentWrapper ul.hideBullets li {
  text-align: center;
}

section .columnsWrapper .contentWrapper .innerContentWrapper.widerMargins {
  margin-bottom: 20px;
}

@media only screen and (min-width: 690px) {

    section h2.preColumnsWrapper {
        padding: 50px 20px 0 20px;
    }

    section.divider .columnsWrapper .column:first-child .contentWrapper {
        text-align: right;
    }

    section.divider .columnsWrapper .column:first-child .contentWrapper:after {
        content: "";
        background-color: #BDB5C6;
        position: absolute;
        width: 1px;
        top: 50px;
        bottom: 50px;
        right: 0;
        display: block;
    }

    section .callToActionWrapper {
        margin: 0 auto;
        padding: 0 4% 50px 4%;
    }

    section.centerOnWideDevicesOnly .contentWrapper *,
    section .column.centerOnWideDevicesOnly .contentWrapper * {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    section.centerOnWideDevicesOnly .contentWrapper ul,
    section .column.centerOnWideDevicesOnly .contentWrapper ul {
        list-style-position: inside;
        margin-left: auto;
        margin-right: auto;
        width: 80%;
    }

    section.centerOnWideDevicesOnly .contentWrapper ul li,
    section .column.centerOnWideDevicesOnly .contentWrapper ul li {
        text-align: left;
    }
    
    section.centerOnWideDevicesOnly .contentWrapper ul.hideBullets li,
    section .column.centerOnWideDevicesOnly .contentWrapper ul.hideBullets li {
        text-align: center;
    }

    section .columnsWrapper .contentWrapper .innerContentWrapper.widerMargins {
        margin: 30px 120px;
    }
}

section img.background, section video.background  {
    width: auto;
    height: auto;
    max-width: 1000% !important;
    min-height: 100%;
    /* min-width: 100vw; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
}

@supports ( object-fit: cover ) {
    section img.background, section video.background {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
        transform: none;
        overflow: hidden;
    }
}

section .backgroundOverlay {
    width:100%; 
    height:100%;
    position: relative;
    z-index: 2;
    display: block;
    overflow: hidden;
}

main section img {
    border-radius: 15px;
}

main section .wp-video .mejs-container {
	border-radius: 15px;
	overflow: hidden;
}

main section li {
  margin-left: 1.2em;
    margin-bottom: 10px;
  list-style: disc;
}

section img.feature {
    margin-bottom: 40px;
}

section hr {
    border: 0;
    background-color: #BDB5C6;
    height: 1px;
    margin: 30px 0;
}

section.singleColumn.content.alt .cta,
section.singleColumn.accordions.alt .cta,
section.twoColumns.content.alt .cta,
section.twoColumns.propertyKeyInformation.alt .cta,
section.twoColumns.propertyTravelInformation.alt .cta,
section.threeColumns.blogSummary .cta,
section.singleColumn.shortcode .cta {
    border: 0;
}

.genericIntroTitles h1, .propertyIntroTitles h2, .propertyIntroTitles h3 {
    margin-bottom: 8px;
}

main section div.highlight {
    display: inline-block;
    border:3px solid #207E88;
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 18px; font-size: 1.8rem;
}

/*** Section: Introduction ***/
section#introduction {
    overflow: visible;
}

section#introduction .columnsWrapper {
  padding-top: 90px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

@media only screen and (min-width: 690px) {

  section#introduction .columnsWrapper {
    padding-top: 120px;
    padding-bottom: 40px;
  }
}

section#introduction img {
    border-radius: 0;;
}

section#introduction.introSlider li::before {
  content: none;
}

section#introduction.introSlider .slick-track {
  display: flex !important;
}

section#introduction.introSlider .slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}

section#introduction.introSlider .slick-track .slick-slide .columnsWrapper {
  height: 100%;
}

section#introduction.introSlider .slick-track .slick-slide .column {
  display: flex;
  align-items: center;
}

section#introduction .titlesWrapper {
  padding: 0 15px;
  margin-bottom: 20px;
  overflow: visible;
  cursor: pointer;
  width: 90%;
  color: #FFFCF7;
}

section#introduction .titlesWrapper h1 {
  color: #FFFCF7;
}

section#introduction .titlesWrapper p {
    font-weight: 600;
    font-style: italic;
}

section#introduction .titlesWrapper h1 + p {
    margin-top: 30px;
}

section#introduction a.cta {
  margin-top: 25px;
}

@media only screen and (min-width: 690px) {
  
    section#introduction a.cta {
        margin-top: 20px;
    }
    
    section#introduction .titlesWrapper {
        width: 60%;
        margin-left: 60px;
        margin-bottom: 10px;
    }
}

section#introduction .jumpingRachaelLogo {
    /* max-width: 60px; */
    width: 65px;
    position: absolute;
    left: auto;
    right: 0;
    bottom: -60px;
    margin-right: 3%;
    overflow: hidden;
    z-index: 1000;
}

@media only screen and (min-width: 690px) {
  
    section#introduction .jumpingRachaelLogo {
        left: 0;
        right: 0;
        bottom: -90px;
        margin: auto;
        width: 85px;
    }
}

/*** VIDEO TEST STUFF ***/
section video.background {
  width: auto;
  height: auto;
  max-width: 100% !important;
  min-height: 100%;
  /* min-width: 100vw; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

@supports ( object-fit: cover ) {
  section video.background {
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      object-fit: cover;
      transform: none;
      overflow: hidden;
  }
}

/*** Section: 1 Column Content (with accordions) ***/
section.accordions .innerContentBlockWrapper {
    margin-top: 20px;
}

section.accordions .innerContentBlockWrapper:first-child {
    margin-top: 0;
}

@media only screen and (min-width: 690px) {

    section.accordions .contentWrapper .innerContentBlockWrapper.center * {
        text-align: center;
    }
}

section.accordions ul.ui-accordion li {
  padding: 0 0 0.5em 0;
  list-style: none;
    margin-left: 0;
}

section ul.ui-accordion li .ui-state-focus { outline: none; } /* Hide box around active link (in certain browsers) */

section ul.ui-accordion li a.title:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  width: 1.2em;
  margin-left: 0;
  content: '\f061';
}

section ul.ui-accordion li a.title.ui-state-active:before {
  content: '\f063';
}

section ul.ui-accordion li .content {
  text-indent: 0;
  display: none;
}

section ul.ui-accordion li .content .contentInnerWrapper {
    margin-top: 10px;
}

section ul.ui-accordion li .content li {
  margin-left: 1.2em;
  list-style: disc;
}

/*** Section: 1 Column Google Map Block (Multi markers) ***/
section.googleMap h2.preColumnsWrapper {
    text-align: center;
    padding-bottom: 20px;
}

section.googleMap .googleMapLocations {
  width: 100%;
  margin-top: 0;

  padding-top: 100px; /* Fall back for IE */
  padding-bottom: 100px; /* Fall back for IE */
  padding-top: calc(20vh);
  padding-bottom: calc(20vh);
}

@media only screen and (min-width: 690px) {

  section.googleMap .googleMapLocations {
    /* min-height: 350px; */
  }
}

section.googleMap .googleMapLocations img { /* Fixes potential theme css conflict */
   max-width: inherit !important;
}

section.googleMap .googleMapLocations .gm-style-iw-d h3 + p {
  margin-top: 0px;
}

section.googleMap .googleMapLocations .gm-style-iw-d p + p {
  margin-top: 5px;
}

/*** Section: 1 Column Content Title Over Background ***/
section.titleOverBackgroundBlock .contentWrapper {
    text-align: center;
    color: #fff;
}

section.titleOverBackgroundBlock .contentWrapper h2 {
    /* padding: 10px 20px;
    margin-bottom: 30px; */
    -webkit-filter: drop-shadow(0px 0px 5px #000000);
    filter: drop-shadow(0px 0px 5px #000000);
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.8));
}

@media only screen and (min-width: 690px) {
    section.titleOverBackgroundBlock .contentWrapper h2 {
        font-size: 55px; font-size: 5.5rem;
    }
}

section.titleOverBackgroundBlock .contentWrapper h3 {
    -webkit-filter: drop-shadow(0px 0px 5px #000000);
    filter: drop-shadow(0px 0px 5px #000000);
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.8));
}

/*** Section: 2 Column Content ***/
section.twoColumns .columnsWrapper.reverseColumns {
  flex-direction: column-reverse;
}

section.twoColumns .column.verticallyAlign,
section.twoColumns .column.verticallyAlign .backgroundOverlay {
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
}

@media only screen and (max-width: 689px) {

    section.twoColumns.center .contentWrapper * {
        text-align: center !important;
    }

    section.twoColumns.center .contentWrapper .cta {
        margin-left: auto;
        margin-right: auto;
    }

    section.twoColumns.center .contentWrapper form {
        width: 100% !important;
        display: inline-block;
    }

    section.twoColumns .columnsWrapper.reverseColumns .column:last-child .contentWrapper {
        padding-bottom: 0;
    }
    
    section.twoColumns .columnsWrapper.reverseColumns .column:first-child .contentWrapper {
        padding-bottom: 40px;
    }
}

section.twoColumns .column.verticallyAlign {
    display: flex;
    justify-content: center;
    flex-direction: column-reverse;
}

@media only screen and (min-width: 690px) {

    section.twoColumns .columnsWrapper.reverseColumns {
        flex-direction: initial;
    }
}

/*** Section: 2 Column Content with Offset CTA (2 + 1 columns) ***/
section.twoColumnsOffsetCTA .preColumnsWrapper + .columnsWrapper > .column:first-child .contentWrapper {
    padding-top: 0;
}

section.twoColumnsOffsetCTA .column {
    display: flex;
}

section.twoColumnsOffsetCTA .cta {
    margin-top: 0;
}

@media only screen and (min-width: 690px) {

    section.twoColumnsOffsetCTA .column {
        justify-content: right;
        align-self: flex-end;
    }
}

/*** Section: 3 Columns Link Blocks ***/
section.linkBlocks .column {
    min-height: 300px;
}

section.linkBlocks a.backgroundOverlay {
    color: #fff;
    text-decoration: none;
    display: flex; 
    justify-content: center;
    align-items: center; 
}

section.linkBlocks .contentWrapper {
    text-align: center;
}

section.linkBlocks span.cta {
    margin-top: 20px;
    -webkit-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.5); 
    box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.5);
}

/*** Section: 3 Columns Blog Summary ***/
section.blogSummary h3.preColumnsWrapper {
  justify-content: center;
}

section.blogSummary .columnsWrapper {
    padding-top: 30px;
    padding-bottom: 30px;
}

section.blogSummary .columnsWrapper.removeTopPadding {
    padding-top: 0;
}

section.blogSummary .columnsWrapper.removeBottomPadding {
    padding-bottom: 0;
}

section.blogSummary .columnsWrapper.removeTopAndBottomPadding {
    padding-top: 0;
    padding-bottom: 0;
}

section.blogSummary .column {
    padding: 0 3% 20px 3%;
}

section.blogSummary a.singlePost {
    text-decoration: none;
    height: 100%;
}

section.blogSummary .column .imageWrapper {
    height: 250px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 15px;
}

section.blogSummary .column .imageWrapper .imageOverlay {
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    width: 100%;
    height: 100%;
    z-index: 3;
    position: relative;
    background-color: rgba(0,0,0, 0.0);
}

section.blogSummary .column:hover .imageWrapper .imageOverlay {
  background-color: rgba(0,0,0, 0.3);
}

section.blogSummary .column .imageWrapper img {
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

section.blogSummary .column:hover .imageWrapper img {
  transform: scale(1.03); 
  overflow: hidden;
}

section.blogSummary .column .contentWrapper {
  padding: 20px 0 10px 0; 
}

section.blogSummary .column h2 {
    font-size: 20px; font-size: 2.0rem;
}

section.blogSummary .column p {
    font-weight: 400;
    font-optical-sizing: auto;
    font-style: normal;
}

section.blogSummary .innerWrapper {
  margin-top: 15px;
}

section.blogSummary .column.noPosts {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

section.blogSummary .ctaWrapper {
  flex-basis: 100%;
  text-align: center;
}

@media only screen and (min-width: 690px) {

    section.blogSummary .columnsWrapper {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    section.blogSummary .column {
        padding: 0 20px 40px 20px;
    }

    section.blogSummary.nonPostPage .column {
        padding-bottom: 0;
    }

    section.blogSummary .column .imageWrapper {
        height: 350px;
    }

    section.blogSummary .column .contentWrapper {
        padding: 40px 0 20px 0;
    }

    section.blogSummary .innerWrapper {
        margin-top: 25px;
    }
}

/*** Pagination - Blog Index & Single Post Page ***/
section .pagination {
    width: 100%;
    text-align: center;
    margin: 0 3%;
}

section.singlePost .pagination {
    margin: 20px 0 0 0;
}

@media only screen and (min-width: 690px) {

    section .pagination {
        margin: 0 20px 0 20px;
    }
}

section .pagination a.cta {
    margin-top: 10px;
    display: inline-block;
}

section .pagination .cta.next {
   float: left;
}

section .pagination .cta.previous {
    float: right;
}

@media only screen and (min-width: 360px) {

    section .pagination .cta.next:before, section .pagination .cta.previous:after {
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        font-family: "Font Awesome 7 Free";
        font-weight: 900;
    }

    section .pagination .cta.next:before {
        content: "\f177";
        padding-right: 5px;
    }

    section .pagination .cta.previous:after {
        content: "\f178";
        padding-left: 5px;
    }
}

/*** Section: 5 Columns Feature Block ***/
section.featureBlock .highlightOuterWrapper {
    margin: 0 auto;
    display: block;
    padding: 30px 3%;
    overflow: hidden;
}

section.featureBlock .highlightInnerWrapper {
    border:3px solid #207E88;
    border-radius: 15px;
    display: block;
    padding: 30px 3%;
    overflow: hidden;
}

section.featureBlock h2.preColumnsWrapper {
    padding-top: 0;
}

section.featureBlock .highlightOuterWrapper.restrictWidth {
    max-width:1200px;
}

@media only screen and (min-width: 690px) {

    section.featureBlock .highlightOuterWrapper {
        padding: 50px 20px 50px 20px;
    }
}

section.featureBlock .innerContentWrapper {
    text-align: center;
}

section.featureBlock .contentWrapper {
    text-align: center;
}

section.featureBlock .callToActionWrapper {
    padding-bottom: 0;
    text-align: center;
}

section.featureBlock .callToActionWrapper .cta {
    margin: 0 auto;
    text-align: center;
}

/*** Generic Forms ***/
form p {
    margin: 0;
    padding: 0;
    height: auto;
}

form p + p {
    margin-top: 10px;
}

form input, form select, form textarea {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-optical-sizing: auto;
    font-style: normal;
    -webkit-font-smoothing: antialiased; /* Makes certain fonts look less heavy! */
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px; font-size: 1.6rem;
    color: #4A1B01;
    
    outline: none;
    width: 100%;
    background-color: #fff;
    
    border: 3px solid #FFE5D1;
    border-radius: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;   
    -webkit-transition: border .3s ease-in-out;
    -ms-transition: border .3s ease-in-out;
    transition: border .3s ease-in-out;
}

@media only screen and (min-width: 690px) {

  form input, form textarea {
    font-size: 18px; font-size: 1.8rem;
  }
}

form input, form select {
    line-height: 22px;
    padding: 12px;
    height: 2.9em;
    position: relative;
    display: block;
}

form select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='icon icon-prefix-chevron-down' id='icon-prefix-chevron-down' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9' fill='none' stroke-linecap='round' stroke-width='2' stroke='%23E4E0E7' %3E%3C/polyline%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position-x: 99%;
    background-position-y: 50%;
    padding-right: 2rem;
}

form textarea {
  height: 234px;
  padding: 12px;
  resize:vertical;
}

form label {
    line-height: 30px;
}

form input::-moz-focus-inner { /* Remove weird border around button in Firefox */
    padding: 0;
    border: 0
}

::-webkit-input-placeholder {
    color: #9B9EA0 !important;
}

:-moz-placeholder {
    color: #9B9EA0 !important;
}

::-moz-placeholder {
    color: #9B9EA0 !important;
}

:-ms-input-placeholder {
    color: #9B9EA0 !important;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
    color: transparent !important;
}

input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
    color: transparent !important;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
    color: transparent !important;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
    color: transparent !important;
}

input:-webkit-autofill, input:-webkit-autofill:focus { /*  Prevent autofill fields going yellow */
  -webkit-box-shadow: 0 0 0 1000px white inset;
  -webkit-text-fill-color: #333;
}

/*** Contact Form 7 ***/
div.wpcf7 {
    margin-top: 10px;
}

form.wpcf7-form .checkboxes .wpcf7-list-item input {
  padding: 0;
  margin: 0;
  -webkit-appearance: checkbox;
}

form.wpcf7-form .wpcf7-list-item {
  margin: 10px 35px 0 0;
  padding: 0;
}

form.wpcf7-form .wpcf7-list-item.last {
  margin-right: 0;
}

form.wpcf7-form .checkboxes.wpcf7-not-valid {
  border: 0;
}

form.wpcf7-form input.cta, form.wpcf7-form button.cta, form.mc4wp-form input.cta, form.mc4wp-form button.cta {
   
    display: block;
    overflow: hidden;

    background-color: #C95810;
    color: #fff;

    padding: 0 14px 4px 14px;
    line-height: 38px;
    min-height: 41px;
    width: auto;
    height: auto;
 
    font-family: 'Literata', serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 700; /* Bold */
    font-size: 18px; font-size: 1.8rem;
    text-transform: capitalize;
    text-decoration: none;

    pointer: cursor;

    border-radius: 50px;
    border: none;
   
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin-top: 10px;
}

@media only screen and (min-width: 890px) {

    form.wpcf7-form input.cta, form.wpcf7-form button.cta, form.mc4wp-form input.cta, form.mc4wp-form button.cta {
        padding: 0 18px 4px 18px;
        line-height: 45px;
        min-height: 45px;
        font-size: 20px; font-size: 2.0rem;
    }
}

form.wpcf7-form input.cta:hover, form.wpcf7-form button.cta:hover, form.mc4wp-form input.cta:hover, form.mc4wp-form button.cta:hover {
    background-color: #F46408;  
    cursor: pointer;
}

form.wpcf7-form input.submitButton {
    float: left;
    clear: both;
}

form.wpcf7-form .wpcf7-not-valid  {
    border: 2px solid C95810;
}

form.wpcf7-form .wpcf7-not-valid-tip-no-ajax, form.wpcf7-form .wpcf7-not-valid-tip {
    display: none;
}

form.wpcf7-form span.wpcf7-spinner {
    margin: 18px 0 0 10px;
    background-color: #F48843;
}

@media only screen and (min-width: 890px) {

    form.wpcf7-form span.wpcf7-spinner {
        margin: 21px 0 0 10px;
        background-color: #F48843;
    }
}

form.wpcf7-form .wpcf7-response-output {
    float: left;
    clear: both;
    border: none;
    margin: 5px 0 0 0;
    padding: 0;
    color: #383E42;
    line-height: 1.4em;	
    font-weight: 500;
}

form.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
    color: #383E42;
    margin-top: 10px;
}

form.wpcf7-form .watermark {
    color: #9B9EA0 !important;
}





/*** Affiliations (Pre Footer) Section ***/
section#affiliations h3 {
    text-align: center;
}

section#affiliations ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 20px;
    row-gap: 10px;
}

section#affiliations ul li {
    display: flex;
    align-items: center;
    margin: 0;
    list-style: none;
}

section#affiliations img {
    border-radius: 0;
}

section#affiliations .unaids img {
    max-height: 30px;
}

section#affiliations .unesco img {
    max-height: 30px;
}

section#affiliations .bayFC img {
    max-height: 40px;
}

section#affiliations .africaOnTheBall img {
    max-height: 60px;
}

section#affiliations .nowspar img {
    max-height: 50px;
}

section#affiliations .oydcZambia img {
    max-height: 50px;
}

/*** Donate (Pre Footer) Section ***/
section#donateCallToAction {
    text-align: center;
}

section#donateCallToAction h2 {
    color: #FFFCF7;
}

section#donateCallToAction p {
    color: #FFFCF7;
    font-weight: 500;
    font-style: italic;
}

section#donateCallToAction img {
    border-radius: 0;
}

section#donateCallToAction .backgroundOverlay {
    background-color: rgba(0,0,0, 0.2);
}

/*** Footer ***/
footer {
    background-color: #732900;
    color: #FFFCF7;
}

footer h1, footer h2, footer h3 {
    color: #F48843;
}

footer a, footer a:link, footer a:visited {
    text-decoration: none;
    font-weight: 400;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

footer a:hover {
  color: #F48843;
}

footer section {
    margin-bottom: 0;
}

footer section .column {
    flex-basis: 100%;
}

footer section .column ul .sub-menu {
    padding-left: 12px;
}

footer section .column ul .sub-menu li:first-child {
    margin-top: 5px;
}

footer section .column ul .sub-menu li:last-child {
    margin-bottom: 12px;
}

footer section .column.businessDetails li {
    float: left;
    clear: both;
}

footer section .column.businessDetails a.logo {
    margin-bottom: 20px;
    display: block;
    clear: both;
    max-width: 170px;
}

footer section .column.businessDetails li.social {
    margin-bottom: 15px;
}

footer section .column.businessDetails li.social ul li {
    float: left;
    clear: none;
    margin-right: 5px;
}

footer section .column.businessDetails li.social i {
    border: 2px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 36px;
    vertical-align: middle;
    margin-right: 5px;
    
    -webkit-transition: border .3s ease-in-out;
    -ms-transition: border .3s ease-in-out;
    transition: border .3s ease-in-out;
}

footer section .column.businessDetails li.social a:hover i {
    
    border: 2px solid #F48843;
}

footer section .column.businessDetails li.affiliations h5 {
    color: #F48843;
    margin-bottom: 5px;
}

footer section .column.businessDetails li.affiliations ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 10px;
}

footer section .column.businessDetails li.affiliations ul li {
    display: flex;
    align-items: center;
    margin: 0;
}

footer section .column.businessDetails li.affiliations .unaids img {
    max-height: 30px;
}

footer section .column.businessDetails li.affiliations .unesco img {
    max-height: 30px;
}

footer section .column.businessDetails li.affiliations .bayFC img {
    max-height: 40px;
}

footer section .column.businessDetails li.affiliations .africaOnTheBall img {
    max-height: 60px;
}

footer section .column.businessDetails li.affiliations .nowspar img {
    max-height: 50px;
}

footer section .column.businessDetails li.affiliations .oydcZambia img {
    max-height: 50px;
}

footer section .column.contactDetails ul.fa-ul {
   --fa-li-margin: 1.7em;
}

footer section .column.contactDetails ul li {
    margin-bottom: 1.6rem;
}

footer section .column.contactDetails ul li i {
    color: #F48843;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
footer section .column.contactDetails ul li a:hover i {
    color: #C95810;
}



footer section .column.quickLinks ul li.current-menu-item a {
    color: #F48843;
}

footer section.subFooter .contentWrapper {
    padding-top: 20px;
    padding-bottom: 0;
}

footer section.subFooter h5 {
    font-style: italic;
}

footer section.subFooter ul {
    display: flex;
    column-gap: 60px;
    width: 100%;
    align-content: flex-start;
    flex-flow: row wrap;
}

footer section.subFooter ul li {
    flex-basis: 100%;
}

footer section.subFooter ul li.copyright {
    margin-right: auto;
    padding-bottom: 20px;
}

footer section.subFooter ul li.links {
    padding-bottom: 10px;
}

footer section.subFooter ul li.links a:hover {
    color: #C95810;
}

@media only screen and (min-width: 690px) {

    footer section .column.businessDetails {
        flex-basis: 40%;
    }

    footer section .column.contactDetails {
        flex-basis: 35%;
    }
    
    footer section .column.quickLinks {
        flex-basis: 25%;
    }

    footer section.subFooter ul li {
        flex-basis: auto;
    }
}

/* Justified Gallery Plugin Overrides */
.dgwt-jg-gallery.dgwt-jg-effect-simple .jg-entry-visible.dgwt-jg-item {
    background-color: #F48843 !important;
}

.justified-gallery figure.dgwt-jg-item {
    border-radius: 15px;
}

/* Instagram Plugin Overrides */
#sb_instagram {
    padding-bottom: 0 !important;
}

/* Ensure Google Recaptcha logo is visible on relevant pages */
.grecaptcha-badge {
    
}

