

/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
    background-color: transparent;
    width: 300px;
    height: 300px;

    perspective: 1000px; /* Remove this if you don't want the 3D effect */
  }
  
  /* This container is needed to position the front and back side */
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    min-height: 350px;
  }
  
 .r_slider{
    width: 100%;
    overflow: hidden;
     padding:50px 0 100px;
 }

  /* Do an horizontal flip when you move the mouse over the flip box container */
  .active .flip-card-inner,
  .r_slider .product_slid .slider_flip_item:hover .flip-card-inner,
  .active .flip-card .flip-card-inner,
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg) !important;
  }
  
  .r_slider .product_slid .slider_flip_item .flip-card-front img,
  .r_slider .product_slid .slider_flip_item .flip-card-front h4{
    background-color: #eba904;
    padding: 10px;
    box-sizing: border-box;
  }

  .r_slider .product_slid .slider_flip_item .flip-card-front img{
    padding-bottom: 0;
  }
  /* Position the front and back side */
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
    bottom: 10px;
  }
  
  
  
  /* Style the back side */
  .flip-card-back {
    background-image: url('images/blank\ circle.png');
    background-size: cover;
    color: white;
    transform: rotateY(180deg);
    padding: 50px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', Helvetica, sans-serif;
    font-size: 16px;
    line-height: 18px;
    height: 300px;
  }

  .r_slider .product_slid .slider_flip_item .flip-card-back{
    color: #fff;
    font-size: 16px;
    transform: rotateY(180deg);
    min-height: 350px;
    padding: 10px;
    flex-direction: column;
    line-height: 1.2;
    height: auto;
    border: 3px solid #eba904;
    background-color: #B5332D;
    border-radius: 10px;
  }

  
  .r_slider .product_slid .slider_flip_item .flip-card-back h3{
    font-size: clamp(24px, 2.5vw, 26px);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1;
  }

  main .flip_section{
    margin: 120px 0 100px;
    text-align: center;
  }

  main .flip_section .header{
    text-transform: uppercase;
    text-align: center;
    font-family: 'Love-of-Thunder', Helvetica, sans-serif;
    font-size: clamp(24px, 4vw, 35px);
    font-weight: normal;
  }

  main .flip_section .header h2{
    font-size: clamp(30px, 6vw, 70px);
    line-height: 1;
    font-weight: normal;
  }

  main .flip_section .flipwrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 30px;
  }



  main .flip_section .flipwrapper .flip-card h3{
    color: #eba904;
    text-align: center;
    font-size: 24px;
    font-family: 'Love-of-Thunder', Helvetica, sans-serif;
    font-weight: 600;
    margin-top: 20px;
    text-transform: uppercase;
  }
  .r_slider .product_slid .slider_flip_item img{
    width: 100%;
    height: auto;
  }

    .r_slider .product_slid .slider_flip_item {
    background: transparent;
    list-style: none;
    color: #000;
    font-family: Tahoma;
    padding: 10px;
    position: relative;
    text-align: center;
    display: inline-block !important;
      width: 198px !important;
      border-radius: 10px;
      perspective: 1000px;
  }

    .r_slider .product_slid .slider_flip_item h4{
    font-size: 18px;
    font-family: 'Love-of-Thunder', Helvetica, sans-serif;

    text-transform: uppercase;
    line-height: 1.1;
    padding: 10px 0 5px;
    text-align: center;
  }

  .r_slider .header{
    text-transform: uppercase;
    text-align: center;
    font-family: 'Love-of-Thunder', Helvetica, sans-serif;

    font-size: clamp(24px, 4vw, 35px);
    color:#fff;
    margin-bottom: 30px;
}

.r_slider .header h2{
    font-size: clamp(36px, 6vw, 70px);
        font-family: 'Love-of-Thunder', Helvetica, sans-serif;
    line-height: 1;
 
}



main .r_slider .cta_wrapper{
    text-align: center;
}

main .r_slider .cat_wrtapper{
        width: 100%;

      overflow: hidden;

      position: relative;
      text-align: center;
}

main .r_slider .product_slid{
       width: max-content;
      height: max-content;
      white-space: nowrap;
      text-align: center;
      margin: 0 auto;
}

.product_slid .flip-card-front{
  background-color: #eba904;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}