.elementor-6809 .elementor-element.elementor-element-bdec250{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-6809 .elementor-element.elementor-element-0ad68f7{--display:flex;--margin-top:22px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-6809 .elementor-element.elementor-element-1bc35d8{--display:flex;--margin-top:42px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-6809 .elementor-element.elementor-element-e22cb63{width:100%;max-width:100%;text-align:center;}.elementor-6809 .elementor-element.elementor-element-e22cb63 .elementor-heading-title{font-family:"Poppins", Sans-serif;font-size:20px;font-weight:600;text-transform:uppercase;color:#BF382B;}.elementor-6809 .elementor-element.elementor-element-7c60eec{text-align:center;}.elementor-6809 .elementor-element.elementor-element-7c60eec .elementor-heading-title{font-family:"Poppins", Sans-serif;font-size:39px;font-weight:600;text-transform:uppercase;color:#BF382B;}.elementor-6809 .elementor-element.elementor-element-9e1dc3d{--display:flex;}body.elementor-page-6809 .container{max-width:1360px;}body.elementor-page-6809 .elementor-section.elementor-section-boxed>.elementor-container{max-width:1360px;}@media(max-width:767px){.elementor-6809 .elementor-element.elementor-element-bdec250{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-6809 .elementor-element.elementor-element-1000e69{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-6809 .elementor-element.elementor-element-0ad68f7{--padding-top:7px;--padding-bottom:7px;--padding-left:7px;--padding-right:7px;}.elementor-6809 .elementor-element.elementor-element-7c60eec .elementor-heading-title{font-size:23px;}.elementor-6809 .elementor-element.elementor-element-9e1dc3d{--padding-top:7px;--padding-bottom:7px;--padding-left:7px;--padding-right:7px;}}/* Start custom CSS for html, class: .elementor-element-1000e69 *//* =====================================================
   GOOGLE FONT
===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* =====================================================
   MAIN SLIDER
===================================================== */

.hero-slider {
  position: relative;
  width: 100%;
  height: 73vh;
  overflow: hidden;
}

/* =====================================================
   SLIDES
===================================================== */

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* =====================================================
   CONTENT
===================================================== */

.content {
  position: absolute;
  top: 45%;
  left: 4%;
  transform: translateY(-45%);
  color: #fff;
  max-width: 500px;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  z-index: 2;
}

/* =====================================================
   SUBTITLE
===================================================== */

.subtitle {
  font-size: 15px;
  color: #bf382b;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* =====================================================
   HEADING
===================================================== */

.hero-slider .content h1 {
  font-size: 50px !important;
  line-height: 1.1;
  margin-bottom: 15px;
  color: #bf382b !important;
  font-weight: 700;
}

/* =====================================================
   DESCRIPTION
===================================================== */

.desc {
  font-size: 16px;
  margin-bottom: 25px;
  color: #111;
  line-height: 1.7;
  font-weight: 400;
}

/* =====================================================
   BUTTONS
===================================================== */

.buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* =====================================================
   BUTTON
===================================================== */

.btn {
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease;
  font-size: 15px;
}

/* =====================================================
   REMOVE UNDERLINE
===================================================== */

.btn,
.btn a {
  text-decoration: none !important;
}

.btn:hover,
.btn a:hover {
  text-decoration: none !important;
}

/* =====================================================
   BUTTON COLORS
===================================================== */

.btn.red {
  background: #bf382b !important;
  color: #fff !important;
}

.btn.white {
  background: #fff;
  color: #000;
}

/* =====================================================
   DOTS
===================================================== */

.dots {
  position: absolute;
  bottom: 30px;
  left: 8%;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.dots span {
  width: 10px;
  height: 10px;
  background: #bf382b;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}

.dots span.active {
  background: #bf382b;
}

/* =====================================================
   LARGE TABLETS
===================================================== */

@media (max-width: 1024px) {

  .hero-slider {
    height: 82vh;
  }

  .content {
    left: 6%;
    right: 6%;
    max-width: 90%;
  }

  .hero-slider .content h1 {
    font-size: 42px !important;
    line-height: 1.12;
  }

  .desc {
    font-size: 15px;
    max-width: 500px;
  }

  .btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .dots {
    left: 6%;
  }

}

/* =====================================================
   TABLETS
===================================================== */

@media (max-width: 768px) {

  .hero-slider {
    height: 78vh;
    min-height: 620px;
  }

  .slide {
    background-size: cover !important;
    background-position: 68% center !important;
  }

  .content {
    top: 44%;
    left: 5%;
    right: 5%;
    transform: translateY(-44%);
    max-width: 92%;
  }

  .subtitle {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .hero-slider .content h1 {
    font-size: 38px !important;
    line-height: 1.12;
    margin-bottom: 12px;
    max-width: 90%;
  }

  .desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 85%;
  }

  .buttons {
    gap: 12px;
  }

  .btn {
    padding: 12px 22px;
    font-size: 14px;
  }

  .dots {
    left: 5%;
    bottom: 18px;
  }

}

/* =====================================================
   MOBILE PERFECT FIX
===================================================== */

@media (max-width: 576px) {

  .hero-slider {
    height: 75vh;
    min-height: 500px;
  }

  .slide {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat;
  }

  .content {
    top: 25%;
    left: 6px;
    right: 15px;
    transform: translateY(-42%);
    max-width: 100%;
    z-index: 5;
  }

  .subtitle {
    font-size: 11px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .hero-slider .content h1 {
    font-size: 30px !important;
    line-height: 1.08;
    margin-bottom: 12px;
    max-width: 100%;
  }

  .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 18px;
    max-width: 95%;
  }

  .buttons {
    width: 100%;
  }

  .btn {
    width: 50%;
    padding: 13px 20px;
    font-size: 14px;
    border-radius: 12px;
    text-align: center;
    justify-content: center;
  }

  .dots {
    left: 20px;
    bottom: 14px;
  }

}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 390px) {

  .hero-slider {
    min-height: 400px;
  }

  .slide {
    background-position: center !important;
  }

  .content {
    top: 17%;
    left: 3%;
    transform: translateY(-30%);
       transform: translateY(-30%);
  }

  .hero-slider .content h1 {
    font-size: 25px !important;
    line-height: 1.1;
  }

  .desc {
    font-size: 13px;
    line-height: 1.5;
  }

  .btn {
    font-size: 13px;
    padding: 12px 18px;
  }

}

/* =====================================================
   EXTRA LARGE LCD
===================================================== */

@media (min-width: 1800px) {

  .hero-slider {
    height: 80vh;
    min-height: 850px;
  }

  .content {
    left: 8%;
    max-width: 700px;
  }

  .hero-slider .content h1 {
    font-size: 40px !important;
  }

  .desc {
    font-size: 19px;
    max-width: 620px;
  }

}

/* =====================================================
   LAPTOPS
===================================================== */

@media (max-width: 1440px) {

  .hero-slider .content h1 {
    font-size: 52px !important;
  }

}

@media (max-width: 1280px) {

  .hero-slider {
    min-height: 650px;
  }

  .content {
    max-width: 520px;
  }

  .hero-slider .content h1 {
    font-size: 48px !important;
  }

}

/* =====================================================
   EXTRA SAFETY
===================================================== */

@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
  }

  * {
    box-sizing: border-box;
  }

  img {
    max-width: 100%;
    height: auto;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8e6fbc7 */.category-section{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    max-width:1200px;
    margin:auto;
}

.category-card{
    background:#fff;
    border-radius:10px;
    text-decoration:none;
    overflow:hidden;
    transition:.3s;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:180px;
}

.category-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 25px rgba(0,0,0,.15);
}

.category-card img{
    width:100%;
    height:140px;
    object-fit:contain;
    padding:15px;
}

.category-card h3{
    background:#BF382B;
    color:#fff;
    text-align:center;
    padding:13px;
    margin:0;
    font-size:18px;
    font-weight:500;
    line-height:1.3;
}

/* Tablet */

@media(max-width:992px){

.category-section{
grid-template-columns:repeat(3,1fr);
}

.category-card img{
height:110px;
}

}

/* Mobile */

@media(max-width:768px){

.category-section{
grid-template-columns:repeat(2,1fr);
gap:15px;
}

.category-card{
min-height:160px;
}

.category-card img{
height:100px;
}

.category-card h3{
font-size:16px;
padding:10px;
}

}

/* Small Mobile */

@media(max-width:480px){

.category-section{
grid-template-columns:repeat(2,1fr);
gap:12px;
}

.category-card{
min-height:145px;
}

.category-card img{
height:85px;
padding:10px;
}

.category-card h3{
font-size:14px;
padding:8px;
}

}/* End custom CSS */