/******************************************************************
Site Name: Earth Day Canada
Author: TofferV http://tofferv.com/

Stylesheet: IE Stylesheet

So instead of using the respond.js file to add media query support
to IE, we're going to use SASS to create an easily readable css file.
Here, we import all the styles the standard stylesheet gets, only
without the media queries. No need to worry about editing anything!

******************************************************************/
/******************************************************************
IMPORTS & DEPENDENCIES
Remember, all the BASE styles are called already since IE can
read those. Below, we need to import only the stuff IE can't
understand (what's inside the media queries). We also need to
import the mixins file so SASS can understand the variables.
******************************************************************/
/******************************************************************
Site Name: Earth Day Canada
Author: TofferV http://tofferv.com/

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name: Earth Day Canada
Author: TofferV http://tofferv.com/

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/* Google Fonts */
@import url("https://fonts.googleapis.com/css?family=Sarala|Varela+Round");
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig"; }

/******************************************************************
Site Name: Earth Day Canada
Author: TofferV http://tofferv.com/

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
TRANSITION-DELAY
*********************/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
Shadow
*********************/
/*********************
Rotate
*********************/
/*********************
Transform
*********************/
/******************************************************************
Site Name: Earth Day Canada
Author: TofferV http://tofferv.com/

Stylesheet: IE Grid Styles

Since the example grid is based on media queries, so rather than
setup some js library that would make IE8 and below understand
media queries, let's just add some styles that serves a fixed grid.

Again, if you want to roll your own, just remove this junk and put
whatever you use in here.

******************************************************************/
/******************************************************************
Site Name: Earth Day Canada
Author: TofferV http://tofferv.com/

Stylesheet: 481px and Up Stylesheet

This stylesheet is loaded for larger devices. It's set to
481px because at 480px it would load on a landscaped iPhone.
This isn't ideal because then you would be loading all those
extra styles on that same mobile connection.

A word of warning. This size COULD be a larger mobile device,
so you still want to keep it pretty light and simply expand
upon your base.scss styles.

******************************************************************/
/*
IMPORTANT NOTE ABOUT SASS 3.3 & UP
You can't use @extend within media queries
anymore, so just be aware that if you drop
them in here, they won't work.
*/
/*********************
NAVIGATION STYLES
*********************/
/* .menu is clearfixed inside mixins.scss */
.menu {
  /* end .menu ul */ }
  .menu ul {
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */ }
    .menu ul li {
      /*
				plan your menus and drop-downs wisely.
				*/ }
      .menu ul li a {
        /*
					you can use hover styles here even though this size
					has the possibility of being a mobile device.
					*/ }

/* end .menu */
/*********************
POSTS & CONTENT STYLES
*********************/
/* entry content */
.entry-content {
  /* at this larger size, we can start to align images */
  /****************
	Staples Superpower your School Contest Page
	****************/
  /* end of staples superpower page */ }
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left; }
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right; }
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both; }
  .entry-content .staples-superpower .staples-superpower-content {
    padding-right: 160px;
    padding-bottom: 40px; }
  .entry-content .staples-superpower .staples-superpower-hero {
    right: 0;
    bottom: 0;
    position: absolute; }
    .entry-content .staples-superpower .staples-superpower-hero figure {
      right: -310px; }

/* end .entry-content */
/*********************
FOOTER STYLES
*********************/
/*
check your menus here. do they look good?
do they need tweaking?
*/
/* end .footer-links */
/******************************************************************
Site Name: Earth Day Canada
Author: TofferV http://tofferv.com/

Stylesheet: Tablet & Small Desktop Stylesheet

Here's where you can start getting into the good stuff.
This size will work on iPads, other tablets, and desktops.
So you can start working with more styles, background images,
and other resources. You'll also notice the grid starts to
come into play. Have fun!

******************************************************************/
/*********************
VISUAL COMPOSER & PLUG-IN OVERWRITE
*********************/
.cd-single-point .cd-more-info {
  width: 290px;
  height: 360px;
  padding: 40px 10px 20px; }
  .cd-single-point .cd-more-info .cd-more-content-info {
    margin-top: 0;
    max-height: 300px; }
    .cd-single-point .cd-more-info .cd-more-content-info h2 {
      font-size: 22px; }
    .cd-single-point .cd-more-info .cd-more-content-info p {
      font-size: 15px; }

/*********************
CUSTOM CLASSES
*********************/
.margin-bottom-80-d {
  margin-bottom: 80px; }

.padding-side-15 {
  padding-left: 15px;
  padding-right: 15px; }

.padding-left-10 {
  padding-left: 10px; }

.padding-left-20 {
  padding-left: 20px; }

.padding-left-30 {
  padding-left: 30px; }

.padding-left-40 {
  padding-left: 40px; }

.padding-right-20 {
  padding-right: 20px; }

.padding-right-30 {
  padding-right: 30px; }

.padding-right-40 {
  padding-right: 40px; }

.padding-top-40m-80td {
  padding-top: 80px !important; }

.padding-top-80m-120td {
  padding-top: 120px !important; }

.p-17-d p {
  font-size: 17px; }

.p-18-d p {
  font-size: 18px; }

.p-19-d p {
  font-size: 19px; }

.p-20-d p {
  font-size: 20px; }

.p-21-d p {
  font-size: 21px; }

.p-22-d p, .p-22-d a {
  font-size: 22px !important; }

.text-align-left-m-center-td {
  text-align: center; }

.text-align-center-m-left-td {
  text-align: left; }

.list-19-d {
  font-size: 19px; }

.h1-30-d h1 {
  font-size: 30px; }

.h1-35-d h1 {
  font-size: 35px; }

.h1-45-d h1 {
  font-size: 45px; }

.h2-19-d h2 {
  font-size: 19px; }

.h2-20-d h2 {
  font-size: 20px; }

.h2-22-d h2 {
  font-size: 22px; }

.h2-24-d h2 {
  font-size: 24px; }

.h2-26-d h2 {
  font-size: 26px; }

.h2-28-d h2 {
  font-size: 28px; }

.h2-35-d h2 {
  font-size: 35px; }

.non-m-white-container h1, .non-m-white-container h2, .non-m-white-container h3, .non-m-white-container p, .non-m-white-container ul, .non-m-white-container li:before, .non-m-white-container li, .non-m-white-container .ult_countdown-div {
  color: #ffffff !important; }

.non-m-white-container a {
  color: #ffffff;
  padding-bottom: 2px;
  border-bottom: 2px solid #ffffff; }

.non-m-white-container a:hover {
  color: #00A060;
  padding-bottom: 2px;
  border-bottom: 2px solid #00A060; }

.non-m-white-container > .vc_column_container > .vc_column-inner > .wpb_wrapper {
  position: relative; }

.vc_row.wpb_row.vc_row-fluid.en-fr-link {
  padding-top: 120px !important; }

.vimeo-video-bg {
  height: 600px; }
  .vimeo-video-bg > div {
    display: block; }

.video-popup-modal .ult_modal.ult-container {
  padding: 0 86px; }

.top-translate {
  margin-top: -80px;
  margin-bottom: 80px; }

/*********************
GENERAL STYLES
*********************/
body {
  font-size: 100%; }

/*********************
LAYOUT & GRID STYLES
*********************/
/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1 {
  font-size: 2.5em; }

h2, .h2 {
  font-size: 1.75em; }

h3, .h3 {
  font-size: 1.125em; }

h4, .h4 {
  font-size: 1.1em; }

/*********************
HEADER STYLES
*********************/
.header #inner-header nav > ul > li a {
  font-size: 110%;
  padding: 32px 20px; }

.header.large .top-header-background {
  opacity: 0.8;
  height: 120px; }
  .header.large .top-header-background.open {
    opacity: 1; }

.header.large #inner-header #logo a {
  width: 300px;
  height: 100px; }

.header.large #inner-header nav .btn {
  padding: 40px; }

.header.large #inner-header nav > ul {
  top: 106px; }

/*********************
PAGES & CONTENT STYLES
*********************/
/* entry content */
.entry-content {
  /****************
	Earth Day 2018 Page 
	****************/
  /* end of earth day 2018 page */
  /****************
	Pledge4PLAY
	****************/
  /* end of pledge4play page */
  /****************
	Home Page 
	****************/
  /* end of home page */
  /****************
	EarthPLAY Page
	****************/
  /* end of earthplay page */
  /****************
	SchoolPLAY Page
	****************/
  /* end of schoolplay page */
  /****************
	StreetPLAY Page
	****************/
  /* end of streetplay page */
  /****************
	OPAL Symposium Page
	****************/
  /* end of opal symposium page */
  /****************
	EcoKids Page
	****************/
  /* end of our ecokids page */
  /****************
	Take Action Pages
	****************/
  /* end of take action pages */
  /****************
	Classroom Resources Page
	****************/
  /* end of classroom resources page */
  /****************
	Our Supporters 
	****************/
  /* end of our supporters page */
  /****************
	Our Initiatives Page
	****************/
  /* end of our initiatives page */
  /****************
	Our Board of Directors Page
	****************/
  /* end of our board of directors page */
  /****************
	Contact Us Page
	****************/
  /* end of contact us page */
  /****************
	Donate Page
	****************/
  /* end of donate page */
  /****************
	Staples Superpower your School Contest Page
	****************/
  /* end of staples superpower page */ }
  .entry-content > div:first-child {
    padding-top: 200px; }
  .entry-content .border-box-ed2018 {
    margin-bottom: 1.5em; }
  .entry-content .campaign-imagery .grid-single .border-box-button {
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2); }
  .entry-content .ed-tour .vc_tta-tabs-container {
    margin: 0 !important;
    border-top-right-radius: 5px;
    background: -webkit-gradient(linear, left bottom, right top, color-stop(50%, #fff), to(#eeeeee));
    background: -webkit-linear-gradient(bottom left, #fff 50%, #eeeeee);
    background: -o-linear-gradient(bottom left, #fff 50%, #eeeeee);
    background: linear-gradient(to top right, #fff 50%, #eeeeee); }
    .entry-content .ed-tour .vc_tta-tabs-container .vc_tta-tabs-list {
      padding-left: 10px !important;
      padding-right: 15px !important; }
      .entry-content .ed-tour .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab {
        margin: 20px 0;
        border: 1px solid transparent; }
        .entry-content .ed-tour .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a {
          font-size: 19px;
          color: #323944 !important;
          border-color: transparent !important;
          background-color: transparent !important; }
          .entry-content .ed-tour .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a:hover {
            color: #00A060 !important; }
        .entry-content .ed-tour .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active {
          border-radius: 5px;
          border: 1px solid #dddddd !important;
          background-color: #fff !important;
          -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
          -moz-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2); }
          .entry-content .ed-tour .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a:hover {
            color: #323944 !important; }
  .entry-content .ed-tour .vc_tta-panels-container .vc_tta-panels {
    border-color: transparent !important;
    background-color: transparent !important; }
    .entry-content .ed-tour .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
      padding: 20px 10px 20px 50px;
      overflow: unset; }
    .entry-content .ed-tour .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.grid.campaign-imagery > div {
      padding: 20px 10px 20px 50px; }
      .entry-content .ed-tour .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.grid.campaign-imagery > div .vc_tta-panel-body {
        padding: 0; }
  .entry-content .playpal-container {
    width: 20%; }
  .entry-content .playpal-corp-container {
    width: 33.333%; }
  .entry-content .pledge-tta-tabs .vc_tta-tabs-container {
    border-radius: 5px;
    margin: 0 !important;
    border: solid 1px green; }
    .entry-content .pledge-tta-tabs .vc_tta-tabs-container .vc_tta-tabs-list > li {
      margin: 0;
      width: 50%;
      font-size: 19px;
      text-align: center;
      border-right: solid 1px #00A060; }
      .entry-content .pledge-tta-tabs .vc_tta-tabs-container .vc_tta-tabs-list > li a {
        background-color: #fff; }
        .entry-content .pledge-tta-tabs .vc_tta-tabs-container .vc_tta-tabs-list > li a:hover {
          color: #00A060; }
      .entry-content .pledge-tta-tabs .vc_tta-tabs-container .vc_tta-tabs-list > li:last-child {
        border-right: none; }
      .entry-content .pledge-tta-tabs .vc_tta-tabs-container .vc_tta-tabs-list > li.vc_active a {
        color: #fff;
        background-color: #00A060; }
  .entry-content .pledge-tta-tabs .vc_tta-panels-container .vc_tta-panels {
    background-color: #fff !important; }
  .entry-content .staples-superpower-hero-home {
    right: 0;
    bottom: 0;
    position: absolute; }
    .entry-content .staples-superpower-hero-home figure {
      width: 380px; }
  .entry-content .home-banner {
    min-height: 800px; }
    .entry-content .home-banner .bg-blur.whiter-7 {
      display: none; }
    .entry-content .home-banner .home-banner-copy {
      text-align: left; }
      .entry-content .home-banner .home-banner-copy .home-banner-h {
        margin-bottom: 24px; }
        .entry-content .home-banner .home-banner-copy .home-banner-h h1 {
          margin-top: 0;
          font-size: 48px;
          letter-spacing: 3px; }
        .entry-content .home-banner .home-banner-copy .home-banner-h h2 {
          font-size: 26.6px;
          font-weight: 100; }
      .entry-content .home-banner .home-banner-copy .home-banner-p {
        margin-left: initial;
        margin-right: initial; }
        .entry-content .home-banner .home-banner-copy .home-banner-p p {
          font-size: 20px;
          font-weight: 100;
          line-height: 26px; }
      .entry-content .home-banner .home-banner-copy .home-banner-img figure {
        margin: 0;
        display: table; }
  .entry-content .home-outdoor-play {
    min-height: 630px; }
  .entry-content .home-boxes.parkplay-hb {
    padding-top: 120px; }
  .entry-content .home-boxes .parkplay-box-title.pp-box-1:before {
    width: calc(100% - 10px); }
  .entry-content .home-boxes .parkplay-box-title.pp-box-2:before {
    width: calc(100% - 20px); }
  .entry-content .home-boxes .parkplay-box-title.pp-box-3:before {
    width: calc(100% - 10px); }
  .entry-content .home-boxes .parkplay-box-title:before {
    font-size: 24px; }
  .entry-content .home-boxes .edc-box-emerg {
    float: left;
    padding: 10px;
    width: 33.333%;
    margin-bottom: initial; }
    .entry-content .home-boxes .edc-box-emerg:first-child {
      padding-left: 0; }
    .entry-content .home-boxes .edc-box-emerg:last-child {
      padding-right: 0; }
    .entry-content .home-boxes .edc-box-emerg > div .home-box-copy p.p {
      opacity: 0;
      max-height: 0px; }
  .entry-content .home-boxes .edc-box {
    float: left;
    padding: 10px;
    margin-bottom: initial; }
    .entry-content .home-boxes .edc-box:first-child {
      width: 33.333%;
      padding-left: 0; }
    .entry-content .home-boxes .edc-box:nth-child(2) {
      width: 33.333%; }
    .entry-content .home-boxes .edc-box:nth-child(3) {
      width: 33.333%;
      padding-right: 0; }
    .entry-content .home-boxes .edc-box:nth-child(4) {
      width: 50%;
      padding-left: 0; }
    .entry-content .home-boxes .edc-box:last-child {
      width: 50%;
      padding-right: 0; }
    .entry-content .home-boxes .edc-box > div .home-box-copy p.p {
      opacity: 0;
      max-height: 0px; }
  .entry-content .earthplay-1st-sec {
    padding-top: 120px !important; }
    .entry-content .earthplay-1st-sec .earthplay-1st-sec-img {
      padding: 10px; }
      .entry-content .earthplay-1st-sec .earthplay-1st-sec-img .earthplay-1st-sec-img-streetplay figure {
        overflow: hidden;
        border-radius: 5px;
        border: solid 1px #dddddd;
        -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2); }
        .entry-content .earthplay-1st-sec .earthplay-1st-sec-img .earthplay-1st-sec-img-streetplay figure img {
          width: auto;
          height: 550px;
          max-width: unset; }
    .entry-content .earthplay-1st-sec .earthplay-1st-sec-logo {
      width: 50%; }
      .entry-content .earthplay-1st-sec .earthplay-1st-sec-logo > div {
        top: 20px; }
      .entry-content .earthplay-1st-sec .earthplay-1st-sec-logo > div > div {
        width: 180px; }
    .entry-content .earthplay-1st-sec .earthplay-1st-sec-copy {
      font-size: 17px;
      padding: 200px 10px 0; }
  .entry-content .earthplay-1st-sec-other-logo a {
    width: 140px;
    padding: 20px; }
  .entry-content .vimeo-video-bg {
    height: 620px; }
  .entry-content .ept-logo-container.earth {
    top: -140px; }
  .entry-content .ept-logo-container.no-vid {
    top: 156px; }
  .entry-content .ept-logo-container .ept-logo > div {
    width: 100%; }
    .entry-content .ept-logo-container .ept-logo > div figure {
      padding: 50px; }
  .entry-content .ept-second-sec {
    padding-top: 180px; }
  .entry-content .why-outdoor-content > div > .vc_column-inner {
    max-width: 738px; }
  .entry-content .border-box.ep-pos-state {
    padding-right: 50px; }
    .entry-content .border-box.ep-pos-state > div > div .border-box-button {
      text-align: left;
      padding: 40px 40px 90px; }
      .entry-content .border-box.ep-pos-state > div > div .border-box-button h4 {
        font-size: 16px; }
      .entry-content .border-box.ep-pos-state > div > div .border-box-button h1 {
        font-size: 60px; }
      .entry-content .border-box.ep-pos-state > div > div .border-box-button h3 {
        font-size: 20px; }
  .entry-content .border-box.ep-unicef-rtr > div > div .border-box-button h1 {
    font-size: 60px; }
  .entry-content .bbb-logo {
    left: 40px;
    bottom: 13px;
    position: absolute; }
    .entry-content .bbb-logo img {
      margin: 0 !important; }
  .entry-content .ep-why-outdoor {
    width: 50%;
    float: left;
    margin-bottom: 0; }
    .entry-content .ep-why-outdoor .ep-el-img {
      opacity: 0;
      -moz-transform: translateY(10%);
      -o-transform: translateY(10%);
      -ms-transform: translateY(10%);
      -webkit-transform: translateY(10%);
      transform: translateY(10%);
      -webkit-transition: all 0.6s ease-in-out;
      -o-transition: all 0.6s ease-in-out;
      transition: all 0.6s ease-in-out; }
    .entry-content .ep-why-outdoor.ep-el-left {
      padding-right: 150px; }
      .entry-content .ep-why-outdoor.ep-el-left .ep-el-left-copy {
        top: 20px;
        left: 104%;
        width: 400px;
        position: absolute;
        opacity: 0;
        -moz-transform: translateX(-10%);
        -o-transform: translateX(-10%);
        -ms-transform: translateX(-10%);
        -webkit-transform: translateX(-10%);
        transform: translateX(-10%);
        -webkit-transition: all 0.6s 0.6s ease-in-out;
        -o-transition: all 0.6s 0.6s ease-in-out;
        transition: all 0.6s 0.6s ease-in-out; }
        .entry-content .ep-why-outdoor.ep-el-left .ep-el-left-copy:before {
          width: 30px;
          content: "";
          float: left;
          display: block;
          margin-top: 15px;
          border-top: 2px solid #323944; }
        .entry-content .ep-why-outdoor.ep-el-left .ep-el-left-copy > div {
          width: 370px;
          float: left;
          padding-left: 10px; }
        .entry-content .ep-why-outdoor.ep-el-left .ep-el-left-copy p {
          margin: 0;
          text-align: left;
          font-size: 20px; }
      .entry-content .ep-why-outdoor.ep-el-left.yes-in-view .ep-el-left-copy {
        opacity: 1;
        -moz-transform: translateX(0%);
        -o-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -webkit-transform: translateX(0%);
        transform: translateX(0%); }
      .entry-content .ep-why-outdoor.ep-el-left.yes-in-view .ep-el-img {
        opacity: 1;
        -moz-transform: translateY(0%);
        -o-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -webkit-transform: translateY(0%);
        transform: translateY(0%); }
    .entry-content .ep-why-outdoor.ep-el-right {
      padding-left: 150px; }
      .entry-content .ep-why-outdoor.ep-el-right .ep-el-right-copy {
        bottom: 20px;
        right: 104%;
        width: 430px;
        position: absolute;
        opacity: 0;
        -moz-transform: translateX(10%);
        -o-transform: translateX(10%);
        -ms-transform: translateX(10%);
        -webkit-transform: translateX(10%);
        transform: translateX(10%);
        -webkit-transition: all 0.6s 0.6s ease-in-out;
        -o-transition: all 0.6s 0.6s ease-in-out;
        transition: all 0.6s 0.6s ease-in-out; }
        .entry-content .ep-why-outdoor.ep-el-right .ep-el-right-copy:before {
          content: none; }
        .entry-content .ep-why-outdoor.ep-el-right .ep-el-right-copy:after {
          width: 30px;
          content: "";
          float: left;
          clear: none;
          display: block;
          margin-top: 15px;
          border-top: 2px solid #323944; }
        .entry-content .ep-why-outdoor.ep-el-right .ep-el-right-copy > div {
          width: 400px;
          float: left;
          padding-right: 10px; }
        .entry-content .ep-why-outdoor.ep-el-right .ep-el-right-copy p {
          margin: 0;
          text-align: right;
          font-size: 20px; }
      .entry-content .ep-why-outdoor.ep-el-right.yes-in-view .ep-el-right-copy {
        opacity: 1;
        -moz-transform: translateX(0%);
        -o-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -webkit-transform: translateX(0%);
        transform: translateX(0%); }
      .entry-content .ep-why-outdoor.ep-el-right.yes-in-view .ep-el-img {
        opacity: 1;
        -moz-transform: translateY(0%);
        -o-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -webkit-transform: translateY(0%);
        transform: translateY(0%); }
    .entry-content .ep-why-outdoor.ep-el-2 {
      margin-top: 200px; }
    .entry-content .ep-why-outdoor.ep-el-3 {
      margin-top: 80px; }
    .entry-content .ep-why-outdoor.ep-el-4 {
      margin-top: 240px;
      margin-bottom: 40px; }
  .entry-content .earthplay-top {
    min-height: 500px; }
  .entry-content .streetplay-tspp {
    padding-top: 60px;
    padding-bottom: 60px; }
    .entry-content .streetplay-tspp .streetplay-tspp-left {
      margin-bottom: 0; }
      .entry-content .streetplay-tspp .streetplay-tspp-left > div > div {
        position: absolute; }
    .entry-content .streetplay-tspp .streetplay-tspp-right {
      text-align: left;
      padding-left: 40px; }
  .entry-content .streetplay-why-slider {
    padding-top: 100px;
    /*
		.slick-dots {
			top: -120px;
			bottom: unset;
			@include transform (translateY(-30px));
			li {
				height: unset;
				width: unset;
				margin: 0 26px;
				h2 { font-size: 24px; line-height: 30px; }
				.slick-slide00 { width: 160px; }
				.slick-slide01 { width: 170px; }
				&:after {
					color: #fff;
					font-size: 80px;
					content: "\f0d7";
					margin-top: 20px;
					line-height: 30px;
					position: absolute;
					font-family: FontAwesome;
					@include transform (translateX(-50%));
					@include transition (margin-top 0.4s ease-in-out);
				}
				&.slick-active:after { margin-top: 42px; }
			}
			.ultsl-record { display: none; }
		}
		.slick-slide {
			outline: none;
			.vc_toggle {
				border-radius: 5px;
				margin-bottom: 15px !important;
				background-color: $light-gray;
				.vc_toggle_title {
					padding: 18px 25px;
					h4 { font-size: 18px; }
					.vc_toggle_icon { left: unset; right: 25px; }
					.vc_toggle_icon, .vc_toggle_icon:before, .vc_toggle_icon:after { border: unset; background: $light-blue; }
				}
				.vc_toggle_content {
					margin: 0;
					padding: 0px 25px 18px;
					p { margin: 0; }
				}
			}
		}
		*/ }
    .entry-content .streetplay-why-slider .slick-dots {
      top: -120px; }
      .entry-content .streetplay-why-slider .slick-dots li {
        margin: 0 80px; }
        .entry-content .streetplay-why-slider .slick-dots li h2 {
          font-size: 24px;
          line-height: 30px; }
        .entry-content .streetplay-why-slider .slick-dots li .slick-slide00 {
          width: 160px; }
        .entry-content .streetplay-why-slider .slick-dots li .slick-slide01 {
          width: 170px; }
    .entry-content .streetplay-why-slider .slick-slide .vc_toggle .vc_toggle_title {
      padding: 18px 25px; }
      .entry-content .streetplay-why-slider .slick-slide .vc_toggle .vc_toggle_title h4 {
        font-size: 18px;
        line-height: 18px; }
    .entry-content .streetplay-why-slider .slick-slide .vc_toggle .vc_toggle_content {
      padding: 0px 25px 25px; }
  .entry-content .symposium-top-h1 h1 {
    font-size: 80px; }
  .entry-content .symposium-schedule-row {
    font-size: 19px;
    border-top: solid 1px #fff; }
    .entry-content .symposium-schedule-row p {
      margin: unset; }
    .entry-content .symposium-schedule-row .symposium-schedule-time {
      padding: 20px;
      border-top: none !important;
      border: solid 1px #fff; }
    .entry-content .symposium-schedule-row .symposium-schedule-details {
      padding: 20px 0 20px 20px; }
  .entry-content > div.ecokids-topslider {
    padding: 0 !important; }
    .entry-content > div.ecokids-topslider > div > div .ecokids-page-logo {
      padding-top: 160px; }
      .entry-content > div.ecokids-topslider > div > div .ecokids-page-logo > div > div > div {
        margin: unset;
        padding-left: 20px; }
      .entry-content > div.ecokids-topslider > div > div .ecokids-page-logo.en > div > div > div {
        width: 290px; }
      .entry-content > div.ecokids-topslider > div > div .ecokids-page-logo.fr > div > div > div {
        width: 324px; }
    .entry-content > div.ecokids-topslider > div > div .slick-slide .ecokids-slide {
      height: 820px;
      margin-bottom: 0 !important; }
      .entry-content > div.ecokids-topslider > div > div .slick-slide .ecokids-slide > div > div {
        top: 50%;
        max-width: 750px;
        /*margin-top: 50px;*/ }
      .entry-content > div.ecokids-topslider > div > div .slick-slide .ecokids-slide h1, .entry-content > div.ecokids-topslider > div > div .slick-slide .ecokids-slide p {
        z-index: 1;
        position: relative;
        text-align: left; }
      .entry-content > div.ecokids-topslider > div > div .slick-slide .ecokids-slide h1, .entry-content > div.ecokids-topslider > div > div .slick-slide .ecokids-slide p, .entry-content > div.ecokids-topslider > div > div .slick-slide .ecokids-slide .vc_btn3-container.vc_btn3-inline {
        opacity: 0;
        left: -20px; }
      .entry-content > div.ecokids-topslider > div > div .slick-slide .ecokids-slide h1 {
        font-size: 2.5em;
        -webkit-transition: all 0.7s 0.4s ease-in-out;
        -o-transition: all 0.7s 0.4s ease-in-out;
        transition: all 0.7s 0.4s ease-in-out; }
      .entry-content > div.ecokids-topslider > div > div .slick-slide .ecokids-slide p {
        -webkit-transition: all 0.7s 1s ease-in-out;
        -o-transition: all 0.7s 1s ease-in-out;
        transition: all 0.7s 1s ease-in-out; }
      .entry-content > div.ecokids-topslider > div > div .slick-slide .ecokids-slide .bg-blur {
        visibility: visible; }
      .entry-content > div.ecokids-topslider > div > div .slick-slide .ecokids-slide .vc_btn3-container.vc_btn3-inline {
        margin: unset;
        -webkit-transition: all 0.7s 1.1s ease-in-out;
        -o-transition: all 0.7s 1.1s ease-in-out;
        transition: all 0.7s 1.1s ease-in-out; }
    .entry-content > div.ecokids-topslider > div > div .slick-slide.slick-current.slick-active .ecokids-slide h1, .entry-content > div.ecokids-topslider > div > div .slick-slide.slick-current.slick-active .ecokids-slide p, .entry-content > div.ecokids-topslider > div > div .slick-slide.slick-current.slick-active .ecokids-slide .vc_btn3-container.vc_btn3-inline {
      opacity: 1;
      left: 0px; }
    .entry-content > div.ecokids-topslider .slick-arrow {
      visibility: visible;
      -webkit-transition: color 0.2s ease-in-out;
      -o-transition: color 0.2s ease-in-out;
      transition: color 0.2s ease-in-out; }
    .entry-content > div.ecokids-topslider .slick-arrow:hover {
      color: #00A060 !important; }
    .entry-content > div.ecokids-topslider .slick-prev {
      left: 0; }
    .entry-content > div.ecokids-topslider .slick-next {
      right: 0; }
    .entry-content > div.ecokids-topslider .slick-dots {
      display: none !important; }
  .entry-content .ecokids-anchor {
    height: 100px;
    margin-top: -100px; }
  .entry-content .ecokids-categories h2 {
    font-size: 27px; }
  .entry-content .ecokids-categories .ecokids-categories-img {
    margin-bottom: 0; }
  .entry-content .ecokids-categories .ecokids-categories-copy {
    text-align: left;
    padding: 25px 0 25px 25px; }
    .entry-content .ecokids-categories .ecokids-categories-copy h3 {
      font-size: 23px; }
    .entry-content .ecokids-categories .ecokids-categories-copy li {
      float: left;
      margin-right: 40px;
      margin-bottom: 0; }
      .entry-content .ecokids-categories .ecokids-categories-copy li:before {
        top: 4px;
        left: 0px;
        color: #0078c1;
        content: "\f105";
        margin-right: 6px;
        font-family: FontAwesome;
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out; }
      .entry-content .ecokids-categories .ecokids-categories-copy li:hover:before {
        color: #00A060;
        left: 4px; }
  .entry-content > div.take-action-top {
    padding-top: 160px !important; }
  .entry-content .take-action-top {
    min-height: 730px; }
    .entry-content .take-action-top.fr {
      min-height: 770px; }
    .entry-content .take-action-top .bottom-stretch-bg {
      bottom: 200px; }
  .entry-content .take-action-list-m {
    display: none; }
  .entry-content .take-action-list-d {
    display: block; }
    .entry-content .take-action-list-d .take-action-item .take-action-item-img {
      padding: 15px 15px 15px 0; }
    .entry-content .take-action-list-d .take-action-item .take-action-item-copy {
      padding: 25px 0 25px 25px; }
      .entry-content .take-action-list-d .take-action-item .take-action-item-copy h2 {
        font-size: 25px;
        margin-bottom: 20px; }
      .entry-content .take-action-list-d .take-action-item .take-action-item-copy .ta-date {
        margin: 0; }
      .entry-content .take-action-list-d .take-action-item .take-action-item-copy .ta-date-span {
        font-weight: 600;
        text-rendering: optimizelegibility;
        font-family: "Sarala",Arial,sans-serif; }
      .entry-content .take-action-list-d .take-action-item .take-action-item-copy .ta-desc {
        margin-bottom: 25px !important; }
      .entry-content .take-action-list-d .take-action-item .take-action-item-copy .vc_btn3-container {
        margin-bottom: 0; }
      .entry-content .take-action-list-d .take-action-item .take-action-item-copy .vc_btn3 {
        width: 180px;
        text-transform: uppercase; }
  .entry-content .take-action-list-d.ta-border-bottom {
    border-bottom: solid 1px #dddddd; }
  .entry-content .take-action-pgs-side .take-action-pgs-resources-m, .entry-content .take-action-pgs-side .take-action-pgs-resources-s-m {
    display: block; }
  .entry-content .take-action-pgs-body {
    padding-left: 70px; }
    .entry-content .take-action-pgs-body .take-action-pgs-resources-d {
      display: none; }
  .entry-content .cr-header h1 {
    font-size: 60px; }
  .entry-content .classroom-resources-sec .cr-item {
    margin-bottom: 20px; }
    .entry-content .classroom-resources-sec .cr-item .vc_toggle_title h4 {
      font-size: 20px; }
  .entry-content .supporters-box-size {
    float: left; }
    .entry-content .supporters-box-size.s100ek {
      width: 100%; }
    .entry-content .supporters-box-size.s50, .entry-content .supporters-box-size.s50ek {
      width: 50%; }
    .entry-content .supporters-box-size.s33 {
      width: 33.333%; }
    .entry-content .supporters-box-size.s25 {
      width: 25%; }
  .entry-content .supporters-box > div > figure {
    padding: 10px;
    margin-bottom: initial; }
  .entry-content .programs-sec {
    padding-bottom: 230px; }
  .entry-content .programs-next-sec {
    padding-top: 180px; }
  .entry-content .grid-board:after {
    content: '';
    display: block;
    clear: both; }
  .entry-content .grid-board .grid-item-board > div {
    float: none;
    height: 320px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto; }
  .entry-content .grid-board .grid-item-board .board-info > div {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out 0.4s;
    -o-transition: opacity 0.3s ease-in-out 0.4s;
    transition: opacity 0.3s ease-in-out 0.4s; }
  .entry-content .grid-board .grid-item-board:hover {
    cursor: pointer; }
  .entry-content .grid-board .grid-item-board.gigante > div {
    height: auto; }
  .entry-content .grid-board .grid-item-board.gigante .board-img {
    -webkit-filter: none;
    filter: none; }
  .entry-content .grid-board .grid-item-board.gigante .board-info > div {
    opacity: 1; }
  .entry-content .grid-board .grid-item-board .board-img {
    -webkit-filter: sepia(100%);
    filter: sepia(100%);
    -webkit-transition: filter 0.3s ease-in-out;
    -webkit-transition: -webkit-filter 0.3s ease-in-out;
    transition: -webkit-filter 0.3s ease-in-out;
    -o-transition: filter 0.3s ease-in-out;
    transition: filter 0.3s ease-in-out;
    transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out; }
  .entry-content .grid-board .grid-item-board.zoom-sec-img:hover .board-img {
    -webkit-filter: none;
    filter: none; }
  .entry-content .contact-us-form .contact-2nd-p {
    margin-bottom: 0; }
  .entry-content .contact-us-form .ajax-loader {
    bottom: -22px; }
  .entry-content .contact-map {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .entry-content .donate-top-h1 h1 {
    font-size: 48px; }
  .entry-content .giving-tues-logo {
    height: auto;
    text-align: right; }
    .entry-content .giving-tues-logo img {
      width: 250px; }
  .entry-content .donate-box {
    padding: 25px; }
  .entry-content .donate-tabs ul.ult_tabmenu li.ult_tab_li {
    width: 50%; }
    .entry-content .donate-tabs ul.ult_tabmenu li.ult_tab_li.give-tab-left a {
      border-radius: 5px 0 0 5px !important;
      border-top: solid 1px #cccccc !important;
      border-right: solid 1px #00A060 !important;
      border-bottom: solid 1px #cccccc !important;
      border-left: solid 1px #cccccc !important; }
      .entry-content .donate-tabs ul.ult_tabmenu li.ult_tab_li.give-tab-left a:hover {
        border-top: solid 1px #00A060 !important;
        border-right: solid 1px #00A060 !important;
        border-bottom: solid 1px #00A060 !important;
        border-left: solid 1px #00A060 !important; }
    .entry-content .donate-tabs ul.ult_tabmenu li.ult_tab_li.give-tab-right a {
      border-radius: 0 5px 5px 0 !important;
      border-top: solid 1px #cccccc !important;
      border-right: solid 1px #cccccc !important;
      border-bottom: solid 1px #cccccc !important;
      border-left: solid 1px #00A060 !important; }
      .entry-content .donate-tabs ul.ult_tabmenu li.ult_tab_li.give-tab-right a:hover {
        border-top: solid 1px #00A060 !important;
        border-right: solid 1px #00A060 !important;
        border-bottom: solid 1px #00A060 !important;
        border-left: solid 1px #00A060 !important; }
    .entry-content .donate-tabs ul.ult_tabmenu li.ult_tab_li.current a {
      color: #fff !important;
      border: solid 1px #00A060 !important;
      background-color: #00A060 !important; }
  .entry-content .donate-tabs .ult_tabcontent .ult_tabitemname .donate-form-btns {
    width: 33.333%; }
  .entry-content .donate-tabs .ult_tabcontent .ult_tabitemname label[for=donate-25], .entry-content .donate-tabs .ult_tabcontent .ult_tabitemname label[for=donate-100] {
    padding-right: 10px; }
  .entry-content .donate-tabs .ult_tabcontent .ult_tabitemname label[for=donate-50] {
    padding-right: 0px; }
  .entry-content .donate-tabs .ult_tabcontent .ult_tabitemname .donate-textbox .donate-monthly-text-dollar, .entry-content .donate-tabs .ult_tabcontent .ult_tabitemname .donate-textbox .donate-monthly-text-cad {
    top: 23px;
    font-size: 17px; }
  .entry-content .giving-tuesday-timer .ult_countdown-section {
    padding: 0 25px; }
  .entry-content .giving-tuesday-timer .ult_countdown-amount {
    font-size: 50px !important; }
  .entry-content .donate-goal-title h1 {
    font-size: 32px; }
  .entry-content .staples-superpower .staples-superpower-translate {
    margin-top: -80px; }
  .entry-content .staples-superpower .staples-superpower-content {
    padding-right: 230px; }
  .entry-content .staples-superpower .staples-superpower-hero figure {
    right: -254px; }

/* end .entry-content */
/*********************
POST TYPE STYLES
*********************/
.custom-post-type-archive .taxonomy-header {
  padding-top: 340px; }

.custom-post-type-archive .taxonomy-header h1 {
  font-size: 60px; }

.custom-post-type-archive .taxonomy-header h1, .custom-post-type-archive .custom-post-type-filters {
  padding-left: 25px; }

.custom-post-type-archive .taxonomy-header h1, .custom-post-type-archive .custom-post-type-filters div {
  padding-right: 25px; }

.custom-post-type-archive .taxonomy-header-news {
  padding-top: 200px;
  text-align: right; }

.custom-post-type-archive main {
  padding: 0 12.5px 80px; }

.custom-post-type-archive .grid article {
  padding: 0 12.5px; }
  .custom-post-type-archive .grid article .border-box-button {
    margin-bottom: 25px; }
    .custom-post-type-archive .grid article .border-box-button section {
      display: block; }
    .custom-post-type-archive .grid article .border-box-button option {
      padding: 5px 0; }

.menu-news .inner-menu-news {
  padding: unset;
  border-radius: unset;
  background-color: unset;
  -webkit-box-shadow: unset;
  -moz-box-shadow: unset;
  box-shadow: unset; }
  .menu-news .inner-menu-news .menu-news-filterby {
    float: left;
    margin-top: 0;
    padding-right: 15px; }
    .menu-news .inner-menu-news .menu-news-filterby h3 {
      color: #323944;
      line-height: 38px;
      font-size: 15px; }
  .menu-news .inner-menu-news > div .menu-news-search-h3 {
    display: none; }
  .menu-news .inner-menu-news > div .mh-category-select {
    width: unset;
    float: left;
    background-color: unset;
    margin-right: 15px;
    padding-right: 50px; }
  .menu-news .inner-menu-news > div .mh-menu-reset {
    float: left;
    position: relative;
    background-color: transparent;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
  .menu-news .inner-menu-news > div .mh-menu-reset:hover {
    border-color: #00A060;
    background-color: #00A060;
    color: #fff; }
  .menu-news .inner-menu-news > div .mh-category-select.mh-search {
    width: calc(100% - 480px);
    float: right;
    margin-right: 0;
    padding-right: 8px; }
  .menu-news .inner-menu-news > div select.mh-category-select {
    background-position: 90% center; }

.featured-news .inner-featured-news {
  height: 462px; }

.featured-news .featured-news-main .featured-news-main-slider .slick-arrow {
  z-index: 1;
  top: unset;
  bottom: 18px;
  width: 20px;
  height: 20px;
  position: absolute;
  background: unset; }
  .featured-news .featured-news-main .featured-news-main-slider .slick-arrow.slick-prev {
    left: unset;
    right: 100px; }
  .featured-news .featured-news-main .featured-news-main-slider .slick-arrow.slick-next {
    right: 20px; }
  .featured-news .featured-news-main .featured-news-main-slider .slick-arrow i {
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out; }
  .featured-news .featured-news-main .featured-news-main-slider .slick-arrow i:hover {
    color: #00A060 !important; }

.featured-news .featured-news-main .featured-news-main-slider .fn-main-slider-single {
  min-height: 460px;
  position: relative; }
  .featured-news .featured-news-main .featured-news-main-slider .fn-main-slider-single .featured-news-info {
    top: unset;
    left: 30px;
    right: unset;
    bottom: 30px;
    width: 600px; }
    .featured-news .featured-news-main .featured-news-main-slider .fn-main-slider-single .featured-news-info h2 {
      margin-bottom: 20px; }
    .featured-news .featured-news-main .featured-news-main-slider .fn-main-slider-single .featured-news-info .featured-news-info-category {
      margin-bottom: 25px; }
    .featured-news .featured-news-main .featured-news-main-slider .fn-main-slider-single .featured-news-info .featured-news-info-title {
      position: relative; }

.featured-news .featured-news-main .pagingInfo-container {
  display: block; }

.news-section .news-single .news-article .news-single-img {
  display: block; }

.news-section article {
  width: 50%; }

/*********************
FOOTER STYLES
*********************/
.footer #inner-footer .mc-newsletter .mc-field-group h1 {
  font-size: 1.75em; }

/******************************************************************
Site Name: Earth Day Canada
Author: TofferV http://tofferv.com/

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop.

******************************************************************/
/*********************
CUSTOM CLASSES
*********************/
.margin-bottom-20-m {
  margin-bottom: 0; }

.margin-bottom-35-m {
  margin-bottom: 0; }

.text-align-center-m-left-d {
  text-align: left !important; }

.text-align-left-m-center-d {
  text-align: center; }

.padding-right-40-d {
  padding-right: 40px; }

.padding-right-60-d {
  padding-right: 60px; }

.padding-left-40-d {
  padding-left: 40px; }

.padding-top-80d {
  padding-top: 80px !important; }

.padding-top-80m-120d {
  padding-top: 120px !important; }

.padding-bottom-35m-50d {
  padding-bottom: 50px !important; }

.padding-bottom-80m-120d {
  padding-bottom: 120px !important; }

.margin-bottom-20m-50d {
  margin-bottom: 50px; }

.margin-bottom-40m-80d {
  margin-bottom: 80px; }

.margin-bottom-40m-120d {
  margin-bottom: 120px; }

.margin-bottom-50m-0d {
  margin-bottom: 0px !important; }

.margin-bottom-80m-120d {
  margin-bottom: 120px !important; }

.col-500d > div {
  max-width: 500px; }

.col-520d > div {
  max-width: 520px; }

.scroll-down-icon {
  opacity: 0;
  height: 0; }
  .scroll-down-icon > div {
    float: none;
    width: 36px !important;
    height: 54px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    border-radius: 25px;
    -moz-transform: translateX(50%) translateY(-54px);
    -o-transform: translateX(50%) translateY(-54px);
    -ms-transform: translateX(50%) translateY(-54px);
    -webkit-transform: translateX(50%) translateY(-54px);
    transform: translateX(50%) translateY(-54px);
    background-color: rgba(0, 0, 0, 0.35);
    -webkit-box-shadow: 0px 0px 47px #323944;
    -moz-box-shadow: 0px 0px 47px #323944;
    box-shadow: 0px 0px 47px #323944; }
    .scroll-down-icon > div > div {
      top: 2px;
      width: 32px !important;
      height: 50px;
      cursor: pointer;
      position: relative;
      border-radius: 20px;
      border: solid 2px #fff; }
      .scroll-down-icon > div > div > div {
        top: 8px;
        left: 11px;
        width: 6px;
        height: 6px;
        border-radius: 4px;
        position: relative;
        background-color: #fff; }

.img-text-box-offest {
  border-radius: unset;
  overflow: unset;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }
  .img-text-box-offest .wpb_single_image {
    border-radius: 5px;
    overflow: hidden;
    border: solid 1px #dddddd;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2); }
  .img-text-box-offest .wpb_text_column {
    top: -50px;
    overflow: hidden;
    padding: 50px 60px 60px;
    border-radius: 5px;
    position: absolute;
    border: solid 1px #dddddd;
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2); }
    .img-text-box-offest .wpb_text_column.sony-host-your-event-2018 {
      right: 60px;
      width: 530px; }
    .img-text-box-offest .wpb_text_column.sony-host-your-event-2018-fr {
      right: 60px;
      width: 650px; }

/*********************
HEADER STYLES
*********************/
.header .top-header-background {
  opacity: 1; }

.header #inner-header nav .btn {
  display: none; }

.header #inner-header nav > ul {
  right: 0;
  width: initial;
  height: initial;
  top: 0 !important;
  overflow-x: initial;
  overflow-y: initial;
  padding-right: 10px;
  background-color: transparent; }
  .header #inner-header nav > ul li {
    opacity: 1 !important; }
    .header #inner-header nav > ul li ul {
      overflow: initial;
      display: initial !important; }
  .header #inner-header nav > ul > li {
    float: left;
    -moz-transform: translateY(0%);
    -o-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%); }
    .header #inner-header nav > ul > li.menu-item-has-children > a:after {
      margin-left: 10px;
      margin-right: 0px; }
    .header #inner-header nav > ul > li.menu-item-has-children:hover > a:after {
      color: transparent; }
    .header #inner-header nav > ul > li > a {
      font-size: 100%;
      padding: 16px 16px 26px; }
    .header #inner-header nav > ul > li > ul {
      left: 42%;
      width: 342px;
      background-color: #323944;
      -moz-transform: translateX(-50%);
      -o-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
      -moz-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5); }
      .header #inner-header nav > ul > li > ul > li {
        width: 100%;
        position: relative; }
        .header #inner-header nav > ul > li > ul > li a {
          color: #fff;
          font-size: 100%;
          padding: 15px 10px;
          text-align: center; }
        .header #inner-header nav > ul > li > ul > li > ul {
          background-color: #323944; }
          .header #inner-header nav > ul > li > ul > li > ul > li a {
            padding-left: 15px;
            text-align: left; }
        .header #inner-header nav > ul > li > ul > li:first-child > a:before {
          left: 50%;
          color: #323944;
          font-size: 200%;
          content: "\f0d8";
          margin-top: -44px;
          position: absolute;
          font-family: FontAwesome;
          -moz-transform: translateX(-50%);
          -o-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
          -webkit-transition: color 0.1s ease-in-out;
          -o-transition: color 0.1s ease-in-out;
          transition: color 0.1s ease-in-out; }
        .header #inner-header nav > ul > li > ul > li:first-child > a:hover:before {
          color: #00A060; }
        .header #inner-header nav > ul > li > ul > li.menu-item-has-children:after {
          top: 50%;
          right: 15px;
          color: #fff;
          display: block;
          font-size: 25px;
          content: "\f105";
          margin-top: -20px;
          position: absolute;
          font-family: FontAwesome; }
  .header #inner-header nav > ul .main-menu-donate {
    margin-top: 7px;
    border-radius: 3px;
    border: solid 1px #323944; }
    .header #inner-header nav > ul .main-menu-donate:hover {
      color: #fff;
      background-color: #00A060;
      border: solid 1px #00A060; }
      .header #inner-header nav > ul .main-menu-donate:hover a {
        color: #fff; }
    .header #inner-header nav > ul .main-menu-donate a {
      padding: 8px 25px; }

.header.large #inner-header nav > ul > li > a {
  font-size: 110%;
  padding: 37px 16px 47px; }

.header.large #inner-header nav > ul .main-menu-donate {
  margin-top: 29px;
  border-radius: 3px;
  border: solid 1px #323944; }
  .header.large #inner-header nav > ul .main-menu-donate:hover {
    background-color: #00A060;
    border: solid 1px #00A060; }
    .header.large #inner-header nav > ul .main-menu-donate:hover a {
      color: #fff; }
  .header.large #inner-header nav > ul .main-menu-donate a {
    padding: 8px 25px; }

.home-2 .header.large .top-header-background {
  -webkit-box-shadow: unset;
  box-shadow: unset;
  background: transparent; }

.home .header.large .top-header-background, .earthplay .header.large .top-header-background {
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(top, white 0%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(top, white 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0); }

.about .header.large .top-header-background, .schoolplay .header.large .top-header-background, .streetplay .header.large .top-header-background, .parkplay .header.large .top-header-background, .ecokids .header.large .top-header-background, .ecoapprentis .header.large .top-header-background, .ed2018 .header.large .top-header-background, .partners-sponsors-and-media .header.large .top-header-background, .earthplay-for-schools .header.large .top-header-background,
.social-media-contest .header.large .top-header-background, .earth-day-2018-event .header.large .top-header-background, .pledge4play-prizes .header.large .top-header-background, .efs-fr .header.large .top-header-background, .trees4play .header.large .top-header-background, .ed2018-platform .header.large .top-header-background {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0); }

.about .header.large #inner-header nav > ul li a, .schoolplay .header.large #inner-header nav > ul li a, .streetplay .header.large #inner-header nav > ul li a, .parkplay .header.large #inner-header nav > ul li a, .ecokids .header.large #inner-header nav > ul li a, .ecoapprentis .header.large #inner-header nav > ul li a, .ed2018 .header.large #inner-header nav > ul li a, .partners-sponsors-and-media .header.large #inner-header nav > ul li a, .earthplay-for-schools .header.large #inner-header nav > ul li a,
.social-media-contest .header.large #inner-header nav > ul li a, .earth-day-2018-event .header.large #inner-header nav > ul li a, .pledge4play-prizes .header.large #inner-header nav > ul li a, .efs-fr .header.large #inner-header nav > ul li a, .trees4play .header.large #inner-header nav > ul li a, .ed2018-platform .header.large #inner-header nav > ul li a {
  color: #fff; }

.about .header.large #inner-header nav > ul .main-menu-donate, .schoolplay .header.large #inner-header nav > ul .main-menu-donate, .streetplay .header.large #inner-header nav > ul .main-menu-donate, .parkplay .header.large #inner-header nav > ul .main-menu-donate, .ecokids .header.large #inner-header nav > ul .main-menu-donate, .ecoapprentis .header.large #inner-header nav > ul .main-menu-donate, .ed2018 .header.large #inner-header nav > ul .main-menu-donate, .partners-sponsors-and-media .header.large #inner-header nav > ul .main-menu-donate, .earthplay-for-schools .header.large #inner-header nav > ul .main-menu-donate,
.social-media-contest .header.large #inner-header nav > ul .main-menu-donate, .earth-day-2018-event .header.large #inner-header nav > ul .main-menu-donate, .pledge4play-prizes .header.large #inner-header nav > ul .main-menu-donate, .efs-fr .header.large #inner-header nav > ul .main-menu-donate, .trees4play .header.large #inner-header nav > ul .main-menu-donate, .ed2018-platform .header.large #inner-header nav > ul .main-menu-donate {
  border: solid 1px #fff; }
  .about .header.large #inner-header nav > ul .main-menu-donate:hover, .schoolplay .header.large #inner-header nav > ul .main-menu-donate:hover, .streetplay .header.large #inner-header nav > ul .main-menu-donate:hover, .parkplay .header.large #inner-header nav > ul .main-menu-donate:hover, .ecokids .header.large #inner-header nav > ul .main-menu-donate:hover, .ecoapprentis .header.large #inner-header nav > ul .main-menu-donate:hover, .ed2018 .header.large #inner-header nav > ul .main-menu-donate:hover, .partners-sponsors-and-media .header.large #inner-header nav > ul .main-menu-donate:hover, .earthplay-for-schools .header.large #inner-header nav > ul .main-menu-donate:hover,
  .social-media-contest .header.large #inner-header nav > ul .main-menu-donate:hover, .earth-day-2018-event .header.large #inner-header nav > ul .main-menu-donate:hover, .pledge4play-prizes .header.large #inner-header nav > ul .main-menu-donate:hover, .efs-fr .header.large #inner-header nav > ul .main-menu-donate:hover, .trees4play .header.large #inner-header nav > ul .main-menu-donate:hover, .ed2018-platform .header.large #inner-header nav > ul .main-menu-donate:hover {
    border: solid 1px #00A060 !important; }

.about .header.large #inner-header #logo a, .schoolplay .header.large #inner-header #logo a, .streetplay .header.large #inner-header #logo a, .parkplay .header.large #inner-header #logo a, .ecokids .header.large #inner-header #logo a, .ecoapprentis .header.large #inner-header #logo a, .ed2018 .header.large #inner-header #logo a, .partners-sponsors-and-media .header.large #inner-header #logo a, .earthplay-for-schools .header.large #inner-header #logo a,
.social-media-contest .header.large #inner-header #logo a, .earth-day-2018-event .header.large #inner-header #logo a, .pledge4play-prizes .header.large #inner-header #logo a, .efs-fr .header.large #inner-header #logo a, .trees4play .header.large #inner-header #logo a, .ed2018-platform .header.large #inner-header #logo a {
  background-image: url("../images/edc-menu-logo-white.png"); }

/*********************
POSTS & CONTENT STYLES
*********************/
/* entry content */
.entry-content {
  /****************
		Earth Day 2018 Page 
		****************/
  /* end of earth day 2018 page */
  /****************
		Home Page 
		****************/
  /* end of home page */
  /****************
		EarthPLAY Page
		****************/
  /* end of earthplay page */
  /****************
		StreetPLAY Page
		****************/
  /* end of streetplay page */
  /****************
		OPAL Symposium Page
		****************/
  /* end of opal symposium page */
  /****************
		Classroom Resources Page
		****************/
  /* end of classroom resources page */
  /****************
		Take Action Pages
		****************/
  /* end of take action pages */
  /****************
		About Earth Day Canada Page 
		****************/
  /* end of about earth day canada page */
  /****************
		Donate Page
		****************/
  /* end of donate page */
  /****************
		Staples Superpower your School Contest Page
		****************/
  /* end of staples superpower page */ }
  .entry-content > div {
    padding-top: 80px;
    padding-bottom: 80px; }
  .entry-content > div.ed-2018-banner:first-child {
    padding-top: 200px !important; }
  .entry-content > div.padding-top-80m-120d {
    padding-top: 120px !important; }
  .entry-content .ed2018-campaign .ed2018-campaign-copy > div > div {
    max-width: 700px;
    margin-left: unset;
    text-align: left; }
  .entry-content .ed2018-campaign .scroll-down-icon > div {
    top: 184px;
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none; }
  .entry-content .ed2018-how-to-ep > div {
    max-width: 500px; }
  .entry-content .ed-tour .vc_tta-tabs-container .vc_tta-tabs-list {
    padding-top: 30px !important;
    padding-right: 80px !important; }
  .entry-content .ed-tour .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
    padding: 50px 10px 20px 50px; }
  .entry-content .playpal-corp-container {
    width: 25%; }
  .entry-content .home-top {
    padding-top: 150px !important; }
    .entry-content .home-top > div > div {
      max-width: 1300px;
      position: relative; }
    .entry-content .home-top .slick-slide {
      padding: 50px 10px; }
      .entry-content .home-top .slick-slide .home-top-text {
        top: 50%;
        float: right;
        position: absolute;
        border-radius: 5px;
        overflow: hidden;
        width: 0%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        background: -webkit-gradient(linear, right bottom, left top, from(#0078c1), to(#00A060));
        background: -webkit-linear-gradient(bottom right, #0078c1, #00A060);
        background: -o-linear-gradient(bottom right, #0078c1, #00A060);
        background: linear-gradient(to top left, #0078c1, #00A060);
        -webkit-transition: width 0.6s ease-in;
        -o-transition: width 0.6s ease-in;
        transition: width 0.6s ease-in; }
        .entry-content .home-top .slick-slide .home-top-text > div {
          width: 55%;
          float: right;
          padding: 48px;
          position: relative; }
          .entry-content .home-top .slick-slide .home-top-text > div p, .entry-content .home-top .slick-slide .home-top-text > div h1 {
            color: #fff; }
      .entry-content .home-top .slick-slide .home-top-img {
        z-index: 1;
        opacity: 0;
        width: 45%;
        float: left;
        height: 640px;
        padding-left: 40px;
        position: relative;
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        -webkit-transition-delay: 0.8s;
        -o-transition-delay: 0.8s;
        transition-delay: 0.8s; }
        .entry-content .home-top .slick-slide .home-top-img figure {
          width: 100%;
          height: 100%;
          overflow: hidden;
          position: relative;
          border-radius: 5px;
          -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.4);
          -moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.4); }
          .entry-content .home-top .slick-slide .home-top-img figure > div {
            right: -1px;
            height: 100%;
            max-width: unset;
            position: absolute; }
            .entry-content .home-top .slick-slide .home-top-img figure > div img {
              width: auto;
              height: 100%;
              max-width: unset; }
      .entry-content .home-top .slick-slide.slick-current .home-top-img {
        opacity: 1;
        -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
        transform: translateX(0px); }
      .entry-content .home-top .slick-slide.slick-current .home-top-text {
        width: 100%; }
    .entry-content .home-top .slider-nav {
      right: 0;
      bottom: 74px;
      width: 55%;
      height: 150px;
      padding: 0 48px;
      position: absolute; }
      .entry-content .home-top .slider-nav .slick-list {
        padding: 20px !important; }
      .entry-content .home-top .slider-nav .slick-slide {
        padding: 0;
        outline: none; }
        .entry-content .home-top .slider-nav .slick-slide > div {
          padding: 7px;
          -webkit-transition: all 0.3s ease-in-out;
          -o-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out; }
          .entry-content .home-top .slider-nav .slick-slide > div > div {
            height: 110px;
            cursor: pointer;
            overflow: hidden;
            border-radius: 5px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            -webkit-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
            -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.4);
            -moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.4);
            box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.4); }
            .entry-content .home-top .slider-nav .slick-slide > div > div.slider-nav-1, .entry-content .home-top .slider-nav .slick-slide > div > div.slider-nav-2, .entry-content .home-top .slider-nav .slick-slide > div > div.slider-nav-3, .entry-content .home-top .slider-nav .slick-slide > div > div.slider-nav-4, .entry-content .home-top .slider-nav .slick-slide > div > div.slider-nav-5, .entry-content .home-top .slider-nav .slick-slide > div > div.slider-nav-6 {
              background-image: url(http://ecokids.ca/wp-content/uploads/2018/06/programme-opal-cour-ecole-enfants-2-300x300.jpg); }
        .entry-content .home-top .slider-nav .slick-slide.slick-current {
          z-index: 1;
          position: relative; }
          .entry-content .home-top .slider-nav .slick-slide.slick-current > div {
            padding: 0px; }
            .entry-content .home-top .slider-nav .slick-slide.slick-current > div > div {
              height: 123px; }
    .entry-content .home-top .slick-arrow {
      z-index: 1;
      top: 90px;
      width: 20px;
      height: 20px;
      position: absolute;
      background: unset; }
      .entry-content .home-top .slick-arrow.slick-prev {
        left: calc(45% + 70px); }
      .entry-content .home-top .slick-arrow.slick-next {
        left: calc(45% + 150px); }
      .entry-content .home-top .slick-arrow i {
        -webkit-transition: color 0.2s ease-in-out;
        -o-transition: color 0.2s ease-in-out;
        transition: color 0.2s ease-in-out; }
      .entry-content .home-top .slick-arrow i:hover {
        color: #00A060 !important; }
    .entry-content .home-top .slick-dots {
      top: 50%;
      left: 15px;
      padding: 0;
      width: 30px;
      height: 210px;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
      .entry-content .home-top .slick-dots li {
        height: 35px; }
        .entry-content .home-top .slick-dots li button {
          padding: 0;
          height: 35px;
          background-image: unset !important; }
          .entry-content .home-top .slick-dots li button:before {
            height: 35px;
            color: #fff;
            font-size: 10px;
            line-height: 35px;
            -webkit-transition: opacity 0.2s ease-in-out;
            -o-transition: opacity 0.2s ease-in-out;
            transition: opacity 0.2s ease-in-out; }
    .entry-content .home-top .pagingInfo-container {
      top: 50%;
      left: -23px;
      position: absolute;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
      .entry-content .home-top .pagingInfo-container > div {
        color: #323944;
        font-size: 12px;
        padding: 20px;
        background: #fff;
        border-radius: 35px;
        -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2); }
        .entry-content .home-top .pagingInfo-container > div .pagingInfo {
          display: table;
          margin: 0 auto;
          text-align: center; }
  .entry-content .staples-superpower-hero-home figure {
    width: 480px; }
  .entry-content .home-outdoor-play {
    min-height: 720px; }
  .entry-content .home-boxes.parkplay-hb {
    padding-top: 80px; }
  .entry-content .home-boxes .edc-box:first-child {
    width: 20%;
    padding-left: 0; }
  .entry-content .home-boxes .edc-box:nth-child(2) {
    width: 20%; }
  .entry-content .home-boxes .edc-box:nth-child(3) {
    width: 20%;
    padding-right: 10px; }
  .entry-content .home-boxes .edc-box:nth-child(4) {
    width: 20%;
    padding-left: 10px; }
  .entry-content .home-boxes .edc-box:last-child {
    width: 20%;
    padding-right: 0; }
  .entry-content .earth-play-video-section:before {
    margin-top: -133px; }
  .entry-content .why-outdoor-content > div > .vc_column-inner {
    max-width: 1000px; }
  .entry-content .ep-why-outdoor.ep-el-right .ep-el-right-copy p, .entry-content .ep-why-outdoor.ep-el-left .ep-el-left-copy p {
    font-size: 22px; }
  .entry-content .streetplay-why-title {
    text-align: left; }
  .entry-content .symposium-top-h1 h1 {
    font-size: 100px;
    letter-spacing: 8px; }
  .entry-content .classroom-resources-sec .cr-item {
    width: calc(50% - 20px);
    margin-left: 20px;
    margin-bottom: 20px; }
  .entry-content .take-action-top {
    min-height: 800px; }
  .entry-content .take-action-top.fr {
    min-height: 870px; }
  .entry-content .edc-timeline {
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(#fff), to(transparent));
    background-image: -webkit-linear-gradient(top, transparent, #fff, transparent);
    background-image: -o-linear-gradient(top, transparent, #fff, transparent);
    background-image: linear-gradient(180deg, transparent, #fff, transparent);
    background-position: 50%;
    background-repeat: repeat-y;
    background-size: 5px 1px; }
    .entry-content .edc-timeline > div > div > div {
      overflow-x: unset;
      overflow-y: unset;
      white-space: unset;
      padding-top: 0;
      padding-bottom: 0; }
    .entry-content .edc-timeline .grid-item-about {
      float: left;
      clear: left;
      display: block;
      margin-right: auto;
      margin-bottom: 15px;
      padding: 0 !important; }
      .entry-content .edc-timeline .grid-item-about:nth-child(even) {
        float: right;
        clear: right; }
        .entry-content .edc-timeline .grid-item-about:nth-child(even) .animationWrapInner > div {
          margin-left: auto; }
          .entry-content .edc-timeline .grid-item-about:nth-child(even) .animationWrapInner > div:before {
            top: 30px;
            left: -15px;
            content: "\f0d9"; }
          .entry-content .edc-timeline .grid-item-about:nth-child(even) .animationWrapInner > div:after {
            top: 48px;
            left: -60px;
            right: unset;
            content: "\f111"; }
      .entry-content .edc-timeline .grid-item-about .animationWrapInner > div {
        width: calc(100% - 50px);
        text-align: left; }
        .entry-content .edc-timeline .grid-item-about .animationWrapInner > div:before {
          content: "\f0da";
          top: -10px;
          right: -15px;
          color: #fff;
          font-size: 50px;
          position: absolute;
          font-family: FontAwesome; }
        .entry-content .edc-timeline .grid-item-about .animationWrapInner > div:after {
          content: "\f111";
          top: 9px;
          right: -61px;
          color: #fff;
          font-size: 25px;
          position: absolute;
          font-family: FontAwesome; }
  .entry-content .donate-top-h1 h1 {
    font-size: 58px;
    letter-spacing: 8px; }
  .entry-content .staples-superpower .staples-superpower-content {
    width: 54%;
    padding-left: 20px;
    padding-right: 0px;
    padding-bottom: 80px; }
  .entry-content .staples-superpower .staples-superpower-hero {
    width: 480px; }
  .entry-content .staples-superpower .staples-superpower-hero figure {
    right: 0px; }

/* end .entry-content */
/*********************
POST TYPE STYLES
*********************/
.featured-news .featured-news-side {
  display: block;
  height: 460px; }

.news-section article {
  width: 33.333%; }

.menu-news .inner-menu-news > div .menu-news-filterby {
  padding-right: 20px; }

.menu-news .inner-menu-news > div .mh-category-select {
  margin-right: 20px; }

.menu-news .inner-menu-news > div .mh-category-select.mh-search {
  width: 500px; }

/*********************
NAVIGATION STYLES
*********************/
.nav {
  border: 0;
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */ }
  .nav ul {
    background: #fff;
    margin-top: 0; }
  .nav li {
    /*
		plan your menus and drop-downs wisely.
		*/
    /* showing sub-menus */ }
    .nav li a {
      border-bottom: 0;
      /*
			you can use hover styles here even though this size
			has the possibility of being a mobile device.
			*/ }
      .nav li a:hover, .nav li a:focus {
        color: #00A060; }
    .nav li ul.sub-menu,
    .nav li ul.children {
      margin-top: 0;
      border-top: 0;
      position: absolute;
      visibility: hidden;
      z-index: 8999;
      /* highlight sub-menu current page */ }
      .nav li ul.sub-menu li,
      .nav li ul.children li {
        /*
				if you need to go deeper, go nuts
				just remember deeper menus suck
				for usability. k, bai.
				*/ }
        .nav li ul.sub-menu li:last-child a,
        .nav li ul.children li:last-child a {
          border-bottom: 0; }
        .nav li ul.sub-menu li ul,
        .nav li ul.children li ul {
          top: 0;
          left: 100%; }
    .nav li:hover > ul {
      top: auto;
      visibility: visible; }

/* end .nav */
/*********************
FOOTER STYLES
*********************/
.footer #inner-footer .mc-newsletter {
  width: 40.8%;
  float: left;
  margin: initial;
  max-width: none;
  text-align: initial; }
  .footer #inner-footer .mc-newsletter input[type=email] {
    width: 65%;
    float: left;
    margin-bottom: initial; }
  .footer #inner-footer .mc-newsletter .clear {
    width: 35%;
    float: right;
    padding-left: 20px; }

.footer #inner-footer .footer-links-address {
  width: 59.2%;
  float: right; }
  .footer #inner-footer .footer-links-address > div:first-child {
    float: left;
    width: 272px;
    margin-left: 19%;
    margin-bottom: 0; }
    .footer #inner-footer .footer-links-address > div:first-child .footer-social {
      top: -12px;
      margin: 0 0 29px; }
  .footer #inner-footer .footer-links-address > div:last-child {
    width: 170px;
    float: right;
    text-align: right; }
    .footer #inner-footer .footer-links-address > div:last-child a {
      margin: initial;
      display: initial; }
    .footer #inner-footer .footer-links-address > div:last-child i {
      float: right;
      margin-left: 15px;
      position: initial; }
  .footer #inner-footer .footer-links-address p:first-child {
    margin-top: initial;
    margin-bottom: 9px; }
  .footer #inner-footer .footer-links-address p:last-child {
    margin: initial; }

/*
you can call the larger styles if you want, but there's really no need
*/
/******************************************************************
ADDITIONAL IE FIXES
These fixes are now ONLY seen by IE, so you don't have to worry
about using prefixes, although it's best practice. For more info
on using Modernizr classes, check out this link:
http://www.modernizr.com/docs/
******************************************************************/
/*
For example, you can use something like:

.no-textshadow .class { ... }

You can also target specific versions by using the classes applied to
the html element. These can sometimes change, so take a look inside the
header.php file to see what they are:


.lt-ie8 .class { ... }

*/
