@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,600;0,700;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');





section {
	 
	transition: .5s ease;
}

.main-container {
	position: relative;
}

/* ===== Tab navigation content ===== */
.tab-nav-bar {
	position: relative;
	margin: 65px 10px 40px 10px;
}

.tab-navigation {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: fit-content;
	margin: 0 auto;
}

.tab-menu {
	color: #fff;
	list-style: none;
	background-color: #434354;
	max-width: 800px;
	padding: 10px;
	white-space: nowrap;
	border-bottom: 1px solid #434354;
	border-radius: 50px;
	box-shadow: 0 5px 25px rgb(2, 2, 2, 0.1);
	scroll-behavior: smooth;
	user-select: none;
	overflow-x: auto;
}

	.tab-menu.dragging {
		scroll-behavior: unset;
		cursor: grab;
	}

	.tab-menu::-webkit-scrollbar {
		display: none;
	}

.tab-btn {
	display: inline-block;
	color: #fff;
	font-size: 1em;
	font-weight: 400;
	margin: 0 2px;
	padding: 10px 20px;
	border-radius: 30px;
	cursor: pointer;
	user-select: none;
	transition: background-color .3s ease;
}

.tab-menu.dragging .tab-btn {
	pointer-events: none;
}

.tab-btn:hover {
	background-color: var(--first-color);
}

.tab-btn.active {
	background-color: #5b85ff;
}

.left-btn,
.right-btn {
	position: absolute;
	color: #fff;
	font-size: 1.8em;
	padding: 10px;
	cursor: pointer;
}

.left-btn {
	left: 0;
	background: linear-gradient(to left, transparent, #2e2e41 80%);
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	display: none;
}

.right-btn {
	right: 0;
	background: linear-gradient(to right, transparent, #2e2e41 80%);
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
}




/* ===== Tab content ===== */
.tab-content {
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
}

.tab {
	position: absolute;
	top: 0;
	right: auto;
	bottom: 0;
	left: auto;
	max-width: 1100px;
	padding: 15px 50px;
	opacity: 0;
	transform: translateX(25px);
	content-visibility: hidden;
}

	.tab.active {
		transform: translateX(0);
		content-visibility: visible;
		opacity: 1;
		transition: opacity 1s ease, transform 1s ease;
	}

	.tab .row {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 50px 0;
		gap: 30px;
	}

	.tab .img-card {
		position: relative;
		width: 450px;
		max-width: 450px;
		height: 300px;
		max-height: 300px;
		border-radius: 20px;
		overflow: hidden;
		display: flex;
		justify-content: center;
		align-items: center;
		box-shadow: 0 5px 25px rgb(2, 2, 2, 0.1);
	}

		.tab .img-card img {
			width: 100%;
			object-fit: cover;
		}

.right-column {
	max-width: 800px;
}

.info .city,
.info .description p {
	margin-bottom: 10px;
}

.info .city {
	font-size: 2em;
}

.country {
	color: #434354;
	font-size: 5em;
	font-weight: 700;
	text-align: center;
	text-shadow: 0 5px 25px rgb(2, 2, 2, 0.1);
}



/* ===== Media queries (max-width: 1050px;) ===== */
@media screen and (max-width: 1050px) {
	section {
		margin: 0 0;
	}

	.tab-nav-bar {
		margin: 65px 20px 40px 25px;
	}

	.tab {
		padding: 15px 25px;
	}

		.tab .row {
			flex-direction: column;
		}

		.tab .img-card {
			width: auto;
			max-width: 600px;
		}

	.country {
		font-size: 10vw;
		padding-bottom: 50px;
	}
}
