.events-page__content{
	min-height: 300px;
}
.eventsss{
	width: 1184px;
	
	min-height: 100px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;

}
.eventNote{
	height: 488px;
	width: 378.77px;
	
	margin: 7px;
	margin-top: 18px;
	display: block;
	
}


.eventNoteImg{
	width: 378.77px;
	height: 279px;
	
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: center;
	display: block;

}
.eventNoteText{
	height: 209px;
	width: 378.77px;
	padding: 22px;
	box-shadow:0;
	position: relative;

}

.shadowAll{
	box-shadow: 0 0 14px rgba(0,0,0,0.17), 0 0 7px rgba(0,0,0,0.15);
}

.shadowAll:hover{
	box-shadow: 0 0 14px rgba(0,0,0,0.28), 0 0 10px rgba(0,0,0,0.25);
}
.eventNoteDate{

}

  share: {
        vk: function vk(purl, ptitle, pimg, text) {
            url = 'http://vkontakte.ru/share.php?';
            url += 'url=' + encodeURIComponent(purl);
            url += '&title=' + encodeURIComponent(ptitle);
            url += '&description=' + encodeURIComponent(text);
            url += '&image=' + encodeURIComponent(pimg);
            url += '&noparse=true';
            Init.share.popup(url);
        },
        odnoklassniki: function odnoklassniki(purl, ptitle, pimg, text) {
            url = 'https://connect.ok.ru/offer';
            url += '?url=' + encodeURIComponent(purl);
            url += '&title=' + encodeURIComponent(ptitle);
            url += '&description=' + encodeURIComponent(text);
            url += '&imageUrl=' + encodeURIComponent(pimg);
            Init.share.popup(url);
        },
        facebook: function facebook(purl, ptitle, pimg, text) {
            url = 'http://www.facebook.com/sharer.php?s=100';
            url += '&p[title]=' + encodeURIComponent(ptitle);
            url += '&p[summary]=' + encodeURIComponent(text);
            url += '&p[url]=' + encodeURIComponent(purl);
            url += '&p[images][0]=' + encodeURIComponent(pimg);
            Init.share.popup(url);
        },
        twitter: function twitter(purl, ptitle) {
            url = 'http://twitter.com/share?';
            url += 'text=' + encodeURIComponent(ptitle);
            url += '&url=' + encodeURIComponent(purl);
            url += '&counturl=' + encodeURIComponent(purl);
            Init.share.popup(url);
        },
        mailru: function mailru(purl, ptitle, pimg, text) {
            url = 'http://connect.mail.ru/share?';
            url += 'url=' + encodeURIComponent(purl);
            url += '&title=' + encodeURIComponent(ptitle);
            url += '&description=' + encodeURIComponent(text);
            url += '&imageurl=' + encodeURIComponent(pimg);
            Init.share.popup(url);
        },

