/** Shopify CDN: Minification failed

Line 108:16 Expected identifier but found whitespace
Line 108:18 Unexpected "{"
Line 108:28 Expected ":"

**/
 .benefits-right img{
    width: 100%;
   border-radius: 36px;
  }
  .bold-span{
    /* font-family: 'mirantemedium'; */
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 108.333%;
  }
  .benefits-left-inner h2{
     /* font-family: 'mirantemedium'; */
  }
  .benifit_test{
    /* font-family: 'lorinregular'; */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 149.5%;
  }
  .product-benefits-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    
  }
.padding{
    padding-inline: 70px;
    max-width: 1400px;
    margin-inline: auto;
}
.benefits-left,
.benefits-right {
    width: 48%;
}

.benefits-left {
    padding-right: 70px;
    box-sizing: border-box;
}

.benefits-left h2 {
    font-size: 36px;
    margin: 0;
    margin-bottom: 12px;
}

.benefits-left p {
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
}

.benefits-left-inner {
    max-width: 427px;
}

.benefits-points {
    margin-top: 50px;
}

.benefits-points ul {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-left: 70px;
    position: relative;
}

.benefits-points li::before {
    content: '';
    width: 16px;
    height: 16px;
    background: #CF2E1D;;
    position: absolute;
    border-radius: 50%;
    left: -40px;
    top: 7px;
    z-index: 2;
}

.benefits-points li {
    margin-bottom: 70px;
    position: relative;
}

.benefits-points li:last-of-type {
    margin-bottom: 0;
}

.benefits-points li span {
    font-size: 14px;
}

.benefits-points li span.bold-span {
    font-size: 24px;
    color: #1A1A1A;
    font-weight: bold;
    display: block;
    margin-bottom: 14px;
    font-family: {{ settings.heading_font_family }};
}

.benefits-points ul::before {
    content: '';
    width: 2px;
    height: 100%;
    background: #CF2E1D;;
    position: absolute;
    left: 37px;
    top: 8px;
}

.benefits-points li:last-of-type::after {
    content: '';
    width: 8px;
    height: calc(100% - 5px);
    /* background: #fff; */
    position: absolute;
    left: -36px;
    bottom: -16px;
}

.benefits-right {
    position: sticky;
    top: 80px;
    height: 100%;
}

@media screen and (max-width: 1023px) {
    .benefits-left h2 {
        font-size: 28px;
    }
    .benefits-points li span.bold-span {
        font-size: 20px;
    }
  
}
@media screen and (max-width: 768px){
  .product-benefits-inner {
      flex-direction: column-reverse;
      gap: 30px;
  }
  .benefits-left, .benefits-right {
    width: 100%;
    position: unset;
}
.benefits-left-inner {
    max-width: unset;
}
.benefits-left {
    padding: 0;
}
  
.padding {
    padding-inline: 15px;
}
}