.trust-d.mt-5{
    margin-top: 50px !important;
}
.d-none{
    display:none;
}
.mb-5{
    margin-bottom: 50px !important;
}
.pt-5{
    padding-top: 50px;
}
.pb-5{
    padding-bottom: 50px;
}
.pl-lg-5{
    padding-left: 50px;
}
.pr-lg-5{
    padding-right: 50px;
}
.mt-60{
    margin-top: 60px !important;
}
.mt-100{
    margin-top: 100px !important;
}

.mb-100{
    margin-bottom: 100px !important;
}
.mt-200{
    margin-top: 200px !important;
}
.mb-200{
    margin-bottom: 200px !important;
}
.mb-0{
    margin-bottom: 0px;
}
.mt-0{
    margin-top: 0px;
}
.f-22{
    font-size: 22px;
    line-height: 30px;
}
.f-w-400{
    font-weight: 400;
}
.hide_d{
    display: none;
}
.header__toggle-nav{
    color: white;
}
.header--light .header__toggle-nav {
    border-color: black;
    color: black;
}
.myVideo{
    width: 100%;
    height: 100%;
}
.font_s-mp-0{
    font-size: 11px;
    margin: 0px;
    padding: 0px;
    text-align: left;
    line-height: 14px;
    color: white;
}
.trust-d{
    background: url(../../img/trust-d.jpg);
    background-size: cover;
    padding: 100px 0px;
    background-color: #c7e1fc;
    min-height: 825px;
    padding-bottom: 0px;
}
.container-feature{
    display: flex;
    padding: 40px 110px 40px 110px;
}
.video-section{
    flex: 50%;
}
.carousel-section{
    flex: 50%;
}
/*carousel*/
@keyframes tonext {
    75% {
        left: 0;
    }
    95% {
        left: 100%;
    }
    98% {
        left: 100%;
    }
    99% {
        left: 0;
    }
}

@keyframes tostart {
    75% {
        left: 0;
    }
    95% {
        left: -300%;
    }
    98% {
        left: -300%;
    }
    99% {
        left: 0;
    }
}

@keyframes snap {
    96% {
        scroll-snap-align: center;
    }
    97% {
        scroll-snap-align: none;
    }
    99% {
        scroll-snap-align: none;
    }
    100% {
        scroll-snap-align: center;
    }
}



* {
    box-sizing: border-box;
    scrollbar-color: transparent transparent; /* thumb and track color */
    scrollbar-width: 0px;
}

*::-webkit-scrollbar {
    width: 0;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background: transparent;
    border: none;
}

* {
    -ms-overflow-style: none;
}

h2{
    line-height: 34px;
}

.c_b{
    color: black !important;
    line-height: normal;
}
.f-w4{
    font-weight: 400;
}

ol, li {
    list-style: none;
    margin: 0;
    padding: 0;
}
.full_width{
    width: 100%;
    padding: 0px 10px;
    margin: 0px;
}
.carousel {
    position: relative;
    filter: drop-shadow(0 0 10px #0003);
    perspective: 100px;
}

.carousel__viewport {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    overflow-x: scroll;
    counter-reset: item;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.carousel__slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    background-color: #f99;
    counter-increment: item;
}

.carousel__slide:nth-child(even) {
    background-color: #99f;
}

.carousel__slide:before {
    content: counter(item);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%,-40%,70px);
    color: #fff;
    font-size: 2em;
}

.product_img{
    width: 100%;
    height: 250px;
    background-size: cover;
    border-radius: 15px;
    margin: 25px 0;
}

.carousel__snapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    scroll-snap-align: center;
}
.super-card.is-style-masthead{
    padding: 16px 10px 0;
}
.learn-more-round{
    background: white;
    text-align: center;
    width: fit-content;
    border-radius: 40px;
    padding: 3px 8px;
    bottom: 10px;
    position: absolute;
    border: 1px solid white;
}
.learn-more-round i:before{
    margin-left: 1px !important;
    margin-top: 6px;
}
@media (hover: hover) {
    .carousel__snapper {
        animation-name: tonext, snap;
        animation-timing-function: ease;
        animation-duration: 4s;
        animation-iteration-count: infinite;
    }

    .carousel__slide:last-child .carousel__snapper {
        animation-name: tostart, snap;
    }
}

@media (prefers-reduced-motion: reduce) {
    .carousel__snapper {
        animation-name: none;
    }
}

.carousel:hover .carousel__snapper,
.carousel:focus-within .carousel__snapper {
    animation-name: none;
}

.carousel__navigation {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
}

.carousel__navigation-list,
.carousel__navigation-item {
    display: inline-block;
}

.carousel__navigation-button {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #333;
    background-clip: content-box;
    border: 0.25rem solid transparent;
    border-radius: 50%;
    font-size: 0;
    transition: transform 0.1s;
}

.carousel::before,
.carousel::after,
.carousel__prev,
.carousel__next {
    position: absolute;
    top: 0;
    margin-top: 37.5%;
    width: 4rem;
    height: 4rem;
    transform: translateY(-50%);
    border-radius: 50%;
    font-size: 0;
    outline: 0;
}

.carousel::before,
.carousel__prev {
    left: -1rem;
}

.carousel::after,
.carousel__next {
    right: -1rem;
}

/* .carousel::before,
.carousel::after {
  content: '';
  z-index: 1;
  background-color: #333;
  background-size: 1.5rem 1.5rem;
  background-repeat: no-repeat;
  background-position: center center;
  color: #fff;
  font-size: 2.5rem;
  line-height: 4rem;
  text-align: center;
  pointer-events: none;
} */

.carousel::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='0,50 80,100 80,0' fill='%23fff'/%3E%3C/svg%3E");
}

.carousel::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='100,50 20,100 20,0' fill='%23fff'/%3E%3C/svg%3E");
}
.carousel-indicators{
    bottom: -25px;
}
.carousel-indicators li{
    background-color: gray !important;
}
.carousel-indicators .active{
    background-color: #000 !important;
}
/*carousel*/
.video-container {
    height: 700px;
    width: 100%;
    position: relative;
}

.video-container video {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    z-index: 0;
    border-radius: 15px;
}

.video-container .caption {
    z-index: 1;
    position: relative;
    text-align: center;
    color: #dc0000;
    padding: 10px;
}

/* Arslans CSS  */
.ed-microsite-section {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    position: relative;
}
.myvideo, .patient-video, .result-pharmacy, .result-price-wrapper {
    display: inline-block;
}
.myvideo, .patient-video {
    width: 100%;
    vertical-align: top;
    filter: opacity(50%);
}
.hl-microsite-overlapping {
    position: absolute;
    width: 100%;
    left: 0;
    top: 30%;
    padding: 0 30px;
}
.hl-microsite-wrapper {
    margin: 100px 100px 280px;
}
h1.hl-microsite-header, h2.hl-microsite-header {
    color: #fff;
    font-size: 48px;
    line-height: 60px;
}
.hl-microsite-image-wrapper {
    margin-top: 80px;
}
p.ed-microsite.hlx_hlx-slv {
    color: #fff;
}
p.ed-microsite {
    font-weight: 400;
    text-align: left;
    font-size: 36px;
    margin: 0;
    display: inline-block;
}
p.ed-microsite.hlx_hlx-slv {
    color: #fff;
}
p.ed-microsite {
    font-weight: 400;
    text-align: left;
    font-size: 36px;
}
.ed-microsite-button-wrapper {
    margin-top: 40px;
}
.hl-microsite-mobile-wrapper {
    display: none;
}
h1.hl-microsite-header, h1.hl-microsite-mobile, h2.hl-microsite-header, h2.hl-microsite-mobile {
    font-weight: 400;
}
.button_primary {
    color: #fff;
    background: #e58406;
    box-shadow: 0 10px 35px rgba(9,61,38,.18),0 7px 18.62px rgba(9,61,38,.124197),0 3.9px 9.04px rgba(9,61,38,.100132),0 1.91px 4.43px rgba(9,61,38,.0798677),0 .76px 1.75px rgba(9,61,38,.0558033);
}
.button_NEW {
    display: inline-block;
    font-size: 16px;
    padding: 10px 50px;
    outline: 0;
    cursor: pointer;
    border-radius: 50px;
    border: none;
    transition: all .333s;
    font-family: "Freizeit Lemonaid","Helvetica Neue",Helvetica,Arial,sans-serif;
}
.img-fit-cover.hidden.shown-on-mobile {
    display: none;
}
.image_pos{
    background-size:contain; padding-top: 3px !important;  background-position: center 15px !important;
}
.content {
    margin: 0 auto;
}
.content video {
    width: 100%;
    display: block;
}
.content:before {
    content: '';
    position: absolute;
    background: #000;
    border-radius: 5px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.slider_thumbs{
    background-size: cover;
    border: 1px solid;
}
.slider_thumbs:hover{
    border: 1px solid;
    background-color: rgb(255, 255, 255);
    box-shadow: rgb(0 0 0 / 8%) 0px 0.625rem 1.875rem;
}
.slider_thumbs:hover .learn-more-round{
    border: 1px solid;
}
.slider_thumbs p{
    color: #fff;
    max-width: 70%;
}
.big_pic{
    min-height: 700px !important;
}
.big_pic p{
    font-size: 30px;
    padding: 20px;
}
.big_p{
    font-size: 22px;
    font-weight: 500;
}
.big_p{
    font-size: 22px;
    font-weight: 500;
    margin: 10px 0;
}
.small_p{
    font-size: 14px;
    text-align: left;
    margin: 0px;
}
/*.ed-microsite-section {
margin-top: 74px! important;
}*/
.mainimg{ min-height: 759 px; background-size:cover; background-position: center; line-height: 0px;}




@media only screen and (max-width:1024px){


    .hl-microsite-wrapper {
        margin: 100px 100px 80px;
    }
    p.ed-microsite {
        font-weight: 400;
        text-align: left;
        font-size: 28px;
    }
    .trust-d{
        min-height: 700px;
    }
}

@media only screen and (max-width:1024px){
    h1.hl-microsite-header, h2.hl-microsite-header {
        color: #fff;
        font-size: 37px;
        line-height: 48px;
    }
}
@media only screen and (max-width:960px){
    .pl-lg-5{
        padding-left: 0px;
    }
    .pr-lg-5{
        padding-right: 0px;
    }
    .hl-microsite-wrapper {
        margin: 100px 100px 50px;
    }
    .hide_d{
        display: block;
    }
    .trust-d{
        background: #c7e1fc;
        background-size: cover;
        padding: 100px 0px 0 0;
    }
    h1.hl-microsite-header, h2.hl-microsite-header {
        font-size: 30px;
        line-height: 37px;
    }
    .container-feature {
        display: block;
        padding: 20px 19px 20px 20px;
        margin-top: 0px;
    }
    .video-container{
        height: 400px;
    }
    .video-section{
        height: auto !important;
    }
    .myVideo {
        width: auto;
        height: 600px;
    }

    @media only screen and (max-width:767px){

        .mainimg {
            background-image: url(assets/DappermainImg.png);
            min-height: 300px;
            background-size: cover;
            background-position: center;
        }
        .image_pos{
            background-size:cover; padding-top: 3px; background-position: bottom;
        }
        .spacing-block-mt-07 {
            margin-top: 0px;
        }
        .hl-microsite-mobile.fs-unmask {
            color: #fff;
        }
        .img-fit-cover.hidden.shown-on-mobile {
            display: block;
        }
        .content {
            display: none !important;
        }
        .myvideo {
            display: none !important;
        }
        .spacing-section-pt-03 {
            padding-top: 40px;
        }
        .hl-microsite-wrapper{
            display: none;
        }
        .hl-microsite-mobile-wrapper {
            display: block;
            text-align: left;
            color: #fff;
        }
        h1.hl-microsite-mobile, h2.hl-microsite-mobile {
            color: #fff;
            font-size: 24px;
        }
        div.hl-microsite-overlapping {
            top: 190px;
        }
        .hl-microsite-overlapping {
            bottom: 20%;
        }
    }
    @media only screen and (max-width:420px){ 
        div.hl-microsite-overlapping {
            top: 120px;
        }
    }
    a {    color: #e58406;}




    @media (max-width: 600px) {
        html { font-size: 12px; }
        
        .marquee:before, .marquee:after { width: 5rem; }
        .big_pic{
            min-height: 450px !important;
        }
        .desktop_video{
            display:none;
        }
        .mobile_video{
            display:block;
        }
        .myVideo {
            width: 100%;
            height: unset;
        }
        p.ed-microsite{
            font-size: 21px;
            text-align: center;
            line-height: 30px;
        }
        h1.hl-microsite-header, h2.hl-microsite-header{
            line-height: 36px !important;
        }
        
    }


    .jssorl-009-spin img {
        animation-name: jssorl-009-spin;
        animation-duration: 1.6s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }
    @keyframes jssorl-009-spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
    .ghostkit-col-content-new {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .super-card.is-style-masthead .h3 {
        font-size: 14px;
    }
    .super-card.is-style-masthead {
        padding: 16px 10px 0;
        padding-top: 16px;
        min-height: 350px;
    }
    .spacing-section-pb-01 {
        padding-bottom: 20px;
    }
    .spacing-block-mb-08 {
        margin-bottom: 40px;
    }

