.events {
	overflow: hidden;
	padding-top: 15px;
	padding-bottom: 30px;
}

.events__title-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
}

.events__link1 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	transition: color 0.3s;
}

.events__link1-icon {
	display: flex;
}

.events__link1-icon svg {
	width: 16px;
	height: 16px;
	fill: #00091a;
	transition: fill 0.3s;
}

.events__filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
	margin: 0 -15px;
	padding: 0 15px;
	margin-bottom: 32px;
}

.events__filter>* {
	flex-shrink: 0;
}

.events__filter-close {
	position: absolute;
	top: 23px;
	right: 15px;
	display: none;
	cursor: pointer;
}

.events__filter-close svg {
	width: 20px;
	height: 20px;
	fill: #bdbdbd;
}

.events__filter-title {
	font-weight: 700;
	font-size: 22px;
	margin-bottom: 16px;
}

.events__filter-btn-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.events__filter-btn-wrap .btn2 {
	width: calc(50% - 4px);
	font-size: 14px;
	font-weight: 600;
	border-radius: 12px;
	padding: 11px 10px;
}

.events__filter-btn-wrap .btn1 {
	width: calc(50% - 4px);
	font-size: 14px;
	font-weight: 600;
	border-radius: 12px;
	padding: 11px 10px;
}

.events__filter-btn1 {
	color: #8d95a5;
	cursor: pointer;
	transition: color 0.3s;
}

.events__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 0 -12px;
	margin-top: -24px;
}

.events__col {
	width: 25%;
	display: flex;
	padding: 0 12px;
	margin-top: 24px;
}

.events-item {
	width: 100%;
}

.events-item__img-wrap {
	position: relative;
	margin-bottom: 8px;
}

.events-item__tags {
	position: absolute;
	z-index: 1;
	top: 8px;
	left: 8px;
	right: 8px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
}

.events-item__tag {
	font-size: 14px;
	color: #fff;
	padding: 4px 8px;
	border-radius: 300px;
	background-color: rgba(0, 0, 0, 0.4);
}

.events-item__img {
	overflow: hidden;
	position: relative;
	padding-top: 115%;
	border-radius: 24px;
}

.events-item__img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s;
}

.events-item__price {
	display: inline-block;
	font-weight: 700;
	padding: 4px 8px;
	border-radius: 300px;
	background-color: #f1f2f4;
	margin-bottom: 12px;
}

.events-item__title {
	font-size: 18px;
	margin-bottom: 12px;
}

.events-item__date {
	font-size: 18px;
	color: #8d95a5;
	margin-bottom: 8px;
}

.events-item__points {
	font-size: 14px;
	line-height: 1.1;
	color: #8d95a5;
}

.events__filter-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	margin-bottom: 32px;
}

.events__tab-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 2px;
	background-color: #f1f2f4;
	border-radius: 8px;
	gap: 8px;
}

.events__tab-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: 7px;
	padding: 8px;
	cursor: pointer;
	transition: all 0.3s;
}

.events__tab-link.active {
	background-color: #fff;
}

.events__filter-wrap .events__filter {
	margin-bottom: 0;
}

@media (hover: hover) {
	.events__tab-link:hover {
		background-color: #fff;
	}
}

.events__tab-link-icon {
	display: flex;
}

.events__tab-link-icon svg {
	width: 20px;
	height: 20px;
	fill: #00091A;
}

.events__tab {
	display: none;
}

.events__tab.active {
	display: block;
}

body .eventspop {
	display: none;
	flex-direction: column;
	border-radius: 16px;
	max-width: 367px;
	width: 100%;
	background-color: #fff;
	padding: 15px;
}

body .eventspop .f-button.is-close-button {
	top: 15px;
	right: 15px;
	width: 20px;
	height: 20px;
}

.eventspop__title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-right: 25px;
}

.eventspop__col {
	margin-bottom: 8px;
}

.eventspop__col:last-child {
	margin-bottom: 0;
}

.eventspop-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

@media (hover: hover) {
	.eventspop-item:hover .eventspop-item__img img {
		transform: scale(1.05);
	}
}

.eventspop-item__wrap1 {
	max-width: 120px;
	width: 100%;
}

.eventspop-item__img {
	position: relative;
	padding-top: 115%;
	border-radius: 12px;
	overflow: hidden;
}

.eventspop-item__img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s;
}

.eventspop-item__wrap2 {
	width: calc(100% - 132px);
}

.eventspop-item__title {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 8px;
}

.eventspop-item__time {
	font-size: 14px;
	line-height: 1.1;
	margin-bottom: 12px;
}

.eventspop-item__adress {
	color: #8d95a5;
	font-size: 12px;
	margin-bottom: 12px;
}

.eventspop-item__price-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 4px;
}

.eventspop-item__price {
	background-color: #f1f2f4;
	font-size: 14px;
	padding: 3px 8px;
	border-radius: 300px;
}

.eventspop-item__tag {
	color: #3b965a;
	background-color: #E7F2EB;
	font-size: 14px;
	padding: 3px 8px;
	border-radius: 300px;
}

.events__map {
	width: calc(100vw - 15px);
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	height: 1029px;
	border-radius: 72px;
	overflow: hidden;
	background-color: #d2d2d2;
}



@media (max-width: 1200px) {
	.events__col {
		width: 33.3333%;
	}

	.events__map {
		position: static;
		transform: none;
		margin: 0 -15px;
		width: auto;
		height: 700px;
		border-radius: 30px;
	}
}

@media (max-width: 750px) {
	.events {
		padding-bottom: 50px;
	}

	.events__title-wrap {
		margin-bottom: 16px;
	}

	.events__link1 {
		font-size: 14px;
	}

	.events__filter {
		overflow: auto;
		flex-wrap: nowrap;
		margin-bottom: 6px;
		padding-bottom: 10px;
	}

	.events__filter-close {
		display: flex;
	}

	.events__filter-title {
		font-size: 16px;
		margin-bottom: 20px;
	}

	.events__list {
		margin: 0 -4px;
		margin-top: -15px;
	}

	.events__col {
		width: 50%;
		padding: 0 4px;
		margin-top: 15px;
	}

	.events-item__tag {
		font-size: 10px;
		padding: 5px 8px;
	}

	.events-item__img {
		border-radius: 12px;
	}

	.events-item__price {
		font-size: 14px;
		padding: 5px 8px;
		margin-bottom: 8px;
	}

	.events-item__title {
		font-size: 14px;
		margin-bottom: 8px;
	}

	.events-item__date {
		font-size: 14px;
		margin-bottom: 4px;
	}

	.events-item__points {
		font-size: 10px;
		line-height: 1.2;
	}

	.events__map {
		height: 492px;
		border-radius: 16px 16px 0 0;
	}

	.events__tab-links {
		position: absolute;
		z-index: 3;
		bottom: 0;
		left: 0;
		right: 0;
		background-color: #fff;
		min-height: 72px;
	}

	.events__tab-link {
		position: absolute;
		top: 12px;
		left: 15px;
		right: 15px;
		background-color: #2d3139 !important;
		color: #fff;
		gap: 6px;
		font-size: 14px;
		padding: 15px 10px;
	}

	.events__tab-link-icon svg {
		width: 16px;
		height: 16px;
		fill: #fff;
	}

	.events__tab-link.active {
		background-color: #2d3139;
		opacity: 0;
		pointer-events: none;
	}

	.events .container {
		padding-bottom: 72px;
	}

	.eventspop__title {
		font-size: 14px;
		margin-bottom: 12px;
		padding: 0 25px;
		text-align: center;
	}

	.eventspop-item {
		padding: 4px;
		background-color: #fff;
		border-radius: 16px;
	}

	body .eventspop {
		background-color: #f6f7f8;
	}
}

@media (hover: hover) {
	.events__link1:hover {
		color: #fe5000;
	}

	.events__link1:hover svg {
		fill: #fe5000;
	}

	.events__filter-btn1:hover {
		color: #fe5000;
	}

	.events-item:hover .events-item__img img {
		transform: scale(1.05);
	}
}