
:root {
	--first-color: #234896;
	--second-color: #ffd046;
	--third-color: #234896;
	--text-color: #fff;

	--box-shadow: 0 5px 25px rgb(2, 2, 2, 0.1);
	--text-shadow: 0 5px 25px rgb(2, 2, 2, 0.1);
}
.form section {
	position: relative;
	margin: 0;
	transition: .5s ease;
}

.form .main-container {
	position: relative;
}

/* ===== Tab navigation content ===== */
.form .tab-nav-bar {
	position: relative;
	margin: 20px 10px 20px 10px;
}

.from .tab-navigation {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: fit-content;
	margin: 0 auto;
}

.form .tab-menu.dragging {
	scroll-behavior: unset;
	cursor: grab;
}

.form .tab-menu::-webkit-scrollbar {
	display: none;
}

.form .tab-btn {
	display: inline-block;
	color: var(--text-color);
	font-size: 1em;
	font-weight: 400;
	margin: 0 2px;
	padding: 5px 10px;
	border-radius: 30px;
	cursor: pointer;
	user-select: none;
	transition: background-color .3s ease;
}

.form .tab-menu.dragging .tab-btn {
	pointer-events: none;
}




/* ===== Tab content ===== */
.tab-content {
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
}

.tab {
	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 .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: var(--box-shadow);
}

.tab .img-card img {
	width: 100%;
	object-fit: cover;
}

.right-column {
	max-width: 800px;
}

.info .city,
.info .description p {
	color: var(--text-color);
	margin-bottom: 10px;
}

.info .city {
	font-size: 2em;
}



/* ===== Media queries (max-width: 1050px;) ===== */
@media screen and (max-width: 1050px) {
	section {
		margin: 0 0;
	}

	.tab-nav-bar {
		margin: 65px 20px 40px 25px;
	}

	.tab .img-card {
		width: auto;
		max-width: 600px;
	}
}
/* Card */
.card_
{
	width: 18rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0 50px #1f1f1f69;
    transition: 0.4s;
    cursor: pointer;
    z-index: 5;
}
.card_:hover
{
	transform: scale(1.05) translateY(-10px);
	box-shadow: 0 0 40px #101010ab;
}
.toppart
{
	height: 7rem;
    background-repeat: no-repeat;
    background-size: cover;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.toppart img
{
    width: 10rem;
    transform: translateY(50%);
}
.bottompart
{
	padding: 3rem 1rem 1rem;
	text-align: center;
}
.bottompart h1
{
	color: hsl(229deg 2% 21%);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}
.bottompart h1 span
{
	color: #847c7c;
    font-weight: 400;
    font-size: 1.1rem;
}
.bottompart p
{
	margin: 0.5rem 0 1rem;
    color: grey;
    font-size: 0.9rem;
}
.detdiv
{
	display: flex;
    justify-content: space-around;
}
.eachdiv h2
{
	color: #393a40;
    font-size: 1.1rem;
    margin-bottom: 0;
}
.eachdiv p
{
	margin: 0.5rem 0;
    color: #4c4747;
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 1.3px;
}
.attribution
{
	position: fixed;
    bottom: 1rem;
    right: 1rem;
    color: #e6e2e2;
    line-height: 1.7;
    text-align: right;
    font-size: 1rem;
}
.attribution a
{
	text-decoration: none;
    color: #feffff;
}
.bgtopcircle,.bgbottomcircle
{
	width: 100%;
	height: 200vh;
	position: fixed;
}
.bgtopcircle
{
    top: -10rem;
    left: 1rem;
    transform: translate(-50%, -50%);
}
.bgbottomcircle
{
	bottom: -16rem;
    right: 4rem;
    transform: translate(50%, 50%);
}
.links
{
	position: fixed;
	bottom: 5rem;
	right: 2rem;
}
.links ul
{
	list-style-type: none;
}
.links ul li a i
{
	font-size: 2rem;
	color: #dcdcdc;
	margin: 0.5rem 0;
	transition: 0.3s;
	opacity: 0.8;
}
.links ul li a i:hover
{
	color: white;
	transform: scale(1.3);
	opacity: 1;
}
@media only screen and (max-width: 500px)
{
	.links
	{
		display: none;
	}
	.card_
	{
    	width: 20rem;
	}
}
.price-tag
{
    width: 100px;
    height: 40px;
    top: 20px;
    right: 20px;
    border-radius: 20px 0px;
}
.vtt
{
    vertical-align: text-top;
}
.bg-li-wh
{
    background-color: #ffffffc7;
    display: none;
}