@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Satisfy&display=swap");
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  /* text-transform: capitalize; */
  transition: 0.2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 8.5rem;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background: #fff;
}
html::-webkit-scrollbar-thumb {
  background: #27ae60;
  border-radius: 5rem;
}

section {
  padding: 2rem 9%;
}

.heading {
  text-align: center;
  padding-bottom: 2rem;
}
.heading span {
  font-family: "Satisfy", cursive;
  font-size: 3rem;
  color: #27ae60;
}
.heading h3 {
  font-size: 3rem;
  color: #130f40;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 1.8rem;
  font-size: 1.7rem;
  cursor: pointer;
  color: #fff;
  background: #27ae60;
  border-radius: 0.5rem;
}
.btn:hover {
  background: #130f40;
}

.btn2 {
  display: inline-block;
  margin-bottom: 1.5rem;
  margin-left: 92%;
  padding: 0.7rem 1.6rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
  background: #27ae60;
  border-radius: 0.5rem;
}
.btn2:hover {
  background: #130f40;
}

.btn3 {
  display: inline-block;
  margin-bottom: 1.5rem;
  margin-left: 90%;
  padding: 0.7rem 1.6rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
  background: #27ae60;
  border-radius: 0.5rem;
}
.btn3:hover {
  background: #130f40;
}

/* HEADER SECTION */ 
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #F5F5F9;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 9%;
}
.header .logo {
  font-size: 2.5rem;
  font-weight: bolder;
  color: #130f40;
}
.header .logo i {
  padding-right: 0.5rem;
  color: #27ae60;
}
.header .navbar a {
  font-size: 1.7rem;
  margin: 0 1rem;
  color: #666;
}
.header .navbar a:hover {
  color: #27ae60;
}
.close-cart{
  text-align: right;
  cursor: pointer;
  font-size: 4rem
}
.user{
  text-transform: capitalize;
  padding: 1rem 1.5rem;
  font-weight: bold;

}
.profile-container{
  min-height: calc(100vh - 300px);
}
.logout-btn{
  margin-top: 2rem;
}
.userInfo{
  margin: 2rem auto;
  width: max-content;
  font-size: 1.8rem;
}
.profile-btns{
  display: flex; 
  gap: 2rem;
}
.err{
  color: red;
  background-color:white;
  margin-top: 2rem;
  font-size: 1.4rem;
  font-weight: bold;
}
.del-btn{
  background-color: red;
}
.username{
  text-transform: capitalize;
}
.profile-avatar{
  padding: 1rem 3.5rem;
  width: max-content;
  margin: 0 auto;
  border-radius: 100%;
  font-size: 5rem;
  background-color: #25d366;
  color: #130f40;
  text-align: center;
  font-weight: bold;
  text-transform: capitalize;
}

.header .icons a {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  font-size: 2rem;
  background: #FCFCFC;
  color: #130f40;
  border-radius: 0.5rem;
  margin-left: 0.3rem;
  cursor: pointer;
  text-align: center;
}
.header .icons a:hover {
  color: #fff;
  background: #27ae60;
}

#menu-btn {
  display: none;
}
.checkout-total{
  width: max-content;
  margin: 0 auto;
}
.text{
  font-size: 1.5rem;
}
.text-right{
  text-align: right;
  font-size: 2rem;
  margin: 2rem 0;
  width: 100%;
color: #25d366;
  padding: 1.5rem;
}
@keyframes fadeUp {
  0% {
    transform: translateY(5rem);
    opacity: 0;
  }
}

/* CART PART */
.shopping-cart-container {

  min-height: calc(100vh - 8.5rem);
  background: #fff;
  overflow-y: scroll;
  padding-bottom: 8rem;
}
.shopping-cart-container.active {
  display: block;
}
.shopping-cart-container::-webkit-scrollbar {
  width: 1rem;
}
.shopping-cart-container::-webkit-scrollbar-track {
  background: #fff;
}
.shopping-cart-container::-webkit-scrollbar-thumb {
  background: #130f40;
  border-radius: 5rem;
}
.shopping-cart-container .title {
  font-size: 2.5rem;
  padding: 1rem;
  color: #130f40;
  border-bottom: 1rem solid rgba(0, 0, 0, 0.2);
  text-align: center;
}
.shopping-cart-container .products-container {
  border: 1rem solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  animation: fadeUp 0.4s linear;
}
.shopping-cart-container .products-container .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
  padding: 1.5rem;
}
.shopping-cart-container .products-container .box-container .box {
  border-radius: 0.5rem;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  position: relative;
}
.shopping-cart-container .products-container .box-container .box .fa-times {
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
  color: #130f40;
}
.shopping-cart-container .products-container .box-container .box .fa-times:hover {
  color: #27ae60;
}
.shopping-cart-container .products-container .box-container .box img {
  height: 8rem;
}
.shopping-cart-container .products-container .box-container .box .content h3 {
  font-size: 2rem;
  color: #130f40;
}
.shopping-cart-container .products-container .box-container .box .content span {
  font-size: 1.5rem;
  color: #666;
}
.shopping-cart-container .products-container .box-container .box .content span.price {
  color: #27ae60;
  font-size: 1.7rem;
}
.shopping-cart-container .products-container .box-container .box .content input {
  width: 8rem;
  padding: 0.1rem 1.2rem;
  font-size: 1.5rem;
  color: #130f40;
  margin: 0.7rem 0;
}
.empty-cart{
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}
.no-display{
  display: none;
}
.shopping-cart-container .cart-total {
  margin-top: 2rem;
  border: 1rem solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  animation: fadeUp 0.4s linear 0.4s backwards;
}
.shopping-cart-container .cart-total .box {
  padding: 1.5rem;
}
.shopping-cart-container .cart-total .box h3 {
  color: #130f40;
  font-size: 2rem;
  padding-bottom: 0.7rem;
}
.shopping-cart-container .cart-total .box h3 span {
  color: #27ae60;
}

.home {
  display: flex;
  align-items: center;
  flex-wrap: wrap-reverse;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.home .content {
  flex: 1 1 41rem;
}
.home .content span {
  font-size: 2rem;
  color: #27ae60;
}
.home .content h3 {
  font-size: 4rem;
  color: #130f40;
  padding-top: 1rem;
}
.home .content p {
  font-size: 1.4rem;
  color: #666;
  line-height: 2;
  padding: 1rem 0;
}
.home .image {
  flex: 1 1 41rem;
  margin: 2rem 0;
  pointer-events: none;
}
.home .image .home-img {
  width: 100%;
  margin-top: 5rem;
}
.home .home-parallax-img {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 10vw;
}
.home .home-beaute-img {
  position: absolute;
  top: 1rem;
  right: 65rem;
  width: 10vw;
}

/* ABOUT SECTION */

.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  background: #f7f7f7;
}
.about .image {
  flex: 1 1 40rem;
}
.about .image img {
  width: 100%;
}
.about .content {
  flex: 1 1 40rem;
}
.about .content span {
  font-family: "Satisfy", cursive;
  font-size: 3rem;
  color: #27ae60;
}
.about .content .title, .title {
  font-size: 3rem;
  padding-top: 0.5rem;
  color: #130f40;
}
.title {
  text-align: center;
  margin: 2rem 0;
}
.about .content p {
  padding: 1rem 0;
  line-height: 2;
  font-size: 1.4rem;
  color: #666;
}
.about .content .icons-container {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.about .content .icons-container .icons {
  flex: 1 1 20rem;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}
.about .content .icons-container .icons h3 {
  font-size: 1.7rem;
  color: #130f40;
}

/* MENU SECTION */
.popular .box-container, .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}
.popular .box-container .box, .box-container .box {
  border-radius: 0.5rem;
  position: relative;
  background: #f7f7f7;
  padding: 2rem;
  text-align: center;
}
.popular .box-container .box .fa-heart, .box-container .box .fa-heart {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: #666;
  cursor: pointer;
}
.popular .box-container .box .fa-heart:hover, .box-container .box .fa-heart:hover {
  color: #27ae60;
}
.popular .box-container .box .image , .box-container .box .imgae{
  margin: 1rem 0;
}
.popular .box-container .box .image img, .box-container .box .imgae img {
  height: 15rem;
}
.popular .box-container .box .content h3, .box-container .box .content h3 {
  font-size: 1.8rem;
  color: #130f40;
}
.popular .box-container .box .content .stars, .box-container .box .content .stars {
  padding: 1rem 0;
  font-size: 1.7rem;
}
.popular .box-container .box .content .stars i,.box-container .box .content .stars i  {
  color: gold;
}
.popular .box-container .box .content .stars span, .box-container .box .content .stars span {
  color: #666;
}
.popular .box-container .box .content .price, .box-container .box .content .price {
  font-size: 2rem;
  color: #130f40;
}
.popular .box-container .box .content .price span, .box-container .box .content .price span {
  font-size: 1.5rem;
  color: #666;
  text-decoration: line-through;
}

/* BANNER */
.banner .row-banner {
  background: url(../images/image8.jpg) no-repeat;
  height: 45rem;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 1rem;
}
.banner .row-banner .content {
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
}
.banner .row-banner .content span {
  font-family: "Satisfy", cursive;
  font-size: 4rem;
  color: #27ae60;
  color: #fff;
}
.banner .row-banner .content h3 {
  font-size: 6rem;
  color: red;
  text-transform: uppercase;
}
.banner .row-banner .content p {
  font-size: 2rem;
  padding-bottom: 1rem;
}
.banner .grid-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}
.banner .grid-banner .grid {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 45rem;
}
.banner .grid-banner .grid:hover img {
  transform: scale(1.2);
}
.banner .grid-banner .grid img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .grid-banner .grid .content {
  position: absolute;
  top: 2rem;
  padding: 0 2rem;
}
.banner .grid-banner .grid .content.center {
  text-align: center;
  width: 100%;
}
.banner .grid-banner .grid .content.center span {
  color: #fff;
}
.banner .grid-banner .grid .content.center h3 {
  color: #130f40;
}
.banner .grid-banner .grid .content span {
  font-size: 2.5rem;
  color: #fff;
}
.banner .grid-banner .grid .content h3 {
  font-size: 3rem;
  color: black;
  padding-top: 0.5rem;
}

/* BOOK SERVICES */
.order .icons-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.order .icons-container .icons {
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  background: #f7f7f7;
}
.order .icons-container .icons img {
  height: 10rem;
}
.order .icons-container .icons h3 {
  font-size: 2rem;
  color: #130f40;
  margin-top: 0.5rem;
}
.order form {
  background: #f7f7f7;
  padding: 2rem;
  border-radius: 5rem;
}
.order form .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.order form .flex .inputBox {
  width: 49%;
  padding: 2rem 0;
}
.order form .flex span {
  font-size: 1.7rem;
  color: #666;
}
.order form .flex input, .order form .flex textarea, .order form .flex select {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem 1.2rem;
  width: 100%;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  text-transform: none;
  color: #130f40;
}
.order form .flex textarea {
  height: 20rem;
  resize: none;
}
.order form .flex .map {
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
}

/* FOOTER SECTION */
.footer {
  background: #f7f7f7;
}
.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}
.footer .box-container .box h3 {
  font-size: 2.2rem;
  color: #130f40;
  padding: 1rem 0;
}
.footer .box-container .box p {
  font-size: 1.4rem;
  color: #666;
  padding: 1rem 0;
}
.footer .box-container .box a {
  display: block;
  font-size: 1.4rem;
  color: #666;
  padding: 1rem 0;
}
.footer .box-container .box a:hover {
  color: #27ae60;
}
.footer .box-container .box a:hover i {
  padding-right: 2rem;
}
.footer .box-container .box a i {
  padding-right: 0.5rem;
  color: #27ae60;
}
.footer .bottom {
  padding-top: 1rem;
  text-align: center;
}
.footer .bottom .share {
  margin: 1.5rem 0;
}
.footer .bottom .share a {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  font-size: 2rem;
  border-radius: 0.5rem;
  margin: 0 0.3rem;
  color: #fff;
  background: #27ae60;
}
.footer .bottom .share a:hover {
  background: #130f40;
}
.footer .bottom .credit {
  font-size: 2rem;
  color: #666;
  padding: 1rem;
}
.footer .bottom .credit span {
  color: #27ae60;
}

/* WHATSAPP */

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 60px;
  right: 15px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.float:hover {
  color: #27ae60;
}

.my-float {
  margin-top: 16px;
}

.image_responsive {
  width: 100%;
  height: auto;
}


/* MEDIA QUERIES */
@media (max-width: 1300px) {
  .home .home-parallax-img {
    display: none;
  }
  .home .home-beaute-img {
    display: none;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  .header {
    padding: 2rem;
  }
  section {
    padding: 2rem;
  }
  .home .home-parallax-img {
    display: none;
  }
  .home .home-beaute-img {
    display: none;
  }
}
@media (max-width: 768px) {
  #menu-btn {
    display: inline-block;
  }
  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1rem solid rgba(0, 0, 0, 0.2);
    border-bottom: 1rem solid rgba(0, 0, 0, 0.2);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  .header .navbar.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  .header .navbar a {
    font-size: 2rem;
    margin: 2rem;
    display: block;
  }
  .home .home-parallax-img {
    display: none;
  }
  .home .home-beaute-img {
    display: none;
  }
  .order form .flex .inputBox {
    width: 100%;
  }
  .btn2, .btn3 {
    margin-left: 85%;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .shopping-cart-container .cart-total .box {
    text-align: center;
  }
  .shopping-cart-container .cart-total .box .btn {
    width: 100%;
  }
  .home .content h3 {
    font-size: 3rem;
  }
  .home .content h3 {
    font-size: 1.5rem;
  }
  .home .home-parallax-img {
    display: none;
  }
  .home .home-beaute-img {
    display: none;
  }
  .btn2, .btn3 {
    margin-left: 85%;
  }
}/*# sourceMappingURL=style.css.map */