html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-family: arial, sans-serif;
	background-color: #FAFAFA;
}
div {
	/*border: 1px solid grey;*/
}
hr {
	width: 80%;
}
h1 {
	font-family: Palatino, "Palatino LT STD", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.fas {
	color: deeppink;
}
.list-group {
	float: right;
	width: 40px;
	height: 30%;
	margin-top: 20%;
	padding: 0;
	position: fixed;
	z-index: 69;
}
.list-group-item {
	padding: 5px !important;
}
.list-group-item:hover {
	width: 80px;
}


/*_____________________________________________*/
.home-sec {
	width: 100%;
	height: 100vh;
	background-image: -webkit-linear-gradient(rgba(255,240,255,0.1), rgba(250,255,255,0.3)), url(beautikaImg/b1.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.header {
	width: 75%;
}

.logo {
	text-align: center;
}

.logo img {
	width: 40px;
	height: 40px;
}

.links a:hover {
	border-bottom: 1px solid deeppink;
}

.links span {
	display: inline-block;
	font-size: large;
}

.intro {
	float: right;
	width: 40%;
	margin-top: 7rem;
}
.intro span {
	color: deeppink;
}

.join-btn {
	background-color: pink;
	color: #F6F5F6;
	font-weight: bold;
	line-height: 24px;
}

/*ABOUT SECTION*/
.about-sec {
	/*position: relative;*/
	width: 100%;
	background-image: -webkit-linear-gradient(rgb(255,228,225), #FAFAFA);
	background-image: -moz-linear-gradient(rgb(255,228,225), #FAFAFA);
}

.view-more {
	background-color: deeppink;
	color: white;
}


/*HOVER EFFECT START*/
.demo-img {
	margin-top: 10px;
	margin-bottom: 10px;
}

.demo-imgs {
	position: relative;
	display: inline-block;
	margin-top: 10px;
}
.demo-imgs img {
	width: 300px;
	height: 225px;
	display: block;
}

.img-display {
	position: absolute;
	transition: all 0.3s ease;
	opacity: 0;
	background-color: rgba(255, 0, 255, 0.5);
}
.img-text {
	text-align: center;
	color: white;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 20px;
}
.overlay {
	height: 225px;
	width: 0;
	top: 0;
	left: 0;
}
.demo-imgs:hover .overlay {
	width: 300px;
	opacity: 1;
}
/*HOVER EFFECT END*/

.service-sec {
	
}
.quote {
	padding: 10px;
	background-color: rgba(255,155,255,0.5);
}
.quote p {
	width: 60%;
	margin: auto;
	margin-top: 2rem;
}
.quote img {
	margin-top: 2rem;
	height: 50px;
	width: 50px;
	border-radius: 50%;
}

.card {
	height: 350px;
	padding: 10px;
	background-color: rgba(240,200,255,0.8);
	color: #4E342E;
	text-align: center;
	margin: auto 2rem 3rem 2rem;

	transition: 0.5s ease;
}
.card:hover {
	transform: scale(1.05);
}

.card-img {
	height: 200px;
	width: 200px;
	margin-bottom: 3rem;
}

#contact button {
	margin: auto;
}


@media (max-width: 580px) {
	.logo {
		margin: 2rem 0 0 0 !important;
	}
	.logo img {
		width: 50px;
		height: 50px;
	}
	.links {
		display: none;
	}
	.intro {
		float: none;
		margin-top: 1rem;
		width: 85%;
		font-size: large;
	}
	.mobile-mid {
		width: 100%;
		text-align: center;
	}
	.size-p {
		font-weight: bold;
	}
	.card {
		height: 150px;
		width: 80%;
		padding: 10px;
		margin: 1rem;
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		align-items: center;
	}
	.card-img {
		height: 100px;
		width: 100px;
		margin-bottom: 0rem;
	}
}