.frontpage-slider .swiper-slide {
  width: 100%;
  height: auto;
  padding-bottom: 0px;
  min-height: 100px;
}
@media (min-width: 992px) {
  .frontpage-slider .swiper-slide {
    width: 100%;
    height: auto;
    padding-bottom: 0px;
    min-height: 100px;
  }
}
@media (min-width: 1200px) {
  .frontpage-slider .swiper-slide {
    padding-bottom: 0px;
  }
}
@media (min-width: 1440px) {
  .frontpage-slider .swiper-slide {
    padding-bottom:0px;
  }
}

.frontpage-slider .swiper-button-prev,
.frontpage-slider .swiper-button-next {
  top: calc(100% / 2 - 20px);
}
@media (min-width: 992px) {
  .frontpage-slider .swiper-button-prev,
  .frontpage-slider .swiper-button-next {
    top: calc(100% / 2 - 20px);
  }
}
@media (min-width: 1200px) {
  .frontpage-slider .swiper-button-prev,
  .frontpage-slider .swiper-button-next {
    top: calc(100% / 2 - 20px);
  }
}
@media (min-width: 1440px) {
  .frontpage-slider .swiper-button-prev,
  .frontpage-slider .swiper-button-next {
    top: calc(100% / 2 - 20px);
  }
}

.frontpage-slider .swiper-slide > div {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}

.swiper-slide .slide-image {
  width: 100%; 
  height: auto;
  aspect-ratio: 1024 / 219; 
  object-fit: cover; 
  display: block;
}


.product-information a[href="#reviews"]{
  font-weight: bold;
  color: #008000;
}

@media (min-width: 1200px) {
  .nav-menu li>a,
  .nav-menu li>span {
    padding:0 5px;
  }
}
.std-button {
  color: #0d0d0d;
  border: 1px solid #dd3232;
}

@media (max-width: 991.98px) {
#searchform-mob {
  border-radius: 20px;
  margin: 0 30px 10px;
}
.menu-lvl-1 > li > a,
.menu-lvl-1 > li > span {
  font-weight: 800;
  font-size: 18px;
}
.menu-lvl-1 > .d-lg-none a {
  color: red;
  text-align: center;
  padding: 18px 0;
}
.menu-lvl-1 > .d-lg-none {
  border: 9px solid #e5e5e5 !important;
  border-radius: 90px;
  margin: 10px auto;
  background: #fbf8f8;
  box-shadow: 2px 2px 2px #111010;
  width: 80%;
}
.footer-links tr {
  display: flex;
  flex-direction: column;
}
}

/*****************************************************************************/

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

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#111827;
    padding:50px 20px;
}

/* Container */

.specifications{
    max-width:1100px;
    margin:auto;
}

/* Heading */

.specifications h2{
    font-size:34px;
    font-weight:700;
    color:#111827;
    margin-bottom:10px;
}

.specifications p{
    color:#6b7280;
    margin-bottom:40px;
    font-size:15px;
}

/* GRID */

.spec-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:22px;

}

/* CARD */

.spec-card{

    position:relative;

    display:flex;

    align-items:center;

    gap:18px;

    background:#fff;

    border:1px solid #ececec;

    border-radius:16px;

    padding:22px;

    overflow:hidden;

    transition:.35s ease;

    box-shadow:0 8px 30px rgba(0,0,0,.05);

}

/* RED BAR */

.spec-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:6px;

    height:100%;

    background:#ef2323;

}

/* HOVER */

.spec-card:hover{

    transform:translateY(-6px);

    background:#fff7f7;

    border-color:#ef2323;

    box-shadow:0 18px 40px rgba(239,35,35,.18);

}

/* ICON */

.spec-icon{

    width:62px;

    height:62px;

    min-width:62px;

    border-radius:14px;

    background:#fff1f1;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#ef2323;

    transition:.3s;

}

.spec-card:hover .spec-icon{

    background:#ef2323;

    color:#fff;

    transform:scale(1.1);

}

/* SVG */

.spec-icon svg{

    width:30px;

    height:30px;

}

/* TEXT */

.spec-text{

    flex:1;

}

.spec-title{

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:1px;

    color:#ef2323;

    font-weight:700;

    margin-bottom:6px;

}

.spec-value{

    font-size:18px;

    font-weight:600;

    color:#111827;

}

/* Header Card */

.header-card{


}

.header-card h1{

    font-size:34px;

    margin-bottom:10px;

}

.header-card p{

    color:#d1d5db;

    font-size:15px;

}

/* Mobile */

@media(max-width:768px){

.spec-grid{

grid-template-columns:1fr;

}

.header-card h1{

font-size:28px;

}

.spec-card{

padding:18px;

}

.spec-value{

font-size:16px;

}

}