@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

::-webkit-scrollbar{
    width: 1.5rem;
}

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

::-webkit-scrollbar-thumb{
    border-radius: .5rem;
    background: linear-gradient(to top, #c72092, #6c14d0);
}

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

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

section nav .logo {
  font-size: 3.5rem;
  color: #c72092;
  margin: 0.5rem 0;
  cursor: pointer;
  position: relative;
  left: -4%;
}

section nav .logo span {
  color: #6c14d0;
  text-decoration: underline;
}

section nav ul {
  list-style: none;
}

section nav ul li {
  display: inline-block;
  margin: 0.5rem 1.5rem;
}

section nav ul li a {
  text-decoration: none;
  font-size: 1.6rem;
  color: black;
  transition: 0.2s;
}

section nav ul li a:hover {
  color: #c72092;
}

section nav .icons i {
  margin: 0 0.4rem;
  cursor: pointer;
  font-size: 1.8rem;
  transition: 0.3s;
}

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

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

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

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

section .main .main_content .main_text p {
  width: 60rem;
  font-size: 1.6rem;
  text-align: justify;
  line-height: 2.1rem;
  position: relative;
  top: 8.5rem;
  left: 5%;
}

section .main .main_content .main_image img {
  width: 65rem;
  position: relative;
  left: 2rem;
  top: 7.5rem;
}

section .main .social_icon {
  position: absolute;
  top: 50%;
  left: 99%;
  transform: translate(-50%, -50%);
  font-size: 1.9rem;
}

section .main .social_icon i {
  margin: 0.8rem 0;
  cursor: pointer;
  transition: 0.3s;
}

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

section .main .button {
  position: absolute;
  font-size: 1.6rem;
  left: 6%;
  padding: 1rem 2rem;
  border-radius: 3rem;
  background: linear-gradient(to right, #c72092, #6c14d0);
}

section .main .button a {
  color: #fff;
  text-decoration: none;
}

section .main .button i {
  color: #fff;
  margin-left: 0.5rem;
  transition: 0.3s;
}

section .main .button:hover i {
  transform: translateX(0.6rem);
}

/*Products*/

.products {
  width: 100%;
  height: 140vh;
  padding: 2.5rem 0;
  font-size: 1.6rem;
}

.products h1 {
  margin: 3.5rem 0;
  font-size: 6rem;
  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;
}

.products .box {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2.5rem 0;
}

.products .box .card {
  width: 29rem;
  height: 44rem;
  box-shadow: 0 0 8px #6c14d0;
  border-radius: 0.5rem;
  text-align: center;
  padding: 1rem 2rem;
  background: #f6f6f6;
  margin: 0 auto;
}

.products .box .card .small_card {
  display: flex;
  flex-flow: column;
  position: absolute;
  margin: 1rem 0;
  transform: translateX(-2rem);
  transition: 0.3s;
  opacity: 0;
}

.products .box .card:hover .small_card {
  transform: translateX(0.2rem);
  cursor: pointer;
  opacity: 1;
}

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

.products .box .card .image img {
  width: 15rem;
  margin: 1.5rem 0;
  transition: 0.3s;
}

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

.products .box .card .small_card i {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 0.5rem;
  font-size: 1.8rem;
  margin: 0.2rem 0;
  line-height: 4rem;
  border: 0.2rem solid #999999;
  transition: 0.2s;
}

.products .box .card .small_card i:hover {
  color: #c72092;
}

.products .box .card .products_text h2 {
  font-size: 3rem;
  margin-top: 1.5rem;
}

.products .box .card .products_text p {
  color: #91919191;
  line-height: 2.1rem;
  margin: 0.8rem 0;
}

.products .box .card .products_text h3 {
  margin: 0.7rem 0;
}

.products .box .card .products_text .products_star {
  color: orange;
  margin-bottom: 1.9rem;
  cursor: pointer;
}

.products .box .card .products_text .btn {
  text-decoration: none;
  padding: 1rem 2rem;
  background: linear-gradient(to right, #c72092, #6c14d0);
  color: #fff;
}

/* About */
.about {
  width: 100%;
  height: 100vh;
  padding: 3.5rem 0;
}

.about h1 {
  font-size: 6rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: 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: 1.5rem;
}

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

.about .about_main .about_image {
  display: flex;
  margin-top: 5rem;
}

.about .about_main .about_image .about_small_image {
  display: flex;
  flex-direction: column;
  position: relative;
  top: 1.5rem;
}

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

.about .about_main .about_image .about_small_image img:hover {
  opacity: 1;
}

.about .about_main .image_container {
  padding: 1rem;
  display: flex;
}

.about .about_main .image_container img {
  border: 0.3rem solid #6c14d0;
  border-radius: 2rem;
  height: 43rem;
  padding: 3rem;
  box-shadow: 0 0 0.8rem #6c14d0;
}

.about .about_main .about_text {
  margin-top: 4.5rem;
}

.about .about_main .about_text p {
  background: linear-gradient(to left, #c72092, #6c14d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 2.2rem;
  width: 60rem;
  text-align: justify;
  padding: 2.5rem 3rem;
  border: 0.2rem solid #c72092;
  border-radius: 2rem;
  box-shadow: 0 0 0.8rem #c72092;
  font-size: 1.8rem;
}

.about .about_btn {
  color: black;
  background: none;
  position: relative;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1rem 2.5rem;
  border: 0.2rem solid #c72092;
  text-decoration: none;
  font-size: 1.6rem;
  box-shadow: 0 0 0.8rem #c72092;
  transition: 0.5s;
}

.about .about_btn:hover {
  border: 0.2rem solid transparent;
  background: #c72092;
  color: white;
}

/* review */

.review {
  width: 100%;
  height: 100vh;
  padding-top: 8rem;
}

.review h1 {
  font-size: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

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

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

.review .profile .profile_image {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0.5rem 0;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: 0.3s;
}

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

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

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

.review .review_box .review_card {
  width: 500px;
  background: #f3f1f1;
  padding: 2rem 2.5rem;
  border-radius: 0.5rem;
  margin: 1.5rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
}

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

.review .review_box .review_card .card_top .profile .name {
  margin-left: 2rem;
  line-height: 2.2rem;
}

.review .review_box .review_card .card_top .profile .name strong {
  font-size: 2rem;
}

.review .review_box .review_card .card_top .profile .name .like i {
  color: orange;
  display: inline-block;
  font-size: 1.2rem;
}

.review .review_box .review_card .comment p {
  text-align: justify;
  line-height: 2.2rem;
  margin-top: 1.5rem;
  font-size: 1.6rem;
}

/*Services*/
.services {
  width: 70%;
  margin: 0 auto;
  text-align: center;
  padding: 8rem 0 1rem 0;
}

.services h1 {
  font-size: 6rem;
  text-transform: uppercase;
}

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

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

.services .services_box i{
    font-size: 6rem;
    color: orange;
    margin: 2rem 0;
    cursor: pointer;
}

.services .services_box h3{
    margin-bottom: 1.2rem;
    font-size: 1.9rem;

}

.services .services_box p{
    text-align: center;
    color: #919191;
    margin-bottom: 6rem;
    font-size: 1.6rem;
}

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

.login_form .left img{
    width: 65rem;
}

.login_form .right{
    position: relative;
    top: -5rem;
    left: -6rem;
    padding: 5rem 8rem;
}

.login_form .right h1{
    font-family: 'Indie Flower', cursive;
    font-size: 4.5rem;
    margin-bottom: 4rem;
}

.login_form .right p{
    margin-bottom: .5rem;
    font-size: 1.6rem;
}

.login_form .right .user{
    border: .2rem solid #6c14d0;
    border-radius: .5rem;
    width: 35rem;
    height: 4rem;
    display: flex;
}

.login_form .right .user i{
    position: relative;
    top: .9rem;
    left: 1.5rem;
    color: #c72092;
    font-size: 1.6rem;
}

.login_form .right .user .username{
    position: relative;
    left: 9%;
    width: 29.5rem;
    background: none;
    outline: none;
    border: none;
    display: flex;
    font-size: 1.5rem;
}

.login_form .right .passworg_tag{
    margin: 1.5rem 0 .5rem 0;
}

.login_form .right .password{
    border: .2rem solid #6c14d0;
    border-radius: .5rem;
    width: 35rem;
    height: 4rem;
    display: flex;
}

.login_form .right .password i{
    position: relative;
    top: .9rem;
    left: 1.5rem;
    color: #c72092;
    font-size: 1.6rem;
}

.login_form .right .password input{
    position: relative;
    left: 9%;
    width: 29.5rem;
    background: none;
    border: none;
    outline: none;
    display: flex;
    font-size: 1.5rem;
}

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

.login_form .right .forget{
    position: relative;
    left: 60%;
    margin: .6rem 0 1rem 0;
    cursor: pointer;
}

.login_form .right button{
    width: 35rem;
    color: #ffff;
    padding: .7rem 2rem;
    border: none;
    border-radius: .5rem;
    font-size: 2rem;
    cursor: pointer;
    background: linear-gradient(to right, #c72092, #6c14d0);
}

.login_form .right .loging_icon{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.5rem;
}

.login_form .right .loging_icon a{
    width: 3rem;
    height: 3rem;
    margin: 0 .2rem;
    border-radius: 50%;
    background: #f3f3f3;
    box-shadow: 0 0 .5rem rgba(0, 0, 0, 0.6);
}

.login_form .right .loging_icon img{
    width: 2rem;
    margin: .5rem .5rem;

}

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

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

footer .footer_main .tag{
    margin: 1rem 0;
}

footer .footer_main .tag .center{
    text-align: center;
}

footer .footer_main .tag h1{
    font-size: 2.5rem;
    margin: 2.5rem 0;
    color: #1c0080;
}

footer .footer_main .tag a{
    display: block;
    color: black;
    text-decoration: none;
    margin: .9rem 0;
    font-size: 1.6rem;
}

footer .footer_main .tag a i{
    padding: 0 .1rem;
    font-size: 1.6rem;
    transition: 0.3s;
}

footer .footer_main .tag a i:hover{
    color: #c72092;
}

footer .footer_main .tag .social_link{
    display: flex;
}

footer .footer_main .tag .social_link a{
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    color: black;
    box-shadow: 0 0 2rem 1rem rgba(0, 0, 0, 0.2);
    position: relative;
    margin: 0 .5rem;
    z-index: 10;
    overflow: hidden;
}

footer .footer_main .tag .social_link a .fa-brands{
    font-size: 1.5rem;
    line-height: 3rem;
    z-index: 10;
    position: relative;
    transition: 0.5s;
}

footer .footer_main .tag .social_link a:hover i{
    color: white;
}

footer .footer_main .tag .social_link a::after{
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: -9rem;
    background: linear-gradient(-45deg, #c72092, #6c14d0);
    position: absolute;
    z-index: -10;
    transition: 0.5s;
}

footer .footer_main .tag .social_link a:hover::after{
    left: 0;
}

footer .footer_main .tag .search_bar{
    width: 23rem;
    height: 3rem;
    background:rgb(202, 202, 202);
    border-radius: 2.5rem;
}

footer .footer_main .tag .search_bar input{
    width: 20rem;
    padding: .2rem 0;
    position: relative;
    top: 17%;
    left: 6%;
    border: none;
    background: none;
    outline: none;
    font-size: 1.3rem;
}

footer .footer_main .tag .search_bar button{
    padding: .7rem 1.5rem;
    background: linear-gradient(to right, #c72092, #6c14d0);
    border: none;
    margin-top: 1.5rem;
    border-radius: 2.5rem;
    color: white;
    cursor: pointer;
}