* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: sans-serif;
}

html {
	scroll-behavior: smooth;
}

::-webkit-scrollbar {
	width: 15px;
}

::-webkit-scrollbar-track {
	border-radius: 5px;
	box-shadow: inset 0 0 10px rgba(0,0,0,0.25);
}

::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background: linear-gradient(to right, #c72092, #1c0080);
}

section{
	width: 100%;
	height: 100vh;
	background-image: url(../img/bg1.png);
	background-size: cover;
	background-position: center;
}

 nav{
	display: flex;
	align-items: center;
	justify-content: space-around;
	box-shadow: 0 0 5px rgba(0,0,0,0.6);
	background: white;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}

.logo{
	font-size: 35px;
	color: #c72092;
	margin: 5px 0;
	cursor: pointer;
	position: relative;
	left: -4%;
}

 span{
	color: #6c14d0;
	text-decoration: underline;
}

 ul{
	list-style: none;
}

 li{
	display: inline-block;
	margin: 5px 15px;
}

 li a{
	text-decoration: none;
	color: black;
	transition: 0.2s;
}

li a:hover{
	color: #c72092;
}

 .icons i{
	margin: 0 4px;
	cursor: pointer;
	font-size: 18px;
	transition: 0.3s;
}

.icons i:hover{
	color: #c72092;
}

 .main_content{
	display: flex;
	align-items: center;
	justify-content: space-around;
}

 .main_content .main_text h1{
	font-size: 90px;
	line-height: 70px;
	font-family: pyxidium quick;
	background: linear-gradient(to right, #c72092,#6c14d0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
	top: 45px;
	left: 5%;
}

.main_content .main_text h1 span{
	font-size: 70px;
	background: linear-gradient(to right, #c72092,#6c14d0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.main_content .main_text p{
	width: 600px;
	text-align: justify;
	line-height: 21px;
	position: relative;
	top: 85px;
	left: 5%;
}

 .main_content .main_image img{
	width: 650px;
	position: relative;
	left: 20px;
	top: 75px;
}

.social_icon{
	display: block;
	position: absolute;
	top: 50%;
	left: 98%;
	transform: translate(-50%,-50%);
	font-size: 19px;
	row-gap: 1rem;
}

.social_icon {
	display: grid;
	grid-template-columns: max-content;
	row-gap: 1rem;
}

 .social_icon i{
	margin: 8px 0;
	cursor: pointer;
	transition: 0.3s;
}

 .social_icon i:hover{
	color: #c72092;
}

.button {
	position: absolute;
	left: 6%;
	padding: 10px 20px;
	border-radius: 30px;
	background: linear-gradient(to right, #c72092,#6c14d0);
}

.button a {
	color: white;
	text-decoration: none;
}

 .button i{
	color: white;
	margin-left: 5px;
	transition: 0.3s;
}

.button:hover {
	transform: translateX(6px);
}

/* Products */
.products {
	width: 100%;
	height: 140vh;
	padding: 40px 0;
}

.products h1 {
	margin: 35px 0;
	font-size: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	background: linear-gradient(to right, #c72092, #6c14d0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.box {
	width: 90%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 25px 0;
}

.card {
	width: 290px;
	height: 440px;
	box-shadow: 0 0 8px #6c14d0;
	border-radius: 5px;
	text-align: center;
	padding: 10px 20px;
	background-color: #f6f6f6;
}

.image img:hover{
	transform: scale(1.1);
}

.small_card {
	display: flex;
	flex-direction: column;
	position: absolute;
	margin: 10px 0;
	transform: translateX(-20px);
	transition: 0.3s;
	opacity: 0;
}

.card:hover .small_card {
	transform: translateX(2px);
	cursor: pointer;
	opacity: 1;
}

 .small_card i {
	width: 45px;
	height: 45px;
	border-radius: 5px;
	font-size: 10px;
	margin: 2px 0;
	line-height: 40px;
	border: 2px solid #999999;
	transition: 0.2s;
}

.small_card i:hover {
	color: #c72092;
}


.image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.image img {
	width: 150px;
	margin: 15px 0;
	transition: 0.3s;
}

 .image img:hover {
	transform: scale(1.2);
}

 .products_text h2 {
	font-size: 30px;
	margin-top: 15px;
}

 .products_text p {
	color: #919191;
	line-height: 21px;
	margin: 8px 0;
}

.card  .products_text h3 {
	margin: 7px 0;
}

 .products_star {
	color: black;
	margin-bottom: 19px;
	cursor: pointer;
}

 .products_star:hover {
	color: orange;
	transform: scale(1.1);
}

 .btn {
	text-decoration: none;
	padding: 10px 20px;
	background: linear-gradient(to right, #c72092, #6c14d0);
	color: white;
}
/* Products */


/* About */

.about {
	width: 100%;
	height: 100vh;
	padding-top: 100px;
}

.about h1{
	font-size: 60px;
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: black;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-transform: uppercase;
}

.about h1 span{
	background: linear-gradient(to right, #c72092 , #6c14d0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-left: 15px;
}


 .about_main{
	position: relative;
	top: 40%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: flex;
	justify-content: space-around;
	align-items: center;
}

 .about_image{
	display: flex;
	margin-top: 50px;
}

.about_small_image{
	display: flex;
	flex-direction: column;
	position: relative;
	top: 15px;
}


.about_small_image img{
	height: 92px;
	margin: 5px 0;
	cursor: pointer;
	background: linear-gradient(to right, #6c14d0 , #c72092);
	display: block;
	border-radius: 6px;
	padding: 5px 5px;
	box-shadow: 0 0 6px rgba(0,0,0,0.6);
	opacity: 0.8;
	transition: 0.3s;
}

.about_small_image img:hover {
	opacity: 1;
}

.image_container {
	padding: 10px;
	display: flex;
}

.image_contaner img{
	border: 3px solid #6c14d0;
	border-radius: 20px;
	height: 430px;
	padding: 30px;
	box-shadow: 0 0 8px #6c14d0;
}

.about_text {
	margin-top: 45px;
}

.about_text p {
	background: linear-gradient(to left, #c72092 , #6c14d0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 22px;
	width: 600px;
	text-align: justify;
	padding: 25px 30px;
	border: 2px solid #c72092;
	border-radius: 20px;
	box-shadow: 0 0 8px #c72092;
}

.about_btn {
	color: black;
	background: none;
	position: relative;
	top: 10%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 10px 25px;
	border: 2px solid #c72092;
	text-decoration: none;
	box-shadow: 0 0 8px #c72092;
	transition: 0.5s;
}

.about_btn:hover {
	border: 2px solid transparent;
	background: #c72092;
	color: white;
} 


/* About


/* Review */
.review {
	width: 100%;
	height: 100vh;
	padding-top: 100px;
}





.review h1 {
	font-size: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	text-transform: uppercase;
}

.review span {
	background: linear-gradient(to left, #c72092, #6c14d0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-left: 15px;
}

.review_box {
	width: 95%;
	position: relative;
	top: 7%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.review_card {
	width: 500px;
	background: #f3f1f1;
	padding: 20px 25px;
	border-radius: 5px;
	margin: 15px;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.card_top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}


.profile_image {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	margin: 5px 0;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	cursor: pointer;
	transition: 0.3s;
}

.profile_image:hover {
	transform: scale(1.2);
}

.profile_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.profile {
	display: flex;
	align-items: center;
}

.name {
	margin-left: 20px;
	line-height: 22px;
}

.name strong {
	font-size: 20px;
}

.like i {
	color: orange;
	display: inline-block;
	font-size: 12px;
}

.component p {
	text-align: justify;
	line-height: 22px;
	margin-top: 15px;
}
/* Review */


/* Services */
.services {
	width: 70%;
	margin: 0 auto;
	text-align: center;
	padding: 80px 0 10px 0;
}

.services h1 {
	font-size: 60px;
	text-transform: uppercase;
}

.services span {
	margin-left: 15px;
	background: linear-gradient(to left, #c72092, #6c14d0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.services_cards {
	width: 80%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	top: 50px;
}

.services_box  i{
	font-size: 60px;
	color: orange;
	margin: 20px 0;
	cursor: pointer;
}

.services_box h3 {
	margin-bottom: 15px;
	font-size: 19px;
}

.services_box p {
	text-align: center;
	color: #919191;
	margin-bottom: 60px;
}
/* Services */


/* Login Form */
.login_form {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: space-around;
	align-items: center;
	background-image: url(../img/loging_bg.png);
	background-size: cover;
	background-position: center;
}

.left img {
	width: 650px;
}

.right {
	position: relative;
	top: -50px;
	left: -60px;
	padding: 50px 80px;
}

.right h1 {
	font-family: pre;
	font-size: 45px;
	margin-bottom: 40px;
}

.right p {
	margin-bottom: 5px;
}

.right button {
	width: 350px;
	color: white;
	padding: 7px 20px;
	border: none;
	border-radius: 5px;
	font-size: 20px;
	cursor: pointer;
	background:  linear-gradient(to right, #c72092, #6c14d0);
}

.user {
	border: 2px solid #6c14d0;
	border-radius: 5px;
	width: 350px;
	height: 40px;
	display: flex;
}

.user i{
	position: relative;
	top: 9px;
	left: 15px;
	color: #c72092;
}

.username {
	position: relative;
	left: 9%;
	width: 295px;
	background: none;
	outline: none;
	border: none;
	display: flex;
	font-size: 15px;
}

.password_tag {
	margin: 15px 0 5px 0;
}

.password {
	border: 2px solid #6c14d0;
	border-radius: 5px;
	width: 350px;
	height: 40px;
	display: flex;
}

.password i {
	position: relative;
	top: 9px;
	left: 15px;
	color: #c72092;
}

.password input {
	position: relative;
	left: 9%;
	width: 295px;
	background: none;
	border: none;
	outline: none;
	display: flex;
	font-size: 15px;
}

::-webkit-input-placeholder {
	color: black;
	opacity: 0.7;
}

.forget {
	position: relative;
	left: 60%;
	margin: 6px 0 10px 0;
	cursor: pointer;
}

.login_icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 25px;
}

.login_icon a {
	width: 30px;
	height: 30px;
	margin: 0 2px;
	border-radius: 50%;
	background: #f3f3f3;
	box-shadow: 0 0 5px rgba(0,0,0,0.6);
}

.login_icon img {
	width: 20px;
	margin: 5px 5px;
}
/* Login Form */

/* Footer */
footer {
	width: 100%;
}

.footer_main {
	width: 100%;
	background: #f3f1f1;
	display: flex;
	justify-content: space-around;
}

.tag {
	margin: 10px 0;
}

.center {
	text-align: center;
}

.tag h1 {
	font-size: 25px;
	margin: 25px 0;
	color: #1c0080;
}

.tag a {
	display: block;
	color: black;
	text-decoration: none;
	margin: 9px 0;
}

.search_bar {
	width: 230px;
	height: 30px;
	background: rgba(202,202,202);
	border-radius: 25px;
}

.search_bar input {
	width: 200px;
	padding: 2px 0;
	position: relative;
	top: 17%;
	left: 6%;
	border: none;
	background: none;
	outline: none;
	font-size: 13px;
}

.search_bar button {
	padding: 7px 15px;
	background: linear-gradient(to right, #c72092, #6c14d0);
	border: none;
	margin-top: 15px;
	border-radius: 25px;
	color: white;
	cursor: pointer;
}


/* Footer */