/** Shopify CDN: Minification failed

Line 1607:42 Unexpected "{"

**/
/* M Formula Card */
.m-c-formula-container {
width: 100%;
box-sizing: border-box;
}
.m-c-formula-card {
overflow: hidden;
position: relative;
display: flex;
flex-direction: row-reverse;
align-items: stretch;
}
.m-c-formula-card-content {
position: relative;
z-index: 2;
text-align: left;
display: flex;
flex-direction: column;
justify-content: center;
flex: 0 0 55%;
}
.m-c-formula-headline *{
line-height: 1.15;
margin: 0;
}
.m-c-formula-sub {
line-height: 1.7;
margin-top: 0;
}
.m-c-formula-btn {
display: block;
width: fit-content;
text-align: center;
letter-spacing: 2.2px;
text-transform: uppercase;
text-decoration: none;
transition: all 0.25s ease;
box-sizing: border-box;
}
.m-c-formula-btn:hover {
transform: translateY(-2px);
}
.m-c-formula-trust {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}
.m-c-formula-trust-item {
display: flex;
align-items: center;
}
.m-c-formula-card-img {
width: 100%;
position: relative;
flex: 0 0 45%;
overflow: hidden;
}
.m-c-formula-img {
width: 100%;
height: 100%;
object-fit: cover;
position:absolute;
top:0;
left:0
}

@media (max-width: 850px) {
.m-c-formula-card {
flex-direction: column;
}
.m-c-formula-card-content {
flex: auto;
}
.m-c-formula-card-img {
flex: auto;
}
.m-c-formula-btn {
width: 100%;
}
.m-c-formula-headline *{
text-align:center;
}
.m-c-formula-trust {
justify-content:center;
}
}
/* News Letter */
.m-newsletter.newsletter{
  text-align:left;
}
.m-newsletter .newsletter__subheading{
  margin-left:0;
  margin-right:0;
  text-align:left;
}
.m-newsletter  #contact_form{
  margin-left:0;
  margin-right:0;
  text-align:left;  
}
.m-new-field-wrapper{
  display:flex;
  gap:8px;
}
#Subscribe{
  position: static;
  height: 47px;
  padding: 12px 24px;
  width: auto;
  background: #000;
  min-width: 150px;
  font-size: 16px;
  color: #fff;
  border: 1px solid rgb(255 255 255 / 58%);
}
/* Product Gallery */
@media (min-width: 750px){
  .product-media-gallery{
    position: relative;
  }
    
  .product-media-gallery .product-media-wrapper{
    width: calc(100% - 100px);
    margin-left: auto;
  }
  .product-media-gallery .product-media-thumbnails{
    position: relative;
    width: 100px;
    height: auto;
  }
  .product-media-gallery .thumbnail-slider{
    display: block!important;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow-y: scroll;
    margin: 0!important;
  }
  .product-media-gallery .thumbnail-slider::-webkit-scrollbar{
    display:none;
  }
  .product-media-gallery .thumbnail-list{
    display: block!important;
  }
  .product-media-gallery .slider-button{
    display: none!important;
  }
  .product-media-gallery .thumbnail-list li{
     width: 70px!important;
    margin-bottom: 10px!important;
  }
}
/* M Dropdown Section */
.u-accordion-item-desc-container{
    padding: 5px 5px;
}
.u-accordion-item-title{
    opacity: 1;
    transition: opacity 0.4s ease;
}
.u-accordion-item .u-accordion-item-title {
    margin: 0;
    font-size: 18px;
    display: flex;
    width: 100%;
    cursor: pointer;
    justify-content: space-between;
    flex-direction: row-reverse;
    box-sizing: border-box;
    align-items: center;
}

.u-accordion-item .u-accordion-item-desc {
    display: block;
    box-sizing: border-box;
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s ease;
}

.u-accordion-item .icon {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 20px;
    height: 20px;
}
.u-accordion-item .icon::before,
.u-accordion-item .icon::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    background: #000;
    transition: transform 0.6s ease;
}
.u-accordion-item .icon::before {
    transform: rotate(0deg);
}
.u-accordion-item .icon::after {
    transform: rotate(90deg);
}
.u-accordion-item-title.active .icon::before {
    transform: rotate(540deg);
}

.u-accordion-item-title.active .icon::after {
    transform: rotate(540deg);
}
.u-accordian-title-icon-wrapper{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    line-height:1.3;
}
/* M Buy Buttons  */
.m-product-form.product-form{
  display:flex;
  align-items:center;
  gap:10px;
}
.m-product-form .product-form__submit{
  margin:0;
  font-weight:bold;
  text-transform:uppercase;  
  border-radius:4px;
}
.m-product-form .form{
  width:80%;
}
.m-product-form  .quantity{
  background:#E7E7E7;
}
.m-product-form  .quantity:after{
  box-shadow: 0 0 0 var(--inputs-border-width) rgb(18 18 18 / 5%);
}
/* M Inventory  */

.minventory-box {
  display: flex;
  align-items: center;
}
.cstm-inventory-icon {
  position: relative;
  display: inline-block;
}

.cstm-inventory-icon:before {
  animation: inventory-animation 2s linear infinite;
}
.cstm-inventory-icon:after,
.cstm-inventory-icon:before {
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
}

@keyframes inventory-animation {
    0% {
        opacity: 0.5;
    }

    to {
        transform: scale(2.5);
        opacity: 0;
    }
}
/* M Rating Badge */
.cstm-rating-box a{
  color: inherit;
  text-decoration: none;
}
.cstm-rating-box img{
  border-radius: 0!important;
}
/* M User Reviews */
.m-user-reviews {
  position: relative;
  overflow: hidden;
}

.m-user-reviews-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.m-user-reviews-arrows {
  display: flex;
  gap: 20px;
}

.m-user-reviews-arrow {
  cursor: pointer;
}

.m-user-reviews-list {
  display: flex;
}

.m-user-reviews-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.m-user-reviews-img {
  position: relative;
  overflow: hidden;
}

.m-user-reviews-img img {
  width: 100%;
  display: block;
}

.m-user-reviews-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.m-user-reviews-tag:last-child {
  left: auto;
  right: 10px;
}

.m-user-reviews-bottom {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.m-user-reviews-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.m-user-reviews-star {
  display: flex;
  align-items: center;
  gap: 8px;
}

.m-user-reviews-product {
  display: flex;
  gap: 10px;
  align-items: center;
}
/* M safe Guard */
.m-safe-wrap{
  margin: 0 auto;
}

.m-safe-list{
  display:flex;
}

.m-safe-item{
  transition: all .3s ease;
  cursor: pointer;
}

.m-safe-icon{
  display:block;
}

.m-safe-title{
  line-height: 1.4;
  display: inline-flex;
}

.m-safe-text{
  line-height: 1.5;
}

.m-safe-popup{
  position: fixed;
  z-index: 99;
  display:none;
}

.m-safe-popup::before{
  content:'';
  position:absolute;
  top:-31px;
  left:50%;
  width:0;
  height:0;
  border:16px solid transparent;
  transform: translateX(-50%);
}

.m-safe-popup-top{
  display:none;
}

.m-safe-popup-close{
  position:absolute;
  top:50%;
  right:16px;
  transform:translateY(-50%);
  cursor:pointer;
  width:20px;
}

.m-safe-popup-close svg{
  display:block;
  width:100%;
}

/* Desktop reorder */
@media(min-width: 991px){
  .m-safe-item:first-child,
  .m-safe-item:last-child{
    order:-1;
  }
  .m-safe-item:nth-child(2){
    order:1;
  }
}

/* Tablet */
@media(max-width: 991px){
  .m-safe-list{
    flex-wrap:wrap;
  }
  .m-safe-item{
    width: calc(33.333% - 10px);
  }
  .m-safe-item:nth-child(n+4){
    width: calc(50% - 8px);
  }
}

/* Mobile */
@media(max-width: 640px){
  .m-safe-item,
  .m-safe-item:nth-child(n+4){
    width: calc(50% - 8px);
  }
  .m-safe-item:last-child{
    width:100%;
  }

  .m-safe-popup{
    width:100%;
    height:100%;
    top:0 !important;
    left:0 !important;
    background: rgba(0,0,0,.5);
    padding:0;
  }

  .m-safe-popup::before{
    display:none;
  }

  .m-safe-popup-cont{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    background:#fff;
    border-radius:12px 12px 0 0;
    overflow:hidden;
  }

  .m-safe-popup-top{
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    border-bottom:1px solid #eaeaea;
    color:#111;
    font-size:14px;
    padding:0 40px;
  }

  .m-safe-popup-txt{
    padding:16px;
    color:#555;
    font-size:14px;
    line-height:1.5;
  }
}
/* Market */
.m-market{
  overflow: hidden;
  position: relative;
}

.m-market-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  margin-bottom:50px;
}

.m-market-heading{
  line-height:1.14;
  margin:0;
  font-weight:400;
}

.m-market-arrows{
  display:flex;
  align-items:center;
  gap:40px;
}

.m-market-arrow{
  width:40px;
  cursor:pointer;
}

.m-market-arrow svg{
  width:100%;
}

.m-market-list{
  display:flex;
}

.m-market-item{
  width:calc(33.333% - 13px);
  display:flex;
  flex-direction:column;
}

.m-market-img img{
  width:100%;
  display:block;
}

.m-market-content{
  padding:30px 20px 24px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  flex:1;
}

.m-market-title{
  margin:0;
  font-weight:400;
}

.m-market-desc{
  margin-top:8px;
}
.m-market-pagination{
  position:static !important;
  text-align:center;
}
.m-market-pagination .swiper-pagination-bullet-active{
  background:#190a0a;
}
.m-market-btn{
  width:200px;
  height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:40px;
  transition:.3s;
  text-decoration:none;
}

@media(max-width:991px){
  .m-market-top{
    margin-bottom:30px;
  }

  .m-market-arrows{
    display:none;
  }

  .m-market-item{
    width:320px;
  }

  .m-market-content{
    padding:20px 13px 15px;
  }

  .m-market-btn{
    width:130px;
    height:41px;
  }
  .m-market-heading{
    font-size:24px;
  }
}
/* Talk To Expert */
.m-talktoexpert {
  position: relative;
  overflow: hidden;
  display: flex;
}

.m-talktoexpert__inner {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  align-items: center;
  margin: 0 auto;
}

.m-talktoexpert__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.m-talktoexpert__avatar-wrap {
  position: relative;
}

.m-talktoexpert__avatar {
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.m-talktoexpert__online {
  position: absolute;
  border-radius: 50%;
  opacity: 0.659;
}

.m-talktoexpert__content {
  text-align: left;
}

.m-talktoexpert__title {
  line-height: 1.2;
  font-weight: 500;
  margin: 0 0 10px;
}

.m-talktoexpert__desc {
  line-height: 1.4;
  margin: 0 0 20px;
  font-weight: 400;
}

.m-talktoexpert__btn {
  display: inline-block;
  appearance: none;
  border: 0;
  cursor: pointer;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 0.08s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.m-talktoexpert__btn:focus {
  outline: none;
}

.m-talktoexpert__modal {
  display: none;
}

@media (max-width: 989px) {
  .m-talktoexpert {
    text-align: center;
  }

  .m-talktoexpert__inner {
    display: block;
    text-align: center;
  }

  .m-talktoexpert__avatar-wrap {
    margin: 10px auto 0;
  }

  .m-talktoexpert__content {
    text-align: center;
    margin-top: 20px;
  }

  .m-talktoexpert__desc {
    margin: 0 auto 20px;
  }
}
/* M Guarantees Section */
.cstm-services{
    display: grid;
}
.cstm-services-box{
  text-align: center;
  padding: 0 10px;
}
/* M Marque */
.M-marquee-wrapper{
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
}
 .M-marquee-containerWrapper{
  position: relative;
  display: flex;
  overflow: hidden;
  width: 200%;
 } 
 .M-marquee-container {
  display: flex;
  width: fit-content;
  flex-shrink:0;
 }
 .M-marquee-content {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  flex-shrink:0;
 }
 .M-marquee-text{
   display: flex;
   align-items: center;
   flex-shrink:0; 
 }
@keyframes track {
  0% {
    transform: translateX(0)
  }
    100% {
      transform: translateX(-100%)
    }                                                                                                 
}
/* M Hero Banner */
.u-hero {
width: 100%;
overflow: hidden;
position: relative;
}
.u-hero-topline {
position: absolute;
top: 0;
left: 0;
right: 0;
display:block !important;
}
.u-hero-blob {
position: absolute;
border-radius: 50%;
pointer-events: none;
filter: blur(80px);
display:block !important;
}
.u-hero-wrap {
display: flex;
align-items: stretch;
margin: 0 auto;
position: relative;
z-index: 1;
width:100%;
justify-content:space-between;

}
.u-hero-left {
flex: 0 0 50%;
display: flex;
flex-direction: column;
justify-content: center;
position: relative;
z-index: 2;
}
.u-hero-rating {
display: flex;
align-items: center;
}
.u-hero-pill {
display: inline-flex;
align-items: center;
width: fit-content;
}
.u-hero-pill-txt {
letter-spacing: 1.8px;
}
.u-hero-pill-dot {
border-radius: 50%;
animation: pulseDot 2.2s infinite;
display:block !important;
}
.u-hero-headline *{
line-height: 1.1;
margin: 0;
}
.u-hero-divider {
display:block !important;
}
.u-hero-subtext {
line-height: 1.7;
max-width: 400px;
margin-top: 0;
}
.u-hero-btn {
display: inline-flex;
align-items: center;
justify-content: center;
letter-spacing: 2.2px;
text-transform: uppercase;
text-decoration: none;
width: fit-content;
transition: all 0.25s ease;
position: relative;
overflow: hidden;
}
.u-hero-btn:hover {
transform: translateY(-2px);
}
.u-hero-btn::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
background-size: 400px 100%;
animation: shimmer 2.8s infinite;
}
.u-hero-btn-arrow {
transition: transform 0.2s ease;
}
.u-hero-btn:hover .u-hero-btn-arrow {
transform: translateX(4px);
}
.u-hero-trust {
display: flex;
flex-wrap: wrap;
}
.u-hero-trust-item {
display: flex;
align-items: center;
}
.u-hero-check {
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.u-hero-right {
flex: 0 0 50%;
position: relative;
align-self: stretch;
margin-left: -60px;
}
.u-hero-img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center top;
}
@keyframes pulseDot {
0% { transform: scale(0.95); box-shadow: 0 0 0 0 #2C3B4E; }
70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(224, 48, 90, 0); }
100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(224, 48, 90, 0); }
}
@keyframes shimmer {
0% { background-position: -400px 0; }
100% { background-position: 400px 0; }
}
@media (max-width: 850px) {
.u-hero-btn {
width: 100%;
}
.u-hero-wrap {
flex-direction: column;
}
.u-hero-left {
align-items: center;
text-align: center;
}
.u-hero-trust {
justify-content: center;
margin-bottom:15px;
}
.u-hero-right {
margin-left: 0;
}
.u-hero-right::before {
width: 100%;
height: 120px;
background: linear-gradient(to bottom, #ffe8ed 0%, #ffe8ed 20%, rgba(255, 232, 237, 0) 100%);
top: 0;
left: 0;
}
}
/* M Seen In Slider   */
.m-seen{
  overflow: hidden;
}
.m-seen-header{
  position: relative;
  z-index: 15;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100%;
}
.m-seen-header::before,
.m-seen-header::after{
  content: "";
  flex: 1 0 0%;
}
.m-seen-heading{
  padding:0 35px;
}
.m-seen-swiper{
  width:100%;
  overflow:hidden;
}
.m-seen-swiper .swiper-wrapper{
  touch-action: pan-y;
}
.m-seen-slide{
  height: fit-content !important;
  min-width: 12vw;
  max-width: 150px;
  margin: auto;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.m-seen-slide img{
  margin: 0 auto;
  max-height: 90px;
  max-width: 150px;
  object-fit:contain;
  display:block;
}
@media(max-width:768px){
.m-seen-slide{
  height:90px;
}
.m-seen-slide img{
  max-height: 70px;
  max-width: 110px;
}
}
/* M Announcement Bar */
.M-announcement-wrapper a{
  text-decoration:underline;
}
.M-announcement-wrapper{
    max-width:600px;
    margin:0 auto;
  }
  .cstm-announcement.swiper.M-announcement-slider{
    width: 100%;
  }
  .M-contact-info{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: end;
  }
  .M-social-icons .toolbar__social{
    text-align: left;
    display: flex;
    align-items: center;
  }
  .ancmnt-box{
    text-align: center; 
    display: flex; 
    align-items: center; 
    justify-content: center;
  }
.ancmnt-box{
  opacity:0;
  transition:all 1s ease;
}
.ancmnt-box.swiper-slide-active{
  opacity:1;
}
.M-announcement-wrapper .swiper-button-next:after{
  font-size:14px;
  color:#fff;
  font-weight:bold;
}
.M-announcement-wrapper .swiper-button-prev:after{
  font-size:14px;
  color:#fff;
  font-weight:bold;
}
  @media only screen and (max-width: 767px){
    .M-announcement-wrapper{
      display: block;
    }
    .M-social-icons-bar,
    .M-contact-info{
      display: none;
    }
    .u-topbar-box{
      gap:5px !important;
    } 
  }
/* M Top Bar */
.u-top-bar-content, .u-topbar-box{
  display:flex;
  gap:10px;
  justify-content:center;
  align-items:center;
}

/* M GPSILL Features */

  .m-gpsill-section {
  width: 100%;
  overflow: hidden;
  }
  .m-gpsill-inner {
  box-sizing: border-box;
  }
  .m-gpsill-heading-wrapper {
  width: 100%;
  text-align: left;
  }
  .m-gpsill-main-heading {
  margin: 0;
  line-height: 1.2;
  }
  .m-gpsill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  align-items: start;
  }
  .m-gpsill-cell {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-left-style: solid;
  box-sizing: border-box;
  }
  .m-gpsill-cell:first-child {
  border-left: none;
  padding-left: 0 !important;
  }
  .m-gpsill-cell:last-child {
  padding-right: 0 !important;
  }
  .m-gpsill-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  }
  .m-gpsill-block-heading {
  margin-top: 0;
  line-height: 1.3;
  }
  .m-gpsill-block-text {
  margin: 0;
  line-height: 1.5;
  }
  .m-gpsill-block-text p {
  margin: 0;
  }
  .m-gpsill-block-text strong {
  color: #121212;
  font-weight: bold;
  }
  @media screen and (max-width: 1024px) {
  .m-gpsill-grid {
  grid-template-columns: repeat(2, 1fr);
  row-gap: 30px;
  }
  .m-gpsill-cell:nth-child(2n+1) {
  border-left: none;
  padding-left: 0 !important;
  }
  .m-gpsill-cell:nth-child(2n) {
  padding-right: 0 !important;
  }
  }
  @media screen and (max-width: 767px) {
  .m-gpsill-grid {
  grid-template-columns: 1fr;
  row-gap: 0;
  }
  .m-gpsill-cell {
  border-left: none;
  border-bottom-style: solid;
  }
  .m-gpsill-cell:nth-child(n) {
  padding-right: 0 !important;
  padding-left: 0 !important;
  }
  .m-gpsill-cell:last-child {
  border-bottom: none;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  }
  }
  
  /* M Video Banner */
  
  .m--videobanner-section {
  width: 100%;
  overflow: hidden;
  }
  .m--videobanner-main-txt-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  }
  .m--videobanner-img-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  }
  .m--videobanner-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  }
  .m--videobanner-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  display:block !important;
  }
  .m--videobanner-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  }
  .m--videobanner-main-content {
  width: 100%;
  text-align: left;
  }
  .m--videobanner-head-one,
  .m--videobanner-head-two {
  margin: 0;
  line-height: 1.3;
  }
  .m--videobanner-detailtxt p {
  margin: 0;
  }
  @media screen and (max-width: 767px) {
  .m--videobanner-main-txt-wrap {
  align-items: flex-end;
  }
  .m--videobanner-inner {
  justify-content: center;
  }
  .m--videobanner-main-content {
  max-width: 100% !important;
  text-align: center;
  }
  .m--videobanner-head {
  width: 100% !important;
  margin: 0 auto;
  }
  }
  /* M Gem Slider */
  
  .m-gemslider-section {
  width: 100%;
  overflow: hidden;
  }
  .m-gemslider-inner {
  display: flex;
  align-items: center;
  margin: 0 auto;
  box-sizing: border-box;
  }
  .m-gemslider-text-block {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  }
  .m-gemslider-main-heading {
  margin-top: 0;
  line-height: 1.2;
  }
  .m-gemslider-main-text {
  margin: 0;
  line-height: 1.5;
  }
  .m-gemslider-main-text p {
  margin: 0 0 15px 0;
  }
  .m-gemslider-main-text p:last-child {
  margin: 0;
  }
  .m-gemslider-carousel-block {
  flex: 1;
  width: 100%;
  min-width: 0;
  position: relative;
  }
  .m-gemslider-slide {
  position: relative;
  overflow: hidden;
  width:100%;
  display: block;
  }
  .m-gemslider-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  }
  .m-gemslider-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(2deg, #000000 0%, rgba(255, 255, 255, 0) 52%);
  z-index: 2;
  pointer-events: none;
  display:block !important;
  }
  .m-gemslider-slide-content {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  }
  .m-gemslider-slide-title {
  margin: 0;
  line-height: 1.2;
  }
  .m-gemslider-slide-subtitle {
  margin: 0;
  line-height: 1.3;
  }
  .m-gemslider-slide-subtitle p {
  margin: 0;
  }
  .m-gemslider-arrow {
  display: none !important;
  }
  .m-gemslider-slide-wrappper{
  height: auto !important;
  }
  .m-gemslider-outr-main{
  height: 100% !important;
  }
  @media screen and (max-width: 767px) {
  .m-gemslider-inner {
  flex-direction: column;
  }
  .m-gemslider-text-block {
  order: 2;
  }
  .m-gemslider-carousel-block {
  order: 1;
  }
  .m-gemslider-arrow {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%);
  height: fit-content !important;
  width: fit-content !important;
  padding: 2px;
  }
  .m-gemslider-prev.swiper-button-disabled,
  .m-gemslider-next.swiper-button-disabled{
  opacity:0 !important;
  }
  .m-gemslider-arrow::after {
  display: none;
  }
  .m-gemslider-prev {
  left: 10px;
  }
  .m-gemslider-next {
  right: 10px;
  }
  }
  /* M New Media With Text */
  
  .m--newmediatxt {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  }
  .m--newmediatxt-container {
  display: grid;
  grid-template-columns:1fr 1fr;
  align-items: center;
  }
  .m--newmediatxt-img-col {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  }
  .m--newmediatxt-text-col {
  direction: ltr;
  }
  .m--newmediatxt-image {
  display: block;
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  }
  .m--newmediatxt-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  }
  .m--newmediatxt-heading {
  line-height: 1.4;
  margin-top: 0;
  }
  .m--newmediatxt-text p {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.7;
  }
  .m--newmediatxt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
  line-height: normal;
  transition: color 0.3s ease, border 0.3s ease, background-color 0s linear 0.3s;
  position: relative;
  z-index: 1;
  overflow: hidden;
  }
  .m--newmediatxt-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleY(0);
  transform-origin: top center;
  will-change: transform;
  z-index: -1;
  transition: transform 0.3s ease;
  }
  .m--newmediatxt-btn:hover::before {
  transform: scaleY(1);
  }
  .m--newmediatxt-heading-highlight{
  padding: 4px 10px;
  line-height: 1.6;
  }
  .m--newmediatxt-usp {
  display: flex;
  align-items: center;
  gap: 12px;
  }
  .m--newmediatxt-usp img {
  flex-shrink: 0;
  object-fit: cover;
  }
  .m--newmediatxt-usp-text {
  line-height: 1.2;
  }
  .m--newmediatxt-usp-text p {
  margin: 0;
  }
  @media (max-width: 768px) {
  .m--newmediatxt-container {
  grid-template-columns: 1fr !important;
  }
  .m--newmediatxt-img-col,
  .m--newmediatxt-text-col {
  width: 100% !important;
  }
  }
  @media (max-width: 480px) {
  .m--newmediatxt-btn {
  width: 100%;
  }
  }
  /* M Video Slider */
  
.m--videoblk-section {
width: 100%;
overflow: hidden;
}
.m--videoblk-inner {
box-sizing: border-box;
}
.m--videoblk-heading {
margin-top: 0;
text-align: center;
line-height: 1.2;
}
.m--videoblk-carousel-block {
width: 100%;
position: relative;
}
.m--videoblk-swiper {
width: 100%;
position: static;
}
.m--videoblk-video-wrapper {
position: relative;
width: 100%;
overflow: hidden;
border-style: solid;
box-sizing: border-box;
}
.m--videoblk-video {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.m--videoblk-cover {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
z-index: 2;
}
.m--videoblk-cover-img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.m--videoblk-play-btn {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 56px;
height: 32px;
border: none;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 3;
transition: background-color 0.2s;
padding: 0;
}
.m--videoblk-play-btn svg {
width: 20px;
height: 20px;
}
.m--videoblk-text {
margin: 0;
line-height: 1.5;
text-align: left;
}
.m--videoblk-arrow {
display: none !important;
}

@media screen and (max-width: 1024px) {
.m--videoblk-arrow {
display: flex !important;
align-items: center;
justify-content: center;
position: absolute;
top: 40%;
transform: translateY(-50%);
width: 32px;
height: 32px;
background-color: transparent;
border: none;
color: #121212;
z-index: 10;
margin: 0;
cursor: pointer;
}
.m--videoblk-arrow::after {
display: none;
}
.m--videoblk-prev {
left: 0px;
}
.m--videoblk-next {
right: 0px;
}
}
@media screen and (max-width: 767px) {
.m--videoblk-arrow {
display: none !important;
}
}
/* M Slider Gurantee */

.m--sldgurnte-section {
width: 100%;
box-sizing: border-box;
overflow: hidden;
}
.m--sldgurnte-heading {
text-align: center;
line-height: 1.2;
margin-top: 0;
}
.m--sldgurnte-slider-container {
width: 100%;
position: relative;
}
.m--sldgurnte-swiper {
width: 100%;
position: relative;
}
.m--sldgurnte-item {
height: auto !important;
}
.m--sldgurnte-item-inner-wrap{
display: flex !important;
flex-direction: column;
align-items: center;
text-align: center;
padding:16px;
}
.m--sldgurnte-img-wrap {
border-radius: 50%;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
flex-shrink: 0;
}
.m--sldgurnte-img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.m--sldgurnte-title {
line-height: 1.3;
margin-top: 0;
}
.m--sldgurnte-text * {
margin: 0;
line-height:1.5;
}
.m--sldgurnte-arrows-mobile, .m--sldgurnte-pagination {
display: none;
}
@media screen and (max-width: 767px) {
.m--sldgurnte-arrows-mobile {
display: block;
}
.m--sldgurnte-prev, .m--sldgurnte-next {
transform: translateY(-50%);
z-index: 10;
width: 24px !important;
height: 24px !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
top: 50% !important;
}
.m--sldgurnte-prev::after, .m--sldgurnte-next::after {
display: none;
}
.m--sldgurnte-prev.swiper-button-disabled,
.m--sldgurnte-next.swiper-button-disabled,{
opacity:0 !important;
}
.m--sldgurnte-prev {
left: 16px;
transform: translateY(-50%) rotate(180deg);
}
.m--sldgurnte-next {
right: 16px;
}
.m--sldgurnte-pagination {
display: flex;
justify-content: center;
align-items: center;
gap: 8px;
margin-top: 16px;
position: relative !important;
}
.m--sldgurnte-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
opacity: 1;
margin: 0 !important;
box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
}
}
/* M Video Collapsible */

.m--videocollps-section {
width: 100%;
overflow: hidden;
}
.m--videocollps-inner {
box-sizing: border-box;
}
.m--videocollps-header-wrapper {
text-align: center;
width: 100%;
display: flex;
flex-direction: column;
}
.m--videocollps-subheading {
line-height: 1.3;
}
.m--videocollps-heading {
margin-top: 0;
line-height: 1.2;
}
.m--videocollps-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
width: 100%;
align-items: start;
}
.m--videocollps-card {
position: relative;
width: 100%;
overflow: hidden;
display: block;
}
.m--videocollps-bg-wrap {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
z-index: 1;
}
.m--videocollps-media {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.m--videocollps-content {
position: relative;
z-index: 4;
width: 100%;
}
.m--videocollps-accordion-header {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
background: transparent;
border: none;
padding: 10px;
cursor: pointer;
color: inherit;
text-align: left;
}
.m--videocollps-accordion-title-wrap {
display: flex;
align-items: center;
gap: 8px;
}
.m--videocollps-icon {
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.m--videocollps-title {
margin: 0;
line-height: 1.2;
}
.m--videocollps-toggle {
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
opacity: 0.8;
}
.m--videocollps-toggle svg {
width: 100%;
height: 100%;
}
.m--videocollps-minus {
display: none;
}
.m--videocollps-accordion-body {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
width: 100%;
}
.m--videocollps-accordion-inner {
margin: 16px;
padding: 10px;
border-radius: 10px;
line-height: 1.5;
background:#1515154d;
}
.m--videocollps-accordion-inner p {
margin: 0 0 10px 0;
}
.m--videocollps-accordion-inner p:last-child {
margin: 0;
}
@media screen and (max-width: 767px) {
.m--videocollps-grid {
grid-template-columns: 1fr;
}
}
/* M Features Grid */

  .m--negurnt-section {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  }
  .m--negurnt-heading {
  text-align: center;
  margin-top: 0;
  line-height: 1.2;
  }
  .m--negurnt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  width: 100%;
  }
  .m--negurnt-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  }
  .m--negurnt-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  }
  .m--negurnt-img {
  object-fit: cover;
  display: block;
  }
  .m--negurnt-title {
  margin-top: 0px;
  line-height: 1.2;
  }
  .m--negurnt-text {
  margin: 0;
  line-height: 1.5;
  }
  .m--negurnt-text p {
  margin: 0;
  }
  @media screen and (max-width: 1024px) {
  .m--negurnt-grid {
  grid-template-columns: repeat(2, 1fr);
  }
  }
  @media screen and (max-width: 767px) {
  .m--negurnt-grid {
  grid-template-columns: 1fr;
  }
  }
  /* M Customer Reviews */
  
.m--cusrew-section {
width: 100%;
box-sizing: border-box;
overflow: hidden;
}
.m--cusrew-heading {
text-align: left;
margin-top: 0;
line-height: 1.2;
}
.m--cusrew-list {
display: flex;
flex-direction: column;
width: 100%;
}
.m--cusrew-block {
display: grid;
grid-template-columns: minmax(0, 3fr) minmax(0, 9fr);
align-items: center;
width: 100%;
}
.m--cusrew-video-wrapper {
position: relative;
width: 100%;
overflow: hidden;
}
.m--cusrew-video {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.m--cusrew-cover {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
z-index: 2;
}
.m--cusrew-cover-img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.m--cusrew-play-btn {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 56px;
height: 32px;
border: none;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 3;
transition: background-color 0.2s;
padding: 0;
}
.m--cusrew-play-btn svg {
width: 20px;
height: 20px;
}
.m--cusrew-content {
display: flex;
flex-direction: column;
justify-content: center;
padding: 16px;
}
.m--cusrew-meta {
display: flex;
align-items: center;
}
.m--cusrew-stars {
display: flex;
align-items: center;
}
.m--cusrew-verified {
line-height: 1.4;
margin: 0;
}
.m--cusrew-title {
line-height: 1.3;
margin-top: 0;
}
.m--cusrew-text * {
margin-top: 0;    
line-height: 1.5;
}
.m--cusrew-author {
line-height: 1.5;
margin: 0;
}
@media screen and (max-width: 767px) {
.m--cusrew-block {
grid-template-columns: 1fr;
}
.m--cusrew-content {
padding-top: 0;
padding-bottom: 0;
padding-left: 8px;
padding-right: 8px;
}
}
/* M Tabbed Content */

.m--tabspacge-section {
width: 100%;
box-sizing: border-box;
overflow: hidden;
}
.m--tabspacge-nav {
display: flex;
align-items: center;
justify-content: flex-start;
flex-wrap: wrap;
border-bottom: none;
margin-bottom: 24px;
width: 100%;
}
.m--tabspacge-nav-item {
background: transparent;
border: none;
border-bottom: 2px solid transparent;
cursor: pointer;
padding: 8px 16px;
transition: all 0.2s ease;
white-space: nowrap;
text-align: left;
}
.m--tabspacge-panel {
display: none;
width: 100%;
}
.m--tabspacge-panel.active {
display: block;
}
.m--tabspacge-grid {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
align-items: center;
width: 100%;
}
.m--tabspacge-image-col {
width: 100%;
}
.m--tabspacge-img {
display: block;
object-fit: cover;
}
.m--tabspacge-content-col {
display: flex;
flex-direction: column;
width: 100%;
margin:0 auto;
}
.m--tabspacge-heading {
line-height: 1.2;
margin-top: 0;
}
.m--tabspacge-richtext {
line-height: 1.5;
}
.m--tabspacge-richtext ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
}
.m--tabspacge-richtext ul li {
display: flex;
align-items: center;
position: relative;
line-height: 1.5;
}
.m--tabspacge-richtext ul li p {
margin: 0;
}
.m--tabspacge-richtext ul li::before {
content: "";
display: block;
flex-shrink: 0;
margin-right: 8px;
mask-size: contain;
mask-repeat: no-repeat;
mask-position: center;
-webkit-mask-size: contain;
-webkit-mask-repeat: no-repeat;
-webkit-mask-position: center;
}
.list-style-dots ul li::before {
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M156,128a28,28,0,1,1-28-28A28,28,0,0,1,156,128Z'/%3E%3C/svg%3E");
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M156,128a28,28,0,1,1-28-28A28,28,0,0,1,156,128Z'/%3E%3C/svg%3E");
}
.list-style-numbers ul li:nth-child(1)::before {
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm12,152a8,8,0,0,1-16,0V95l-11.56,7.71a8,8,0,1,1-8.88-13.32l24-16A8,8,0,0,1,140,80Z'/%3E%3C/svg%3E");
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm12,152a8,8,0,0,1-16,0V95l-11.56,7.71a8,8,0,1,1-8.88-13.32l24-16A8,8,0,0,1,140,80Z'/%3E%3C/svg%3E");
}
.list-style-numbers ul li:nth-child(2)::before {
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm24,144a8,8,0,0,1,0,16H104a8,8,0,0,1-6.4-12.8l43.17-57.56a16,16,0,1,0-27.86-15,8,8,0,0,1-15.09-5.34,32,32,0,1,1,55.74,29.93L120,168Z'/%3E%3C/svg%3E");
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm24,144a8,8,0,0,1,0,16H104a8,8,0,0,1-6.4-12.8l43.17-57.56a16,16,0,1,0-27.86-15,8,8,0,0,1-15.09-5.34,32,32,0,1,1,55.74,29.93L120,168Z'/%3E%3C/svg%3E");
}
.list-style-numbers ul li:nth-child(3)::before {
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm-4,164a35.71,35.71,0,0,1-25.71-10.81A8,8,0,1,1,109.71,166,20,20,0,1,0,124,132a8,8,0,0,1-6.55-12.59L136.63,92H104a8,8,0,0,1,0-16h48a8,8,0,0,1,6.55,12.59l-21,30A36,36,0,0,1,124,188Z'/%3E%3C/svg%3E");
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm-4,164a35.71,35.71,0,0,1-25.71-10.81A8,8,0,1,1,109.71,166,20,20,0,1,0,124,132a8,8,0,0,1-6.55-12.59L136.63,92H104a8,8,0,0,1,0-16h48a8,8,0,0,1,6.55,12.59l-21,30A36,36,0,0,1,124,188Z'/%3E%3C/svg%3E");
}
.list-style-numbers ul li:nth-child(4)::before {
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M104.36,144,136,103.32V144ZM232,128A104,104,0,1,1,128,24,104.11,104.11,0,0,1,232,128Zm-64,24a8,8,0,0,0-8-8h-8V80a8,8,0,0,0-14.31-4.91l-56,72A8,8,0,0,0,88,160h48v16a8,8,0,0,0,16,0V160h8A8,8,0,0,0,168,152Z'/%3E%3C/svg%3E");
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M104.36,144,136,103.32V144ZM232,128A104,104,0,1,1,128,24,104.11,104.11,0,0,1,232,128Zm-64,24a8,8,0,0,0-8-8h-8V80a8,8,0,0,0-14.31-4.91l-56,72A8,8,0,0,0,88,160h48v16a8,8,0,0,0,16,0V160h8A8,8,0,0,0,168,152Z'/%3E%3C/svg%3E");
}
.list-style-numbers ul li:nth-child(5)::before {
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm-4,88a36,36,0,0,1,0,72,35.54,35.54,0,0,1-25.71-10.4,8,8,0,1,1,11.42-11.2A19.73,19.73,0,0,0,124,168a20,20,0,0,0,0-40,19.73,19.73,0,0,0-14.29,5.6,8,8,0,0,1-13.6-6.92l8-48A8,8,0,0,1,112,72h40a8,8,0,0,1,0,16H118.78l-4.19,25.14A38.8,38.8,0,0,1,124,112Z'/%3E%3C/svg%3E");
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm-4,88a36,36,0,0,1,0,72,35.54,35.54,0,0,1-25.71-10.4,8,8,0,1,1,11.42-11.2A19.73,19.73,0,0,0,124,168a20,20,0,0,0,0-40,19.73,19.73,0,0,0-14.29,5.6,8,8,0,0,1-13.6-6.92l8-48A8,8,0,0,1,112,72h40a8,8,0,0,1,0,16H118.78l-4.19,25.14A38.8,38.8,0,0,1,124,112Z'/%3E%3C/svg%3E");
}
.list-style-numbers ul li:nth-child(6)::before {
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M148,148a20,20,0,1,1-20-20A20,20,0,0,1,148,148Zm84-20A104,104,0,1,1,128,24,104.11,104.11,0,0,1,232,128Zm-68,20a36,36,0,0,0-36-36c-.61,0-1.22,0-1.82,0L142.87,84.1a8,8,0,0,0-13.74-8.2s-32.4,54.28-32.47,54.42A36,36,0,1,0,164,148Z'/%3E%3C/svg%3E");
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M148,148a20,20,0,1,1-20-20A20,20,0,0,1,148,148Zm84-20A104,104,0,1,1,128,24,104.11,104.11,0,0,1,232,128Zm-68,20a36,36,0,0,0-36-36c-.61,0-1.22,0-1.82,0L142.87,84.1a8,8,0,0,0-13.74-8.2s-32.4,54.28-32.47,54.42A36,36,0,1,0,164,148Z'/%3E%3C/svg%3E");
}
.list-style-numbers ul li:nth-child(7)::before {
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm24,64-32,88a8,8,0,1,1-15-5.46L132.81,96H104a8,8,0,0,1,0-16h48A8,8,0,0,1,152,88Z'/%3E%3C/svg%3E");
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm24,64-32,88a8,8,0,1,1-15-5.46L132.81,96H104a8,8,0,0,1,0-16h48A8,8,0,0,1,152,88Z'/%3E%3C/svg%3E");
}
.list-style-numbers ul li:nth-child(8)::before {
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,148a28,28,0,0,1-20-47.6,28,28,0,1,1,40,0A27.9,27.9,0,0,1,128,172Zm0-64a20,20,0,1,0-20-20A20,20,0,0,0,128,108Zm0,48a20,20,0,1,0-20-20A20,20,0,0,0,128,156Z'/%3E%3C/svg%3E");
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,148a28,28,0,0,1-20-47.6,28,28,0,1,1,40,0A27.9,27.9,0,0,1,128,172Zm0-64a20,20,0,1,0-20-20A20,20,0,0,0,128,108Zm0,48a20,20,0,1,0-20-20A20,20,0,0,0,128,156Z'/%3E%3C/svg%3E");
}
@media screen and (max-width: 767px) {
.m--tabspacge-nav {
justify-content: center;
overflow-x: auto;
}
.m--tabspacge-grid {
grid-template-columns: 1fr;
}
.m--tabspacge-image-col {
order: -1;
}
}
/* M Expert Recommendations */
.m-newrcomnd-section {
width: 100%;
box-sizing: border-box;
overflow: hidden;
}
.m-newrcomnd-top {
width: 100%;
display: flex;
justify-content: flex-start;
align-items: center;
}
.m-newrcomnd-heading {
margin-top: 0;
line-height: 1.14;
letter-spacing: -0.64px;
}
.m-newrcomnd-slider-container {
width: 100%;
position: relative;
}
.m-newrcomnd-swiper {
width: 100%;
position: relative;
overflow:visible !important;
}
.m-newrcomnd-item {
display: flex !important;
align-items: center;
flex-direction: row;
height: auto !important;
box-sizing: border-box;
}
.m-newrcomnd-img-wrap {
width: 38.37%;
flex-shrink: 0;
}
.m-newrcomnd-img {
width: 100%;
height: auto;
display: block;
object-fit: cover;
}
.m-newrcomnd-text-wrap {
flex: 1;
padding: 0 20px;
display: flex;
flex-direction: column;
justify-content: center;
}
.m-newrcomnd-text-top {
width: 100%;
}
.m-newrcomnd-role {
line-height: 1.2;
margin-top: 0;
}
.m-newrcomnd-name {
line-height: 1.2;
margin-top: 0;
margin-bottom: 0;
}
.m-newrcomnd-p *{
line-height: 1.5;
margin: 0;
}
.m-newrcomnd-pagination {
display: flex;
justify-content: center;
align-items: center;
gap: 8px;
margin-top: 24px;
position: static !important;
}
.m-newrcomnd-pagination .swiper-pagination-bullet {
width: 8px;
height: 8px;
opacity: 1;
margin: 0 !important;
}

@media screen and (max-width: 767px) {
.m-newrcomnd-item {
flex-direction: column;
align-items: flex-start;
}
.m-newrcomnd-img-wrap {
width: 100%;
display: flex;
justify-content: center;
}
.m-newrcomnd-text-wrap {
padding: 0;
width: 100%;
}
.m-newrcomnd-text-top {
max-width: 100%;
}
}