* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}


body {
  width: 100%;
  background-color: #cfd9fc;
}

h1 {
  font-size: 50px;
  line-height: 64xp;
  columns: #222;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
}

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

button.normal {
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  color: #000;
  background-color: #fff;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.3s;
}

button.white {
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  color: #ffffff;
  background-color: transparent;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid;
  border-color: #fff;
  outline: none;
  transition: 0.3s;
}

.white:hover {
  cursor: pointer;
  background-color: #088178;
  color: white;
  border: 1px solid #088178;
}



.search-container {
  min-width: 100px;

}

.search-container input {
  border: 1px solid #333;
  border-radius: 10px;
  padding: 5px;
  background-color: #d3e4fb;
}

.search-container input::active {
  border: 1px solid #333;
}



/* RESPONSIVE HEADER SECTION */


.header {
  padding: 0 7%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: #c9d6ff;
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #000335;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


#logo-name {
  display: flex;
  align-items: center;
  justify-content: center;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  height: 4.2em;
  margin: 0 10px 0 0;
}


.nav-item {
  list-style: none;
  margin: 0 10px;
  position: relative;
}

.nav-link {
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 800;
  color: #013b37;
  transition: 0.4s ease;
}

.nav-link:hover,
.active {
  color: #006408;
  cursor: pointer;
}






/* =================== HERO SECTION ============== */
#hero {
  background: url(img/white_Hero.png);
  height: 90vh;
  width: 100%;
  background-size: cover;
  /* background-position: top 35% right 0; */
  padding: 50px 7%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  background-attachment: fixed;
  background-position: initial;
}


#hero h4 {
  padding-bottom: 15px;

}

#hero h1 {
  color: #006408;
  text-shadow: 2px 2px 2px black;
}

#hero p {
  font-weight: bold;
  color: #000;
}

#hero .button {
  background: url("./img/button.png");
  /* background-color: transparent; */
  color: #088178;
  text-decoration: none;
  border: 0;
  padding: 14px 80px 14px 65px;
  background-repeat: no-repeat;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
}




/* ================== FEATURES SECTION ============= */
#feature {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

#feature .fe-box {
  width: 180px;
  text-align: center;
  padding: 25px 15px;
  box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
  border: 1px solid;
  border-radius: 5px;
  margin: 15px 0px;
}

#feature .fe-box:hover {
  box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.01);
}

#feature .fe-box img {
  width: 100%;
  margin-bottom: 10px;
}

#feature .fe-box h6 {
  display: inline-block;
  padding: 9px 8px 6px 8px;
  /* line-height: 1px; */
  border-radius: 4px;
  color: #088178;
  background-color: #fdde4f;
}

#feature .fe-box:nth-child(2) h6 {
  background-color: #cdebbc;
}

#feature .fe-box:nth-child(3) h6 {
  background-color: #d1e8f2;
}

#feature .fe-box:nth-child(4) h6 {
  background-color: #cdd4f8;
}

#feature .fe-box:nth-child(5) h6 {
  background-color: #f6dbf6;
}

#feature .fe-box:nth-child(6) h6 {
  background-color: #fff2e5;
}





/* ================ PRODUCTS SECTION ============ */

#product1 {
  text-align: center;
}

#product1 .pro-container {
  display: flex;
  justify-content: space-around;
  padding-top: 20px;
  flex-wrap: wrap;
}

#product1 .pro {
  width: 23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #b0b5b1;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 15px 0;
  transition: 0.3s ease;
  position: relative;
}



#product1 .pro:hover {
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.08);
}

#product1 .pro img {
  width: 100%;
  border-radius: 20px;
}

#product1 .pro .des {
  text-align: start;
  padding: 10px 0;
}

#product1 .pro .des span {
  color: #606060;
  font-size: 12px;
}

#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;
  border: 1px solid #cce7d0;
  position: absolute;
  bottom: 20px;
  right: 10px;
}



#more-link a {
  text-decoration: underline;
  font-size: 30px;
  font-weight: bold;
  font-family: Arial Black;
  color: #035e2d;
}

#banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("/img/b2.jpg");
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center;
  margin: 40px 0;
}

#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 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#sm-banner .banner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url("img/b17.jpg");
  min-width: 530px;
  height: 50vh;
  background-size: cover;
  background-position: center;
  padding: 30px;
}

#sm-banner h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

#sm-banner h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
}

#sm-banner span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 15px;
}

#sm-banner .banner-box2 {
  background-image: url("img/b18.jpg");
}



#banner3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 80px;
}

#banner3 .banner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url("img/banner/b7.jpg");
  min-width: 30%;
  height: 30vh;
  background-size: cover;
  background-position: center;
  padding: 20px;
  margin-bottom: 20px;
}

#banner3 h2 {
  color: #fff;
  font-weight: 900;
  font-weight: 22px;
}

#banner3 h3 {
  color: #ec544e;
  font-weight: 800;
  font-weight: 15px;
}

#banner3 .banner-box2 {
  background-image: url("img/banner/b18.jpg");
}

#banner3 .banner-box3 {
  background-image: url("img/banner/b4.jpg");
}




.form form {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}



#newsletter {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background-color: rgb(13, 18, 69);
}

#newsletter h4 {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
}

#newsletter p {
  font-size: 14px;
  font-weight: 600;
  color: #ffbd27;
}

#newsletter .form {
  display: flex;
  width: 40%;
}

#newsletter input {
  height: 3.125ream;
  padding: 10px;
  font-size: 16px;
  width: 100%;
  min-width: 280px;
  border: 1px solid transparent;
  border-radius: 10px;
  outline: none;
  margin: 0;
}

#newsletter button {
  padding: 15px 30px;
  background-color: #006408;
  color: white;
  white-space: nowrap;
  border: 2px solid #006408;
  border-radius: 15px;
  transition: .3s ease-in-out;
}

#newsletter button:hover {
  background-color: transparent;
  box-shadow: 0 0 5px #ffbd27;
  color: #ffbd27;
  border: 2px solid #ffbd27;
}






/* ============== FOOTER ========== */
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 7% 10px 7%;
  background-color: #c9d6ff;
}

footer .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 30px;
  align-items: flex-start;
}

footer .col a {
  font-size: 16px;
  color: #465b52;
}

footer a {
  text-decoration: none;
  color: #222;
  font-size: 13px;
  margin: 0 0 8px 0;
}

footer .follow i {
  font-size: 30px;
}

footer .follow {
  margin-top: 20px;
}

footer .follow div {
  margin-top: 10px;
}

footer .follow i {
  color: #465b52;
  padding-right: 4px;
  cursor: pointer;
}

footer .follow i:hover,
footer {
  color: #3f010b;
}



/* POP UPS */
.popup-trigger:hover {
  text-decoration: underline;
}

/* Pop-up Styles */
.popup {
  display: none;
  /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 30px;
  cursor: pointer;
}

.close-button:hover {
  color: red;
}


footer .copyright {
  width: 100%;
  text-align: center;
}







/* ============== ABOUT SECTION ============ */
#about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  vertical-align: top;
  margin-bottom: 50px;
  padding-left: 80px;
  padding-right: 80px;
}

#about-section .team-div {
  width: 350px;

  padding: 10px 12px;
  border: 1px solid #cce7d0;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 15px 0;
  transition: 0.3s ease;
  position: relative;
}

#about-section img {
  border-radius: 30px;
  width: 300px;
  height: 300px;
}

#about-section h2 {
  font-size: 30px;
  margin: 0 10px;
  line-height: 30px;
}

#about-section a {
  text-decoration: none;
  margin: 10px;
  color: blue;
}

#about-section a:hover {
  color: #7d0015;
}











/* ================== SMALL SCREENS ============= */

@media only screen and (max-width: 950px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 3.5rem;
    flex-direction: column;

    background-color: #c9d6ff;
    width: 75%;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }

  .nav-link {
    color: #1a1a1a;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    padding: 10px;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}



@media (max-width: 799px) {

  #responsive-header {
    display: inherit;
  }

  .nav-item {
    display: flex;
    flex-direction: column;
    align-items: self-end;
    margin: 0 10px;
  }

  #hero {
    background-position: top 35% right 0;

  }

  #feature {
    padding: 10px 20px;
  }

  #product1 {
    padding: 10px 20px;
  }

  #product1 .pro {
    width: 30%;
    min-width: 300px;
  }

  #banner3 {
    padding: 10px 20px;
    align-items: center;
    flex-direction: column;
  }

  #newsletter {
    padding: 10px 20px;
  }

  #newsletter input {
    min-width: 200px;
    max-width: 400px;
  }

  #sm-banner {
    padding: 10px 20px;
  }

  #sm-banner .banner-box {
    max-width: 400px;
    max-height: 300px;
    margin-bottom: 20px;
  }
}


@media(max-width: 500px) {
  #hero {
    background: url("./img/Phone_hero1.png");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
  }

  #hero h1 {
    font-size: 45px;
    text-shadow: 1px 1px 1px black;
    color: #fb7b03;
  }

  #hero h2 {
    font-size: 27px;
    color: #fff;
    text-shadow: 1px 1px 1px black;
  }

  .logo {
    height: 3em;
  }
}