.videos-link {
    display: block;
    font-weight: 700;
    margin-top: 12px;
    margin-left:20px;
    margin-right:25px; 
    float: left;
}

.grey_bg {
    background: #2E2D2E;
}

.img_play:hover {
    opacity: 0.9; 
    cursor: pointer;
}

.video_iframe {
    background: #000;
}

.videoWrapper {
    position: relative;
    padding-bottom: 45%; /* 16:9 */
    padding-top: 0px;
    height: 0;
    margin-top: 0px;
    transitiom: 1s;
}
.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video_iframe {
    display: none;
    background: #000;
}
.video_bg_hide {
    display: none;
}

.video-feature-background {
    width: 100%;
    height: 650px;
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    position: absolute;
    z-index: -1;
    background-position: center !important;
    -moz-box-shadow: inset 600px 0px 203px -1px rgba(0,0,0,0.63);
    box-shadow: inset 600px 0px 203px -1px rgba(0,0,0,0.63);;
    background-color: #000;
}

.featured_full_width_image {
    width: 80%; 
    margin: 0 auto;
    height: 400px; 
    background: rgba(0, 0, 0, 0.0);  
    padding-top: 50px; 
}

.impact-background_2 {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    position: absolute;
    z-index: -1;
    background-position: top center !important;
}

.impact_full_width_image {
    width: 80%; 
    margin: 0 auto;
    height: 300px; 
    background: rgba(0, 0, 0, 0.0);  
    padding-top: 150px; 
}

.featured_full_width_image .impact_full_width_image {
    height:50px;
    position: absolute;
    top: 0px; 
}

.impact_full_width_image a{
    display:inline-block; 
    width: 122px;
    position: absolute;
    margin: 0 auto;
    top: 230px;
    left: 0;
    right: 0;
}

.video_shares {
    width: 60px;
}

.resource_option_title {
    text-align: center;
    font-size: 30px;
    color: #414042;
    padding-bottom: 40px;
}

.esg-filterbutton, .esg-navigationbutton,  .esg-sortbutton, .esg-cartbutton {
    color: #414042 !important;
    margin-right: 5px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    padding: 1px 30px;
    border: none;
    line-height: 38px;
    border-radius: 0px !important;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    font-size: 12px;
    font-weight: 500;
    font-family: "futura-pt",sans-serif;
    display: inline-block;
    background: #fff !important;
    margin-bottom: 5px;
}

.esg-filterbutton.selected .esg-filter-checked, .esg-filterbutton:hover .esg-filter-checked {
    background: #dd3928 !important;
}

.esg-filterbutton, .esg-navigationbutton, .esg-sortbutton, .esg-cartbutton {
    font-weight: 500 !important;
    font-family: "futura-pt" !important;
    letter-spacing: 0.3pt;
}

article.esg-filters {
    margin-top: 0px;
    padding-bottom: 70px;    
}

article.esg-filters .esg-filter-wrapper .esg-filterbutton {
    border: solid 1px #bbbdc0 !important;
    background: transparent !important;
    color: #ddd;
    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0) !important;
    text-transform: uppercase;
}

article.esg-filters .esg-filter-wrapper .esg-filterbutton:hover {
    background: #fff !important;
}

article.esg-filters .esg-filter-wrapper .esg-filterbutton:after {
    background: #fff !important;
    border: solid 1px #414042;
}

.mobile_vid {
    display:none;
}

@media screen and (max-width: 1000px) {
    .featured_full_width_image .span_2_of_5 {
        width: 100%;
    }

    .featured_full_width_image .impact_full_width_image {
        height:50px;
        position: relative;
        top: initial;
        padding-top: 5px;
        margin: 0;
    }

    .featured_full_width_image  .impact_full_width_image a {
        width: 40%;
        position: relative;
        top: 0px;
    } 

    .featured_full_width_image  .impact_full_width_image a img{
        width: 100px
    }  
}

@media screen and (max-width: 700px) {
    .video_shares {
        width: 100%;
    }

    .video_shares img {
        margin-right: 5px;
    }

    .video_iframe {
        display: block;
        background: #000;
    }

    .video_bg {
        display: none;
    }

    .mobile_vid {
        display:block !important;
    }
}

/*
==============================================
pulse
==============================================
*/
.pulse{
    animation-name: pulse;
    -webkit-animation-name: pulse;  
    animation-duration: 2s; 
    -webkit-animation-duration: 2s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
    }
    50% {
        transform: scale(1);
    } 
    100% {
        transform: scale(0.95);
    }     
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.95);
    }

    50% {
        -webkit-transform: scale(1);
    } 

    100% {
        -webkit-transform: scale(0.95);
    }     
}