@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "League Spartan", sans-serif;
}
body {
  /* width: 100%; */
  padding-top: 80px;
}
h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222222;
}
button.normal {
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  color: black;
  background-color: white;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
}
h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222222;
}
h4 {
  font-size: 20px;
  color: #222222;
}
h6 {
  font-weight: 600;
  font-size: 12px;
}
p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}
.section-p1 {
  padding: 40px 80px;
}
.section-m1 {
  margin: 40px 0;
}
/* header section */
#header {
  background: rgb(36, 36, 36);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 80px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  font-size: 20px;
  gap: 50px;
}
.navbar li {
  list-style: none;
  position: relative;
}
.navbar li a {
  color: white;
  text-decoration: none;
  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: "";
  position: absolute;
  width: 60%;
  height: 2px;
  background: #fff;
  bottom: -14px;
  left: 0;
}

/* Logo Section */
#header .logo {
  width: 100px;
}
/* Home Page */
#hero {
  background: url("image/wbep.png");
  background-repeat: no-repeat;
  background-position: top 0 right 0;
  width: 100%;
  height: 90vh;
  background-size: contain;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
#hero a {
  text-decoration: none;
  color: black;
}
#hero h4 {
  opacity: 0;
  font-size: 30px;
  padding-bottom: 15px;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.2s;
}

#hero h2 {
  opacity: 0;
  font-size: 60px;
  padding-bottom: 15px;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.6s;
}
#hero h1 {
  opacity: 0;
  font-size: 88px;
  padding-bottom: 15px;
  color: gray;
  animation: fadeUp 1s ease forwards;
  animation-delay: 1s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(0px);
  }
  to {
    opacity: 1;
    transform: translateY(10px);
  }
}
#hero p {
  font-size: 20px;
}
#hero button {
  background: url("image/button.png");
  background-color: transparent;
  color: black;
  border: none;
  outline: none;
  background-position: center;
  background-size: cover;
  font-size: 25px;
  width: 240px;
  height: 60px;
  cursor: pointer;
}

/* feature section */

#feature .fe-box {
  width: 200px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 10px 10px 24px rgba(0, 0, 0, 0.03);
  border: 1px solid #cce7d0;
  border-radius: 4px;
  margin: 15px 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}
#feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
#feature .fe-box:hover {
  box-shadow: 10px 10px 24px rgba(0, 0, 0, 0.06);
}
#feature .fe-box h6 {
  display: inline-block;
  font-size: 20px;
  padding: 9px 8px 6px 8px;
  line-height: 1;
  border-radius: 4px;
  color: #088178;
  background-color: #fddde4;
}
#feature .fe-box:nth-child(2) h6 {
  background-color: #cdebbc;
}
#feature .fe-box:nth-child(2) {
  animation-delay: 0.6s;
}
#feature .fe-box:nth-child(3) h6 {
  background-color: #d1e8f2;
}
#feature .fe-box:nth-child(3) {
  animation-delay: 1s;
}
#feature .fe-box:nth-child(4) h6 {
  background-color: #cdd4f8;
}
#feature .fe-box:nth-child(4) {
  animation-delay: 1.5s;
}
#feature .fe-box:nth-child(5) {
  animation-delay: 2s;
}
#feature .fe-box:nth-child(5) h6 {
  background-color: #f6dbf6;
}
#feature .fe-box img {
  width: 100%;
  margin-bottom: 10px;
}
#product1 {
  text-align: center;
}
#product1 .pro {
  width: 23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #cce7d0;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  position: relative;
  margin-top: 20px;
}
#product1 .pro:hover {
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}
#product1 a {
  text-decoration: none;
}
#product1 .pro-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 20px;
  gap: 20px;
}
#product1 .pro {
  flex: 1 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  box-sizing: border-box;
  margin-bottom: 20px;
}
#product1 .pro img {
  width: 100%;
  border-radius: 20px;
}
#product1 .pro .des {
  padding: 10px 0;
  text-align: start;
}
#product1 .pro .des span {
  font-size: 12px;
  color: #606063;
}
#product1 .pro .des h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
}
#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: 500;
  color: #088178;
  font-size: 20px;
  padding: 15px;
  position: absolute;
  right: 10px;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url(image/Banner/b2.jpg);
  width: 100%;
  height: 40vh;
  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: #ef3636;
}
#banner button:hover {
  background-color: #088178;
  color: #fff;
}
#sm-banner .banner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  background-image: url(image/Banner/b17.jpg);
  min-width: 580px;
  height: 50vh;
  background-size: cover;
  background-position: center;
  padding: 30px;
}
#sm-banner .banner-box2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  background-image: url(image/Banner/b10.jpg);
  min-width: 580px;
  height: 50vh;
  background-size: cover;
  background-position: center;
  padding: 30px;
}
#sm-banner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#sm-banner h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}
#sm-banner h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}
#sm-banner span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 15px;
}
button.white {
  font-size: 30px;
  font-weight: 600;
  padding: 11px 18px;
  color: white;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid white;
  outline: none;
  transition: 0.2s;
}
#sm-banner .banner-box:hover button {
  color: white;
  background-color: #088178;
  border: 1px solid #088178;
}
#sm-banner .banner-box2:hover button {
  color: white;
  background-color: #088178;
  border: 1px solid #088178;
}
#banners3 .banner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  background-image: url(image/Banner/b7.jpg);
  min-width: 30%;
  height: 30vh;
  background-size: cover;
  background-position: center;
  padding: 20px;
  margin-bottom: 20px;
}
#banners3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 8px;
  text-transform: uppercase;
}
#banners3 h2 {
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 22px;
}
#banners3 h3 {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ec544e;
}
#banners3 .b2 {
  background-image: url(image/Banner/b4.jpg);
}
#banners3 .b3 {
  background-image: url(image/Banner/b18.jpg);
}
#newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url(image/Banner/b14.png);
  background-repeat: no-repeat;
  background-position: 20% 30%;
  background-color: #041e42;
}
#newsletter h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
#close {
  display: none;
}
#newsletter p {
  font-size: 14px;
  font-weight: 600;
  color: #818ea0;
}
#newsletter span {
  color: #ffbd27;
}
#newsletter input {
  height: 3.125rem;
  padding: 0 1.25em;
  font-size: 14px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  outline: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
#newsletter button {
  background-color: #088178;
  color: #fff;
  white-space: nowrap;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
#newsletter .form {
  display: flex;
  width: 40%;
}
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: rgb(36, 36, 36);
  padding: 40px;
  color: #fff;
  font-size: 18px;
}
footer .col {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-direction: column;
  color: #fff;
}
footer .logo {
  margin-bottom: 30px;
}
footer h4 {
  font-size: 20px;
  padding-bottom: 20px;
  color: #fff;
}

footer p {
  font-size: 15px;
  padding-bottom: 20px;
  margin: 0 0 8px 0;
  color: #fff;
}
footer a {
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 10px;
}
footer .follow {
  margin-top: 20px;
  color: #fff;
}
footer .follow i {
  margin-top: 20px;
  color: #fff;
  padding-right: 4px;
  cursor: pointer;
}
footer .install .row img {
  border: 1px solid #088178;
  border-radius: 6px;
}
footer .install img {
  margin: 10px 0 50px 0;
}
footer .follow i:hover,
footer .col a:hover {
  color: #088178;
}
.copyright {
  background: rgb(36, 36, 36);
  text-align: center;
  padding: 10px;
}
.copyright .copyp {
  margin: 0;
}
#mobile {
  display: none;
  align-items: center;
}
/* ----------------------- */
/*   RESPONSIVE DESIGN     */
/* ----------------------- */

@media (max-width: 1200px) {
  .section-p1 {
    padding: 30px 40px;
  }

  #hero {
    padding: 0 40px;
    background-size: contain;
    height: 70vh;
  }

  #product1 .pro {
    flex: 1 1 calc(33.3% - 20px);
  }

  #sm-banner .banner-box,
  #sm-banner .banner-box2 {
    min-width: 48%;
    height: 40vh;
  }
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  h1 {
    font-size: 40px;
    line-height: 50px;
  }

  h2 {
    font-size: 32px;
    line-height: 42px;
  }

  #feature {
    justify-content: center;
    gap: 20px;
  }

  #product1 .pro {
    flex: 1 1 calc(45% - 20px);
  }

  #sm-banner {
    flex-direction: column;
    gap: 20px;
  }

  #sm-banner .banner-box,
  #sm-banner .banner-box2 {
    width: 100%;
    min-width: 100%;
    height: 35vh;
    text-align: center;
    align-items: center;
  }

  #banners3 {
    justify-content: center;
    gap: 20px;
  }

  #banners3 .banner-box {
    width: 45%;
    min-width: 45%;
    height: 25vh;
  }

  #newsletter .form {
    width: 60%;
  }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 300px;
    background: rgb(36, 36, 36);
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.8);
    padding: 80px 0 0 10px;
    transition: 0.3s;
  }
  .navbar.active {
    right: 0px;
  }

  #mobile {
    display: flex;
    align-items: center;
  }
  #mobile a {
    text-decoration: none;
    color: white;
  }
  #mobile i {
    font-size: 20px;
    padding-left: 25px;
    color: white;
  }
  #close {
    display: initial;
    position: absolute;
    top: 30px;
    left: 15px;
    color: white;
    font-size: 20px;
  }
  #shbag {
    display: none;
  }
  #hero {
    background-repeat: no-repeat;
    background-position: top 30% right 0%;
    height: 56vh;
    padding: 0 40px;
    line-height: 10px;
  }
  #hero button {
    color: white;
  }
  #hero h1 {
    font-size: 48px;
  }
  #hero h2 {
    font-size: 36px;
  }
  #hero h4 {
    font-size: 22px;
  }

  #product1 .pro {
    flex: 1 1 100%;
    max-width: 100%;
  }

  #sm-banner .banner-box,
  #sm-banner .banner-box2,
  #banners3 .banner-box {
    width: 100%;
    min-width: 100%;
    height: auto;
  }

  #newsletter {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  #newsletter .form {
    width: 100%;
    margin-top: 20px;
  }

  footer {
    flex-direction: column;
    gap: 20px;
  }
  /* contact Page */
  #form-details {
    padding: 40px !important;
  }
  #form-details form {
    width: 50% !important;
  }
}

/* Small phones (max-width: 480px) */
@media (max-width: 480px) {
  h1 {
    font-size: 32px;
    line-height: 40px;
  }

  h2 {
    font-size: 24px;
    line-height: 30px;
  }

  h4 {
    font-size: 16px;
  }

  p {
    font-size: 14px;
  }

  button.normal,
  button.white {
    font-size: 14px;
    padding: 10px 15px;
  }
  #hero {
    position: relative;
  }
  #hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1; /* Puts the overlay on top of the background image */
  }
  #hero h1 {
    font-size: 40px;
    position: relative;
    color: white;
    z-index: 2;
  }
  #hero h2 {
    font-size: 34px;
    position: relative;
    color: white;
    z-index: 2;
  }
  #hero h4 {
    font-size: 18px;
    position: relative;
    color: white;
    z-index: 2;
  }
  #hero p {
    line-height: 20px;
    position: relative;
    color: white;
    z-index: 2;
  }
  #hero button {
    position: relative;
    color: white;
    z-index: 2;
    margin-bottom: 10px;
  }
  #banner {
    height: 50vh;
  }
  /* single - product */
  #prodet {
    display: flex;
    flex-direction: column;
  }
  #prodet .single-pro-img {
    width: 100% !important;
    margin-right: 0px;
  }
  #prodet .single-pro-details {
    width: 100% !important;
  }
  /* blog page */
  #blog {
    padding: 100px 20px 0 20px !important;
  }
  #blog .blog-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #blog .blog-img {
    width: 100% !important;
    margin-right: 0 !important;
    z-index: 1;
    margin-bottom: 30px;
  }
  #blog .blog-box h1 {
    top: -20px !important;
    left: 0;
  }
  #blog .blog-details {
    width: 100% !important;
  }
  #about-head {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #about-head img {
    width: 100% !important;
    margin-bottom: 20px;
  }
  #about-head div {
    padding-left: 0 !important;
  }
  #about-app .video {
    width: 100% !important;
  }
  /* Contact Page */
  #contact-details {
    flex-direction: column;
  }
  #contact-details .details {
    width: 100% !important;
    margin-bottom: 30px;
  }
  #contact-details .map {
    width: 100% !important;
  }
  #form-details {
    margin: 10px;
    padding: 30px 10px;
    flex-wrap: wrap;
  }
  #form-details form {
    width: 100% !important;
    margin-bottom: 30px;
  }
  /* Cart */
  #cart-add {
    flex-direction: column;
  }
  #coupon {
    width: 100% !important;
  }
  #sub-total {
    width: 100% !important;
    padding: 20px !important;
  }
}
