@font-face{
  font-family:Mont;
  src:url('../fonts/Montserrat-Regular.ttf');
}

@font-face{
  font-family:Mont;
  src:url('../fonts/Montserrat-Bold.ttf');
}

/* RESET */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Mont',sans-serif;
  background:#ffffff;
  overflow-x:hidden;
}

a{
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

/* TOP BAR */

.top-offer{
  background:#b5d589;
  color:#17365d;
  text-align:center;
  padding:10px;
  font-size:14px;
  font-weight:600;
  letter-spacing:1px;
}

.top-offer span{
  font-weight:800;
}

.shipping-bar{
  background:#203f5f;
  color:#fff;
  text-align:center;
  padding:7px;
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
}

/* HEADER */

.header{
  background:#9db7cc;
  padding:12px 0;
  text-align:center;
}

.logo{
  display:flex;
  justify-content:center;
  align-items:center;
}

.logo img{
  width:220px;
  height:auto;
  display:block;
}

/* HERO SECTION */

.hero{
  position:relative;
  padding:50px 0 0px;
  overflow:hidden;
  background:#ffffff;
}

.container{
  width:1200px;
  max-width:95%;
  margin:auto;
}

.hero-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

/* LEFT SIDE */

.hero-left{
  width:50%;
  overflow:hidden;
  position:relative;
}

/* SLIDER */

.slider{
  width:100%;
  overflow:hidden;
  position:relative;
}

.slide-track{
  display:flex;
  width:400%;
  animation:slide 9s infinite linear;
}

.slide{
  width:25%;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px 10px;
}

/* SLIDE IMAGE */

.slide img{
  width:70%;
  height:auto;
  object-fit:contain;
}

/* TESTIMONIAL */

.testimonial{
  max-width:260px;
  color:#5d7590;
  font-size:18px;
  line-height:1.7;
  font-weight:500;
}

.tag{
  display:inline-block;
  background:#c9e09e;
  color:#fff;
  padding:5px 14px;
  border-radius:30px;
  font-size:12px;
  margin-bottom:12px;
}

/* RIGHT SIDE */

.hero-right{
  width:50%;
  position:relative;
  z-index:2;
}

.small-badge{
  display:inline-block;
  background:#ff8b4b;
  color:#fff;
  padding:8px 18px;
  border-radius:30px;
  font-size:13px;
  font-weight:600;
  margin-bottom:20px;
}

.hero-right h1{
  font-size:3.8rem;
  line-height:1.1;
  color:#214c75;
  font-weight:800;
  margin-bottom:18px;
}

.hero-right p{
  color:#ff7a45;
  font-size:18px;
  font-weight:600;
  line-height:1.7;
  margin-bottom:35px;
}

.shop-btn{
  display:inline-block;
  background:#b3d47d;
  color:#fff;
  padding:18px 40px;
  border-radius:50px;
  font-size:18px;
  font-weight:700;
  transition:.3s;
}

.shop-btn:hover{
  transform:translateY(-3px);
}

/* FLOATING PAWS */

.paw{
  position:absolute;
  z-index:0;
  opacity:.15;
  pointer-events:none;
}

.paw img{
  width:120px;
  height:auto;
  display:block;
}

.paw1{
  left:40px;
  bottom:90px;
}

/* PRODUCT LIST */

.product-list{
  margin-top:50px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:50px;
}

.product-list li{
  list-style:none;
  font-size:22px;
  color:#214c75;
  font-weight:600;
  position:relative;
  padding-left:18px;
}

.product-list li::before{
  content:'•';
  position:absolute;
  left:0;
  top:-3px;
  color:#ff7a45;
  font-size:32px;
}

/* FOOTER */

.footer{
  border-top:1px solid #ddd;
  padding:18px 10px;
  text-align:center;
  color:#5d7590;
  font-size:14px;
  margin-top:40px;
}

/* SLIDER ANIMATION */


@keyframes slide{

  0%,20%{
    transform:translateX(0);
  }

  25%,45%{
    transform:translateX(-25%);
  }

  50%,70%{
    transform:translateX(-50%);
  }

  75%,100%{
    transform:translateX(-75%);
  }
}

/* TABLET */

@media(max-width:991px){

  .hero-wrapper{
    flex-direction:column;
    text-align:center;
    gap:40px;
  }

  .hero-left,
  .hero-right{
    width:100%;
  }

  .slide{
    flex-direction:column;
    text-align:center;
  }

  .hero-right h1{
    font-size:44px;
  }

  .hero-right p{
    font-size:17px;
  }

  .product-list{
    gap:25px;
  }

  .logo{
    font-size:42px;
  }

  .paw{
    display:none;
  }
}

/* MOBILE */

@media(max-width:576px){

  .hero{
    padding:5px 0 3px;
  }

  .top-offer{
    font-size:11px;
    padding:8px;
  }

  .shipping-bar{
    font-size:10px;
  }

  .logo img{
    width:180px;
  }

  .slide{
    gap:20px;
  }

  .slide img{
    width:80%;
  }

  .hero-wrapper{
    gap:25px;
  }

  .hero-right{
    text-align:center;
  }

  .hero-right h1{
    font-size:30px;
    line-height:1.2;
    margin:0 auto 15px;
  }

  /* FIXED BADGE LINE SET */

  .small-badge{
    font-size:15px;
    padding:8px 14px;
    margin:0 auto 18px;
    text-align:center;
    line-height:1.5;
    display:block;
  }

  /* FIXED TEXT LINE SET */

  .hero-right p{
    font-size:14px;
    margin:0 auto 25px;
    text-align:center;
    line-height:1.5;
  }

  .shop-btn{
    padding:14px 30px;
    font-size:16px;
  }

  .product-list{
    gap:15px;
    margin-top:30px;
  }

  .product-list li{
    font-size:18px;
  }

  .footer{
    font-size:12px;
    margin-top:20px;
  }
}