:root {
    --header_bg:#222;
    --header_text:#222;
    --hero_bg:#292C3010;
    --body_bg:#222;
    --footer_bg:#cd1b1b;
    --footer_text:#222;
    --menu_bg:#222;
    --menu_text:#222;
    --search_bg:#222;
    --search_text:#222;
    --product_bg:#222;
    --h:#222;
    --a:#222;
    --mainColor:#333;
    --text_in_main_btn:#333;
    --card_head_bg:#333;
    --card_head_text:#333;
    --card_body_bg:#333;
    --card_border:10px;
   --other_btn_bg:#333;
   --other_btn_text:#444;


}
* {
    box-sizing:border-box;
    margin: 0;
    padding: 0;
}
/* Container */
.cont {
    background-color: var(--bg-card);
    margin: 0 auto;
    width: calc(100% - 100px);
}
/* Tool Flex Box */
.justify-content-center {
    justify-content: center;
}
.justify-content-start {
    justify-content:flex-start;
}
.justify-content-end {
    justify-content: flex-end;
}
/* Compenent */
.center{
   display: flex;
    align-items: center;
   justify-content: center;
}

.particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .container {
    /* width: 80%; */
  }
  
  .swiper {
    width: 100%;
    padding: 50px 0;
  }
  
  .swiper-slide {
    position: relative;
    width: 200px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    transition: 1s;
    user-select: none;
  }
  
  .swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      120deg,
      rgba(130, 13, 13, 0.8),
      rgba(39, 8, 92, 0.8)
    );
    mix-blend-mode: multiply;
    z-index: 1;
  }
  
  .swiper-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: 1s;
  }
  
  .swiper-slide p {
    position: absolute;
    left: 20px;
    bottom: 10px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 2px;
    z-index: 2;
    opacity: 0;
    transform: rotate(360deg) scale(0);
    transition: 0.8s;
  }
  
  .swiper-slide-active {
    position: relative;
    width: 350px;
    transition: 1s;
  }
  
  .swiper-slide-active::after {
    background: rgba(123, 123, 123, 0.4);
  }
  
  .swiper-slide-active img {
    transform: scale(1.3);
    object-position: 50% 0%;
  }
  
  .swiper-slide-active p {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
  
  .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 50%;
    transition: all 0.6s ease-in-out;
  }
  
  .swiper-pagination-bullet-active {
    width: 32px;
    background-color: #6f1223;
    border-radius: 14px;
  }
  
  .audio-icon {
    font-size: 2rem;
    color: #fff;
  }
  
  #play-pause-button {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 3%;
    bottom: 5%;
    background-color: transparent;
    background-image: radial-gradient(
      50% 115% at 50% -5%,
      rgba(255, 255, 255, 0.11) 0%,
      transparent 100%
    );
    box-shadow: inset 0 0px 10px 0px rgba(255, 255, 255, 0.14),
      inset 0px 5px 10px 0px rgba(255, 255, 255, 0.11),
      inset 0px 2px 5px 0px rgba(255, 255, 255, 0.4),
      inset 0px 3px 20px 0px rgba(0, 0, 0, 0.25);
    z-index: 10;
    border: 0;
    border-radius: 50%;
    outline: 0;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  
  #play-pause-button:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }
  
  #play-pause-button:active {
    transform: scale(0.95);
  }
  
  .hidden {
    display: none;
  }
  

/*Center Content */
/* Row and coulmn */
.s-row {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    gap: var(--space);
}
.s-col {
    background-color: rebeccapurple;
}
.s-col-df-5 {
    width: calc((100% / 5) - var(--space));
}
.s-col-df-4 {
    width: calc((100% / 4) - var(--space));
}
.s-col-df-3 {
    width: calc((100% / 3) - var(--space));
}
/* laptop screen */
@media (max-width:1200px) {
    .cont {
        width: calc(100% - 60px);
   }
    .s-col-xl-5 {
        width: calc((100% / 5) - var(--space));
   }
    .s-col-xl-4 {
        width: calc((100% / 4) - var(--space));
   }
    .s-col-xl-3 {
        width: calc((100% / 3) - var(--space));
   }
    .s-col-xl-2 {
        width: calc((100% / 2) - var(--space));
   }
}
/* LG Screen */
@media (max-width:922px) {
    .s-col-lg-5 {
        width: calc((100% / 5) - var(--space));
   }
    .s-col-lg-4 {
        width: calc((100% / 4) - var(--space));
   }
    .s-col-lg-3 {
        width: calc((100% / 3) - var(--space));
   }
    .s-col-lg-2 {
        width: calc((100% / 2) - var(--space));
   }
    .s-col-lg-1 {
        width: 100%;
   }
}
/* ipad Screen */
@media (max-width:768px) {
    .cont {
        width: 100%;
        padding: 0 15px;
   }
    .s-col-md-3 {
        width: calc((100% / 3) - var(--space));
   }
    .s-col-md-2 {
        width: calc((100% / 2) - var(--space));
   }
    .s-col-md-1 {
        width: 100%;
   }
}
/* Mobile Screen */
@media (max-width:500px) {
    .cont {
        background-color: blue;
   }
    .s-col-md-sm {
        width: calc((100% / 2) - var(--space));
   }
    .s-col-sm-1 {
        width: 100%;
   }
}
