@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spartan", sans-serif;
  transition: all 0.3s ease-in-out;
}

body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Global Styles */
h1 {
  font-size: 50px;
  line-height: 64px;
  color: #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: #ffff;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.3s ease;
}

button.white {
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  color: #000;
  background-color: transparent;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #ffff;
  outline: none;
  transition: 0.3s ease;
}

body {
  width: 100%;
}

/* Header */
#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  position: sticky;
  top: 0;
  left: 0;
  background: crimson;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

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

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

#navbar li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

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

#navbar li a.active::after,
#navbar li a:hover::after {
  content: '';
  width: 30%;
  height: 2px;
  background: #14d3e0;
  position: absolute;
  bottom: -4px;
  left: 20px;
}

#mobile{
  align-items: center;
  display:none;
}
#close{
  display:none;
}
/* Home page */
#hero {
  background-image: url("img/hero4.png");
  height: 90vh;
  width: 100%;
  background-size: cover;
  background-position: top 25% right 0;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#hero h4 {
  padding-bottom: 15px;
}

#hero h1 {
  color: #088178;
}

#hero button {
  background-image: url("img/button.png");
  background-color: transparent;
  color: crimson;
  font-size: 2rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  padding: 14px 80px 14px 65px;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Features */
#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.03);
  border: 1px solid #eee;
  border-radius: 4px;
  margin: 15px 0;
}

#feature .fe-box:hover {
  box-shadow: 10px 10px 54px rgba(0, 0, 0, 0.01);
  cursor: pointer;
}

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

#feature .fe-box h6 {
  display: inline-block;
  padding: 9px 8px 6px 8px;
  line-height: 1.5;
  border-radius: 4px;
  font-size: 1rem;
  color: #fff;
  background-color: #088178;
}

#feature .fe-box h6:hover {
  background-color: crimson;
  color: #fff;
  cursor: pointer;
}

/* Products */
#product1 {
  text-align: center;
}

#product1 .pro-container {
  display: flex;
  padding-top: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

#product1 .pro {
  width: 25%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #eee;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 15px 0;
  transition: all 0.4s ease-in-out;
  position: relative;
}

#product1 .pro:hover {
  box-shadow: 10px 10px 54px rgba(0, 0, 0, 0.05);
  transform: scale(1.05);
}

#product1 .pro img {
  width: 100%;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}

#product1 .pro:hover img {
  transform: scale(1.08);
}

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

#product1 .pro .des span {
  font-weight: 600;
  font-size: 18px;
  color: #222;
}

#product1 .pro .des h5 {
  font-size: 14px;
  padding: 7px 0;
  color: #1a1a1a;
}

#product1 .pro .des i {
  color: #ff523b;
  font-size: 12px;
}

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

#product1 .pro .des h4:hover {
  color: crimson;
}

/* Cart Button */
.cart-btn {
  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;
  text-align: center;
}

.cart-btn:hover {
  background-color: crimson;
  color: #fff;
  border: 1px solid crimson;
}

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

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

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

#banner h2 span {
  color: crimson;
}

#banner button:hover {
  background-color: #088178;
  color: #ffff;
}

/* Small Banner Section */
#sm-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

#sm-banner .banner-box {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url("img/banner/b17.jpg");
  height: 50vh;
  background-size: cover;
  background-position: center;
  padding: 30px;
  border-radius: 10px;
}

#sm-banner .banner-box2 {
  background-image: url("img/banner/b10.jpg");
}

#sm-banner h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

#sm-banner h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin: 10px 0;
}

#sm-banner span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 15px;
}

#sm-banner .banner-box button:hover {
  background-color: crimson;
  color: #ffff;
}

/* Newsletter Section */
#newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-image: url("img/banner/b14.png");
  background-repeat: no-repeat;
  background-position: 20% 30%;
  background-color: #088178;
  color: #fff;
  border-radius: 10px;
  padding: 60px 80px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#newsletter .newstext h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

#newsletter .newstext p {
  font-size: 16px;
  color: #f1f1f1;
}

#newsletter .newstext span {
  color: #ffd700;
  font-weight: 600;
}

#newsletter .form {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#newsletter input {
  height: 60px;
  width: 300px;
  border: none;
  outline: none;
  padding: 0 20px;
  font-size: 16px;
  color: #333;
}

#newsletter button.normal {
  height: 60px;
  border-radius: 0;
  background-color: crimson;
  color: #fff;
  padding: 0 40px;
}

#newsletter button.normal:hover {
  background-color: #14d3e0;
  color: #000;
  transform: scale(1.05);
}

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 .logo{
  margin-bottom: 30px;
}

footer h4{
  font-size: 14px;
  padding-bottom:20px;
}

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

footer a{
  font-size: 13px;
  font-weight:700;
  color: #222;
  text-decoration: none;
  margin-bottom: 10px;
}

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

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

footer .install .row img{
  border:1px solid #141414;
}

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

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


footer .copyright{
  text-align:center;
}


/* start media query */

@media (max-width:799px){

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

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

  #navbar.active{
    right:0px;
    transition:0.3s ease;
  }

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

   #mobile{
    align-items: center;
    display:flex;
}
  
  #mobile i{
    font-size: 24px;
    color:#fff;
    cursor:pointer;
    padding-left: 40px;
  }

  #close{
    position:absolute;
    top:30px;
    right: 80%;
    font-size:24px;
    color:#fff;
    cursor:pointer;
    display:initial;
  }

  #lg-bag{
    display:none
  }

  #hero {
  height: 70vh;
  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;
}

#product1 .pro {
  margin: 15px;
}

#banner {
  height: 20vh;
}

#sm-banner .banner-box {
  min-width:100%;
  height: 30vh;
}

}

@media (max-width: 477px) {

  .section-p1{
    padding:20px;
  }
  #header {
    padding: 10px 30px;
}

#hero {
    padding: 0 20px;
    background-position:55%;
}

h1{
  font-size:25px;
}

h2{
  font-size:25px;
}

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

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

#feature .fe-box h6 {
font-size: 10px;
}

#product1 .pro{
  width:100%;
}

#banner{
  height:40vh;
}

sm-banner .banner-box{
  height:40vh;
}

#sm-banner .banner-box2{
  margin-top:20px;
}

#newsletter .form{
  width:100%
}

#newsletter{
  padding:40px 20px;
}

footer .copyright{
  text-align:start;
}

}