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

body{
	background-color: #373A46;
	color: #FFF;
	font-family: Poppins;
}

*{
	margin: 0;
	padding: 0;
}

.bg_img{
	background-image: url("https://cdn.pixabay.com/photo/2019/05/28/00/15/indoors-4234072_640.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100vh;
	color: white;
	position: relative;
}
.overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	gap: 20px;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
}

.overlay h1{
	font-size: 52px;
	text-decoration: underline;
}

.overlay button{
	width: 200px;
	height: 50px;
	border: 2px solid #fff;
	margin-top: 20px;
	border-radius: 50px;
	font-size: 18px;
	color: #fff;
	background-color: transparent;
	position: relative;
	transition: 0.5s;
	overflow: hidden;
}

.overlay button:before{
	content: '';
	z-index: -1;
	position: absolute;
	width: 0%;
	height: 100%;
	border-radius: 50px;
	background-color: #fff;
	left: 0;
	bottom: 0;
	transition: 0.3s;
}
.overlay button:hover:before{
	width: 100%;
}

.overlay button:hover{
	color: #000;
}

.menubar{
	z-index: 2;
	position: fixed;
	background-color: #2E2F38;
	width: 100%;
	height: fit-content;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.logo{
	width: 200px;
	height: fit-content;
}

.logo p{
	color: #FFE5E5;
	font-size: 20px;
	font-weight: 600;
}

.logo p a{
	text-decoration: none;
	color: #fff;
	position: relative;
}

.logo p a:after{
	content: '';
	width: 0%;
	height: 2px;
	background-color: #fff;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: 0.5s;
}

.logo p a:hover:after {
	width: 100%;
}
.searchbar{
	display: flex;
	width: 200px;
}

.searchbar input{
	border: none;
	height: 30px;
	padding: 2px;
	border-radius: 8px;
}

.searchbar i{
	color: #fff;
	font-size: 20px;
	background-color: #1E8CB5;
	padding: 7px;
	border-radius: 8px;
	text-align: center;
	align-self: center;
	transform: translate(-20px);
}

.searchbar i:hover{
	cursor: pointer;
}

.navbar{
	width: fit-content;
	max-width: 600px;
	font-size: 18px;
	border: 1px solid #fff;
	height: 50px;
	display: grid;
	align-content: center;
	justify-content: center;
	border-radius: 12px;
}

.navbar ul{
	display: flex;
	gap: 30px;
	padding: 0px 10px;
	list-style: none;
}


.navbar ul li a{
	padding: 5px;
	text-decoration: none;
	color: #fff;
}

.navbar ul li a:hover{
	background-color: transparent;
	border: 1px solid #fff;
	border-radius: 10px;
	cursor: pointer;
}


.container{
	margin-top: 20px;
	overflow: auto;
	display: flex;
	gap: 10px;
	padding: 10px;
	border-radius: 10px;
	/*scrollbar-width: none;*/
	scroll-behavior: smooth;
}

#right , #left{
	background-color: #fff;
	color: #000;
	height: fit-content;
	font-size: 30px;
	padding: 20px;
	border-radius: 20px;
	align-self: center;
	position: absolute;
	display: block;
	transition: scale 0.2;
}


.container #right{
	right: 0;
}

#right:hover , #left:hover{
	cursor: pointer;
}

#right:active , #left:active{
	scale: 0.8;
}
.card{
	background-color: #D9E9CF;
	/*box-shadow: 0px 2px 10px #D9E9CF;*/
	padding: 10px;
	border-radius: 6px;
}

.card img{
	width: 300px !important;
	border-radius: 3px;
}

.card h3, p{
	color: #000;
}

.card .rate_bar{
	width: 100%;
	height: fit-content;
	color: #000;
	display: flex;
	gap:2px;
	margin-top: 10px;
	margin-bottom: 5px;
	justify-content: end;
}

.card .rate_bar i:nth-of-type(1) {
	color: #C8C400;
}

footer{
	background-color: #1F1F39;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 20px;
	padding: 10px 50px;
}

footer .column{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

footer .column .socials {
	width: 100%;
	display: flex;
	flex-direction: row;
	gap: 20px;
	justify-content: center;
	margin-top: 20px;
}

footer .column .socials a{
	color: #fff;
	text-decoration: none;
}

footer .column .socials a i {
	font-size: 30px;
}

footer .column .socials i:hover{
	color: #1E8CB5;
}
footer .column ul{
	list-style: none;
}

footer .column ul li a{
	text-decoration: none;
	color: #E7E7E7;
}

footer .column ul li a:hover{
	color: #1E8CB5;
}

footer form {
	margin-top: 20px;
}
footer form input{
	height: 20px;
	border: none;
	border-radius: 4px;
	padding: 4px;
}

footer form button{
	height: 100%;
	border: none;
	border-radius: 4px;
	padding: 4px;
	color: #fff;
	background-color: #1E8CB5;
}

button{
	cursor: pointer;
}



@media (max-width: 620px){
	footer{
		flex-direction: column;
		padding: 10px 30px;
		text-align: center;
	}

	footer .column h3{
		text-align: left;
	}

	.navbar{
		display: none;
	}

	.bg_image{
		background-position: left;
	}

	.overlay h1{
		font-size: 36px;
		text-decoration: underline;
	}

	.overlay h3{
		font-size: 20px;
	}
	
	#left , #right{
		display: none;
	}
}

@media (min-width: 621px) (max-width: 1024px){

}

@media (min-width: 1025px){

}
