/*
Theme Name: Charity 2
Version: 1.0
Theme URI: http://www.cyberoptik.net
Description: Customizable responsive Wordpress theme created by CyberOptik
Author: CyberOptik
Author URI: http://www.cyberoptik.net
Template: optik-theme
*/



/*
 * CUSTOMIZABLE CSS
 */



/* -----------------------------------------------------------------------------
 * TABLE OF CONTENTS:
 * -----------------------------------------------------------------------------
 *
 * 1 CSS IMPORTS
 *   1.1 FRAMEWORK
 *   1.2 MODULES
 *   1.3 STYLES
 *
 * 2 STRUCTURAL ELEMENTS
 *   2.1 UNIVERSAL STYLES
 *   2.2 THEME MODULES
 *   2.3 BACK TO TOP BUTTON
 *   2.4 ELEMENTOR
 *
 * 3 CONTENT STYLES
 *   3.1 TEXT & LINKS
 *   3.2 HEADINGS
 *   3.3 BORDERS & DIVIDERS
 *   3.4 BUTTONS
 *   3.5 ICONS
 *   3.6 LIST STYLES
 *   3.7 FORM STYLES
 *
 * 4 HEADER STYLES
 *   4.1 SCROLL BAR
 *   4.2 HEADER 
 *   4.3 NAV BAR
 *   4.4 NAV MENUS
 *   4.5 DROPDOWN MENUS
 *   4.6 MOBILE NAV
 *
 * 5 BODY STYLES
 *   5.1 BANNER
 *   5.2 PAGE NAV BAR
 *   5.3 MAIN
 *   5.4 ARCHIVE
 *   5.5 SINGLE
 *
 * 6 FOOTER STYLES
 *   6.1 CTA
 *   6.2 FOOTER
 *   6.3 BOTTOM BAR
 *
 * 7 CUSTOM THEME STYLES
 *
 * ---------------------------------------------------------------------------*/





/******************************************************************************
 * * *  1 CSS IMPORTS  * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/

@import url("../optik-theme/style.css");



/***  POPPINS  ***/

/* Normal */
@font-face {
  font-family: 'Poppins';
  font-weight: normal;
  src: url('fonts/Poppins/Poppins-Regular.ttf');
}

/* Italic */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: normal;
  src: url('fonts/Poppins/Poppins-Italic.ttf');
}

/* Semi Bold */
@font-face {
  font-family: 'Poppins';
  font-weight: 600;
  src: url('fonts/Poppins/Poppins-SemiBold.ttf');
}

/* Bold */
@font-face {
  font-family: 'Poppins';
  font-weight: bold;
  src: url('fonts/Poppins/Poppins-Bold.ttf');
}

/*** Amatic ***/

/* Normal */
@font-face {
  font-family: 'Amatic';
  font-weight: 400;
  src: url('fonts/Amatic/AmaticSC-Regular.ttf');
}

/* Bold */
@font-face {
  font-family: 'Amatic';
  font-weight: bold;
  src: url('fonts/Amatic/AmaticSC-Bold.ttf');
}






/******************************************************************************
 * * *  2 STRUCTURAL ELEMENTS  * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/



/***  2.1 UNIVERSAL STYLES  ***/

:root {
  --primary: #ee0979;
  --secondary: #ff6a00;
  --dark-1: #1a1a1a;
  --dark-2: #595959;
  --dark-3: #808080;
  --light-1: #f8f8f8;
  --light-2: #FBFCFF;
  --light-3: #e5e5e5;
  --field-bg: #fafafa;
  --field-border: #dddddd;
	--gradient-1: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%);
  --radius-1: 5px;
  --radius-2: 50px;
  --radius-3: 50%;
  --shadow-1: 0 5px 20px rgba(0,0,0,0.1);
  --shadow-2: 0 10px 40px rgba(0, 0, 0, 0.1);
  --font-1: "Poppins", sans-serif;  
  --font-2: "Amatic", sans-serif;
}

html {font-size: 16px;}

body {
  line-height: 1.6em;
  font-family: var(--font-1);
  color: var(--dark-2);
  background: white;
}
body p {
  font-size: 15px;
}

p:empty:before {display: none !important;}



/***  2.2 THEME STYLES  ***/

.section-container {max-width: 1300px;}

.section-spacer {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-spacer-top {padding-top: 100px;}
.section-spacer-btm {padding-bottom: 100px;}

.section-spacer-sm {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-spacer-top-sm {padding-top: 80px;}
.section-spacer-btm-sm {padding-bottom: 80px;}

.section-spacer-lg {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section-spacer-top-lg {padding-top: 120px;}
.section-spacer-btm-lg {padding-bottom: 120px;}

.elementor-container {
  padding-left: 0;
  padding-right: 0;
}

/***  2.3 BACK TO TOP BUTTON  ***/

.btt-button .fa {
  border: 1px solid white;
  border-radius: var(--radius-3);
  background: var(--primary);
	font-weight: 300;
  color: white;
}

.btt-button:hover .fa {
  background: var(--secondary);
  color: white;
}





/******************************************************************************
 * * *  3 CONTENT STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * *
 ******************************************************************************/



/***  3.1 TEXT & LINKS  ***/

a {color: var(--secondary);}

a:hover {color: var(--primary);}

.text-primary *,
.text-primary *:before {color:var(--primary)!important;}

.text-primary a:hover {color:var(--secondary)!important;}

.text-light *,
.text-light *:before {color:var(--secondary)!important;}

.text-light a:hover {color:var(--primary)!important;}

.text-white *,
.text-white *:before {color:white!important;}

.text-white a:hover {color:var(--secondary)!important;}



/***  3.2 HEADINGS  ***/
h1 {
  font-weight: bold;
  font-family: var(--font-2);
  color: white;
}
h2, h3, h4, h5, h6 {
  font-weight: bold;
  font-family: var(--font-1);
  color: var(--dark-1);
}

h1 {font-size: 100px;}
h2 {font-size: 37px;}
h3 {font-size: 28px;}
h4 {font-size: 21px;}
h5 {font-size: 16px;}
h6 {font-size: 0.8em;}

@media screen and (max-width: 990px) {
h1 {font-size: 70px;}
h2 {font-size: 25px;}
h3 {font-size: 22px;} 
h4 {font-size: 19.5px;}
h5 {font-size: 14.5px;}
}

@media screen and (max-width: 480px) {
h1 {font-size: 45px;}
}



/***  3.3 BORDERS & DIVIDERS  ***/

hr, .divider {border-color: var(--light-3);}

.divider-short {
  width: 95%;
  border-top: 2px solid var(--secondary);
}

.divider-white {
  width: 50px!important;
  border-top: 6px solid white;
}



/***  3.4 BUTTONS  ***/

.button, 
.elementor-button {
  padding: 17px 30px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-2);
  background-color: var(--primary);
  color: white !important;
	font-weight: normal;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1;
}
.button .elementor-button-icon i,
.elementor-button .elementor-button-icon i {
  color: white !important;
  font-size: 12px;
}
.sec-btn .elementor-button .elementor-button-icon i {
  color: black;
}
.sec-btn.paypal .elementor-button-content-wrapper {
  display: flex;
  align-items: center;
}
.sec-btn.paypal .elementor-button .elementor-button-icon i {
  font-size: 15px;
}
@media (max-width: 900px) {
  .elementor-button {
    font-size: 13.68px;
  }
}

.button:hover, 
.elementor-button:hover {
  border-color: var(--secondary);
  background: var(--secondary);
  color: white!important;
}

.sec-btn .elementor-button {
  border-color: white;
  background-color: white;
  color: black !important;
}

.sec-btn .elementor-button:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: white !important;
}

.sec-btn.paypal .elementor-button:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}
.sec-btn .elementor-button:hover .elementor-button-icon i,
.sec-btn.paypal .elementor-button:hover .elementor-button-icon i {
  color: white !important;
}

/* Empty Button */

.button-empty, 
.bordered-button .elementor-button {
  padding: 0.9em 2em;
  border: 1px solid var(--primary);
  background: transparent !important;
  color:var(--primary) !important;
  vertical-align: middle;
  text-transform: uppercase;
}

.button-empty:hover, 
.bordered-button .elementor-button:hover  {
  border-color: var(--secondary);
  color: var(--secondary) !important;
}

/* Alt Button */ 

.alt-elementor-button .elementor-button {
  padding: 0.9em 0;
  color: white!important;
  background:transparent!important;
  border:1px solid transparent!important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
} 

.alt-elementor-button .elementor-button:hover {
  background-color: transparent!important;
  border:1px solid transparent!important;
  color:var(--primary)!important;
  text-decoration: none!important;
}

.alt-elementor-button .elementor-button-icon {
  background-color: transparent!important;
  transition: all 300ms ease-in-out;
}

.alt-elementor-button .elementor-button-icon i {color:white;}

.alt-elementor-button:hover .elementor-button-icon i {color: var(--secondary)!important;}

.alt-elementor-button .elementor-button:hover .elementor-button-icon i {color: var(--secondary)!important;}



/***  3.5 ICONS  ***/

/*  Icon Colors  */

.fa, .fas, .far, .fal, .fab, .fad {color: var(--secondary);}
a .fa, a .fas, a .far, a .fal, a .fab, a .fad {color: var(--primary);}
a:hover .fa, a:hover .fas, a:hover .far, a:hover .fal, a:hover .fab, a:hover .fad {color: var(--secondary);}

/*  Icon Backgrounds  */

.fa-bg {
  background-color: var(--secondary);
  color: white;
}

a .fa-bg {
  background-color: var(--primary);
  color: #eee;
}

a:hover .fa-bg {
  background-color: var(--secondary);
  color: white;
}

/*  Icon Borders  */
.fa-br {border-color: var(--secondary);}
a .fa-br {border-color: var(--primary);}
a:hover .fa-br {border-color: var(--secondary);}



/***  3.6 LISTS  ***/

/* Icon Lists */

.arrow-list, 
.check-list, 
.check-circle-list, 
.icon-list, 
.contact-list {list-style: none;}

.arrow-list li, 
.check-list li, 
.check-circle-list li, 
.icon-list li, 
.contact-list li {position: relative;}

.contact-list li a {color: var(--dark-3);}

.icon-list li .fa, 
.icon-list li .fal, 
.icon-list li .fas, 
.icon-list li .fab, 
.icon-list li .fad, 
.contact-list li .fa, 
.contact-list li .fal, 
.contact-list li .fas, 
.contact-list li .fab, 
.contact-list li .fad {
  position: absolute;
  top: 0.25em;
  left: -1.75em;
  width: 1em;
  height: 1em;
  line-height: 1;
}

.arrow-list li:not(:last-child), 
.check-list li:not(:last-child), 
.check-circle-list li:not(:last-child), 
.icon-list li:not(:last-child), 
.contact-list li:not(:last-child) {margin-bottom: 0.5em;}

.arrow-list li:before, 
.check-list li:before, 
.check-circle-list li:before, 
.icon-list li:before, 
.contact-list li:before {
  position: absolute;
  top: 0.33em;
  left: -1.75em;
  width: 1em;
  height: 1em;
  display: block;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 300;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-size: 1em;
  text-align: center;
  color: var(--primary);
}

.arrow-list li:before, 
.icon-list li.arrow:before, 
.contact-list li.arrow:before {content: "\f105";}

.check-list li:before, 
.icon-list li.check:before, 
.contact-list li.check:before {content: "\f00c";}

.check-circle-list li:before, 
.icon-list li.check-circle:before, 
.contact-list li.check-circle:before {content: "\f058";}

.icon-list li.map-marker:before, 
.contact-list li.map-marker:before {content: "\f3c5";}

.icon-list li.phone:before, 
.contact-list li.phone:before {content: "\f095";}

.icon-list li.fax:before, 
.contact-list li.fax:before {content: "\f1ac";}

.icon-list li.envelope:before, 
.contact-list li.envelope:before {content: "\f0e0";}

.icon-list li.clock:before, 
.contact-list li.clock:before {content: "\f4fd";}

.icon-list li.share:before, 
.contact-list li.share:before {content: "\f14d";}

/* Double Size Icon List */

.icon-list-2x li, 
.contact-list-2x li {margin-left: 3em;}

.icon-list-2x li:not(:last-child), 
.contact-list-2x li:not(:last-child) {margin-bottom: 1em;}

.icon-list-2x li:before, 
.contact-list-2x li:before {
  font-size: 1.5em;
  top: 0;
  right: calc(100% + 1em);
}

/* Column Lists */

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

.two-col-list, 
.three-col-list, 
.four-col-list, 
.five-col-list {
  width: 100%;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.two-col-list {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

.three-col-list, 
.four-col-list, 
.five-col-list {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
}

.two-col-list li, 
.three-col-list li, 
.four-col-list li, 
.five-col-list li {
  display: inline-block;
  width: calc(100% - 1.75em);
}

}

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

.four-col-list, 
.five-col-list {
  -webkit-column-count: 4; /* Chrome, Safari, Opera */
  -moz-column-count: 4; /* Firefox */
  column-count: 4;
}

}

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

.five-col-list {
  -webkit-column-count: 5; /* Chrome, Safari, Opera */
  -moz-column-count: 5; /* Firefox */
  column-count: 5;
}

}


/***  3.7 FORM STYLES  ***/

/* Inputs */

input[type="text"]:focus, input[type="email"]:focus, input[type="number"]:focus, 
input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, 
input[type="url"]:focus, input[type="date"]:focus, input[type="datetime-local"]:focus, 
input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, 
textarea:focus, select:focus {border-color: var(--primary);}

/* Buttons */

input[type="submit"], input[type="reset"], input[type="button"] {
  background-color: var(--primary);
  height: 50px;
  border-radius: var(--radius-2);
  padding: 0.75em 2em;
  color: white;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

input[type="Submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
  background-color: var(--secondary);
  color: white;
}

input[type="Submit"]:active, input[type="reset"]:active, input[type="button"]:active {
  background-color:  var(--primary);
  color: white;
}

/* Search Form */

.search-form {position: relative;}

input[type="text"].search-field {background-color: var(--light-3);}

input[type="text"].search-field:focus {background-color: white;}

input[type="Submit"].search-submit {
  display: block;
  position: absolute;
  z-index: 50;
  top: 50%;
  right: 0;
  float: none;
  width: 42px;
  height: 42px;
  border: 0;
  margin-top: -21px;
  background: rgba(0,0,0,0) url(images/icon-search.svg) center center no-repeat !important;
  background-size: 1.5em !important;
  opacity: 0.6;
  cursor: pointer;
  cursor: hand;
}

input[type="Submit"].search-submit:hover {
  outline: none;
  opacity: 1;
}

input[type="Submit"].search-submit:active {
  background-color: rgba(0,0,0,0.025);
  outline: none;
}

/* Ninja Forms */

.nf-before-form-content {display: none !important;}

.nf-field-element input[type="button"], 
.nf-field-element input[type="submit"] {height: 50px;}


.nf-form-content button, 
.nf-form-content input[type=button],
.nf-form-content input[type=submit] {
  padding-left: 2em;
  padding-right: 2em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  border-radius: 0;
  background-color: var(--primary)!important;
  font-weight: 600 !important;
  color: white!important;
  letter-spacing: 2px;
}

.nf-form-content button:hover, 
.nf-form-content input[type=button]:hover,
.nf-form-content input[type=submit]:hover {
  background-color:var(--dark-1)!important;
  color: white!important;
}

.nf-form-content button.nf-fu-fileinput-button {
  padding: 0.5em 1em !important;
  border: 1px solid white !important;
  background-color: white !important;
  color: var(--primary) !important;
  font-size: 0.86em;
}

.nf-form-content button.nf-fu-fileinput-button:hover {background-color: var(--light-2) !important;}

.nf-form-content .field-wrap>div input {background: var(--light-3); border: 1px solid var(--light-2);}
.nf-form-content textarea {background: var(--light-3); border: 1px solid var(--light-2);}





/******************************************************************************
 * * *  4 HEADER STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/



/***  4.1 SCROLL BAR  ***/

.scroll-bar {background: white;}

.scroll-logo img {max-height: 45px;}



/***  4.2 HEADER  ***/

.header .col-custom {
  padding-top: 0;
  padding-bottom: 0;
}

.header .logo-wrapper {
  padding-top: 15px;
  padding-bottom: 15px;
}

.logo img {max-height: 60px;}

/* Menu Button */

.header .menu-button .fal, 
.header .menu-button:hover .fal {color: white; background: var(--primary);}

.header .menu-button.active .fal {
  background-color: var(--primary);
  color: white;
}



/***  4.3 NAV MENUS  ***/

.nav-menu > li > a {
  padding: 36px 5px;
  color: var(--dark-1);
  font-size: 14px;
}
@media (min-width: 1200px) {
  .nav-menu > li > a {
    padding: 36px 13px; 
  }
}

li.cstm-button {
  margin-left: 20px;
}
li.cstm-button a {
  padding: 14px 35px;
  background-color: var(--primary);
  font-size: 15px;
  color: white !important;
  border-radius: 50px;
  line-height: 1;
  text-transform: uppercase;
  width: fit-content;
}
li.cstm-button a:hover {
  background-color: var(--secondary);
  color: white;
}

.single-service .nav-menu > li.services-link > a, 
.single-post .nav-menu > li.posts-link > a, 
.nav-menu > li.current-menu-ancestor > a, 
.nav-menu > li.current-page-ancestor > a, 
.nav-menu > li.current-page-parent > a, 
.nav-menu > li.current-menu-item > a, 
.nav-menu > li:hover > a {color: var(--primary);}

/* Nav Button */

.nav-menu > li.nav-button > a > span {
  display: block;
  padding: 0.75em 2.25em;
  border-radius: var(--radius-2);
  margin-top: -0.75em;
  margin-bottom: -0.75em;
  background-color: var(--primary);
  color: white;
  transition: all 300ms ease-in-out;
  text-transform: uppercase;
}

.nav-menu > li.nav-button.current-menu-item > a > span, 
.nav-menu > li.nav-button:hover > a > span {
  background-color: var(--secondary);
  color: white;
}



/***  4.4 DROPDOWN MENUS  ***/

.nav-menu li ul {
  background-color: white;
  width: 240px;
}

.nav-menu li ul li a {
  padding: 12px 16px;
  text-align: left;
  color: var(--dark-1);
  font-size: 0.9em;
}

.nav-menu li ul li.current-menu-item > a {color: var(--primary);}

.nav-menu li ul li:hover a {
  background-color: var(--primary);
  color: white;
}



/***  4.5 MOBILE NAV  ***/

.mobile-nav {background-color: white;}

.mobile-menu > li:not(:last-child) {border-bottom: 1px solid var(--light-2);}

.mobile-menu li a {color: var(--dark-1); font-weight: 600;}

.mobile-menu li.current-menu-item > a {
  color: white;
  background: var(--primary);;
}

.mobile-menu li ul {
  background-color: var(--light-2);
  font-size: 0.9em;
}

.mobile-menu li.menu-item-has-children:after {color: var(--dark-1);}





/******************************************************************************
 * * *  5 BODY STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 ******************************************************************************/



/***  5.1 BANNER  ***/

.banner {
  background: rgb(238,9,121);
  background: linear-gradient(45deg, rgba(238,9,121,1) 0%, rgba(255,106,0,1) 100%);
}
.banner:before {
  opacity: 0.2 !important;
}

.banner-content {
  display: flex;
  flex-direction: column-reverse;
}
.banner-content .page-intro-wrapper {
  font-size: 21px;
  font-weight: bold;
  position: relative;
  margin-bottom: 60px;
}
.banner-content .page-intro-wrapper::after  {
  content: '';
  background: white;
  position: absolute;
  bottom: -30px;
  left: 0;
  border-top: 5px solid white;
  width: 100px;
}

@media (max-width: 768px) {
  .banner-content .page-intro-wrapper {
    font-size: 19.1px;
  }
}

.banner-inner {min-height: 658px;}

.banner-tall .banner-inner {min-height: 700px; }

.banner h1 {margin-bottom:60px; margin-top:0px; line-height: 1;}



/***  5.2 PAGE NAV BAR  ***/

.page-nav-bar .page-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: center;
}

.page-nav-bar .page-menu {display: flex;}

.page-nav-bar .page-menu li {
  margin: 0;
  font-size: 0.9em;
  line-height: 1.4;
  text-align: center;
}

.page-nav-bar .page-menu li > a {
    padding: 24px 18px;
    display: flex;
    align-items: center;
    color: var(--dark-1);
    -webkit-transition: all 350ms ease-in-out;
    -moz-transition: all 350ms ease-in-out;
    -o-transition: all 350ms ease-in-out;
    -ms-transition: all 350ms ease-in-out;
    transition: all 350ms ease-in-out;
}

.page-nav-bar .page-menu li.current-menu-item > a, 
.page-nav-bar .page-menu li:hover > a {
    background: var(--primary);
    text-decoration: none;
    color: white;
}


/***  5.3 MAIN  ***/

.main {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media screen and (min-width: 421px) {
.content .alignleft {margin: 0 20px 1em 0;}
.content .alignright {margin: 0 0 1em 20px;}
}




/***  5.4 ARCHIVE  ***/

/* Entry Cols */

.entry-cols .entry-link {
  border-radius: var(--radius-2);
  background-color: var(--light-3);
  overflow: hidden;
  color: var(--dark-2);
}

.entry-cols .entry-link:hover {transform: translateY(-3px);}

.entry-cols .entry-icon-wrap {padding: 30px 30px 0;}

.entry-cols .entry-icon-wrap svg {
  width: 60px;
  fill: var(--primary);
}

.entry-cols .entry-link .entry-title, 
.entry-cols .entry-link:hover .entry-title {color: var(--secondary);}

.entry-cols .entry-text-wrap {padding: 30px 30px 85px 30px;}

.entry-cols .entry-date {
  font-size: 0.9em;
  color: var(--dark-3);
}

.entry-cols .entry-cats {
  position: absolute;
  top: 30px;
  left: 30px;
}

.entry-cols .entry-cats span {
  border-radius: var(--radius-2);
  padding: 5px 10px;
  margin: 0;
  margin-right: 4px;
  background: rgba(0,0,0,0.4);
  color: white;
}

.entry-cols .entry-more {
  position: absolute;
  width: 100%;
  left: 30px;
  bottom: 30px;
}

.entry-cols .entry-link .entry-button {color: var(--primary);}

.entry-cols .entry-link:hover .entry-button {color: var(--secondary);}

/* Paging Nav */

.archive-nav a {
  padding: 0.6em 1.2em;
  border-radius: var(--radius-3);
  border: 1px solid var(--light-1);
  background: var(--light-2);
  color: var(--dark-1);
}

.archive-nav a:hover {
  background-color: var(--secondary);
  color: white;
}



/***  5.5 SINGLE  ***/


/******************************************************************************
 * * *  6 FOOTER STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/


/***  6.1 CTA BAR  ***/

.cta-bar {
  padding-top: 100px;
  Padding-bottom: 100px;
  background-color: var(--secondary);
  text-align: center;
  color: white;
}

.cta-bar .grid {align-items: center;}

.cta-bar .col-custom:last-child {margin-top: 1em;}

@media screen and (min-width: 901px) {
.cta-bar .col-custom:first-child {
  width: 66.7%;
  text-align: left;
}
.cta-bar .col-custom:last-child {
  width: 33.3%;
  text-align: right;
  margin-top: 0;
}
}

.cta-bar .cta-title, 
.cta-bar .elementor-widget-heading {margin-bottom: 0.5em;}

.cta-bar .cta-title + p {margin-top: 0;}

.cta-bar h1, 
.cta-bar h2, 
.cta-bar h3, 
.cta-bar h4, 
.cta-bar h5, 
.cta-bar h6, 
.cta-bar .elementor-heading-title {color: white;}

.cta-bar .button:hover, 
.cta-bar .elementor-button:hover {
  border-color: white;
  background-color: white;
  color: var(--primary);
}



/***  6.2 FOOTER  ***/

.footer {
  padding-top: 80px;
  padding-bottom: 80px;
  background: black;
  color:var(--light-1);
  font-size:1em;
}

.footer .col-custom {
  padding-top: 8px;
  padding-bottom: 8px;
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {color:white;}

.footer h3 {
  font-size:1.375em;
	font-weight: 500;
}

.footer img.footer-logo {width:150px;}

.footer .menu {margin-top: -5px;}

.footer .menu a {
  display: block;
  padding-top: 5px;
	padding-bottom: 5px;
  color: white;
}

.footer .menu a:hover {
  text-decoration:none;
  color:var(--secondary);
}

/* Footer Icon Lists */

.footer .arrow-list li, 
.footer .check-list li, 
.footer .check-circle-list li, 
.footer .icon-list li, 
.footer .contact-list li {margin-left: 1.75em;}

.footer ul.contact-list { margin-left:30px;}
.footer ul.contact-list li  { margin-left:0;}
.footer ul.contact-list li a { margin-left:0;}
.footer ul.contact-list li a:hover {
  color:var(--primary);
	text-decoration: none;
}

/* Social Icons */

.footer ul.social-icons  {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
}
.footer ul.social-icons li {
  display: inline-block;
  zoom: 1;
  display: inline-flex;
  vertical-align: middle;
  margin-left:10px!important;
}
.footer ul.social-icons li a {
  display: block;
  font-size: 0.9em;
  margin: 0 1px;
  text-decoration: none;
  color:white;
}
.footer ul.social-icons li a i {
  color: white;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.footer ul.social-icons li a:hover i {
  color:var(--secondary);
}
.footer ul.social-icons li a:focus i,
.footer ul.social-icons li a:active i {
  transition: none;
  color:var(--secondary);
}



/***  6.3 BOTTOM BAR  ***/

.bottom-bar {
  padding-top: 50px;
  padding-bottom: 50px;
  background: white;
  color: var(--dark-2);
  font-size: 0.9em;
}
@media (max-width: 768px) {
  .bottom-bar {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.bottom-bar .col-custom {
  padding-top: 5px;
  padding-bottom: 5px;
}

.bottom-bar a {color: black;}

.bottom-bar a:hover {
  text-decoration: none;
  color:var(--secondary);
}

.bottom-bar .custom-html-widget {
  color: black;
}

.copyright, .credits {display: inline-block;}

.credits img {width: 1.1em;}

.copyrights-credits-wrapper {color: black !important;}
@media (max-width: 768px) {
  .copyrights-credits-wrapper {
    margin-bottom: 20px;
  }
}





/******************************************************************************
 * * *  7 CUSTOM STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/


/** Custom Class **/
/* Section Heading */
.sh-sixh {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
/* Section Description */
.sd-sixh {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


/***  COLORED SECTIONS  ***/

.gradient-bar {
    background-color: transparent;
    background-image: linear-gradient(135deg,var(--secondary) 0%,var(--primary) 40%);
}

.light-bar {background-color: var(--light-1);}



/***  BOX COLS  ***/

.box-cols .elementor-column,
.box-col.elementor-column {padding: 0;}

.box-cols .elementor-widget-wrap, 
.box-col .elementor-widget-wrap {
  padding: 50px !important;
  background-color: var(--primary);  
  box-shadow: 0 40px 40px 0 rgb(131 53 86 / 25%);
}

.box-cols .elementor-widget-button, 
.box-col .elementor-widget-button {
  position: absolute;
  bottom: 25px;
  left: 25px;
}

.box-cols .elementor-column:hover .elementor-button, 
.box-col .elementor-column:hover .elementor-button {background-color: #8ca969 !important;}



/***  COUNTER   ***/

.counter .elementor-counter-number {
  color: var(--primary)!important;
	font-weight: bold;
	font-family: var(--font-1);
}

.elementor-icon-box-description span {
  color: var(--primary);
	font-weight: bold;
	font-family: var(--font-1);
}

.elementor-icon-box-description, 
.elementor-counter-title {
  color: var(--dark-3);
	font-weight: bold !important;
	font-family: var(--font-1);
}

.elementor-counter-number-suffix, 
.elementor-counter-number-prefix {
  color: var(--primary);
	font-weight: bold;
	font-family: var(--font-1);
}



/***  COLOR COLS   ***/

.color-cols .elementor-column:last-child .elementor-widget-wrap {background-color: var(--primary);}/* End custom CSS */

.color-cols .elementor-column:nth-child(3) .elementor-widget-wrap {background-color: var(--primary-2);}/* End custom CSS */

.color-cols .elementor-column:nth-child(2) .elementor-widget-wrap {background-color: var(--primary-3);}/* End custom CSS */

.color-cols .elementor-column:first-child .elementor-widget-wrap {background-color: var(--primary-4);}/* End custom CSS */


/** Home Banner **/
.home-banner .section-heading .elementor-widget-container {
  padding-bottom: 0;
}

.who-we-are-img img {
  height: 100%;
  max-height: 397.25px;
  width: 100%;
  max-width: 277px;
  object-fit: contain;
}
.who-we-are-img-wrapper .elementor-widget-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .who-we-are-img {
    margin-bottom: 0 !important;
  }
  .who-we-are-img-wrapper .elementor-widget-wrap {
    flex-direction: row;
    flex-wrap: nowrap;
    column-gap: 15px;
  }
}

/** Slider Gallery **/
.what-we-do-wrapper .elementor-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.what-we-do-wrapper .what-we-do {
  width: 100%;
}
@media (min-width: 1200px) {
  .what-we-do-wrapper .what-we-do {
    width: 33.33%;
  } 
}

/** Contact Form **/
.contact-form .nf-form-content input[type=submit] {
  border-radius: 50px;
  padding: 17px 30px;
  line-height: 1;
  letter-spacing: normal;
  font-weight: normal !important;
}
.contact-form .nf-form-content input[type=submit]:hover {
  background-color: var(--secondary) !important;
}
.contact-form .ninja-forms-field {
  background-color: var(--field-bg) !important;
  border-color: var(--field-border) !important;
  padding: 11.25px;
}
.contact-form .nf-field-label {
  margin-bottom: 0 !important;
}
.contact-form label {
  color: black;
  font-size: 15px;
}
@media (max-width: 768px) {
  .contact-form label {
    font-size: 13.65px;
  }
}

/** Donate Form **/
.donate-form label {
  font-weight: normal !important;
}
.donate-form .ninja-forms-field {
  background-color: white !important;
  border-color: #ccc !important;  
  padding: 12px;
}
.donate-form .ninja-forms-req-symbol {
  display: none;
}
.donate-form .donation-amount .nf-field-label {
  width: fit-content;
  padding: 12px 15px;
  border: 1px solid #CCCCCC;
  border-right: 0;
  line-height: 1;
  background: #F2F2F2;
}
.donate-form .donation-amount .nf-field-label label {
  font-weight: normal;
}
.donate-form .donation-amount .nf-field-element input {
  width: 100%;
  max-width: 125px;
  border: 1px solid #FBFCFF;
}
.donate-form .donation-amount-option li {
  position: relative;
  padding: 10px 15px !important;
  border-radius: 25px;
  border: 1px solid #CCC;
  line-height: 1;
  background: #f2f2f2;
  transition: all 0.3s ease;
}
.donate-form .donation-amount-option li input {
  opacity: 0;
  position: absolute;
}
.donate-form .donation-amount-option li label {
  margin-left: 0 !important;
  padding: 10px;
}
.donate-form .donation-amount-option li label:hover {
  cursor: pointer;
}
.donate-form .donation-amount-option li:hover {
  color: white;
  background-color: #dbdbdb;
  border: 1px solid var(--secondary);
}
.donate-form .payment-method {
  margin-bottom: 10px;
}
.donate-form .payment-method .nf-field-label {
  width: 100%;
  border-bottom: 1px solid #CCC;
}
.donate-form .payment-method .nf-label-span {
  color: black;
  line-height: 40px;
}
.donate-form .payment-method .nf-field-element li {
  margin-right: 20px !important;
}
.donate-form .payment-method .nf-field-element li label {
  color: black;
}
.donate-form .personal-info:before {
  content: 'Personal Info';
  font-weight: bold;
  color: black;
}
.donate-form .personal-info .nf-field {
  margin-top: 5px;
}
.donate-form .personal-info .ninja-forms-field {
  padding: 0 0 10px 0;
}
.donate-form .total-donation-amount .nf-field-label {
  width: fit-content;
  padding: 12px 15px;
  border: 1px solid #CCCCCC;
  border-right: 0;
  line-height: 1;
  background: #F2F2F2;
}
.donate-form .fname,
.donate-form .lname {
  margin-bottom: 10px;
}
.donate-form .email-add {
  margin-bottom: 20px;
}
.donate-form .total-donation-amount .nf-field-element {
  width: 30%;
}
.donate-form .nf-form-content input[type=submit] {
  border-radius: 50px;
  padding: 17px 30px;
  line-height: 1;
  letter-spacing: normal;
  font-weight: normal !important;
  border: none;
}
.donate-form .nf-form-content input[type=submit]:hover {
  background-color: var(--secondary) !important;
}
/*    
 * END OF
 * CUSTOMIZABLE CSS
 */