
 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

h1 {
    font-size: 50px;
    color: #222;
}

h2 {
    font-size: 46px;
    color: #222;
}

h4 {
    font-size: 20px;
    color: #222;
}

h6 {
    font-weight: 700;
    font-size: 12px;
}

p {
    font-size: 16px;
    color: #465452;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px;
}



.section-m1 {
    margin: 40px 0;
}


button.normal {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    color: #fff;
    background-color: #088178;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
    border: 1.5px solid transparent;
}

button.white {
    font-size: 13px;
    font-weight: 600;
    padding: 11px 18px;
    color: #fff;
    background-color: transparent;
    cursor: pointer;
    border: 1px solid #fff;
    outline: none;
    transition: 0.2s;
}

body {
    width: 100%;
}

.trash {
  font-size:15px;
  cursor: pointer;
  color:red;
}

.notification {
    display: none;
    position: fixed;
    right: 20px;
    background-color: white;
    color: #333;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    align-items: center;
    font-size:17px;
    gap: 10px;
    animation: slideIn 0.5s ease-out, fadeOut 0.5s ease-out 2.5s;
    margin-bottom:2rem;
    
}

.notification i {
    color: #4CAF50; 
    padding:1px;
    font-size: 18px;
    animation: bounce 0.5s ease-in-out;
}


.error-notification {
    display: none;
    position: fixed;
    right: 20px;
    background-color: white;
    color: #333;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    align-items: center;
    font-size:17px;
    gap: 10px;
    animation: slideIn 0.5s ease-out, fadeOut 0.5s ease-out 2.5s;
    margin-bottom:2rem;
    
}

.error-notification i {
    color: red; 
    padding:1px;
    font-size: 18px;
    animation: bounce 0.5s ease-in-out;
}


@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}



#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #088178;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: none; 
    z-index: 1000;
}

.loader {
    border: 7px solid white;
    border-top: 7px solid #088178;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 1.5s linear infinite;
    box-shadow: 0 0 20px rgba(8, 129, 120, 0.5);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: white;
    font-size: 2.5em;
    margin-top: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

        /* Feature Section*/

#feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#feature .fe-box {
    width: 200px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.01);
    border: 1px solid #cce7d0;
    margin: 15px 0;
    border-radius: 5px;
}

#feature .fe-box:hover {
    transform: scale(1.05);
}

#feature .fe-box img {
    width: 100%;
    height: auto;
    margin-bottom: 8px;
}


#feature .fe-box a {
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    color: #088178;
    background-color: #fddde4;
    text-decoration: none;
    cursor: pointer;
}

#feature .fe-box:nth-child(2) a {
    background-color: #cdebbc;
}

#feature .fe-box:nth-child(3) a {
    background-color: #d1e8f2;
}

#feature .fe-box:nth-child(4) a {
    background-color: #cdd4f8;
}

#feature .fe-box:nth-child(5) a {
    background-color: #f6dbf6;
}

#feature .fe-box:nth-child(6) a {
    background-color: #fff2e5;
}



/* Header Start*/
#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    top: 0;
    left: 0;
    z-index: 999;
}

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

}

#navbar li {
    list-style: none;
    padding: 0 20px;
    position: relative;
}
#navbar .nav-container{
  display:flex;
  margin-right:300px;
}

#navbar li a {
    text-decoration: 16px;
    font-size: 17px;
    font-weight: 600;
    color: #222;
    cursor:pointer;
}
.fa-shopping-bag{
  color:#088178;
  font-size:25px;
}

.fa-shopping-bag:hover{
  color:#057862;
}

#navbar li a:hover,
#navbar li a.active {
    color: #088178;
}


#mobile {
    display: none;
    align-items: center;
    color:#fff;
}

#close {
    display: none;
}

#header .logo-header{
    padding-left: 60px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    display:block;
    color:#222;
  }
  
  #header .icon-header{
    font-weight: bold;
    color:#fff;
  }
  
  #header button{
    background-color: #088178;
    border: 1.5px solid transparent;
    padding: 4px 15px;
    border-radius:4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
    margin-left:5px;
  }
  
  #header button a {
  text-decoration:none;
  color: #fff;
  cursor:pointer;
  }
   #header button:hover{
   color: #088178;
   background-color:#057862;
 }
 
 #header button:hover a{
   color:white;
  }
/* Home Page*/
#hero {
  background-image: url('img-bg.png');
  min-height:100vh;
  background-color: white;
  width: 100%;
  background-size: cover;
  background-position: top 20% right 30%;
  padding: 0 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 0px;
}


#hero h1 {
    color: #088178;
}
#hero .hero-text a{
  color:#222;
  text-decoration:none;
  cursor:pointer;
}
#hero button {
    background-color: #088178;
    border: 1.5px solid transparent;
    padding: 10px 20px;
    border-radius:4px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
}

#hero button a{
  text-decoration:none;
  color: #fff;
  cursor:pointer;
}
 #hero button:hover{
   color: #088178;
   border-color:#088178;
   background-color:#fff;
 }
 
 #hero button:hover a{
   color:#088178;
 }
 
 .back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none; 
    background-color: #088178;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px; 
    cursor:pointer;
    font-size: 25px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s;
    z-index: 999;
    -webkit-animation: up 5s infinite; 
}

@keyframes up {
    0% {
        transform: translate(0);
    }
    50% {
        transform: translateY(-20px); 
    }
    100% {
        transform: translateY(0);
    }
}

.back-to-top:hover {
    background-color: #222; 
}


    .slider {
      width: 100%;
      overflow: hidden;
      position: relative;
      gap:2;
    }

    .slide-track {
      animation: scroll 40s linear infinite;
      display: flex;
      width: calc(210px * 14); 
    }

    .slide {
      height: 100px;
      width: 250px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .slide img {
      height: 100%;
      width: auto;
      max-width: 100%;
    }
    
    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-250px * 7));
      }
    }



#product1 {
    text-align: center;
}


#product1 .pro-container {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    flex-wrap: wrap;
    gap:14px;
}

#product1 .pro {
    width: 23%;
    min-width: 165px;
    padding: 10px 12px;
    border: 1px solid #cce7d0;
    border-radius: 15px;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
}

#product1 .pro:hover {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

#product1 .pro .img-target{
  cursor: pointer;
}

#product1 .pro img {
    width: 100%;
    border-radius: 10px;
}

#product1 .pro .des {
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .des span {
    color: #606063;
    font-size: 12px;
}

#product1 .pro .des a {
    padding-top: 2px;
    color: #1a1a1a;
    font-size: 12px;
    cursor:pointer;
}

#product1 .pro .des a:hover{
  color: #088178;
}

#product1 .pro .des i {
    font-size: 12px;
    color: rgb(243, 181, 25);
}

#product1 .pro .des h4 {
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #088178;
}

#product1 .pro .cart {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    background-color: #e8f6ea;
    font-weight: 800;
    color: #088178;
    border: 1px solid #cce7d0;
    position: absolute;
    bottom: 20px;
    right: 10px;
    cursor:pointer;
}

#product1 .pro .cart:hover{
  transform: scale(1.05);
}


.input-box {
  position: relative;
  height: 70px;
  max-width: 450px;
  width: 100%;
  background: #fff;
  margin: 0 26rem;
  font-family: "Poppins", sans-serif;
  justify-self: center;
  align-items:center;
  display:flex;
  margin-top:20px;
  border-radius:10px;
  z-index: 1;
}
.input-box i,
.input-box .button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.input-box i {
  left: 20px;
  font-size: 30px;
  color: #707070;
}
.input-box input {
  height: 100%;
  width: 100%;
  outline: none;
  font-size: 18px;
  font-weight: 400;
  border: none;
  border-radius:10px;
  padding: 0 155px 0 65px;
  background-color: transparent;
}
.input-box .button {
  right: 20px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  background-color: #088178;
  cursor: pointer;
}
.input-box .button:active {
  transform: translateY(-50%) scale(0.98);
}


.not-found-message {
    display: none;
    text-align: center;
    margin-top: 90px;
}

.not-found-message p {
    font-size: 20px;
    color: #ccc;
}


.icon-product{
    height: 100px;
    width: 100px;
    color: #ccc;
    border: 3px solid #ccc;
    border-radius: 50%;
    line-height: 100px;
    font-size: 55px;
    margin: 0 auto 0px;
}


/* Banner section*/

#banner {
    position: relative; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 50vh;
    background-image: url("banner2.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden; 
}

#banner::before {
    content: ""; 
    position: absolute; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
background-color: rgba(50, 50, 50, 0.4); 
    z-index: 1;
}

#banner h4, #banner h2, #banner button {
    position: relative; 
    z-index: 2; 
}

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

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

#banner h2 span {
    color: #ef3636;
}

#bannerr h2,
#banner h4 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#banner a {
    position: relative; 
    z-index: 2;
    text-decoration:none;
    cursor:pointer;
}

#banner a.normal {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    color: #fff;
    background-color: #088178;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    border: none;
}

#banner a:hover{
  background-color:transparent;
  color:#fff;
  border: 2px solid #088178 ;
}


/**      Footer      **/
footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background:#252525;
}

footer .col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


footer h4 {
    font-size: 16px;
    padding-bottom: 4px;
    color: #fff;
}

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

footer a {
    font-size: 13px;
    text-decoration: none;
    color: #222;
    margin-bottom: 3px;
    color:#fff;
    cursor: pointer;
}

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

footer .follow {
    color: #465B52;
}

.icon a {
  color:#fff;
  height:50px;
  padding:5px;
}

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

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

footer .copyright p{
  color:#f3961c;
}

/* Shop Page*/

#page-header {
    position: relative;
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
    overflow: hidden;
    background-image: url("img-shop.jpg");
    background-size: cover;
}

#page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1;
}

#page-header h2,
#page-header p {
    color: #fff;
    font-size: 26px;
    position: relative; 
    z-index: 2;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7);
}

#page-header span{
  color: red;
}

#page-header a {
    position:relative;
    z-index: 2;
    text-decoration: none;
    font-weight: 500;
    color:#fff;
    background-color: #088178;
    border-radius: 4px;
    padding: 10px 20px; 
    display: inline-block;
    width: 150px; 
    text-align: center; 
    cursor:pointer;
    border:none;
}

#page-header a:hover{
  background-color:transparent;
  color:#fff;
  border: 2px solid #088178;
}

#pagination {
    text-align: center;
}

#pagination a {
    text-decoration: none;
    background-color: #088178;
    padding: 15px 20px;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    cursor:pointer;
    border: 1.5px solid transparent;
}

#pagination a:hover,
#pagination a.active {
    color: #088178;
   border-color:#088178;
   background-color:#fff;
    transform: scale(1.05);
}


/* single product detail*/

#prodetails{
  display:flex;
  background-color: white;
  margin-left: 100px;
  justify-content: center;
  align-items:center;
  height:10s0vh;
}

#prodetails  select{
  margin-right: -300px;
}

#prodetails .single-pro-details {
    width: 230%;
    padding: 4px 10px;
}

 #prodetails .pro {
     margin-right: 50px;
     background-color: white;
     box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

#prodetails .pro:hover{
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
  transform: scale(1.05);
}

#prodetails .single-pro-details h4 {
    padding: 40px 0 20px 0;
}

#prodetails .single-pro-details h2 {
    font-size: 26px;
    margin-top: 2.5rem;
}

#prodetails .single-pro-details select {
    display: block;
    margin-bottom: 10px;
    padding:5px;
}

#prodetails .single-pro-details input {
    width: 70px;
    height: 40px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
}

#prodetails .single-pro-details input:focus {
    outline: none;
}

#prodetails .single-pro-details button {
    background-color: #088178;
    color: #fff;
}

#prodetails .single-pro-details span {
    line-height: 25px;
}

#prodetails .pro {
  width: 110%;
}

#prodetails .section-p1{
  padding: 0px 0px;
}

#prodetails .pro {
    min-width: 350px;
}

#prodetails button.button-cart {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 15px;
  color: #fff;
  background-color: #088178;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
  border: 1.5px solid transparent;
}

#prodetails button.button-cart:hover{
  background-color: #057862; 
  color:white;
}


/* About Us Page*/

#about-head {
    display: flex;
    align-items: center;
    padding: 120px;
}

#about-head img {
    width: 30%;
    height: auto;
}

#about-head div {
    padding-left: 40px;
}

#about-head h2{
  position: relative;
  font-size:2.3rem;
}

#about-head h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 4px;
  background-color: #088178;
  border-radius: 2px;
}
        
          #about-me {
            max-width: 1200px;
            margin: 40px auto;
            padding: 50px;
            background-color: white;
            border-radius: 10px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            font-family: 'Poppins', sans-serif;
          
        }

        #about-me .about-content {
            flex: 1;
            min-width: 300px;
        }

        #about-me .about-content h2 {
            font-size: 2.3rem;
            color: black;
            margin-bottom: 20px;
            position: relative;
        }

        #about-me .about-content h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 60px;
            height: 4px;
            background-color: #088178;
            border-radius: 2px;
        }

        #about-me  .about-content p {
            color: #666;
            
            margin-bottom: 15px;
            
        }

        #about-me .about-image {
            flex: 1;
            min-width: 200px;
            text-align: center;
        }

         #about-me .about-image img {
            max-width: 100%;
            height: auto;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

       #about-me .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #088178;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            margin-top: 10px;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        #about-me .btn:hover {
            background-color: #057862;
            transform: translateY(-3px);
        }


/* Contact Section*/

#contact-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#contact-details .details {
    width: 40%;
}

#contact-details .details span,
#form-details form span {
    font-size: 12px;
}

#contact-details .details h2,
#form-details form h2 {
    font-size: 26px;
    line-height: 35px;
    padding: 20px 0;
}

#contact-details .details h3 {
    font-size: 16px;
    padding-bottom: 15px;
}

#contact-details .details li {
    list-style: none;
    display: flex;
    padding: 10px 0;
}

#contact-details .details li i {
    font-size: 14px;
    padding-right: 22px;
}

#contact-details .details li p {
    margin: 0;
    font-size: 14px;
}

#contact-details .map {
    width: 55%;
    height: 400px;
}

#contact-details .map iframe {
    width: 100%;
    height: 100%;
}

#form-details {
    display: flex;
    justify-content: space-between;
    margin: 30px;
    padding: 80px;
}


/* General Styles */
#form-details {
  padding: 40px 40px;
}

#form-details .container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
}

/* Form Styles */
#form-details form {
  width: 55%;
  display: flex;
  flex-direction: column;
}

#form-details form span {
  font-size: 14px;
  color: #088178;
  font-weight: 600;
  margin-bottom: 10px;
}

#form-details form h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

#form-details form input,
#form-details form textarea {
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 15px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

#form-details form input:focus,
#form-details form textarea:focus {
  border-color: #088178;
}

#form-details form textarea {
  resize: vertical;
  min-height: 120px;
}

#form-details form button {
  background-color: #088178;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#form-details form button:hover {
  background-color: #057862;
  color: white;
}

/* Profile Section Styles */
#form-details .profile-section {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-left: 80px;
  padding-top: 80px;
  border-left: 1px solid #e1e1e1;
}

#form-details .profile-section img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#form-details .profile-section .profile-info {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

#form-details .profile-section .profile-info span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

/* Social Media Icons */
#form-details .profile-section .social-icons {
  display: flex;
  gap: 15px;
}

#form-details .profile-section .social-icons .icon {
  font-size: 18px;
  color: #088178;
  transition: color 0.3s ease;
}

#form-details .social-icons .icon  {
  cursor:pointer;
}


#form-details .social-icons .icon:hover {
  color: #222;
}



/* Start Media Query*/

@media (max-width:799px) {
    .section-p1 {
        padding: 40px 40px;
    }
    
    #prodetails .section-p1{
      padding: 0px 0px;
  }
    
    #prodetails .pro {
    min-width: 220px;
  }
  
   #prodetails .pro-container {
    padding-top: 0px;
  }

    #navbar {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 200px;
        background-color: #E3E6F3;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.01);
        padding: 80px 0 0 10px;
        transition: 0.3s;
    }
    
    #navbar .nav-container {
      flex-direction: column;
      margin:0;
    }
    
    
  body.blur::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px); 
    z-index: 999; 
    pointer-events: none; 
  }

    #navbar.active {
       right: 0;
    }

    #navbar.active {
        right: 0px;
    }

    #navbar li {
        margin-bottom: 40px;
    }
    
    #navbar li a{
      color:#465b52;
    }
    #header .logo-header{
      display:none;
    }
    
    .icon-header span{
      display:none;
    }
    
    #mobile {
        display: flex;
        align-items: center;
    }

    #mobile i {
        color: #fff;
        font-size: 24px;
        padding: 7px;
    }
    
#mobile a.active i {
  color: #088178;
}

    
    #mobile a {
      cursor:pointer;
    }
    
    #mobile .logo-mobile{
      padding-right: 170px;
      margin-top:0.3rem;
      font-size:20px;
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
    }
    
    #mobile i:hover{
      color:#222;
    }

    #close {
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: #222;
        font-size: 24px;
        cursor:pointer;
    }
    
    #close i:hover{
      color:#088178;
      transform: scale(1.20);
    }

    #lg-bag {
        display: none;
    }

    #hero {
        height: 55.5vh;
        padding: 0 80px;
        background-position: top 30% right 30%;
    }

    #feature {
        justify-content: center;
    }

    #feature .fe-box {
        margin: 15px 15px;
    } 
    
    #product1 .pro-container{
      justify-content: center;
    }

  
  #prodetails .pro{
    margin: 5px;
    margin-top: 1rem;
  }

    #banner {
        height: 20vh;
    }


    
  #form-details .container {
    flex-direction: column;
    padding: 15px;
  }

  #form-details form,
  #form-details .profile-section {
    width: 100%;
  }

  #form-details .profile-section {
    margin-top: 20px;
    padding: 20px 10px;
    border-left: none;
    border-top: 1px solid #e1e1e1;
  }

  #form-details form h2 {
    font-size: 22px;
  }

  #form-details .profile-section img {
    width: 80px;
    height: 80px;
  }

  #form-details .profile-section .profile-info span {
    font-size: 15px;
  }

    #form-details {
        padding: 40px;
    }

    #form-details form {
        width: 50%;
    }
    
    #page-header{
      height:40vh;
    }
}
   
   /* Responsive */
@media screen and (max-width: 500px) {
  .input-box {
    height: 65px;
    margin:  50px;
    max-width:300px;
    padding:15px;
    margin-bottom:12px;
    
  }

  .input-box i {
    left: 12px;
    font-size: 25px;
  }
  .input-box input {
    padding: 0 112px 0 50px;
  }
  .input-box .button {
    right: 12px;
    font-size: 14px;
    padding: 8px 18px;
  }
}



@media (max-width: 477px) {
    .section-p1 {
        padding: 20px;
    }

    #header {
        padding: 10px 30px;
        position:sticky;
        background-color:rgba(8,129,120,0.9);
    }

    h2 {
        font-size: 32px;
    }

    h1 {
        font-size: 38px;
    }

    #hero {
        padding: 0 15px;
        background-position: 64%;
        height:50vh;
    }
    
    #hero p{
      font-size: 11px;
    }
    
    #hero h1{
      font-size:27px;
    }
    
    #hero h2{
      font-size: 20px;
    }
    
        .slide img {
      height: 80px;
        }

    #feature {
        justify-content: space-between;
    }

    #feature .fe-box {
        width: 155px;
        margin: 0 0 15px 0;
    }

    #banner {
        height: 40vh;
    }

    #banner h2{
      font-size: 25px;
      padding:20px;
    }

    footer .copyright {
        text-align: left;
        margin-top:1rem;
    }
    #page-header{
      height:70vh;
    }
    
    #page-header p,
    #page-header span{
      font-size: 20px;
      padding: 8px;
    }
    
  #page-header a{
    width:120px;
  }

    /* single product*/

    #prodetails {
        display: flex;
        flex-direction: column;
        width:100%;
        margin-left:0px;
        height:auto;
    }

    #prodetails .single-pro-details {
        width: 100%;
    }
    
    #prodetails .single-pro-details h2 {
    margin-top: 0rem;
  }
  
      #prodetails .single-pro-details h4 {
      margin-top: 3.5rem;
    }
  
    .line {
     border: 1px solid #ccc;
     position: absolute;
     margin-top:2.5rem;
     left: 0;
     right: 0;
  }
  
    
            @media (max-width: 496px) {
          #about-us {
            flex-direction: column;
            padding: 20px;
          }
          
          #about-us .about-us_description {
            padding-right: 0;
            margin-bottom: 20px;
            order:2;
          }
          
          #about-us .image {
            order:1;
          }
        
    #about-head {
        flex-direction: column;
        padding:20px;
    }

    #about-head img {
        width: 100%;
        margin-bottom: 20px;
    }

    #about-head div {
        padding-left: 0px;
    }

  }

    /* contact page*/

    #contact-details {
        flex-direction: column;
    }

    #contact-details .details {
        width: 100%;
        margin-bottom: 30px;
    }

    #contact-details .map {
        width: 100%;
    }
    
    #form-details .people {
      margin-top:0;
    }

    #form-details {
        margin: 10px;
        padding: 30px 10px;
        flex-wrap: wrap;
    }

    #form-details form {
        width: 100%;
        margin-bottom: 30px;
    }
    
    


    /*cart page*/


    #coupon {
        width: 100%;
    }

    #subtotal {
        width: 100%;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .notification {
        width: 90%;
        right: 5%;
        bottom: 10px;
        padding: 15px;
        font-size: 17px;
    }

    .notification i {
        font-size: 18px;
    }
    
     .error-notification{
        width: 90%;
        right: 5%;
        bottom: 10px;
        padding: 15px;
        font-size: 17px;
    }

    .error-notification i {
        font-size: 18px;
    }
    
    .loader {
      width: 70px;
      height: 70px;
    }
    
    .loading-text{
      font-size:1.5em;
    }
    
            #about-me {
                flex-direction: column;
                padding: 30px 20px;
            }
            
            #about-me .about-content, .about-image {
                min-width: 100%;
            }
            
           #about-me .about-content h2 {
                font-size: 1.8rem;
            }
            
           #about-me .about-image {
                order: -1;
            }
}
