/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Spartan:wght@400;500;600;700&display=swap');


@font-face {
  font-family: giftfont;
  src: url(/assets/fonts/Lucy\ Said\ Ok\ Personal\ Use.ttf);
}

@font-face {
  font-family: montserrat;
  src: url(/assets/fonts/Montserrat-Bold.ttf);
}

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 4rem;

  /*========== Colors ==========*/
  /* Color mode HSL(hue, saturation, lightness) */
  --first-color: hsl(180, 4%, 40%);
  --first-color-alt: hsl(129, 44%, 94%);
  --second-color: hsl(34, 94%, 87%);
  --title-color: hsl(0, 0%, 13%);
  --text-color: hsl(154, 13%, 32%);
  --text-color-light: hsl(60, 1%, 56%);
  --body-color: hsl(0, 0%, 100%);
  --container-color: hsl(0, 0%, 93%);
  --border-color: hsl(129, 36%, 85%);
  --border-color-alt: hsl(113, 15%, 90%);

  /*========== Font and typography ==========*/
  /* .5rem = 8px | 1rem = 16px ... */
  --body-font: 'Lato', sans-serif;
  --second-font: 'Spartan', sans-serif;
  --big-font-size: 3.5rem;
  --h1-font-size: 2.75rem;
  --h2-font-size: 2rem;
  --h3-font-size: 1.75rem;
  --h4-font-size: 1.375rem;
  --large-font-size: 1.125rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;
  --tiny-font-size: 0.6875rem;

  /*========== Font weight ==========*/
  --weight-400: 400;
  --weight-500: 500;
  --weight-600: 600;
  --weight-700: 700;

  /*========== Transition ==========*/
  --transition: cubic-bezier(0, 0, 0.05, 1);
}

/* Responsive typography */
@media screen and (max-width: 1200px) {
  :root {
    --big-font-size: 2.25rem;
    --h1-font-size: 2rem;
    --h2-font-size: 1.375rem;
    --h3-font-size: 1.25rem;
    --h4-font-size: 1.125rem;
    --large-font-size: 1rem;
    --normal-font-size: 0.9375rem;
    --small-font-size: 0.8125rem;
    --smaller-font-size: 00.6875rem;
    --tiny-font-size: 0.625rem;
  }
}

/*=============== BASE ===============*/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 12%;
  -webkit-tap-highlight-color: transparent;
}

input,
textarea,
body {
  color: var(--text-color);
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: var(--weight-400)
}

body {
  background-color: var(--body-color);
}

h1,h2,h3,h4 {
  font-family: var(--second-font);
  color: var(--title-color);
  font-weight: var(--weight-600);
}

ul {
  list-style: none;
}

a{
  text-decoration: none;
}

p{
  line-height: 1.5rem;
}

img {
  max-width: 100%;
}

button,
textarea,
input {
  background-color: transparent;
  border: none;
  outline:none;
}
/*=============== REUSABLE CSS CLASSES ===============*/
.container{
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 0.75rem;
}

.grid{
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 2rem;
}

.section--lg{
  padding-block: 4rem;
}

.section--title{
  font-size: var(--h4-font-size);
  margin-bottom: 1.5rem;
}

.section--title span{
 color: var(--first-color);
}

.form--input{
  border: 2px solid black;
  padding-inline: 1rem;
  height: 45px;
  border-radius: .25rem;
  font-size: var(--small-font-size);
  background-color: white;

}

.flex {
  display: flex;
  align-items: center;
  column-gap: .5rem;
}

.new--price {
  color: var(--first-color);
  font-weight: var(--weight-600);
}

.old--price {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  text-decoration: line-through;
}

.normal {
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  color: #000;
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
}
/*=============== HEADER & NAV ===============*/


#header{
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
  background-color: #ffffff;
  
}


#header .logo{
  width: 250px;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

#navbar li {
  list-style: none;
  padding: 0 20px;
}

#navbar li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a:active{
  color: #465b52;
}

.navbar li a.active::after,
.navbar li a:hover::after{
  content: '';
  width: 30%;
  height: 2px;
  background: #088178;
  position: absolute;
}
/*=============== HOME ===============*/
.home--container {
  grid-template-columns: 5fr 7fr;
  align-items: center;
  height: 50vh;
}


.home--subtitle,
.home--description{
  font-size: var(--large-font-size);
}

.home--subtitle {
  font-family: var(--second-color);
  font-weight: var(--weight-600);
  margin-bottom: 1rem;
  display: block;
}

.home--title{
  font-size: 37px;
  font-weight: 200;
  line-height: 1.4;
  width: 100%;
  font-family: montserrat;

}

.home--title span{
  color: rgb(223, 26, 92);
  font-size: 135px;
  font-family: giftfont;
  font-weight: 200;
  margin-left: -25px;
 
}

.home--description {
   margin-block: .5rem 2rem;
}

.home--img {
  justify-self: flex-end;
}

.search--btn{
  position: absolute;
  top: 24%;
  right: 1.25rem;
  cursor: pointer;
  
}

/*=============== BUTTONS ===============*/
.btn {
  display: inline-block;
  background-color: var(--first-color);
  border: 2px solid var(--first-color);
  color: var(--body-color);
  padding-inline: 1.75rem;
  height: 49px;
  line-height: 49px;
  border-radius: .25rem;
  font-family: var(--second-font);
  font-size: var(--small-font-size);
  font-weight: var(--weight-700);
  transition: all 0.4s var(--transition);
}

.whatsappp{
  position: relative;
  width: 25px;
  color: #ffffff;
  margin-right: 10px;
  top: 8px;
}

.iconn{
  position: absolute;
  font-size: 32px;
  color: #ffffff;
  left: 12px;
  top: 9.5px;
}

.iconn:hover{
  color: #25d366;
}

.btn123 {
  color: #ffffff;
  background-color: #075E54;
  border: 2px solid #075E54;
  font-size: 16px;
}

.btn1234 {
  position: absolute;
  color: #ffffff;
  background-color: #25d366;
  border: 2px solid #25d366;
  font-size: 13px;
  bottom: 1.8rem;
  right: 1.25rem;
  width: 10px;
  border-radius: 50rem;
  line-height: 49px;
  font-weight: var(--weight-700);
  transition: all 0.4s var(--transition);
  padding-inline: 1.60rem;
  display: none;
  
}


.btn12345 {
  position: absolute;
  color: #ffffff;
  background-color: #25d366;
  border: 2px solid #25d366;
  font-size: 13px;
  bottom: 1.8rem;
  right: .6rem;
  width: 10px;
  border-radius: 50rem;
  line-height: 49px;
  font-weight: var(--weight-700);
  transition: all 0.4s var(--transition);
  padding-inline: 1.60rem;
  display: none;
}

.btn:hover {
  background-color: transparent;
  color: #075E54;
 
}
.btn1234:hover {
  color: #000000;
  cursor: pointer;
}

.btn12345:hover {
  cursor: pointer;
  color: #25d366;
}

.btn--md {
  font-family: var(--body-font);
  height: 45px;
  line-height: 42px;
}

.btn--md,
.btn--sm {
  font-family: var(--body-font);
}

.btn--sm{
  height: 55px;

}
/*=============== CATEGORIES ===============*/
.categories {
  overflow: hidden;
}

.categories1 {
  overflow: hidden;
}

.category--item {
  text-align: center;
  border: 1px solid var(--border-color);
  padding: 0.625rem 0.625rem 1.25rem;
  border-radius: 1.25rem;
}

.category--item1 {
  text-align: left;
  border: 1px solid var(--border-color);
  padding: 0.625rem 0.625rem 1.25rem;
  border-radius: 1.25rem;
}

.home{
  background-image: url(/assets/img/background.jpg); 
  background-size: cover;
  background-repeat: no-repeat;
}

.category--img {
  border-radius: 0.75rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-color);
}

.category--title {
  color: var(--text-color);
  font-size: var(--small-font-size);
  line-height: 20px;
}

.category--title1 {
  color: var(--text-color);
  font-size: 14px;
  text-align: center;
  line-height: 20px;

}
/* Swiper class */
.swiper {
  overflow: initial;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: '';
}

.swiper-pagination-bullet{
  background-color: #000000;
  opacity: 1;
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active{
  background-color: #000000;
}

.swiper-pagination{
  margin-bottom: -35px;
}
/*=============== PRODUCTS ===============*/
.tab--btns {
  display: flex;
  column-gap: 0.75rem;
}

.tab--btn{
  background-color: var(--container-color);
  color: var(--title-color);
  padding: 1rem 1.25rem 0.875rem;
  border-radius: .25rem;
  font-family: var(--second-font);
  font-size: var(--small-font-size);
  font-weight: var(--weight-600);
  cursor: pointer;
}

.products--container{
  grid-template-columns: repeat(4, 1fr);
}

.product--item{
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  transition: all .2s var(--transition);
}

.product--banner {
  padding: .625rem .75rem 0.75rem;
}

.product--banner,
.product--images {
  position: relative;
}

.product--images {
  display: block;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid var(--border-color)
}

.product--img {
  vertical-align: middle;
  transition: all 1.5s var(--transition);
}

.product--item:hover .product--img {
  transform: scale(1.1);
}

.product--img.hover {
  position: absolute;
  top: 0;
  left: 0;
}

.product--actions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  column-gap: 0.5rem;
  transition: all .2s var(--transition);
}

.action--btn {
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--first-color-alt);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  font-size: var(--small-font-size);
  position: relative;
}

.action--btn::before,
.action--btn::after {
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
   transition: all .3s cubic-bezier(0.071, 1.7, 0.77, 1.24);
   border:#000 solid 1px;
}

.action--btn::before{
  content: '';
  top: -2px;
  border: .5rem solid transparent;
  border-top-color: rgb(0, 0, 0);
  
}

.action--btn::after{
  content: attr(aria-label);
  bottom: 100%;
  background-color: white;
  color: #000;
  font-size: var(--tiny-font-size);
  white-space: nowrap;
  padding-inline: 0.625rem;
  border-radius: 0.25rem;
  line-height: 2.58;
}

.product--badge {
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  background-color: var(--first-color);
  color: var(--body-color);
  padding: 0.25rem 0.625rem;
  border-radius: 2.5rem;
  font-size: var(--tiny-font-size);
}

.product--badge.light-pink{
  background-color: hsl(341, 100%, 73%);
}

.product--badge.light-green{
  background-color: #f60305;
}

.product--content {
  padding:   1.25rem 1.125rem;
  position: relative;
  text-align: center;
}

.product--category {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  
  
}

.product--category1 {
  color: var(--text-color-light);
  font-size: var(--smaller-font-size);
}
.product--title {
  font-size: 14px;
  margin-block: 0.75rem 0.5rem;
  font-weight: bold;

}

.product--rating{
  color: hsl(42, 100%, 50%);
  font-size: var(--smaller-font-size);
  margin-bottom: 0.75rem;
}

.product--price .new--price {
  font-size: var(--large-font-size);
}

.cart--btn {
  position: absolute;
  bottom: 1.6rem;
  right: 1.25rem;
}

.cart--btn1 {
  position: absolute;
  bottom: 1.6rem;
  right: 1.25rem;

}
/* Active Tab */
.tab--btn.active-tab {
  color: var(--first-color);
  background-color: var(--second-color);
}

.tab--item:not(.active-tab){
  display: none;
}

/* Product Hover */
.product--img.hover,
.product--actions,
.action--btn::before,
.action--btn::after,
.product--item:hover .product--img.default {
  opacity: 0;
}

.product--item:hover .product--img.hover{
  opacity: 1;
}

.product--item:hover{
  box-shadow: 0 0 10px hsla(0, 0%, 0%, 0.1);
}

.product--item:hover .product--img.hover,
.product--item:hover .product--actions,
.action--btn:hover::before,
.action--btn:hover::after
{
  opacity: 1;
}

.action--btn:hover::before,
.action--btn:hover::after {
  transform: translateX(-50%) translate(-0.5rem);
}

.action--btn:hover {
  background-color: var(--first-color);
  border-color: var(--first-color);
  color: var(--body-color);
}
/*=============== DEALS ===============*/

/*=============== NEW ARRIVALS ===============*/

/*=============== SHOWCASE ===============*/

/*=============== NEWSLETTER ===============*/

/*=============== FOOTER ===============*/

.footer--container{
  grid-template-columns: 4.5fr repeat(2, 2fr) 3.5fr;
  padding-block: 2.5rem;
  
}

.footer--logo-img{
  width: 120px;
  margin-bottom: 25px;
}

.footer-subtitle {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  margin-block: 1.25rem 0.625rem;
}

.footer--description {
  color: rgb(255, 255, 255);

}

.footer--description span{
  font-weight: var(--weight-600);

}

.footer--social .footer--subtitle{
  margin-top: 1.875rem;
}

.footer--social-links{
  column-gap: 0.25rem;
  margin-left: -10px;
}

.footer--social-icon {
  width: 40px;
}


.header--search {
  width: 50%;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  margin-top: 35px;
  

}
.header--search .form--input{
  width: 100%;
  padding: 25px;
 
}
.header--search1 {
  width: 400px;
  position: absolute;
  margin-top: 70px;
  align-items: center;
 
 
}
.header--search1 .form--input{
  width: 100%;
  
 
}

.icon {
  font-size: 25px;
  color: #000000;
}

.icon a{
  font-size: 25px;
  color: #000000;
}

.footerr{
  color: rgb(255, 255, 255);
  font-family: var(--second-font);
  font-size: 13px;
  
}

.footer--title {
  font-size: var(--large-font-size);
  margin-block: 1rem 1.25rem;
}

.footer--link {
  color: var(--title-color);
  font-size: var(var(--small-font-size));
  margin-bottom: 1rem;
  display: block;
  transition: all 0.3s var(--transition);
}

.footer--link:hover{
  color: var(--first-color);
  margin-left: 0.25rem
}

.footer--bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 1.25rem;
  border-top: 1px solid var(--border-color-alt);
}

.copyright {
  color: white;
  font-size: var(--small-font-size);
  font-weight: 600;
  
}
/*=============== BREADCRUMBS ===============*/
.breadcrumb {
  background-color: var(--container-color);
  padding-block: 1.5rem;
}

.breadcrumb--list {
  column-gap: .75rem
}


.breadcrumb--link {
  color: #000;
  font-size: 15px;
  font-weight: 600;
 
  
}
/*=============== SHOP ===============*/
.total--products{
  margin-bottom: 2.5rem;
}

.total--products span {
  color: var(--first-color);
  font-weight: var(--weight-600);
}

.pagination {
  display: flex;
  column-gap: 0.625rem;
  margin-top: 2.75rem;
}

.pagination--link {
  display: inline-block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border-radius: 0.25rem;
  color: var(--text-color);
  font-size: var(--small-font-size);
  font-weight: var(--weight-700);
  transition: all 0.15s var(--transition);
}

.pagination--link.active,
.pagination--link:hover {
  background-color: var(--first-color);
  color: var(--body-color);
}
  
.pagination--link.icon {
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}
/*=============== DETAILS ===============*/
.details--container {
  grid-template-columns: 5.5fr 6.5fr;
}

.details--img{
  margin-bottom: 0.5rem;
  border: 1px solid var(--border-color);
}

.details--small-images {
  grid-template-columns: repeat(4, 1fr);
  column-gap: 0.625rem;
}

.details--small-img {
  cursor: pointer;
  border: 1px solid var(--border-color);
}

.details--title {
  font-size: var(--h2-font-size);
  margin-top: 30px;
  line-height: 45px;

}

.details--brand{
  font-size: 15px;
  margin-block: 2rem;
  font-weight: 500;
  color: #0a0a0a;
 
  
}

.details--brand span {
  color: black;
  font-weight: 600;
  font-size: 18px;
 
}

.details--price {
  border-top: 1px solid var(--border-color-alt);
  border-bottom: 1px solid var(--border-color-alt);
  padding-block: 1rem;
  column-gap: 1rem;
}

.details--price .new--price {
  font-size: var(--h1-font-size);
}

.details--price .old--price {
  font-size: var(--normal-font-size);
  font-weight: var(--weight-500);
}

.short--description {
  margin-block: 1rem 2rem;
  text-align: justify;
  font-size: 15px;
  margin-block: 1rem;
  font-weight: 500;
  color: #242424;
}

.short--description span {
  color: black;
  font-weight: 600;
  font-size: 18px;
  
 
}

.list--item,
.meta--list{
  font-size: var(--small-font-size);
  margin-bottom: .75rem;
}

.details--color,
.details--size{
  column-gap: 0.75rem;
}

.details--color{
  margin-block: 2rem 1.5rem;
}

.details--size{
  margin-bottom: 2.5rem;
}

.details--color-title,
.details--size-title {
  font-size: var(--small-font-size);
  font-weight: var(--weight-600);
}

.color--list,
.size--list {
  display: flex;
  column-gap: 0.25rem;
}

.color--link {
  widows: 26px;
  height: 26px;
  border-radius: 50%;
  display: block;
}

.size--link {
  border: 1px solid var(--border-color-alt);
  padding: 0.375rem 0.75rem 0.5rem;
  color: var(--text-color);
  font-size: var(--small-font-size);
}

.size--active {
  background-color: var(--first-color);
  color: var(--body-color);
}

.details--action {
  display: flex;
  column-gap: 0.375rem;
  margin-bottom: 3.25rem;
  margin-top: 40px;
}


.quantity,
.details--action-btn {
  border:1px solid var(--border-color-alt);
  font-size: var(--small-font-size);
}

.quantity {
  max-width: 80px;
  padding-block: 0.5rem;
  padding-inline: 1rem 0.5rem;
  border-radius: .25rem;
}

.details--action-btn {
  color: var(--text-color);
  line-height: 40px;
  padding-inline: 0.75rem;
}

.details--meta {
  border-top: 1px solid var(--border-color-alt);
  padding-top: 1rem;
}

/*=============== DETAILS INFO & REVIEWS ===============*/

/*=============== CART ===============*/

/*=============== CART OTHERS ===============*/

/*=============== WISHLIST ===============*/

/*=============== CHECKOUT ===============*/

/*=============== COMPARE ===============*/

/*=============== LOGIN & REGISTER ===============*/

/*=============== ACCOUNTS ===============*/

/*=============== BREAKPOINTS ===============*/
/* For large devices */

@media screen and (max-width: 2000px) {
  .categories1 {
    display: none;
  }
  .topnav {
    display: none;
   
  }
  .searchicoon1{
    font-size: 25px;
    display: none;
  }
  .search-box{
    display: none;
  }
  .header--search1{
    display: none;
  }
}
@media screen and (max-width: 1400px) {
  .container {
    max-width: 1140px;
 }
 .categories1 {
  display: none;
}
 .products--container,
 .showcase--container{
  grid-template-columns: repeat(3, 1fr);
 }
 .home--title span{
  font-size: 110px;
 }
 .header--search1{
  display: none;
}
}


@media screen and (max-width: 1200px) {
   .container {
    max-width: 960px;
   }
  
   .home--container{
    grid-template-columns: 5.5fr 6.5fr;
   }

   .swiper-button-next,
   .swiper-button-prev {
  
    width: 35px;
    height: 35px;
   }

   .swiper-button-prev{
    right: 0px;
   }

  

   .details--price{
    padding-block: 0.75rem;
   }

   .short--description {
    margin-bottom: 1.5rem;
   }

   .details--color{
    margin-block: 1.75rem 1.25rem;
   }

   .details--size{
    margin-bottom: 2.25rem;
   }

   .color--link {
    width: 22px;
    height: 22px;
   }

   .size--link {
    padding: 0.375rem 0.625rem;
   }

   .details--action {
    margin-bottom: 2.75rem;
   }

   
   .home--title{
    font-size: 23px;
  }
  .topnav {
    display: none;
  }

  .home--container{
    height: 30vh;
   }
  
}

/* For medium devices */
@media screen and (max-width: 992px) {
  .container{
    max-width: 740px;
  }
 
  .home--container {
    grid-template-columns: 1fr;
  }

  .products--container,
  .showcase--container,
  .footer--container,
  .details--container {
    grid-template-columns: repeat(2, 1fr);
  }

  .home--img {
    justify-content: center;
  }
  .topnav {
    display: none;
   
  }
  #navbar li a{
    font-size: 16px;
    white-space: nowrap;
  }
  #navbar{
    padding-left: 60px;
  }
  .swiper-pagination{
    margin-bottom: -40px;
  }
 

  .home--container{
    height: 30vh;
   }

   .service25{
    text-align: center;
    padding: 10px 10px;
    border-radius: 5px;
    cursor: pointer;
    background: transparent;
  }
 
}

@media screen and (max-width: 768px) {
  .container{
    max-width: 540px;
  }
 
  .products--container,
  .showcase--container,
  .footer--container{
   
    grid-template-columns: 2;
  }
  .home--container{
    height: 30vh;
   }

   .details--container{
    grid-template-columns: 100%;
   }

   .home--title span {
    font-size: 115px;
  }

  .products{
    display: none;
   }

   .swiper-pagination{
    margin-bottom: -30px;
  }

   .categories1 {
    display: block;
  }
  .topnav {
    display: none;
   
  }
  .header--search {
    width: 100%;
  }

  .service25{
    padding: 10px 10px;
  }

  .search-box{
    display: flex;
  }

  .details--brand{   
    margin-block: 1rem;
  }

  .details--action{
    margin-top: 0px;
  }

  .color-op{
    width:15px;

  }
  .searchicoon1{
    color: #000000;
    font-size: 25px;
    display: inline-flex;
    position: absolute;
    margin-top: -50px;
    right: 20px;
  }
 
}

/* For small devices */
@media screen and (max-width: 576px) {
   .category--item{
    padding-bottom: 1rem;
    padding-bottom: 1rem;
   }
   .category--item1{
    padding-bottom: 1rem;
    padding-bottom: 1rem;
   }
   .category--img{
     margin-bottom: 1rem;
   }

   .home--container{
    height: 25vh;
   }

   .header--search {
    width: 100%;
    
  }

  .categ65{
    display: none;
  }
 
  
  #header .logo {
    
  }

  .details--title{
    line-height: 35px;
  }

  .row25 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 30px;
  }

   .home--title span{
    margin-left: 0px;    
   }

   .btn1234{
    display: block;


   }

   .swiper{
    padding: 40px;
   }

   .products{
    display: none;
   }

   .section--title{
    text-align: center;
    margin-bottom: -20px;
   }

   .categories1 {
    display: block;
    margin-top: -35px;
  }
  .topnav a{
    white-space: wrap;
   font-size: 14px;
   
   }

   .swiper-pagination{
    margin-bottom: 0px;
  }

  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top: 5%;
  }

  .grid{
    gap: 0.8rem;
  }

  .row25 {
   
    width: 100vw;
    position: relative;
    margin-left: -50vw;
    left: 50%;
    grid-gap: 30;
  }

  #header .logo {
 
  
  }
}

@media screen and (max-width: 350px) {
  .home--img{
    width: 100%;
   }

   .home--container{
    height: 20vh;
   }

   .topnav a{
    white-space: wrap;
    font-size: 10px;
   
   }
   .row25 {
   
    width: 100vw;
    position: relative;
    margin-left: -50vw;
    left: 50%;
    grid-gap: 30;
    
  }
  .row25 {
   
    width: 100vw;
    position: relative;
    margin-left: -50vw;
    left: 50%;
    grid-gap: 30;
  }
  .row25 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 30px;
  }
  }
  
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  
}

footer .col strong{
  font-weight: 500;
}

footer .logo {
  margin-bottom: 30px;
  width: 300px;
  margin-top: 80px;
}

footer h4 {
  font-size: 16px;
  padding-bottom: 20px;
  font-weight: 800;
}

footer p{
  font-size: 13px;
  margin: 0 0 8px 0;
  color: #000000;
}

footer a{
  font-size: 13px;
  color: #000000;
  text-decoration: none;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 23px;
  
}

footer .follow {
  margin-top: 20px;
}

footer .follow i {
  color:#000000;
  padding-right: 4px;
  cursor: pointer;
}

footer .install .row img {
  border: 1px solid #088178;
  border-radius: 6px;
}

footer .install img{
  margin: 10px 0 15px 0;
}

footer .follow i:hover,
footer a:hover{
  color: #535353;
}

footer .copyright{
  width: 100%;
  text-align: center;
}

#banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url(/assets/img/b2.jpg);
  width: 100%;
  height: 30vh;
  background-size: cover;
  background-position: center;
}

#banner h4 {
  color: #fff;
  font-size: 16px;
}

#banner h2 {
  color: #fff;
  font-size: 30px;
  padding: 10px 0;
}

#banner h2 span{
  color: red;
}

.footerr{
  padding: 40px 80px;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 0.75rem;
}

@media (max-width:799px) {
  #navbar{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 300px;
    background-color: #e3e6fc;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.01);
    padding: 80px 0 0 10px;
    transition: 0.3s;
  }

  #navbar.active {
    right: 0px;
  }

 
  #navbar li {
    margin-bottom: 25px;
  }

  .mobile{
    display: flex;
    align-items: center;

  }

  

  #mobile i{
    color: #1a1a1a;
    font-size: 24px;
    padding-left: 20px;
  }

  .close{
    display: initial;
    position: absolute;
    top: 30px;
    left: 30px;
    color: #222;
    font-size: 24px;
  }
  #header{
    align-items: center;
    justify-content: center;
    position:static;
   }
   .topnav {
    display: flex;
    overflow: hidden;
    background-color: #f1f1f1;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
  }

  .header--search {
    width: 100%;
    margin-top: 40px; 
    margin-bottom: -10px;
  }

  #header{
    display: block;
   
  }

  .header--search .form--input{
    padding-top: 0;
    padding-bottom: 0;
  }
  #header .logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    
  }
  .searchicoon1{
    color: #000000;
    
    display: inline-flex;
    position: absolute;
    margin-top: -55px;
    right: 20px;
    
   

  }
}

.mobile{
  display: none;
  align-items: center;
}

.close {
  display: none;
}



@media (max-width: 477px){
   #header{
    align-items: center;
    justify-content: center;
   }
   .home--title span{
    font-size: 85px;
   }

   .topnav a{
    font-size: px;
   }

   .breadcrumb--list li:nth-child(3){
   
    white-space: nowrap;
  }
  #header .logo {
   
  }
  
}




.topnav {
 
  overflow: hidden;
  background-color: #000000;
  align-items: center;
  justify-content: center;

 
}

.topnav a {
  float: left;
  display: block;
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.topnav a:hover {
  color:rgb(116, 116, 116);
}

.topnav a.active {
  color:rgb(116, 116, 116);
}

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

.my-float{
	margin-top:11px;
  font-size: 38px;
}

.float1
{
  padding: 0px 0px;
  line-height: 1.68;
  font-size: 15px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 15px;
  margin: 0 70px;
  order: 1;
  width: 110px;
  margin-top:-35px;
  white-space: nowrap;
  height: 30px;
  padding-top: 2px;
  font-weight: 600;
}

.float1:hover,
.float:hover{
  box-shadow: 0px 0px 11px rgba(0,0,0,.5);
}

/* Slideshow container */
.slideshow-container {
  width: 100%;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */


/* Fading animation */
.fade {
  animation: slider 26s infinite;
}

@keyframes slider {
  0%, 25%, 100%{left: 0}
  
  30%, 55%{left: -100%}
  
  60%, 85%{left: -200%}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

/* Services*/

.container25 {
  width: 100%;
  background-color: #000000;
  padding: 0 14%;
}



.row25 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-gap: 30px;
}

.service25{
  text-align: center;
  padding: 25px 10px;
  border-radius: 5px;
  background: transparent;
  white-space: nowrap;
}

.service25 img{
  width: 80px;
  margin-bottom: 10px;
}

.service25 h2{
  font-size: 18px;
  margin-bottom: 8px;
  color: #ffffff;
}

.service25 p{
  color: #ffffff;
  font-size: 13px;
  margin-bottom: 0.8rem;
}

@media screen and (max-width: 600px){
  .row25{
    grid-template-columns: repeat(2,1fr);
  } 
}

@media screen and (max-width: 500px) {
  .row25{
    grid-template-columns: repeat(2,1fr);
  }
  
   .service25{
    padding: 10px 10px ;
    
    
   }

  .service25 img{
    width: 70px;
    margin-bottom: 10px;
  }
  
  .service25 h2{
    font-size: 15px;
    margin-bottom: 8px;
    color: #ffffff;
  }
  
  .service25 p{
    color: #ffffff;
    font-size: 13px;
    margin-bottom: 0.8rem;
  }
}

@media screen and (max-width: 450px) {
  .row25{
    grid-template-columns: repeat(2,1fr);
    grid-gap: -0px;
   
  }
  .service25 img{
    width: 50px;
    margin-bottom: 10px;
  }
  
  .service25 h2{
    font-size: 13px;
    margin-bottom: 0px;
    color: #ffffff;
  }
  
  .service25 p{
    color: #ffffff;
    font-size: 12px;
    margin-bottom: 0rem; 
  }

  .container25 {
    width: 100%;
    background-color: #000000;
    padding: 0 0;
  }
  
  .topnav a {
   padding: 14px 8px;
   font-size: 15px; 
  }
}

input[type="search"]::-webkit-search-cancel-button{
  display: none;
}

@media screen and (max-width: 1280px) {
  .container25 {
    width: 100%;
    background-color: #000000;
    padding: 0 0;
  }
  .header--search {
    width: 40%;
    position: relative;    
  }
}

@media screen and (max-width: 950px) {
  .container25 {
    width: 100%;
    background-color: #000000;
    padding: 0 0;
  }

  .row25{
    grid-template-columns: repeat(2,1fr);
    grid-gap: -0px;
   
  }
}

.Description1 {
  padding: 40px;
  align-items: center;
}

.reviews1 {
  text-align: center;
}

.reviews1 h3{
  color: #000;
  font-size: 29px;
  text-align: center;
  font-weight: 600;
  line-height: 2.5;
}

.reviews1 p {
  color: #6C757D;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.5;
  margin-bottom: 10px;

}

@media screen and (max-width: 900px) {
  .reviews1 h3{
    font-size: 24px;
  }
  .reviews1 p {
    color: #6C757D;
    font-size: 14px; 
  }
}

@media screen and (max-width: 750px) {
  .reviews1 h3{
    font-size: 20px;
  }
  .float{
    bottom: 30px;
  }
}

@media screen and (max-width: 650px) {
  .reviews1 h3{
    font-size: 16px;
    line-height: 1.8;
  }
  .reviews1 p {
    color: #6C757D;
    font-size: 14px;
    line-height: 1.8;
   
  }
  .categ65{
    display: none;
  }
  footer .col12{
    display: none;
  }
  
}

@media screen and (max-width: 510px) {
  footer .logo{
    margin-top: 0px;
    width: 100%;
  }
  footer .col{
    text-align: center;
    align-items: center;
    margin: auto;
  }

  .copyright {
   margin-top: 15px;
   
  }

  footer .col strong{
    font-weight: 550;
  }


}

@media screen and (max-width: 1500px){
  .header--search {
    width: 50%;
    position: relative;   
    
  }
  
}

@media screen and (max-width: 1200px){
  #navbar li{
    list-style: none;
    padding: 0 8px;
    
  }
  #header{
    padding: 20px 10px;
  }
  .header--search {
    width: 80%;
    position: relative;  
    
    
   
  }
 
}

.color-op{
  width: 30px;
  position: absolute;
  margin-top: -5px;

}
    
.search-box{
  position: absolute;
  top: -130%;
  left: 50%;
  transform: translate(0);
  background: white;
  width: 100%;
  z-index: 9999;
}

.search-box.active{
  position: relative;
  box-shadow: 2px 2px 10px 4px black;
  transition: 0.2s all linear;
  top: 48px;
  position: sticky;
}

.search-box input{
  padding: 20px;
  border: none;
  outline: none;
  width: 100%;
  font-size: 1rem;
  color: #000;
 
}

.search-box input::placeholder {
  font-size: 1rem;
  font-weight: 500;
}

.header-icon {
  font-size: 22px;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  column-gap: 0.8rem;
}

.header-icon .bx{
  color: #ffffff;
}

.header-icon .bx:hover{
  color: rgb(116, 116, 116);
}

.result-box{
  display: inline-flex;
}

.result-box ul {
  border-top: 1px solid #999;
  padding: 15px 10px;
  display: block;
}

.result-box ul li{
  list-style: none;
  border-radius: 3px;
  padding: 15px 10px;
  cursor: pointer;
}


 .sidebar{
  width: 280px;
  height: 100%;
  margin-top: 90px;
  padding: 30px 0px;
  position: absolute;
}

.sidebar h2{
  color: #000000;
  margin-left: 15px;
  margin-bottom: 10px;
  font-size: 20px;
}

.sidebar ul li{
  padding: 15px;
  border-bottom: 1px solid #000000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(255,255,255,0.05);
 
}    

.sidebar ul li a{
  color: #000000;
  display: block;
}

.sidebar ul li a .fas{
  width: 25px;
}

.sidebar ul li:hover{
  background-color: #000000;
}
    
.sidebar ul li:hover a{
  color: #fff;
}
 
.sidebar .social_media{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.sidebar .social_media a{
  display: block;
  width: 40px;
  background: #594f8d;
  height: 40px;
  line-height: 45px;
  text-align: center;
  margin: 0 5px;
  color: #bdb8d7;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.main_content{
  width: 100%;
  margin-left: 200px;
}

.main_content .header{
  padding: 20px;
  background: #fff;
  color: #717171;
  border-bottom: 1px solid #e0e4e8;
}

.main_content .info{
  margin: 20px;
  color: #717171;
}

@media screen and (max-width: 1730px) {
  

  .sidebar{
    display: none;
  }
}

@media screen and (max-width: 1800px) {
  

  .sidebar{
    width: 210px;
  }
}

@media screen and (max-width: 1850px) {
  

  .sidebar{
    width: 220px;
  }
}

.searchicoon{
  font-size: 30px;
}

.searchicoon1{
  font-size: 25px;
  
}

@media only screen and (min-width: 1025px) {
  .mobile-only {
      display:none !important;
  }
} 
@media only screen and (max-width: 1026px) {
  .desktop-only {
      display:none !important;
  }
}