// Changes the text labels for Google Calendar and iCal buttons on a single event page
remove_action( 'tribe_events_single_event_after_the_content', array( tribe( 'tec.iCal' ), 'single_event_links' ) );

add_action( 'tribe_events_single_event_after_the_content', 'customized_tribe_single_event_links' );

function customized_tribe_single_event_links(){

if ( is_single() &amp;&amp; post_password_required() ) {
return;
}

echo '';
echo '+ Export to Maps ';
echo '+ Export to Calendar ';
echo '';
}

.event-page-featured-img .pfi-img-wrap {
    padding-top: 56.25%;
    overflow: hidden;
    height: 0;
    position: relative;
    display: none;
}

tr:nth-of-type(even) {
    background-color: rgba(0, 0, 0, 0);
}


img {
    
    height: 75%;
    max-width: 100%;
}

.slick-dots {
    position: absolute;
    top: 89%;
    bottom: -45px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    width: 100%;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0%;
    margin-top: -16%;
    padding: 183px 0;
}

.slider-carousel-wrap .slide-img-wrap img {
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    height: 90%;
}