/* -------------------------------- 

Primary style

-------------------------------- */

/*
*, *::after, *::before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
 */
body {
  /*font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;*/
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #404041;
}

a:hover {text-decoration: none;}
a:hover, a:active, a:focus {outline: 0 !important;}
.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus, input:focus, li:focus, select:focus {outline: 0 !important;outline-offset: 0;}
.form-control:focus {border-color: transparent;    box-shadow: none;}


.clB {clear: both;}

/* -------------------------------- 

1. Auto-Hiding Navigation - Simple

-------------------------------- */
.cd-auto-hide-header {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #ffffff;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}
.cd-auto-hide-header::after {
  clear: both;
  content: "";
  display: block;
}
.cd-auto-hide-header.is-hidden {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media only screen and (min-width: 1024px) {
  .cd-auto-hide-header {
    height: 60px;
  }
}


.cd-auto-hide-header .nav-trigger {
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*
.cd-auto-hide-header .logo {
  left: 5%;
}
.cd-auto-hide-header .logo a, .cd-auto-hide-header .logo img {
  display: block;
}
*/

.cd-auto-hide-header .nav-trigger {
  /* vertically align its content */
  display: table;
  height: 100%;
  padding: 0 1em;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #25283D;
  font-weight: bold;
  right: 0;
  border-left: 1px solid #f2f2f2;
}
.cd-auto-hide-header .nav-trigger span {
  /* vertically align inside parent element */
  display: table-cell;
  vertical-align: middle;
}
.cd-auto-hide-header .nav-trigger em, .cd-auto-hide-header .nav-trigger em::after, .cd-auto-hide-header .nav-trigger em::before {
  /* this is the menu icon */
  display: block;
  position: relative;
  height: 2px;
  width: 22px;
  background-color: #25283D;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.cd-auto-hide-header .nav-trigger em {
  /* this is the menu central line */
  margin: 6px auto 14px;
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
}
.cd-auto-hide-header .nav-trigger em::before, .cd-auto-hide-header .nav-trigger em::after {
  position: absolute;
  content: '';
  left: 0;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}
.cd-auto-hide-header .nav-trigger em::before {
  /* this is the menu icon top line */
  -webkit-transform: translateY(-6px);
      -ms-transform: translateY(-6px);
          transform: translateY(-6px);
}
.cd-auto-hide-header .nav-trigger em::after {
  /* this is the menu icon bottom line */
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
}
@media only screen and (min-width: 1024px) {
  .cd-auto-hide-header .nav-trigger {
    display: none;
  }
}

.cd-auto-hide-header.nav-open .nav-trigger em {
  /* transform menu icon into a 'X' icon */
  background-color: rgba(255, 255, 255, 0);
}
.cd-auto-hide-header.nav-open .nav-trigger em::before {
  /* rotate top line */
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.cd-auto-hide-header.nav-open .nav-trigger em::after {
  /* rotate bottom line */
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.cd-primary-nav {
  display: inline-block;
  float: right;
  height: 100%;
  padding-right: 5%;
}
.cd-primary-nav > ul {
  position: absolute;
  z-index: 2;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  display: none;
  box-shadow: 0 14px 20px rgba(0, 0, 0, 0.2);
}
.cd-primary-nav > ul a {
  /* target primary-nav links */
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  color: #25283D;
  font-size: 1.8rem;
  border-top: 1px solid #f2f2f2;
}
.cd-primary-nav > ul a:hover, .cd-primary-nav > ul a.active {
  color: #8F3985;
}
@media only screen and (min-width: 1024px) {
  .cd-primary-nav {
    /* vertically align its content */
    display: table;
  }
  .cd-primary-nav > ul {
    /* vertically align inside parent element */
    display: table-cell;
    vertical-align: middle;
    /* reset mobile style */
    position: relative;
    width: auto;
    top: 0;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }
  .cd-primary-nav > ul::after {
    clear: both;
    content: "";
    display: block;
  }
  .cd-primary-nav > ul li {
    display: inline-block;
    float: left;
    margin-right: 1.5em;
  }
  .cd-primary-nav > ul li:last-of-type {
    margin-right: 0;
  }
  .cd-primary-nav > ul a {
    /* reset mobile style */
    height: auto;
    line-height: normal;
    padding: 0;
    border: none;
  }
}

.nav-open .cd-primary-nav ul,
.cd-primary-nav ul:target {
  /* 
  	show primary nav - mobile only 
  	:target is used to show navigation on no-js devices
  */
  display: block;
}
@media only screen and (min-width: 1024px) {
  .nav-open .cd-primary-nav ul,
  .cd-primary-nav ul:target {
    display: table-cell;
  }
}

/* -------------------------------- 

2. Auto-Hiding Navigation - with Sub Nav

-------------------------------- */


.cd-secondary-nav {
  position: relative;
  z-index: 1;
  clear: both;
  width: 100%;
  height: auto;
  background-color: #ffffff;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
      border-bottom: 1px solid #cfcfcf;
  /* overflow: hidden; */
}

/*
.cd-secondary-nav::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 35px;
  background: transparent;
  background: -webkit-linear-gradient(right, #25283D, rgba(37, 40, 61, 0));
  background: linear-gradient(to left, #25283D, rgba(37, 40, 61, 0));
  pointer-events: none;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}
.cd-secondary-nav.nav-end::after {
  opacity: 0;
}


.cd-secondary-nav ul, .cd-secondary-nav li, .cd-secondary-nav a {
  height: 100%;
}
.cd-secondary-nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0 5%;
  -webkit-overflow-scrolling: touch;
}
.cd-secondary-nav ul::after {
  clear: both;
  content: "";
  display: block;
}
.cd-secondary-nav li {
  display: inline-block;
  float: left;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.cd-secondary-nav li:last-of-type {
  padding-right: 20px;
}
.cd-secondary-nav a {
  display: block;
  color: #ffffff;
  opacity: .6;
  line-height: 50px;
  padding: 0 1em;
}
.cd-secondary-nav a:hover, .cd-secondary-nav a.active {
  opacity: 1;
}

*/

/*

@media only screen and (min-width: 1024px) {
  .cd-secondary-nav {
    height: 120px;
    overflow: visible;
  }
  .cd-secondary-nav ul {
    display: block;
    text-align: center;
  }
  .cd-secondary-nav li {
    float: none;
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1;
  }
  .cd-secondary-nav a {
    line-height: 70px;
  }
  .cd-secondary-nav a.active {
    box-shadow: inset 0 -3px #8F3985;
  }
}

*/


/* -------------------------------- 

3. Auto-Hiding Navigation - with Sub Nav + Hero Image

-------------------------------- */
.cd-secondary-nav.fixed {
  position: fixed;
  top: 60px;
}
.cd-secondary-nav.slide-up {
  -webkit-transform: translateY(-60px);
      -ms-transform: translateY(-60px);
          transform: translateY(-60px);
}
@media only screen and (min-width: 1024px) {
  .cd-secondary-nav.fixed {
    top: 80px;
    /* fixes a bug where nav and subnab move with a slight delay */
    box-shadow: 0 -6px 0 #25283D;
  }
  .cd-secondary-nav.slide-up {
    -webkit-transform: translateY(-80px);
        -ms-transform: translateY(-80px);
            transform: translateY(-80px);
  }
}

/* -------------------------------- 

Main content

-------------------------------- */
.cd-main-content {
  padding: 60px 0 0;
  overflow: hidden;
}
.cd-main-content.sub-nav {
  /* to be used if there is sub nav */
  padding-top: 119px;
}
.cd-main-content.sub-nav-hero {
  /* to be used if there is hero image + subnav */
  padding-top: 0;
}
.cd-main-content.sub-nav-hero.secondary-nav-fixed {
  margin-top: 50px;
}

@media only screen and (min-width: 1024px) {
  .cd-main-content {
    padding-top: 80px;
  }
  .cd-main-content.sub-nav {
    padding-top: 165px;
  }
  .cd-main-content.sub-nav-hero.secondary-nav-fixed {
    margin-top: 70px;
  }
}

/*
	adjust the positioning of in-page links
	http://nicolasgallagher.com/jump-links-and-viewport-positioning/
*/
.cd-main-content.sub-nav :target::before,
.cd-main-content.sub-nav-hero :target::before {
  display: block;
  content: "";
  margin-top: -50px;
  height: 50px;
  visibility: hidden;
}
@media only screen and (min-width: 1024px) {
  .cd-main-content.sub-nav :target::before,
  .cd-main-content.sub-nav-hero :target::before {
    margin-top: -70px;
    height: 70px;
  }
}

/* -------------------------------- 

Intro Section

-------------------------------- */
.cd-hero {
  /* vertically align its content */
  display: table;
  width: 100%;
  margin-top: 60px;
  height: 300px;
  background: url(../img/cd-hero-background.jpg) no-repeat center center;
  background-size: cover;
}
.cd-hero .cd-hero-content {
  /* vertically align inside parent element */
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .cd-hero {
    height: 400px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-hero {
    height: 600px;
    margin-top: 80px;
  }
}

.hideDesk {display: none;}

.scrollup{
      width:40px;
      height:40px;      
      text-indent:-9999px;
      position:fixed;
      bottom:50px;
      right:50px;
      display:none;     
      background: url('../images/Scroll-to-top-button_40x40.svg') no-repeat;
    }

.cd-auto-hide-header.is-hidden .cd-secondary-nav {display: none;}

main.cd-main-contentOld {clear: both;}

h1 {font-family: 'Lato', sans-serif;font-size: 30px;color: #404041;font-weight: 700;margin:0 0 30px;padding-bottom: 28px; background: url(../images/hr_green.svg) no-repeat center bottom;}
  h1 span {font-size: 24px;color: #69bd45;font-weight: 500;display: block;margin-bottom: 14px;font-family: 'Quicksand', sans-serif;}
  h1.hrLeft {background-position: left bottom;}


.topHeader {height: 50px;background: #404041;font-family: 'Lato', sans-serif;}
  .topHeader ul {list-style: none;margin:0;padding: 0; }
  .topHeader .topHeaderR ul {float: right;}
    .topHeader ul li {border-left: 1px solid #505050;border-right: 1px solid #505050;padding: 14px 25px 13px;float: left;}
    .topHeader ul li.last {border-left: none;}
    .topHeaderL ul li a {color: #adadad;font-size: 16px;}
    .topHeaderL ul li a:hover {color: #ffffff;}
    .topHeaderL ul li span { padding-left: 30px;}
    .topHeader span.topTel {background: url(../images/Call_20x16.svg) no-repeat left center;}
    .topHeader span.topEmail {background: url(../images/Email_20x16.svg) no-repeat left center;}

.logo {margin: 10px 0 0;}
  .logo a {display: inline-block;}

nav.navMenuBar {background: none;border: none;margin-bottom: 0;padding: 30px 0;float: right;font-family: 'Lato', sans-serif;}
  .navbar-collapse.collapse {padding: 0;}
  .navbar-collapse.collapse.in {padding-right: 15px; padding-left: 15px;}
  nav.navMenuBar.navbar-default .navbar-nav>li>a {font-size: 16px;color: #404041;font-family: 'Quicksand', sans-serif;font-weight: 500; padding: 10px 6px; }
  nav.navMenuBar.navbar-default .navbar-nav>li>a:focus, nav.navMenuBar.navbar-default .navbar-nav>li>a:hover {color: #404041;}
  nav.navMenuBar li.active>a, nav.navMenuBar li:hover>a {background: url(../images/top-active-li.png) no-repeat center bottom;}
  nav.navMenuBar.navbar-default .navbar-nav>.active>a, nav.navMenuBar.navbar-default .navbar-nav>.active>a:focus, nav.navMenuBar.navbar-default .navbar-nav>.active>a:hover {background-color: #fff;}

  nav.navMenuBar li.getInvolvedBtn {margin-left: 13px;}
  nav.navMenuBar.navbar-default li.getInvolvedBtn a {background: #69bd45;color: #fff !important;font-weight: 500;font-size: 16px;border-radius: 10px;padding:10px 14px;}
  nav.navMenuBar li.getInvolvedBtn a:hover {background: #53a331;color: #fff;}

  .navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {background: #ffffff;}
  .dropdown-menu>.active>a, .dropdown-menu>.active>a:focus, .dropdown-menu>.active>a:hover {color: #404041;background:#69bd45;}

   nav.navMenuBar li li:hover>a, nav.navMenuBar li li.active>a, nav.navMenuBar li li:hover.active>a {background:#69bd45;color: #ffffff;}
  .navMenuBar .caret {color: #404041;}

  .dropdown-menu>li>a {font-family: 'Quicksand', sans-serif;font-weight: 500;}


  .navbar-nav>li.dropdown:hover ul {display: block;margin-top: -3px;}



.bannerWrap {padding: 12% 0 5%;font-family: 'Lato', sans-serif;font-weight: 700;font-size: 40px;color: #fff;height:445px;text-align: center; }

    .bannerWrap .bannerCnt1 {font-family: 'Quicksand', sans-serif;font-weight: 500;font-size: 36px;color: #69bd45;}

    body.alagKaroPage .bannerWrap {background-image: url(../images/alag-karo-page-bnr.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    }

    body.promoteSegragationPage .bannerWrap {background-image: url(../images/promote-segragation-page-bnr.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    }

    body.segregationBasicsPage .bannerWrap {background-image: url(../images/segregation-basics-page-bnr.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    }

    body.programPartnersPage .bannerWrap {background-image: url(../images/program-partners-page-bnr.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    }

body.segregationBasicsPage .alagKaroAlliesWrap .skltbs-panel-group {background: #ffffff;}

.padT85 {padding-top: 85px;}
.ovH {overflow: hidden;}

.programObjectivesCnt {padding: 4% 0 5%;overflow: hidden;}

.targetedImpactWrap {padding-top: 45px;}
  .targetedImpactWrap p {padding-top: 15px;}
  .targetedImpactWrap .targetedImpactImg {position: relative;}
  .targetedImpactWrap .targetedImpactImg span {position: absolute;bottom: 0;left: 0;width: 100%;padding: 20px 0;font-family: 'Quicksand', sans-serif;font-weight: 700;font-size: 32px;color: #fff;padding-left: 5% ;}
  .targetedImpactWrap .targetedImpactImg.tIImg1 span {background: url(../images/tIImg1.png) repeat top left;}
  .targetedImpactWrap .targetedImpactImg.tIImg2 span {background: url(../images/tIImg2.png) repeat top left;}
  .targetedImpactWrap .targetedImpactImg.tIImg3 span {background: url(../images/tIImg3.png) repeat top left;}
  .targetedImpactWrap .targetedImpactImg.tIImg4 span {background: url(../images/tIImg4.png) repeat top left;}

.projectComponentsWrap {overflow: hidden; display: flex;}
  .projectComponentsWrap .col { flex: 1;}
  .projectComponentsWrap .projectComponentsCntL {float: left;width: 50%;background-image: url(../images/project-components.jpg);background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;}
  .projectComponentsWrap .projectComponentsCntR {float: left;width: 50%;background: #404041;padding:50px 3% 50px 4%;color: #ffffff;}
  .projectComponentsWrap .projectComponentsCntR h1 {color: #ffffff;text-align: left;background: url(../images/hr_yellow.svg) no-repeat left bottom;margin-bottom: 23px;}
    .projectComponentsWrap .projectComponentsCntR h1 span {color: #fff533;margin-bottom: 8px;}
    .projectComponentsWrap .projectComponentsCntR ul {list-style: none;padding: 0;margin: 0;}
    .projectComponentsWrap .projectComponentsCntR ul li {margin-bottom: 12px;background: url(../images/Start_bullet_yellow_12x12.svg) no-repeat 5px 5px;padding-left: 30px;}
    .projectComponentsWrap .projectComponentsCntR ul span {display: block;font-weight: 700;font-size: 18px;}


.cApproachWrap {background-image: url(../images/cApproach-Wrap-bg.jpg);background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    margin-top: 85px;padding-bottom: 85px;}
  .cApproachWrap h1 {color: #ffffff;background-image: none;}
    .cApproachWrap h1 span{color: #ffffff;margin: 22px 0 0;}
  .cApproachWrap a.joinMissionBtn {color: #ffffff;font-size: 18px;font-weight: 700;border: 2px solid #ffffff;border-radius: 10px;padding: 20px 30px;display: inline-block;margin-top: 50px;}
    .cApproachWrap a.joinMissionBtn:hover {color: #ddd;border: 2px solid #ddd;}

.greenPerksWrap {background:#f5f5f5;margin-top: 85px; }
.greenPerksCnt {padding: 4% 0 0;overflow: hidden;}

.solidWasteManagRulesWrap {background-image: url(../images/Solid-Waste-Management-Rules-wrap-bg.jpg);background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    margin-top: 85px;padding-bottom: 85px;}
    .solidWasteManagRulesWrap h1 {color: #ffffff;background: url(../images/hr_yellow.svg) no-repeat center bottom;}
    .solidWasteManagRulesWrap h1 span{color: #fff533;margin: 0 0 14px;}

    .solidWasteCntLR {overflow: hidden; display: flex;margin-top: 30px;}
      .solidWasteCntLR .col { flex: 1;}
      .solidWasteCntLR .solidWasteCntL {float: left;width: 50%;background: #000;background-image: url(../images/Solid-Waste-Management-Rules.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;}
      .solidWasteCntLR .solidWasteCntR {float: left;width: 50%;background: #ffffff;padding: 30px 3%;color: #000000;}
      .solidWasteCntLR .solidWasteCntR .solidWasteCntTitle {font-size: 30px;font-weight: 700;color: #404041;}
      .solidWasteCntLR .solidWasteCntR .solidWasteCntTitleSmall {font-size: 16px;font-weight: 700;color: #404041;margin: 7px 0 10px;}
      .solidWasteCntLR .solidWasteCntR .solidWasteCntTitleSmall span {color: #69bd45;}
      .solidWasteCntLR .solidWasteCntR ul {list-style: none;padding: 0;margin: 0;color: #404041;}
      .solidWasteCntLR .solidWasteCntR ul li {margin-bottom: 12px;background: url(../images/Start_bullet_dark_grey_12x12.svg) no-repeat 5px 5px;padding-left: 30px;}

body.homePage a.whatEconomyBtn {color: #ffffff;font-size: 18px;font-weight: 700;border-radius: 10px;padding: 17px 20px;display: inline-block;background: #69bd45;}
  body.homePage a.whatEconomyBtn:hover {background: #5aaa38;}

.homeBnrWrap {position: relative;text-align: center;}
  .homeBnrWrap .homeBnrCnt {position: absolute;bottom: 7%;width: 100%;color: #ffffff;}
  .homeBnrWrap .homeBnrCnt h1 {font-weight: 700;font-size: 38px;margin: 0;color: #ffffff;padding-bottom: 0;background-image: none;margin: 23px 0 5px;}
  .homeBnrWrap .homeBnrCnt h2 {font-family: 'Quicksand', sans-serif;font-weight: 400;font-size: 32px;margin: 0;background: url(../images/hr_white.svg) no-repeat center bottom;padding: 53px 0 20px;}
  .homeBnrWrap .homeBnrCnt p {font-size: 20px;margin: 0;}

  .homeBnrWrap .carousel-control {opacity: 1;    width: 10%;}
      .homeBnrWrap .carousel-control.left {background: url(../images/Scroller_Left_Arrow_White_50x50.svg) no-repeat center center;}
      .homeBnrWrap .carousel-control.right {background: url(../images/Scroller_Right_Arrow_White_50x50.svg) no-repeat center center;}
      .homeBnrWrap .carousel-indicators li {background: #adadad;border: 1px solid #adadad; }
      .homeBnrWrap .carousel-indicators li.active {background: #69bd45;border: 1px solid #69bd45;}

  .homeBnrEventsWrap {position: absolute;bottom: 40px;right: 100px;background:#ffffff;border-radius: 10px;padding: 8px 12px;width: 280px;font-size: 14px;color: #404041;}
    .homeBnrEventsWrap .homeEventTitle {font-size: 16px;color: #e4202d;font-weight: 700;}
    .homeBnrEventsWrap .homeEventDate {margin-bottom: 10px;}
    .homeBnrEventsWrap .homeEventLinks {color: #404041;}
    .homeBnrEventsWrap .homeEventLinks a {color: #404041;font-weight: 700;}
    .homeBnrEventsWrap .carousel-inner>.item {padding: 0 20px;}
    .homeBnrEventsWrap .carousel-control {opacity: 1;width: 8%;}
    .homeBnrEventsWrap .carousel-control.left {background: url(../images/arrow-home-events-left.png) no-repeat center center;}
    .homeBnrEventsWrap .carousel-control.right {background: url(../images/arrow-home-events-right.png) no-repeat center center;}

.letsPracticeSourceWrap {overflow: hidden; display: flex;}
  .letsPracticeSourceWrap .col { flex: 1;}
  .letsPracticeSourceWrap .letsPracticeSourceCntL {float: left;width: 50%;background-image: url(../images/Lets-Practice-Source.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;}
  .letsPracticeSourceWrap .letsPracticeSourceCntR {float: left;width: 50%;background: #404041;padding: 50px 3% 50px 4%;color: #ffffff;}
  .letsPracticeSourceWrap .letsPracticeSourceCntR h1 {color: #ffffff;text-align: left;background: url(../images/hr_yellow.svg) no-repeat left bottom;margin-bottom: 23px;}
    .letsPracticeSourceWrap .letsPracticeSourceCntR h1 span {color: #fff533;margin-bottom: 8px;}
    .letsPracticeSourceWrap .letsPracticeSourceCntR ul {list-style: none;padding: 0;margin: 0;}
    .letsPracticeSourceWrap .letsPracticeSourceCntR ul li {margin-top: 12px;padding: 5px 0 5px 35px;}
    .letsPracticeSourceWrap .letsPracticeSourceCntR ul li.lPSourceItem1 {background: url(../images/Practice_Source_Segregation_01_24x24.svg) no-repeat left center;}
    .letsPracticeSourceWrap .letsPracticeSourceCntR ul li.lPSourceItem2 {background: url(../images/Practice_Source_Segregation_02_24x24.svg) no-repeat left center;}
    .letsPracticeSourceWrap .letsPracticeSourceCntR ul li.lPSourceItem3 {background: url(../images/Practice_Source_Segregation_03_24x24.svg) no-repeat left center;}
    .letsPracticeSourceWrap .letsPracticeSourceCntR ul li.lPSourceItem4 {background: url(../images/Practice_Source_Segregation_04_24x24.svg) no-repeat left center;}
    .letsPracticeSourceWrap .letsPracticeSourceCntR ul li.lPSourceItem5 {background: url(../images/Practice_Source_Segregation_05_24x24.svg) no-repeat left center;}

    .letsPracticeSourceWrap a.letsPracticeSourceBtn {color: #ffffff;font-size: 18px;font-weight: 700;border: 2px solid #fff533;border-radius: 10px;padding: 20px 25px;display: inline-block;margin-top: 50px;}
    .letsPracticeSourceWrap a.letsPracticeSourceBtn:hover {color: #ddd;border: 2px solid #a29b0e;}

.sourceSegregationCnt {padding: 4% 0 0;overflow: hidden;}
  .sourceSegregationCnt a {color: #69bd45;font-size: 18px;font-weight: 700;border: 2px solid #69bd45;border-radius: 10px;padding: 20px 0px;display: inline-block;margin-top: 50px;width: 170px;text-align: center;}
    .sourceSegregationCnt a:hover {color: #469e20;border: 2px solid #469e20;}

.initiatieWrap {background-image: url(../images/alag-karo-initiatie-wrap-bg.jpg);background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    margin-top: 85px;padding-bottom: 85px;text-align: center;color: #ffffff;}
  .initiatieWrap .initiatieTitle1 {font-size: 40px;font-weight: 700;margin:20px 0 30px;line-height: 30px; }
  .initiatieWrap .initiatieTitle2 {font-size: 24px;font-weight: 500;font-family: 'Quicksand', sans-serif;margin-bottom: 20px; }
  .initiatieWrap a {color: #ffffff;font-size: 18px;font-weight: 700;border: 2px solid #ffffff;border-radius: 10px;padding: 17px 25px;display: inline-block;margin-top: 50px;}
    .initiatieWrap a:hover {color: #ddd;border: 2px solid #ffffff;}

.becomeVolunteerWrap {background-image: url(../images/become-volunteer-wrap.jpg);background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    margin-top: 85px;padding-bottom: 85px;text-align: center;color: #ffffff;}
  .becomeVolunteerWrap .becomeVolunteerTitle1 {font-size: 32px;font-weight: 700;margin:20px 0 50px;line-height: 30px; }
  .becomeVolunteerWrap .becomeVolunteerTitle2 {font-size: 24px;font-weight: 500;font-family: 'Quicksand', sans-serif;margin-bottom: 20px; }
  .becomeVolunteerWrap a {color: #ffffff;font-size: 18px;font-weight: 700;border: 2px solid #ffffff;border-radius: 10px;padding: 17px 25px;display: inline-block;margin-top: 50px;}
    .becomeVolunteerWrap a:hover {color: #ddd;border: 2px solid #ffffff;}

#skltbsResponsive {}
  #skltbsResponsive ul.skltbs-tab-group {width: 885px;margin: 0 auto;}
  #skltbsResponsive .skltbs-tab-item {width: 265px;text-align: center;margin: 0;padding-bottom: 35px;}
  #skltbsResponsive .skltbs-tab-item.skltbs-tab-item2 {margin: 0 45px;}
  #skltbsResponsive .skltbs-tab-item a.skltbs-tab {padding: 18px 0;font-size: 22px;border: 2px solid #69bd45;border-radius: 10px;background: #ffffff;color: #69bd45;text-decoration: none;line-height: 20px;}
  #skltbsResponsive .skltbs-tab-item.is-active > .skltbs-tab {background-color: #69bd45;color: #ffffff;}
  #skltbsResponsive li.skltbs-tab-item.is-active {background: url(../images/change-makers-li-active.png) no-repeat center bottom;}
  .skltbs.has-animation .skltbs-panel.is-active, .skltbs-panel  {outline: 0;margin: 30px 0;}

  h4 .skltbs-tab {border: 2px solid #69bd45;border-radius: 10px;background: #ffffff;margin-bottom: 2px;color: #69bd45;}
  h4 a.skltbs-tab {text-decoration: none;}
  h4.is-active > .skltbs-tab, h4.is-active > .skltbs-tab:hover {color: #ffffff;}
  h4 a.skltbs-tab:hover {color: #69bd45;}

body.segregationBasicsPage .delveIntoWrap {background:#f5f5f5;padding-bottom: 50px; }
body.segregationBasicsPage .alagKaroAlliesWrap .carousel .carousel-inner {background:#ffffff;}
body.segregationBasicsPage .alagKaroAlliesWrap .carousel .carousel-inner .carousel-indicators { bottom: -70px;}
body.segregationBasicsPage .skltbs.has-animation .skltbs-panel {padding-bottom: 100px;}
.delveIntoWrap {color: #909090;}
  .delveIntoWrap .delveIntoCnt {font-weight: 700;margin:20px 0 30px;}
  .delveIntoWrap .delveIntoCnt.delveInto1 {color: #69bd45;}
  .delveIntoWrap .delveIntoCnt.delveInto2 {color: #2baae1;}
  .delveIntoWrap .delveIntoCnt.delveInto3 {color: #e4202d;}

.alagKaroAlliesWrap {}
body.homePage .alagKaroAlliesWrap {background: #f5f5f5;}
body.homePage .skltbs-panel {background: #f5f5f5;}
  .alagKaroAlliesWrap .skltbs-panel-group {background: #f5f5f5;}
  body.homePage.alagKaroAlliesWrap .carousel {background: #f5f5f5;}
  body.homePage.alagKaroAlliesWrap .carousel {background: #ffffff;}
  .alagKaroAlliesWrap .carousel .carousel-inner {text-align: center;font-size: 18px;font-weight: 700;overflow: visible;display:inline-block;background: #f5f5f5; }
  .alagKaroAlliesWrap .carousel .carousel-inner .carousel-indicators {bottom: -75px;}
  .alagKaroAlliesWrap .carousel .carousel-indicators li {border:none;background:#adadad;}
  .alagKaroAlliesWrap .carousel .carousel-indicators li.active {background:#69bd45;}
  .alagKaroAlliesWrap .carousel-control {opacity: 1;width: 4%;}
  .alagKaroAlliesWrap .carousel-control.left {background: url(../images/Scroller_Left_Arrow_Green_50x50.svg) no-repeat center center;}
  .alagKaroAlliesWrap .carousel-control.right {background: url(../images/Scroller_Right_Arrow_Green_50x50.svg) no-repeat center center;}
  .alagKaroAlliesWrap .skltbs-panel {margin-bottom: 40px;}

.homeUpcomingEventsWrap {background-image: url(../images/participate-with-us-wrap-bg.jpg);background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    margin-top: 85px;padding-bottom: 85px;}
    .homeUpcomingEventsWrap h1 {color: #ffffff;background: url(../images/hr_yellow.svg) no-repeat center bottom;}
    .homeUpcomingEventsWrap h1 span{color: #fff533;margin: 0 0 14px;}

    .homeUpcomingEventsCntLR {margin-top: 30px;}
      .homeUpcomingEventsCntLR .col { flex: 1;}
      .homeUpcomingEventsCntLR .homeUpcomingEventsL {float: left;width: 50%;background: #ffffff;}
      .homeUpcomingEventsCntLR .homeUpcomingEventsR {float: left;width: 50%;background: #ffffff;padding: 45px 3% 20px 4%;color: #000000;}
      .homeUpcomingEventsCntLR .homeUpcomingEventsR .homeUpcomingEventsTitle {font-size: 30px;font-weight: 700;color: #404041;}
        .homeUpcomingEventsCntLR .homeUpcomingEventsR .homeUpcomingEventsTitleSmall {font-size: 16px;font-weight: 700;color: #404041;margin: 7px 0 10px;}
          .homeUpcomingEventsCntLR .homeUpcomingEventsR .homeUpcomingEventsTitleSmall span {color: #909090;}
      .homeUpcomingEventsCntLR .homeUpcomingEventsR .homeUpcomingEventsCntP {border-bottom: 1px solid #909090;padding: 25px 0 35px;}
      .homeUpcomingEventsCntLR .homeUpcomingEventsR .eventLocationWrap {margin:25px 0 40px;overflow: hidden; }
        .homeUpcomingEventsCntLR .homeUpcomingEventsR .eventLocationWrap .eventLocation {float: left;}
        .homeUpcomingEventsCntLR .homeUpcomingEventsR .eventLocationWrap .eventLocation.eventLocationName {margin-right: 50px;}
      .homeUpcomingEventsCntLR .homeUpcomingEventsR a.homeUpcomingEventsRegisterBtn {background: #fff533;color: #404041;padding: 16px 24px;border-radius: 10px;font-weight: bold;display: inline-block;}

      .homeUpcomingEventsCntLR .carousel {background: #ffffff;}
      .homeUpcomingEventsCntLR .carousel-control {opacity: 1;width: 4%;}
      .homeUpcomingEventsCntLR .carousel-control.left {background: url(../images/Scroller_Left_Arrow_Yellow_50x50.svg) no-repeat center center;left: -60px;}
      .homeUpcomingEventsCntLR .carousel-control.right {background: url(../images/Scroller_Right_Arrow_Yellow_50x50.svg) no-repeat center center;right: -60px;}

#galpop-content img {width: 100%;}
.gallery-wrapper a.galpop-multiple img {display: inline-block;}
.gallery-wrapper a.galpop-multiple img:hover {opacity: 0.8;}
.gallery-wrapper .col-xs-6.col-sm-3.col-md-3.col-lg-3 {padding: 0;}

.mediaBoxWrap {overflow: hidden;margin-bottom: 45px;}
  .mediaBoxWrap .mediaDate {color: #69bd45;font-weight: 700;margin-top:40px; }
  .mediaBoxWrap .mediaName {color: #404041;font-weight: 700;font-size: 17px;margin:17px 0; }
  .mediaBoxWrap p {min-height: 180px;}
  .mediaBoxWrap .winBigWrap .winBigCnt .mediaBoxCnt a {color: #fff;font-weight: 700;font-size: 18px;border-radius: 10px;padding: 17px 25px;display: block;margin: 30px 0 0;background: #e4202d;    width: 140px; }
  .mediaBoxWrap .winBigWrap .winBigCnt .mediaBoxCnt a:hover {color: #ddd;}
  .mediaBoxWrap .winBigWrap .winBigCnt .mediaBoxCnt.mediaBox1 a.morelink {background: #e4202d; }
  .mediaBoxWrap .winBigWrap .winBigCnt .mediaBoxCnt.mediaBox2 a.morelink {background: #2baae1; }
  .mediaBoxWrap .winBigWrap .winBigCnt .mediaBoxCnt.mediaBox3 a.morelink {background: #fff533;color:#404041;}
  .mediaBoxWrap .winBigWrap .winBigCnt .mediaBoxCnt.mediaBox3 a:hover {color:#555556;}

  .morecontent span {display: none;}
  .winBigWrap .winBigCnt { color: #808080;overflow: hidden;margin: 3% 0 1%;}
  .winBigWrap .winBigCnt .more { margin-bottom: 40px;}
  .winBigWrap .winBigCnt h3 { margin: 20px 0 10px;  font-weight: 500;font-size: 21px;color: #221e20;text-align: center;}
  .winBigWrap .winBigCnt a.morelink {color: #fff;font-size: 12px;background: #ef5938;padding: 3px 10px;border-radius: 5px;width: 85px;margin: 10px auto 5px;display: block;}


.theTeenBinWrap .theTeenBinCnt {text-align: center;color: #909090;font-weight: 400;}
  .theTeenBinWrap .theTeenBinCnt .theTeenBinTitle {font-size: 30px;font-weight: 700;color: #404041;margin-top: 35px;}
  .theTeenBinWrap .theTeenBinCnt .theTeenBinSubTxt {font-size: 16px;font-weight: 700;color: #404041;margin-bottom: 14px;}
  .theTeenBinWrap .theTeenBinCnt .theTeenBinSubTxt span {color: #69bd45;}
  .theTeenBinWrap .theTeenBinCnt .more {font-size: 16px;color: #909090;}
  .theTeenBinWrap .theTeenBinCnt .more span.morecontent {display: block;}
  .theTeenBinWrap .theTeenBinCnt .more span.morecontent a {color: #404041;font-size: 14px;}
  .theTeenBinWrap .theTeenBinCnt .more span.morecontent a.morelink {background: url(../images/the-Teen-Bin-Wrap-read-more-ico.png) no-repeat right 3px;padding-right: 20px;}
  .theTeenBinWrap .theTeenBinCnt .more span.morecontent a.morelink.less {background: url(../images/the-Teen-Bin-Wrap-read-less-ico.png) no-repeat right 3px;}

  .theTeenBinWrap .carousel-control.left {background-position: top center;}
  .theTeenBinWrap .carousel-control.right {background-position: top center;}
  .theTeenBinWrap.alagKaroAlliesWrap .carousel .carousel-indicators li.active {background: #404041;}

body.programPartnersPage .alagKaroInitiativeWrap { }
  body.programPartnersPage .alagKaroInitiativeWrap .more {font-size: 16px;color: #909090;text-align: center;}
  body.programPartnersPage .alagKaroInitiativeWrap .more span.morecontent {display: block;}
  body.programPartnersPage .alagKaroInitiativeWrap .more span.morecontent a {color: #404041;font-size: 14px;}
  body.programPartnersPage .alagKaroInitiativeWrap .more span.morecontent a.morelink {background: url(../images/the-Teen-Bin-Wrap-read-more-ico.png) no-repeat right 3px;padding-right: 20px;}
  body.programPartnersPage .alagKaroInitiativeWrap .more span.morecontent a.morelink.less {background: url(../images/the-Teen-Bin-Wrap-read-less-ico.png) no-repeat right 3px;}
  body.programPartnersPage .alagKaroInitiativeWrap a.knowMore {background:#69bd45;margin-top: 40px;display: inline-block;font-size: 18px;font-weight: 700;color: #ffffff;padding:20px 24px;border-radius: 10px; }
  body.programPartnersPage .alagKaroInitiativeWrap a.knowMore:hover {background:#529834;}

  .owl-item.active > div:after {}
  .owl-item.center > div:after {}
  .owl-item.active.center > div:after {}
  .owl-item > div:after {}

body.programPartnersPage .harDinWrap {background: #f5f5f5;padding-bottom: 85px;}
  .harDinWrap {text-align: center;}
    .harDinWrap .more span.harDinTitle {font-weight: 700; font-size: 18px; display: inline-block;background: url(../images/harDinTitle-active.png) no-repeat top center;padding-top:65px;min-width: 175px; color: #404041;}
    .harDinWrap .more span.morecontent a {color: #404041;font-size: 14px;}
    .harDinWrap .more span.morecontent a.morelink {background: url(../images/the-Teen-Bin-Wrap-read-more-ico.png) no-repeat right 3px;padding-right: 20px;}
    .harDinWrap .more span.morecontent a.morelink.less {background: url(../images/the-Teen-Bin-Wrap-read-less-ico.png) no-repeat right 3px;}
    .harDinWrap .owl-carousel {position: relative;}
    .harDinWrap .owl-item.active .more {display: none;}
    .harDinWrap .owl-item.active.center .more {display: block;color: #404041;}
    .harDinWrap .owl-theme .owl-nav div {text-indent: -9999px;padding: 5px 10px;}
    .harDinWrap .owl-theme .owl-nav .owl-prev {left: 0;top: 22%;position: absolute;background: url(../images/Scroller_Left_Arrow_Green_50x50.svg) no-repeat center center;}
    .harDinWrap .owl-theme .owl-nav .owl-next {right: 0;top: 22%;position: absolute;background: url(../images/Scroller_Right_Arrow_Green_50x50.svg) no-repeat center center;}
    .harDinWrap .owl-theme .owl-dots {margin-top: 50px;}
}

.joinUsContent h1 {margin-top: 70px;}
  form.joinUsForm {font-family: 'Quicksand', sans-serif;}
  form.joinUsForm .form-group {margin-bottom: 20px;font-family: 'Quicksand', sans-serif;}
  form.joinUsForm .form-group input {padding: 6px 12px 6px 16px;}
  form.joinUsForm .form-group input.field, .joinUsForm .form-group select {border: 1px solid #2c9200;border-width: 0 0 1px;width: 100%;border-radius: 0;}
  form.joinUsForm .form-group option {border: 1px solid #2c9200;border-width: 0 0 1px;width: 100%;border-radius: 0;outline-color: #2c9200;}

  form.joinUsForm input.field::-webkit-input-placeholder, form.joinUsForm textarea.field::-webkit-input-placeholder { /* Chrome */
    color: #2c9200;
  }
  form.joinUsForm input.field:-ms-input-placeholder, form.joinUsForm textarea.field:-ms-input-placeholder { /* IE 10+ */
    color: #2c9200;
  }
  form.joinUsForm input.field::-moz-placeholder, form.joinUsForm textarea.field::-moz-placeholder { /* Firefox 19+ */
    color: #2c9200; opacity: 1;
  }
  form.joinUsForm input.field:-moz-placeholder, form.joinUsForm textarea.field:-moz-placeholder { /* Firefox 4 - 18 */
    color: #2c9200;  opacity: 1;
  }

  form.joinUsForm input.field:-moz-placeholder, form.joinUsForm textarea.field:-moz-placeholder { /* Firefox 4 - 18 */
    color: #2c9200;   opacity: 1;
  }

  form.joinUsForm input[type=checkbox]:checked {
    background-color: #a77e2d !important;
    color: #2c9200 !important;
  }

  form.joinUsForm .form-groupWrap.checkWrap {margin-left: 15px;margin-top: 5px;}
  form.joinUsForm .form-groupWrap.checkWrap label.btn.btn-primary{padding: 0 3px;border-radius: 0;height: 20px; background:#2c9200;border-color:#2c9200; font-weight: normal;}

  form.joinUsForm .form-control.selectpicker {color: #2c9200;font-size: 16px;background: #fff url(../images/Drop-down-button_30x10.svg) no-repeat right center; 
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';box-shadow: none;}
  form.joinUsForm .form-control.selectpicker option {color: #404041;font-size: 16px;}
  form.joinUsForm button.btn {padding: 10px 6%;background: #69bd45;color: #ffffff;font-size: 18px;font-weight: 700;margin-top: 40px;border-radius: 10px;}

.venoframe {border-radius: 25px;}

footer {font-family: 'Lato', sans-serif;overflow: hidden;}
  footer .SubscribeNewsletterBar {background: url(../images/Subscribe-Newsletter-bg.jpg) no-repeat top left; overflow: hidden;height: 278px;padding:7% 0 3%; }
    footer .SubscribeNewsletterBar .stayTouchTitle {font-family: 'Quicksand', sans-serif;font-weight: 500;font-size: 24px;color: #ffffff;}
    footer .SubscribeNewsletterBar .subNewsletterTitle {font-weight: 700;font-size: 40px;color: #ffffff;}

    footer .SubscribeNewsletterBar .SubscribeInputWrap {background: #ffffff;border-radius: 10px;padding: 8px;overflow: hidden;}
      footer .SubscribeNewsletterBar .SubscribeInputWrap input.inputTxt {border:none;line-height: 36px;padding: 3px 10px 0 5px;width: 70%;height: 42px; float: left;}
      footer .SubscribeNewsletterBar .SubscribeInputWrap input:focus {outline: 0 !important; }
      footer .SubscribeNewsletterBar .SubscribeInputWrap button.inputBtn {border:none;line-height: 30px;background:#69bd45;font-size: 16px;font-weight: 700;color: #ffffff;vertical-align: top;float: right;}

  footer .footWrap {background:#404041;overflow: hidden;color: #fff; padding: 50px 0 65px;clear: both;}
    footer .footWrap .footTitle {font-size: 18px;font-weight: bold;margin-bottom: 21px;background: url(../images/hr_green.svg) no-repeat left top;padding-top: 20px;}
    footer .footWrap ul {list-style: none;margin:0;padding: 0; }
    footer .footWrap ul li {margin-bottom: 15px;}
    footer .footWrap ul li a {font-size: 16px;color: #adadad;}
    footer .footWrap ul li a:hover {color: #ffffff;}
    footer .footWrap ul li span { padding-left: 30px;}
    footer .footWrap span.topTel {background: url(../images/Call_20x16.svg) no-repeat left center;}
    footer .footWrap span.topEmail {background: url(../images/Email_20x16.svg) no-repeat left center;}
    footer .footWrap span.topFb {background: url(../images/Facebook_20x16px.svg) no-repeat left center;}
    footer .footWrap span.topTw {background: url(../images/Twitter_20x16px.svg) no-repeat left center;}

  footer .CopyRightTxt {background:#505050;color: #fff;font-size: 18px;padding: 15px 0;clear: both;}




@media screen and (max-width: 767px){

  .col-xs-2.topHeaderR {padding-left: 0;}
  .col-xs-10.topHeaderL {padding-right: 0;}

  .hideMob {display: none !important;}
  .hideDesk {display: block;}
  video {top: 49%;}
  .cd-auto-hide-header, .topHeader {height: 44px;}
  .cd-main-content.sub-nav { padding-top: 117px;}
  .logo {margin: 5px 0;}
  nav.navMenuBar {padding:6% 0 0;float: none;}
  .topHeader ul li {padding: 10px 0;border: none;}
  .topHeader ul li.last {margin-right: 0px;}
  .topHeaderL ul li {margin-right: 5px;}
  .topHeaderL ul li a {font-weight: normal;font-size: 13px;}
  .topHeaderL ul li a:hover {color: #ffffff;}
  .topHeaderR ul li {padding: 10px 1px;}
  .topHeaderL ul li span {padding-left: 25px;}

  .navbar-collapse {border-top: none;}

  nav.navMenuBar li.getInvolvedBtn {margin-left: 0;margin-top: 15px;}
  nav.navMenuBar li.active a, nav.navMenuBar li:hover a {background-position: 19px bottom;}
.navbar-default .navbar-nav .open .dropdown-menu>li>a {color: #404041;}
  .navbar-default .navbar-nav .open .dropdown-menu>.active>a, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover
  {background: #ffffff url(../images/top-active-li.png) no-repeat center bottom;color: #404041;}
  .navbar-nav>li.dropdown:hover ul {margin-top: 0px;}

  .bannerWrap {height: auto;font-size: 28px;}
  .bannerWrap .bannerCnt1 {font-size: 24px;}

  .homeBnrEventsWrap {display: none;}

  .programObjectivesWrap center {padding-bottom:25px; }
  .programObjectivesCnt {padding-bottom: 0;}

  .homeBnrWrap .homeBnrCnt {bottom: 0;}
  .homeBnrWrap .homeBnrCnt h1 {    font-size: 20px;margin: 5px 0 0;}
  .homeBnrWrap .homeBnrCnt h2 {font-size: 16px;padding: 5px 0;}
  .homeBnrWrap .homeBnrCnt p {font-size: 16px;}

  .initiatieWrap .initiatieTitle1 {line-height: 40px;}

  .projectComponentsWrap  {display: block;}
    .projectComponentsWrap .projectComponentsCntL {float: none;width: 100%;}
    .projectComponentsWrap .projectComponentsCntR {float: none;width: 100%;padding: 6% 3%;}

  .targetedImpactWrap .targetedImpactImg span {padding: 10px 0;font-size: 22px;padding-left: 3% ;}
  .targetedImpactWrap .targetedImpactWrap2 {padding-top: 0;}

  .solidWasteCntLR {display: block;}
  .solidWasteCntLR .solidWasteCntL {float: none;width: 100%;}
  .solidWasteCntLR .solidWasteCntR {float: none;width: 100%;padding: 6% 3%;}

  .letsPracticeSourceWrap  {display: block;}
    .letsPracticeSourceWrap .letsPracticeSourceCntL {float: none;width: 100%;}
    .letsPracticeSourceWrap .letsPracticeSourceCntR {float: none;width: 100%;padding: 6% 3%;}

    .homeUpcomingEventsCntLR .homeUpcomingEventsL {float: none;width: 100%;}
    .homeUpcomingEventsCntLR .homeUpcomingEventsR {float: none;width: 100%;padding-top: 20px;}

  .sourceSegregationCnt a {margin: 0 0 30px;}

  .becomeVolunteerWrap .becomeVolunteerTitle1 {line-height: 56px;font-size: 26px;margin:15px 0; }

  .owl-carousel .owl-item  {width: 100%;}

  .homeUpcomingEventsCntLR .carousel-control {width: 10%;}
  .homeUpcomingEventsCntLR .carousel-control.right {right: 0}
  .homeUpcomingEventsCntLR .carousel-control.left {left: 0}

  footer .footWrap {padding: 20px 0;}
  footer .footWrap ul li a {font-weight: normal;}
  footer .footWrap img.img-responsive {margin-bottom: 20px;}
  footer .CopyRightTxt {font-size: 13px; padding: 10px 0;}
  footer .SubscribeNewsletterBar {height: auto;padding: 20px 0;}
  footer .SubscribeNewsletterBar .stayTouchTitle {font-size: 18px;}
  footer .SubscribeNewsletterBar .subNewsletterTitle {font-size: 23px;margin-bottom: 10px;}
  footer .SubscribeNewsletterBar .SubscribeInputWrap input.inputTxt {width: 75%;}

}