.event-card {
	display: flex;
	width: 100%;
	box-shadow: 4px 4px 13px 0 rgba(0, 0, 0, 0.34);
	color: #464646;
	margin: 42px 0;
}
@media only screen and (min-width: 1000px) {
	.event-card {
		max-height: 365px;
	}
}
@media only screen and (max-width: 999px) {
	.event-card {
		flex-flow: wrap;
		justify-content: center;
		margin: 26px 0;
	}
}
.event-card__left-column {
	width: 60%;
}
@media only screen and (max-width: 999px) {
	.event-card__left-column {
		width: 100%;
	}
}
.event-card__left-column img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media only screen and (max-width: 999px) {
	.event-card__left-column img {
		height: auto;
	}
}
.event-card__right-column {
	width: 40%;
	padding: 60px 50px 55px;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	align-items: center;
	background-color: #fff;
}
@media only screen and (max-width: 999px) {
	.event-card__right-column {
		padding: 20px 40px;
		width: 100%;
	}
}
.event-card__right-column .logo {
	max-width: 293px;
	max-height: 97px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.event-card__right-column .logo img {
	height: 100%;
	margin: 0;
	width: 100%;
	object-fit: contain;
	max-height: 75px;
	max-width: 100%;
}
@media only screen and (max-width: 999px) {
	.event-card__right-column .logo {
		max-height: 28px;
	}
}
.event-card__right-column .content {
	padding: 44px 0;
	text-align: center;
}
@media only screen and (max-width: 999px) {
	.event-card__right-column .content {
		display: flex;
		flex-flow: column;
		padding: 11px 0;
	}
}
.event-card__right-column .content .date {
	font-weight: 700;
	font-size: 21px;
	line-height: 25px;
	text-transform: uppercase;
	width: 100%;
	text-align: center;
	display: block;
}
@media only screen and (max-width: 999px) {
	.event-card__right-column .content .date {
		font-size: 18px;
		line-height: 17px;
	}
}
.event-card__right-column .content .city,
.event-card__right-column .content .country {
	font-weight: 400;
	font-size: 21px;
	line-height: 25px;
	text-align: center;
	margin-bottom: 0;
}
@media only screen and (max-width: 999px) {
	.event-card__right-column .content .city,
	.event-card__right-column .content .country {
		font-size: 16px;
		line-height: 17px;
	}
}
@media only screen and (max-width: 999px) {
	.event-card__right-column .content .city {
		font-style: italic;
		font-weight: 300;
	}
}
@media only screen and (max-width: 999px) {
	.event-card__right-column .content .country {
		font-weight: 700;
	}
}
@media only screen and (min-width: 1000px) {
	.event-card__right-column .content .country:before {
		content: ', ';
	}
}
.event-card__right-column .button {
	height: 45px;
	width: 100%;
	max-width: 249px;
	border: 2px solid #3d589b;
	border-radius: 2px;
	color: #94377e;
	font-size: 17px;
	line-height: 24px;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s;
}
.event-card__right-column .button:hover {
	background: #94377e;
	color: #fff;
}
@media only screen and (max-width: 999px) {
	.event-card__right-column .button {
		font-size: 14px;
		border: 1.5px solid #94377e;
		border-radius: 4px;
	}
}
