/***** BOOTSTRAP MINIMAL ********/
@media all {
    *, ::after, ::before {
        box-sizing: border-box;
    }

    body {
        margin: 0;
        font-family: var(--bs-body-font-family);
        font-size: var(--bs-body-font-size);
        font-weight: var(--bs-body-font-weight);
        line-height: var(--bs-body-line-height);
        color: var(--bs-body-color);
        text-align: var(--bs-body-text-align);
        background-color: var(--bs-body-bg);
        -webkit-text-size-adjust: 100%;
        -webkit-tap-highlight-color: transparent;
    }

    h2, h3, h4, h6 {
        margin-top: 0;
        margin-bottom: .5rem;
        font-weight: 500;
        line-height: 1.2;
    }

    h2 {
        font-size: calc(1.325rem + .9vw);
    }

    @media (min-width: 1200px) {
        h2 {
            font-size: 2rem;
        }
    }
    h3 {
        font-size: calc(1.3rem + .6vw);
    }

    @media (min-width: 1200px) {
        h3 {
            font-size: 1.75rem;
        }
    }
    h4 {
        font-size: calc(1.275rem + .3vw);
    }

    @media (min-width: 1200px) {
        h4 {
            font-size: 1.5rem;
        }
    }
    h6 {
        font-size: 1rem;
    }

    p {
        margin-top: 0;
        margin-bottom: 1rem;
    }

    ul {
        padding-left: 2rem;
    }

    ul {
        margin-top: 0;
        margin-bottom: 1rem;
    }

    b, strong {
        font-weight: bolder;
    }

    sup {
        position: relative;
        font-size: .75em;
        line-height: 0;
        vertical-align: baseline;
    }

    sup {
        top: -.5em;
    }

    a {
        color: var(--bs-link-color);
        text-decoration: underline;
    }

    a:hover {
        color: var(--bs-link-hover-color);
    }

    img {
        vertical-align: middle;
    }

    label {
        display: inline-block;
    }

    button {
        border-radius: 0;
    }

    button:focus:not(:focus-visible) {
        outline: 0;
    }

    button, input, select, textarea {
        margin: 0;
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
    }

    button, select {
        text-transform: none;
    }

    [role=button] {
        cursor: pointer;
    }

    select {
        word-wrap: normal;
    }

    select:disabled {
        opacity: 1;
    }

    [type=button], [type=submit], button {
        -webkit-appearance: button;
    }

    [type=button]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
        cursor: pointer;
    }

    textarea {
        resize: vertical;
    }

    iframe {
        border: 0;
    }

    .container {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        width: 100%;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
        margin-right: auto;
        margin-left: auto;
    }

    @media (min-width: 576px) {
        .container {
            max-width: 540px;
        }
    }
    @media (min-width: 768px) {
        .container {
            max-width: 720px;
        }
    }
    @media (min-width: 992px) {
        .container {
            max-width: 960px;
        }
    }
    @media (min-width: 1200px) {
        .container {
            max-width: 1140px;
        }
    }
    @media (min-width: 1400px) {
        .container {
            max-width: 1320px;
        }
    }
    .row {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        display: flex;
        flex-wrap: wrap;
        margin-top: calc(-1 * var(--bs-gutter-y));
        margin-right: calc(-.5 * var(--bs-gutter-x));
        margin-left: calc(-.5 * var(--bs-gutter-x));
    }

    .row > * {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
        margin-top: var(--bs-gutter-y);
    }

    @media (min-width: 1200px) {
        .col-xl-1 {
            flex: 0 0 auto;
            width: 8.33333333%;
        }

        .col-xl-5 {
            flex: 0 0 auto;
            width: 41.66666667%;
        }

        .col-xl-7 {
            flex: 0 0 auto;
            width: 58.33333333%;
        }

        .col-xl-12 {
            flex: 0 0 auto;
            width: 100%;
        }
    }
    .btn {
        --bs-btn-padding-x: 0.75rem;
        --bs-btn-padding-y: 0.375rem;
        --bs-btn-font-size: 1rem;
        --bs-btn-font-weight: 400;
        --bs-btn-line-height: 1.5;
        --bs-btn-color: #212529;
        --bs-btn-bg: transparent;
        --bs-btn-border-width: 1px;
        --bs-btn-border-color: transparent;
        --bs-btn-border-radius: 0.375rem;
        --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
        --bs-btn-disabled-opacity: 0.65;
        --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
        display: inline-block;
        padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
        font-family: var(--bs-btn-font-family);
        font-size: var(--bs-btn-font-size);
        font-weight: var(--bs-btn-font-weight);
        line-height: var(--bs-btn-line-height);
        color: var(--bs-btn-color);
        text-align: center;
        text-decoration: none;
        vertical-align: middle;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
        border-radius: var(--bs-btn-border-radius);
        background-color: var(--bs-btn-bg);
        transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }

    @media (prefers-reduced-motion: reduce) {
        .btn {
            transition: none;
        }
    }
    .btn:hover {
        color: var(--bs-btn-hover-color);
        background-color: var(--bs-btn-hover-bg);
        border-color: var(--bs-btn-hover-border-color);
    }

    .btn:focus {
        color: var(--bs-btn-hover-color);
        background-color: var(--bs-btn-hover-bg);
        border-color: var(--bs-btn-hover-border-color);
        outline: 0;
        box-shadow: var(--bs-btn-focus-box-shadow);
    }

    .btn:active {
        color: var(--bs-btn-active-color);
        background-color: var(--bs-btn-active-bg);
        border-color: var(--bs-btn-active-border-color);
    }

    .btn:active:focus {
        box-shadow: var(--bs-btn-focus-box-shadow);
    }

    .btn:disabled {
        color: var(--bs-btn-disabled-color);
        pointer-events: none;
        background-color: var(--bs-btn-disabled-bg);
        border-color: var(--bs-btn-disabled-border-color);
        opacity: var(--bs-btn-disabled-opacity);
    }

    .carousel {
        position: relative;
    }

    .carousel-inner {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .carousel-inner::after {
        display: block;
        clear: both;
        content: "";
    }

    .carousel-item {
        position: relative;
        display: none;
        float: left;
        width: 100%;
        margin-right: -100%;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transition: transform .6s ease-in-out;
    }

    @media (prefers-reduced-motion: reduce) {
        .carousel-item {
            transition: none;
        }
    }
    .carousel-item.active {
        display: block;
    }

    .fixed-top {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1030;
    }

    .d-flex {
        display: flex !important;
    }

    .d-none {
        display: none !important;
    }

    .position-relative {
        position: relative !important;
    }

    .h-100 {
        height: 100% !important;
    }

    .align-items-center {
        align-items: center !important;
    }

    .align-items-stretch {
        align-items: stretch !important;
    }

    .mx-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mt-2 {
        margin-top: .5rem !important;
    }

    .mt-4 {
        margin-top: 1.5rem !important;
    }

    .mt-5 {
        margin-top: 3rem !important;
    }

    .mb-3 {
        margin-bottom: 1rem !important;
    }

    .mb-4 {
        margin-bottom: 1.5rem !important;
    }

    .mb-5 {
        margin-bottom: 3rem !important;
    }

    .pt-5 {
        padding-top: 3rem !important;
    }

    .pb-5 {
        padding-bottom: 3rem !important;
    }

    .text-center {
        text-align: center !important;
    }

    @media (min-width: 768px) {
        .d-md-inline {
            display: inline !important;
        }

        .d-md-inline-block {
            display: inline-block !important;
        }

        .d-md-block {
            display: block !important;
        }

        .d-md-flex {
            display: flex !important;
        }

        .d-md-none {
            display: none !important;
        }

        .col-md-4 {
            flex: 0 0 auto;
            flex-shrink: 0;
            width: 33.33333333% !important;
        }
    }
    @media (min-width: 992px) {
        .d-lg-block {
            display: block !important;
        }

        .d-lg-none {
            display: none !important;
        }
    }
}

/***********************************/
/***********************************/
/***********************************/
/***********************************/

html,
body {
    font-family: 'Montserrat', sans-serif;
    max-width: 100vw;
    overflow: hidden;
    overflow-y: auto;
    padding-bottom: 0 !important;
    color: #2E3031;
}


header .offer-banner {
  text-align: center;
    padding: 3px 0;
    box-shadow: 0px 2px 3px rgb(0 0 0 / 27%);
    color: red;
    font-size: 15px;
    max-height: 100px;
    position: relative;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out, opacity 0.5s ease-in-out;
    background-color: black;
    color: white;
}


}


header .offer-banner.hide {
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
}

header .offer-banner .close-icon {
    position: absolute;
    font-size: 35px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    color: black;
    font-weight: 300;
    right: 20px;
    cursor: pointer;
}

.global-wrapper {
  padding-top: 150px;
}

.video-container {
  max-width: 1100px;
  flex: 0 0 100%;
}


.arrows img {
  max-width: 60px;
  opacity: 0.5; 
}

.arrows img:hover {
  opacity: 1;
}

.left-arrow img {
  transform: rotate(180deg);
}
.arrows a {
  display: block;
  position: relative;
}

.popover {
  position: absolute;
  background-color: #000000b2;
  z-index: 9;
  padding: 0;
  transition: all 0.3s ease;
  width: max-content;
  left: 60px;
  top: 11px;
  color: white;
  border-radius: 6px;
  max-height: 0;
  overflow: hidden;
  padding-left: 10px;
  padding-right: 10px;
  box-shadow: 0 0 10px #44444487;
}

.right-arrow .popover {
  left: 0;
  transform: translateX(-100%);
}



a:hover .popover {
     padding: 10px;
  max-height: 50px;
}

.flex-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.flex-container > div {
  min-width: 60px;
}
.arrows .hide {
  display: none;
}
.hubspot-enable-focus-styles .global-wrapper,
.hubspot-disable-focus-styles .global-wrapper {
  padding-top: 200px;
}

.hubspot-enable-focus-styles  .video-container,
.hubspot-disable-focus-styles .video-container {
  max-width: 70%;
  width:  1150px;
  
}

.hubspot-enable-focus-styles  .arrows  .hide,
.hubspot-disable-focus-styles .arrows  .hide {
  display: block;
}

.hubspot-enable-focus-styles .video-container > div,
.hubspot-disable-focus-styles .video-container > div {
  display: block !important;
}

.hubspot-enable-focus-styles .d-md-none .hs-video-wrapper,
.hubspot-disable-focus-styles .d-md-none .hs-video-wrapper {
  padding-bottom: 35.78% !important;
}

iframe {
  max-height: 80vh;
}

.progress-bar {
  height: 6px;
  background-color: #3294f5;
  max-width: 1000px !important;
  margin: auto;
  border-radius: 6px;
  background-color: #c8c8c8;
  position: relative;
  overflow: hidden;
}

.progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #3294f5;
}

.progress-count {
  max-width: 1000px;
  margin: auto;
  text-align: right;
  font-size: 12px;
  color: gray;
}


@media screen and (max-width: 768px) {
 
  .progress-count {
    max-width: 88%;
    font-size: 2.2vw;
  }
  
  .progress-bar {
    max-width: 88% !important;
    height: 1.3vw;
    border-radius: 4vw;
  }
  iframe {
    max-height: initial;
  }
  
  .video-container {
     max-width: 399px;
    margin: auto; 
/*     max-height: 80vh; */
    order: -1;
  }
  
  .d-none {
    display: none; 
  }
  
  .global-wrapper {
   padding-top: 28vw;
  }

  .flex-container {
    padding-right: 1vw !important;
    padding-left: 1vw !important;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1vw;
  }
  
  .arrows img {
    filter: invert(100);
  max-width: 35%;
  }
  
  .arrows a {
   display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    border-radius: 3vw;
    background-color: #000000b5;
    border-radius: 2vw;

  }
  
  .flex-container  .arrows {
    flex: 0 0 25%;
    margin-left: 2vw;
    margin-right: 2vw;
  }
}




header.show-banner .offer-banner {
    display: block;
}

* {
    font-family: 'Montserrat', sans-serif;
}

a {
    color: #e03a3c;
    text-decoration: none;
}

.btn-check:focus + .btn, .btn:focus {
    box-shadow: none;
}

a:hover {
    color: #7d9ba9;
    text-decoration: none;
}

.cart-icon-img,
.user-avatar {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMSIgaGVpZ2h0PSIyMCIgZmlsbD0ibm9uZSIgeG1sbnM6dj0iaHR0cHM6Ly92ZWN0YS5pby9uYW5vIj48cGF0aCBkPSJNMTAuMjgxIDBhNSA1IDAgMCAxIDUgNSA1IDUgMCAwIDEtNSA1IDUgNSAwIDAgMS01LTUgNSA1IDAgMCAxIDEuNDY0LTMuNTM2QTUgNSAwIDAgMSAxMC4yODEgMHptMCAxMi41YzUuNTI1IDAgMTAgMi4yMzggMTAgNVYyMGgtMjB2LTIuNWMwLTIuNzYyIDQuNDc1LTUgMTAtNXoiIGZpbGw9IiMwMDAiLz48L3N2Zz4=");
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: -5px;
}

.cart-icon-img {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAE8AAABOCAMAAABWtrsRAAAAOVBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8dlA9AAAAEnRSTlMAYIDfQCDvUHAQML+woJDQn8CgZQqnAAABZElEQVRYw+3XS27EIBAE0OJvGP+G+x82ElLSm7QNpKTMwm9rDXaX7BrA40NlU0AUXK3u9GCxtYlnymBY6o+XAcFWxUJJ0Kzx+wlBkjbXFsygSTIwx6tOOYL65gy6Cd3XOQcUrk45odjrFAPuwAGaWCc4gDrwCpWnxCfyzMAFuo0SnzBT8VEHNuROKDftz4hP5In4iAPfF/BCiU+EOiSSW3/FHUuJT3hOfMJR4hM7JT7hJ+NjtL4HdeAIUAd+o0ukxCc2SnzCUOOD6Z13H9jwx93eSehxtuVcAccue86/kjrdMnVTbkFj5S+Qd/oyoCm1myvkQ8jRdxwmt1XobgOLPtmbHh7/Jydr1fv7xSYMSa2xXMAvimvX/OBHpy0YotrN9zuE18U1N/h4Tb74fvxAJ8hv9HstjPXMxHr+Yt4wMa9kfmp9MdaSJcr7ovVFDOgXjra5y3pfvAOGlJSyejefAh6PT/IF35GMFL7UkFoAAAAASUVORK5CYII=');
    width: 26px;
    display: block;
    height: 26px;
    margin-left: 10px;
}


@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: auto;
    }
}

.no-lf-pad {
    padding-left: 0;
    padding-right: 0;
}

h1, h2, h3, h4, h5, h6, .collection_title, .headline, .subtitle p, .footer_menu a, .empty_cart, .promo_banner {
    text-transform: initial;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 3;
    padding: 0px 0;
    background: #fff;
    /*border-bottom: 1px solid rgb(0 0 0 / 11%);*/
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.05));
}

.sec10 .row.desk-view {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

.sec10 .row.resp-view {
    display: none !important;
}

#header .container {
    padding: 0px 68px 0px 69px;
    margin: auto;
}

h1.logo img {
    width: 230px;
}

a.brokerImg img {
    max-width: 125px;
    border: 1px solid #ddd;
    margin-left: 20px;
}

#header.header-scrolled {
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.05));
    background-color: #fff;
}

#header .logo {
    margin: 0;
    padding: 0;
}

#header .logo a {
    float: left;
}

#header .logo img {
    transition: 0.3s;
    height: auto;
    min-width: 148px;
    max-height: 41px;
}

#header.header-scrolled img {
    transition: 0.3s;
}

#header.header-scrolled nav.nav-menu {
    margin-top: 0px;
}

#header .row > .align-items-center {
    padding-right: 0;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul {
    display: flex;
}

.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 8px 10px;
    margin: 0 2px;
}

.nav-menu a {
    Font-size: 14px;
    line-height: 150%;
    font-family: 'Montserrat', sans-serif;
    color: #2E3031;
}

.nav-menu .menu-item-has-children ul {
    display: block;
    position: absolute;
    left: 0px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #044670;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.nav-menu .menu-item-has-children:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .menu-item-has-children li {
    min-width: 180px;
    position: relative;
    border-left: 4px solid transparent;
}

.nav-menu .menu-item-has-children ul a {
    padding: 10px 20px;
    text-transform: none;
    line-height: 32px;
    font-size: 15px;
    color: #fff;
}

.nav-menu .menu-item-has-children ul li:hover,
.nav-menu .menu-item-has-children ul .active,
.nav-menu .menu-item-has-children ul li:hover {
    background: #7d9ba9;
    border-left: 4px solid #000;
}


.nav-menu .menu-item-has-children .menu-item-has-children ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .menu-item-has-children .menu-item-has-children:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .menu-item-has-children .menu-item-has-children > a {
    padding-right: 35px;
}

.header-top li {
    font-size: 15px;
    letter-spacing: 0px;
    color: #00396e;
    font-weight: 400;
    list-style: none;
    display: inline-block;
}

.header-top {
    height: 30px;
    margin: 10px 0;
}

.header-top ul {
    margin: 0;
}

nav.nav-menu {
    width: 100%;
    padding: 13px 0 13.5px;
}

.nav-menu > ul {
    padding-left: 40px;
}

.carousel-indicators {
    right: 0;
    bottom: 50px;
    left: 0px;
    margin: 0px auto;
    align-items: baseline;
    height: 30px;
}

.carousel-indicators li {
    width: 2px;
    height: 15px;
    background: #ccc;
    transition: all 0.4s;
}

.carousel-indicators .active {
    background-color: #46c5ef;
    height: 30px;
    transition: all 0.4s;
}

button.buy-btn {
    background-color: #ef8b52;
    font-size: 16px;
    letter-spacing: 2px;
    color: #f3f3fa;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    border: 0;
    padding: 10px 20px;
    overflow: hidden;
    font-style: italic;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    right: 24px;
    top: 30px;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.backdrop {
    background-color: #0000002b;
}

.mobile-nav-toggle i.icofont-close {
    margin: -9px 0 0;
    display: block;
}

.mobile-nav-toggle i {
    color: #fff;
}

.icofont-navigation-menu.icofont-close::before {
    content: '\f00d';
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    padding: 50px 0 0;
}

.mobile-nav::before {
    content: '';
    width: 100%;
    height: 50px;
    top: 0;
    background: #1c1c1c;
    position: absolute;
    right: 0;
}

.mobile-nav li:active {
    background: #7d9ba9;
}

.mobile-nav li.client-log {
    background: #7d9ba9;
    margin: 0px auto;
    display: table;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #111111;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
    color: #1d4460;
    text-decoration: none;
}

.mobile-nav .menu-item-has-children > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .menu-item-has-children > a:after {
    content: "\f107";
    font-family: 'FontAwesome';
    font-weight: 600;
    font-size: 24px;
}

.mobile-nav .menu-item-has-children > a {
    padding-right: 35px;
}

.mobile-nav .menu-item-has-children ul {
    display: none;
    overflow: hidden;
    background: #272727;
}

.mobile-nav .menu-item-has-children ul a {
    color: #fff;
}

.mobile-nav .menu-item-has-children li {
    padding-left: 20px;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

.nav-menu {
    position: relative;
}

#header.header-scrolled nav.nav-menu::after {
    display: none;
}

.nav-menu li a {
    font-weight: 600;
    padding: 4px 8px;
    transition: all .3s ease-in-out;
    text-transform: uppercase;
}

.nav-menu li:hover a,
.nav-menu li.active a,
#footer .active a {
    border-radius: 7px;
    /*
    background-color: #e61b41;*/
    transition: all .3s ease-in-out;
}

.rht-nav {
    display: flex;
    width: 100%;
    justify-content: end;
    align-items: center;
}

.rht-nav a i {
    color: #000;
    padding: 0 10px;
}

.rht-nav a {
    Font-size: 16px;
    color: #0066DD;
    text-decoration: underline;
    padding: 0 15px;
    font-weight: 900;
    font-size: 16px;
    text-transform: capitalize;
    line-height: 20px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    height: auto;
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: visible;
    padding: 64px 0 0;
}

.bnr-lrft {
    width: 50.666667% !important;
    max-width: 46.66666%;
    flex: 0 0 50.666667%;
}

.bnr-rht {
    max-width: 40% !important;
    margin-right: -20%;
}

.bnr-lrft img {
    width: 100%;
    max-width: 100%;
}



.cart-link__bubble {
    display: none;
}

.discount-amount {
    text-decoration: line-through;
    font-style: italic;
}

.discounted .quantity {
    pointer-events: none;
}

.discounted .quantity button {
    background-color: #80808024 !important;
}

.free-offer-msg:after {
    content: "";
    border-radius: 100%;
    width: 17px;
    height: 17px;
    display: inline-block;
    border: 2px solid #ffffff7d;
    position: relative;
    top: 2px;
    right: -5px;
    border-top-color: #024e00;
    animation: ease-in 2.5s infinite freeRotate;
}

@keyframes freeRotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.free-offer-msg {
    display: none;
    position: absolute;
    background-color: #00a100d4;
    padding: 2px 15px;
    color: white;
    border-radius: 2px;
    margin-top: 12px;
    box-shadow: 0 0 4px #4eae47;
    animation: ease-in 2s infinite freeOffer;
}

.free-offer-msg.show {
    display: block;
}


@keyframes freeOffer {
    0% {
        background-color: #00a100d4;
        box-shadow: 0 0 4px #4eae47;
    }
    50% {
        background-color: rgba(0, 161, 0, 0.58);
        box-shadow: 0 0 4px rgba(78, 174, 71, 0);
    }
    100% {
        background-color: #00a100d4;
        box-shadow: 0 0 4px #4eae47;
    }
}

.cart-link__bubble--visible {
    display: initial;
}

lord-icon {
    width: 30px;
}

.user-avatar {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMSIgaGVpZ2h0PSIyMCIgZmlsbD0ibm9uZSIgeG1sbnM6dj0iaHR0cHM6Ly92ZWN0YS5pby9uYW5vIj48cGF0aCBkPSJNMTAuODc5IDBhNSA1IDAgMCAxIDUgNSA1IDUgMCAwIDEtNSA1IDUgNSAwIDAgMS01LTUgNSA1IDAgMCAxIDEuNDY0LTMuNTM2QTUgNSAwIDAgMSAxMC44NzkgMHptMCAxMi41YzUuNTI1IDAgMTAgMi4yMzggMTAgNVYyMGgtMjB2LTIuNWMwLTIuNzYyIDQuNDc1LTUgMTAtNXoiIGZpbGw9IiMwMDAiLz48L3N2Zz4=);
    width: 20px;
    height: 20px;
}


.banner {
    padding: 0px;
}

.banner-bg {
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
}

.bnr-lrft img.ab-img {
    position: absolute;
    bottom: -64px;
    left: 108px;
}

.bnr-lrft img.ab-img.ar-img {
    position: relative;
    margin: 0px 20px 0;
    bottom: unset;
}

.bnr-lrft p {
    position: absolute;
    right: 0;
    left: 270px;
    font-size: 18px;
    line-height: 150%;
    font-weight: 600;
    bottom: -79px;
    color: #000;
}


.sec2 .container > .row > .col-xl-12:nth-child(2) {
    padding-right: 64px;
}

.sec2 .row.align-items-stretch {
    padding-left: 12px;
}

.bnr-lrft p strong {
    font-weight: 900;
}


p.prata-font {
    font-family: 'Prata', serif !important;
    margin: 15px 0 20px;
}

.banner .bhr-box p {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    /* TITLE COLOR */
    color: #2E3031;
}

.banner .bhr-box p strong {
    font-weight: 500;
}


.bnr-rht h2 {
    font-size: 36px;
    color: #2E3031;
    font-weight: 700;
    line-height: 125%;
}


.bnr-rht h2 {
    background: rgba(202, 223, 249, 0.7);
    margin: 4px 0;
    display: inline-block;
    letter-spacing: 0;
    line-height: 130%;
    padding: 0 13px 0 13px;

    color: var(--titlecolor, #2E3031);
    font-size: 45px;
    font-style: normal;
    font-weight: 300;
    text-transform: capitalize;
    background: #FFF;
    width: max-content;
}

.top-text {
    color: var(--titlecolor, #2E3031);
    font-size: 14px;
    margin-bottom: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    text-transform: uppercase;
    padding-left: 15px;
}

.top-text sup {
    font-size: 11px;
}

#carouselExampleIndicators {
    padding-top: 0px;
}

.bnr-box {
    background: #fff;
    padding: 25px 25px 25px 40px;
    max-width: max-content;
    box-shadow: 0px 2px 4px rgba(113, 139, 176, 0.3);
    border-radius: 15px;
}

.bnr-box p strong {
    display: block;
    font-weight: 800;
}

.bnr-box p {
    font-size: 20px;
    line-height: 150%;
}

a.buy-btn {
    background: #3294f5;
    color: #fff;
    padding: 12px 25px;
    margin: 0 25px;

    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.client-logos {
    display: flex;
    justify-content: center;
    margin-top: 130px !important;
}

.client-logos img {
    width: 100%;
    max-width: 1300px;
}

.sec2.bg-wht .col-lg-12.pb-5.border-bottom img {
    max-width: 100px;
    margin: 10px 6px;
}

.sec2.bg-wht .col-lg-12.pb-5.border-bottom {
    justify-content: center;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.commn-layout {
    padding: 140px 0 60px;
}


.commn-layout .container {
    max-width: 1150px;
}

h2.heading,
.pc h2,
.commn-layout h2 {
    font-weight: 300;
    font-size: 50px;
    line-height: 105%;
    text-align: center;
    text-transform: capitalize;
    color: #2E3031;
    font-family: Montserrat;
}

.pc h2 {
    margin-bottom: 120px !important;
    position: relative;
    text-decoration: none !important;
}


.pc h2::after,
.commn-layout h2::after {
    content: '';
    width: 60px;
    position: absolute;
    left: 0;
    right: 0;
    border-bottom: 1px solid #2E3031;
    margin: 0px auto;
    top: 92px;
}

h3.sub-heading:after,
h2.heading:after,
h2.light-heading:after {
    content: '';
    width: 60px;
    display: block;
    border-bottom: 1px solid #2E3031;
    margin: 35px auto 0;
    position: initial;
}


.commn-layout .aos-init {
    padding-bottom: 25px !important;
}

.commn-layout h3 {
    margin-bottom: 0;
}

svg ellipse.D,
svg .B,
svg .L,
svg .ions,
svg .inflamed {
 opacity: 0;
    transition: all 0.3s ease-in;
}

.svg-one svg ellipse.D,
.svg-two svg .inflamed,
.svg-three svg .B,
.svg-three svg .L,
.svg-three svg .ions {
    opacity: 1;
    transition: all 0.3s ease-in;

}

.svg-two svg .inflamed {
    transition-duration: 0.3s;
}


.sec1 h3 {
    font-weight: 400;
    font-size: 32px;
    line-height: 150%;
    font-family: 'Prata', serif;
    color: #819BBB;
    letter-spacing: 0;
}

.sec1 p {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 170%;
    margin: 20px 0;
}

.sec1 img {
    max-width: 100%;
}

.sec1 {
    background: linear-gradient(0deg, #D1E6FF 0%, #FFFFFF 70.79%);
}


.sec2 {
    padding-top: 48px;
    background: linear-gradient(180deg, #D1E6FF 0%, #FFFFFF 69.79%);
}

.sec2 h2 {
    text-align: left;
}

h3.sub-heading {
    font-weight: 700;
    font-size: 30px;
    line-height: 105%;
    text-transform: capitalize;
}

.sec2 h2 span {
    font-weight: 800;
    font-size: 28.5px;
    line-height: 135%;
    text-transform: uppercase;
    display: block;
    padding: 0px 0;
    margin-top: 14px;
}

.sec2.commn-layout h2::after {
    top: 145px;
    margin: 0 15px;
}

.sec2.commn-layout .row:first-child .aos-init {
    margin-bottom: 40px !important;
}


.sec2.commn-layout .row:last-child > .col-xl-12:nth-child(2) {
    max-width: 1029px;
    margin: auto;
}

.sec2.commn-layout .row:last-child > .col-xl-12:nth-child(2) p {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    padding: 0px;
    font-size: 25px;
    line-height: 192%;
    text-align: center;
    color: #3A3D3E;
}

.sec6 .buy-btn,
.sec5 .buy-btn,
.sec8 .buy-btn,
.jdgm-all-reviews-page__load-more,
.sec2 .stretched .buy-btn {
    padding: 24px 40px;
    background: #3294f5;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
    margin-top: 30px;
}


.sec5 .buy-btn.button_su_inner,
.sec2 .stretched .buy-btn.button_su_inner {
    margin: 0;
}

.sec6 .button_su,
.sec5 .button_su {
    margin-top: 30px;
}


.button_su.large .buy-btn {
    margin: 0 !important;
}

.large .explode-circle,
.sec5 .explode-circle,
.sec2 .stretched .explode-circle {
    animation: explode-large 0.6s forwards !important;
}

.large .desplode-circle,
.sec5 .desplode-circle,
.sec2 .stretched .desplode-circle {
    animation: desplode-large 0.6s forwards !important;
}

.sec2 .stretched .button_su {
    margin-top: 30px;
}


.p-divider {
    margin-bottom: 30px;
}

.colored-txt-bg,
.sec2.commn-layout p {
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 192%;
    font-family: 'Prata', serif;
    color: #fff;
    padding: 5px 10px;
    background: #BBD1ED;
    display: inline;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.commn-layout ul li {
    font-size: 16px;
    line-height: 28px;
    color: #000000;
    font-weight: 500;
    padding: 7px 0;
    list-style: none;
    position: relative;
}

.commn-layout ul li:before {
    content: '';
    width: 20px;
    height: 15px;
    position: absolute;
    left: -30px;
    /*background: url(../img/arrow.png) no-repeat;*/
    background-size: contain;
    top: 13px;
}

.none {
    display: none !important;
}

.commn-layout p {
    font-weight: 500;
    font-size: 15px;
    line-height: 170%;
    color: #4E4E4E;
    margin-bottom: 3px;
}

.commn-layout .row > .col-xl-6:nth-child(2) {
    max-width: 42%;
    margin-top: 80px;
}

.commn-layout label[for="three"] {
    margin-right: -25px;
}

.commn-layout #hair-loss-image svg {
    width: 600px;
}

.commn-layout #hair-loss-image {
    padding-left: 40px;
}


.container {
    max-width: 1440px;
}

.global-wrapper > .container {
    max-width: 100%;
}

.swiper-container, .swiper-container1 {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide {
    background: transparent;
}

.swiper-button-prev {
    left: -4% !important;
}

.swiper-button-next {
    right: -4% !important;
}

.swiper-button-prev,
.swiper-button-next {
    background-color: #00000054 !important;
    height: auto;
    padding: 10px;
transition: all 0.5s cubic-bezier(.39, .575, .565, 1);
    transition: all 0.5s ease-in-out;
    width: auto !important;
    border-radius: 100%;
    box-shadow: 0 0 6px #646464;
}

.swiper-container:hover .swiper-button-next {
    right: 2% !important;

}

.swiper-container:hover .swiper-button-prev {
    left: 2% !important;

}

.carousel-cell {
    margin-left: 4.16666vw;
    margin-right: 4.16666vw;
    max-width: 47.0138889vw;
}

.carousel-cell img {
    width: 100%;
}


.swiper-button-next:active,
.swiper-button-prev:active {
    opacity: 0;
}

img.bg-img1 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    background-size: cover;
    object-fit: cover;
    z-index: 0;
}

.sec1 img.bg-img1 {
    height: auto;
}

img.bg-img {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    z-index: 0;
}

.z-index2 {
    z-index: 2;
}

.reason-wrap {
    background: #fff;
    padding: 20px 20px 20px 35px;
    position: relative;
}

.reason-wrap h4 {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 149%;
    text-transform: uppercase;
    color: #3A3D3E;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;


}

.reason-wrap h4 img {
    width: 88px;
    float: right;
}

.sec2 .reason-wrap p {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 170%;
    color: #4E4E4E;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    display: block;
    min-height: 240px;
    padding-left: 0;
    padding-right: 18px;


}

.sec2 .stretched {
    margin-left: -45px;
    margin-right: -45px;
    margin-top: 43px;
}


.sec2 .col-xl-4.aos-init.aos-animate {
    padding-left: 17px;
    padding-right: 17px;
}

img.reason-wrapimg {
    margin: auto;
    display: block;
    position: absolute;
    bottom: -72px;
    left: 50%;
    transform: translateX(-50%);
}


.sec2 .row .aos-init.aos-animate:nth-child(1) img.reason-wrapimg {
    max-width: 187px;
    bottom: -94px;
}

.sec2 .row .aos-init.aos-animate:nth-child(2) img.reason-wrapimg {
    max-width: 199px;
}

.sec2 .row .aos-init.aos-animate:nth-child(3) img.reason-wrapimg {
    max-width: 243px;
}

.sec2 .row.align-items-stretch {
    gap: 35px;
    max-width: 1120px;
    margin-top: 62px;
}

.sec2 .row.align-items-stretch > div {
    width: calc(33.333333% - 23.333px);
    padding: 0;
}

.sec2 .box-wrap {
    display: flex;
    flex-direction: column;
    border-bottom: 125px solid #D93940;
    border-radius: 0 0 0 100px;
    height: 100%;
    background-color: white;
    padding-bottom: 78px;
}

.sec2 .box-wrap.rasonbg2 {
    border-color: #23A0E0;
}

.sec2 .box-wrap.rasonbg3 {
    border-color: #F0E462;
}

.btm-dsn {
    height: 125px;
    background: #D93940;
    border-radius: 0px 0px 0 100px;
  width: 100%;
    left: 0;
    top: 90px;
}


.linear-line {
    width: 1px;
    height: 129px;
    border-left: 1px solid #C1D8F4;
    margin: 0px auto;
}

.sec2 .btm-txt p {
    font-weight: 400;
    font-size: 25px;
    line-height: 150%;
    color: #3A3D3E;
    background: transparent;
    display: block;
}

.sec3.commn-layout {
    background-size: cover;
    background-position: left center;
    padding: 194px 0 169px;
    margin-bottom: 30px;
}

.sec3 .left-content h3 {
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 175%;
    color: #FFFFFF;
    font-family: 'Prata', serif;
    background: #0D47B6;
    display: inline;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 6px 10px 1px;
}

.sec3 .left-content {
    padding-right: 27px;
}

.sec3 .left-content p {
    font-style: normal;
    font-weight: 400;
    font-family: 'Montserrat';
    font-size: 15px;
    line-height: 170%;
    color: #FFFFFF;
    margin: 30px 0 0;
}

.accp-box p {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 170%;
    color: #4E4E4E;
}

.accp-box::before {
    content: '';
    width: 90px;
    height: 72px;
    position: absolute;
    background: #fff;
    top: -10px;
    left: -14px;
    clip-path: polygon(85% 16%, 0 0, 16% 100%);
}

.sec3 img {
    position: relative;
    top: -25px;
}

.accp-box {
    background: #fff;
    width: 335px;
    padding: 40px 30px 34px 44.4px;
    border-radius: 44px;
    position: absolute;
    right: -90px;
    margin-top: -46px;
}

.accp-box strong {
    font-weight: 600;
    font-size: 15px;
    color: black;
}

.sec4, .sec6, .sec9 {
    background-image: linear-gradient(#fff, #D1E6FF);
}

.sec9 {
    background: linear-gradient(0deg, #D1E6FF 0%, #FFFFFF 73.79%);
    background: none;
    padding-bottom: 0;
}

.sec7 {
    background: linear-gradient(180deg, #D1E6FF 0%, #FFFFFF 47.79%, #FFFFFF 66.79%, #D1E6FF 100%);
    padding-bottom: 60px;
    padding-top: 136px;
}


.sec5, .sec8, .sec10 {
    background-image: linear-gradient(#D1E6FF, #fff);
}

.sec4 {
    padding-top: 91px;
    background: linear-gradient(0deg, #D1E6FF 0%, #FFFFFF 69.79%);
    padding-bottom: 39px;
}

.sec4 h2 span {
    font-style: normal;
    font-weight: 800;
    font-size: 26px;
    line-height: 135%;
    text-transform: uppercase;
    color: #2E3031;
    display: block;
    padding: 13px 0 0;
    transform: scale(1.08, 1.16);
}

.sec4 .col-xl-10.top-img.mx-auto.d-block {
    margin-bottom: 32px !important;
}

.sec4 h2::after {
    top: 133px;
}

.top-img img {
    display: block;
    margin: auto;
    max-width: 685px;
}

.sec4 .row .aos-animate:first-child {
    padding-bottom: 20px !important;
}

.quiz-box {
    background: #FFFFFF;
    box-shadow: 0px 2px 4px rgb(113 139 176 / 30%);
    border-radius: 40px 0px;
    padding: 30px 20px;
    margin: 80px 0 0;
    min-height: 354px;
}

.quiz-box img {
    position: initial;
    transform: none;
    max-width: 100%;
    max-height: 188px;
}

.quiz-box h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #2E3031;
    margin: 30px 0;
    letter-spacing: 0;
    font-family: 'Montserrat';
}

.quiz-cir span {
    display: block;
}

.quiz-cir {
    background: #0D47B6;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: -77px auto 0;
    padding: 20px 10px;
}

.quiz-cir h5 span,
.quiz-cir h5 {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 135%;
    text-align: center;
    color: #FFFFFF;
    font-family: 'Prata', serif;
    letter-spacing: 0;
}

.sec5 {
    padding-top: 85px;
}

.sec5 .col-xl-12.text-center:last-child {
    margin-top: 5px;
}

.sec5 .swiper-container {
    padding: 0 22%;
    margin-left: -15px;
    width: calc(100% + 30px);
}

.sec5 .swiper-slide img {
    width: 100%;
}

.swiper-slide {
    font-size: 18px;
    background: transparent;

    padding-left: 4.2vw;
    padding-right: 4.2vw;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}


.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.sec5 .swiper-container.swiper-container-horizontal {
    margin-left: -30%;
    width: 160%;
}

.commn-layout .aos-init.risk-wrap {
    border: 1px solid #B2CAE7;
    padding: 59px 42px 76px !important;
}

.top-img {
    display: flex;
}

.sec6 {
    padding-top: 40px;
    padding-bottom: 0;
    background: linear-gradient(0deg, #D1E6FF 0%, #FFFFFF 69.79%);
}

.sec6 .container {
    max-width: 1300px;
}

.sec6 h2 span {
    font-style: normal;
    font-weight: 800;
    font-size: 29px;
    line-height: 135%;
    text-transform: uppercase;
    color: #2E3031;
    display: block;
    margin: 12px 0 0;
    letter-spacing: -0.8px;
}

.sec6 h2 {
    padding: 40px 0 0;
    margin-bottom: 4px;
}

.sec6 h2::after {
    display: none;
}

.sec6.horizontal {
    padding-top: 127px;
}

.sec6.horizontal .col-xl-12 {
    display: flex;
    gap: 53px;
    align-items: center;
}

.sec6.horizontal .risk-wrap {
    padding: 42px 90px !important;
}

.sec6.horizontal h2 span,
.sec6.horizontal h2 {
    text-align: left !important;
}

.sec6.horizontal .buy-btn {
    display: none;
}

h3.title-lfttxt {
    font-style: normal;
    font-weight: 400;
    font-size: 38px;
    line-height: 192%;
    color: #FFFFFF;
    top: -75px;
    position: absolute;

    font-family: 'Prata', serif;
}

.sec7.sec8 h3.title-lfttxt {

    left: -3px;
}

.title-lft:before,
.title-lft {
    height: 80px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 100vw;
    background: linear-gradient(90deg, #BBD1ED 0%, #BBD1ED calc(50vw - 720px), transparent calc(50vw - 720px), transparent 100%) no-repeat;
}

.title-lft:before {
    content: '';
    display: block;
    max-width: 1440px;
    background: linear-gradient(90deg, #BBD1ED 25.85%, rgba(187, 209, 237, 0) 103.07%) no-repeat;
    background-size: 653px;
}


.cat-title h3 span {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 170%;
    display: block;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0;
}

.box-wht h3 {
    letter-spacing: 0;
}

.cat-title h3 {
    font-family: 'Prata', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 38px;
    color: #000000;
    line-height: 140%;
}

.cat-title {
    border-bottom: 1px solid #CCD8E8;
    padding: 0 0 20px;
}

.cat-box {
    margin: 89px 0 0;
}

.sec7 .col-xl-4.aos-init.aos-animate {
    padding-left: 17px;
    padding-right: 17px;
}

.sec7 .row.border-top.mt-5 {
    margin-top: 114px !important;
    border-top: 1px solid #CCD8E8;
    padding: 67px 0 0;
    display: flex;
}

.border-top {
    border-top: 1px solid #CCD8E8 !important;
}

.border-top .text-left {
    width: 20%;
    padding-top: 27px;
    padding-right: 0;
    padding-left: 0;
}

.sec7 .prod-dsc h3 {
    font-size: 30px;
    line-height: 142%;
}


.sec7 h6 {
    margin-bottom: 26px;
    font-weight: 600;
    font-size: 19px;
    line-height: 149%;
    text-transform: uppercase;
    color: #000000;
    margin-top: -5px;
    margin-left: 3px;
    font-family: Montserrat

}


.sec7 .quiz-box {
    padding: 48px 44px 41px;
    min-height: auto;

}

.sec7 .quiz-box img {
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.sec7 .quiz-box:hover img {
    transform: scale(1.1);
    transition: all 0.4s ease-in-out;
}


.sec7 .products-holder {
    display: flex;
    gap: 31px;
    width: 80%;
    padding-right: 0;
    padding-left: 0;
    justify-content: space-between;
}

.sec10.commn-layout .container,
.sec8.commn-layout .container,
.sec7.commn-layout .container {
    max-width: 1120px;
}

.sec7 .products-holder .desk-view {
    width: calc(31%);
}

.desk-view.cat-title {
    width: 100%;
    margin-top: 9px;
}

.cat-box .box-wht {
    background: #fff;
    position: relative;
    margin: 40px 0 0;
    padding: 0 0 12px;
}

.cat-box h4 span {
    display: block;
    font-weight: 600;
}

.cat-box a.buy-btn {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: #D93940;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    padding: 42px 0 45px 20px;
    border-radius: 0 0 0 100px;
    text-decoration: underline;
    text-decoration-thickness: from-font;
    text-underline-offset: 2px;
}

.blue .cat-box a.buy-btn {
    background: #23A0E0;
}

.ylw .cat-box a.buy-btn {
    background: #F0E462;
}

.cat-box img {
    position: relative;
    max-width: 128px;
    left: auto;
    top: -40px;
    transform: none;
    margin: auto auto -48px;
}

@media screen and (min-width: 769px) {
    .parent-hover:nth-child(4) .cat-box img {
        max-width: 130px;
    }

}

.cat-box * {
    font-family: 'Montserrat' !important;
}

.cat-box h4 span {
    font-weight: 700;
    font-size: 25px;
    line-height: 170%;
}

.cat-box h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 149%;
    color: #000000;
    text-align: center;
    letter-spacing: 0;
}


.prod-dsc .quiz-box {
    margin: 0;
}

.text-left h2 {
    text-align: left;
}

.text-left h2::after {
    display: none;
}

.prod-dsc .quiz-box img {
    width: 100%;
    height: auto;
}

.prod-dsc p {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 170%;
    color: #000000;
    margin: 23px 0 0;
}

.prod-dsc h3 {
    font-style: normal;
    font-weight: 400;
    font-size: 35px;
    line-height: 149%;
    text-transform: capitalize;
    color: #000000;
    font-family: 'Prata', serif;
    position: relative;
    left: -3px;
}

.sec8 {
    padding-top: 60px;
}

.sec8 .img-wrap img {
    width: 100%;
    margin: 0 0 20px;
}

.sec8 .will-videos {
    display: flex;
    gap: 17px;
    gap: 0;
}

.video-banner {
    padding: 0px;
    padding-right: 17px;
    margin-bottom: 18px;
}

#special-video-left {
    width: 19.5%;
    padding-left: 0;
    padding-right: 10px;
}

#wistia-banner {
    width: 61%;
    padding-left: 10px;
    padding-right: 10px;
}

#special-video-right {
    width: 19.5%;
    padding-left: 10px;
    padding-right: 0;
}

.sec8 .will-videos > div.desk-view {
    padding-bottom: 11px !important;
}

.sec8 .will-videos > div:nth-child(2) .video {
    justify-content: flex-start;
}


.sec8 .will-videos {
    margin-bottom: 20px !important;
}

.sec8 .will-videos .desk-view {
    padding-left: 10px;
    padding-right: 10px;
    gap: 20px;
    flex-direction: column;
    justify-content: flex-start;
    display: flex;
}

.sec8 .will-videos .desk-view:first-child {
    padding-left: 0;
}

.sec8 .will-videos .desk-view:last-child {
    padding-right: 0;
} 

.sec8 .will-videos .wide-column {
    width: 29.07%;
    gap: 20px;
}

.sec8 .will-videos .narrow-column {
    row-gap: 20px;
    width: 20.2%;
}

.sec8 .col-xl-5.img-wrap img {
    height: 234px;
    object-fit: cover;
}


.video {
    overflow: hidden;
    height: 1px;
    transition: all 0.3s ease-in-out;
    background-size: auto 100%;
    background-position: center;
    cursor: pointer;
    padding-bottom: 178.5%;
    position: relative;
    opacity: 1;
    margin-bottom: 0;
}

.youtube-container .video {
    padding-bottom: 57.5%;
    margin-bottom: 20px;
    background-size: auto 100%;
}

.youtube-container .full-width .video {
    padding-bottom: 56.5%;
    margin-bottom: 20px;
    background-size: auto 133.5%;
}


.two .video {
    padding-bottom: 27.5%;
    background-size: 100% auto;
}

.mid-faqs .video {
    background-size: 100%;
    padding-bottom: 56.5%;
}





.video h3 {
    display: flex;
    align-items: center;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==);
    font-size: 18px;
    gap: 10px;
    color: white;
    width: 100%;
    position: absolute;
    left: 0;
    padding: 12px 12px 40px 12px;

}

.video h3 span {
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}


.video.loaded:after,
.video.loaded:before,
.video.loaded h3 {
    display: none;
    content: none;
}


.video iframe {
    opacity: 0;
}


.video.adjusted iframe {
    position: absolute;
    top: 0;
    left: auto;
    height: 100%;
    width: 100%;
    opacity: 1;
}

.video.adjusted {
    position: relative;
    height: 0;
    margin-bottom: 0;
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.video.adjusted > div {
    display: contents;
}

.more-btn {
    overflow: initial;
    margin-bottom: 10px;
}

.more-btn .buy-btn {
    width: 397px;
}

#more-btn.active {
    animation: blacknblue 4s infinite;
}

@keyframes blacknblue {
    0% {
        background: #0D47B6;
        box-shadow: 0 0 10px #0D47B6;
    }
    25% {
        background: #000;
        box-shadow: 0 0 10px #000;
    }
    50% {
        background: #0D47B6;
        box-shadow: 0 0 10px #0D47B6;

    }
    75% {
        background: #000;
        box-shadow: 0 0 10px #000;
    }
    100% {
        background: #0D47B6;
        box-shadow: 0 0 10px #0D47B6;

    }

}

.sec8 .will-videos .wide-column .video.adjusted {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 178%;
}

.sec8 .will-videos .wide-column .video.special-cont {
    padding-bottom: 178%;
}


.border-cir {
    border: 2px solid #000000;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    line-height: 88px;
    text-align: center;
    margin: 0px auto;
}

.sec9.commn-layout {
    padding-top: 40px
}

.sec9 .border-cir div {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    font-size: 120px;
    text-align: center;
    text-transform: capitalize;
}

.sec9 h2 {
    margin-top: 30px !important;
}

h2.light-heading {
    font-weight: 300;
    font-size: 32px;
    line-height: 45px;
    text-transform: capitalize;
}

.sec9 h2 span {
    font-weight: 800;
    font-size: 30px;
    line-height: 135%;
    text-transform: uppercase;
    color: #2E3031;
    display: block;
    margin-top: 13px;
}

.sec9 h2::after {
    top: unset;
    bottom: -30px;
}

.res-wrap {
    background: #FFFFFF;
    border-radius: 40px 0px;
    padding: 35px;
    margin: 15px 0 15px;
}

.sec9 .res-wrap {
    background: #FFFFFF;
    border-radius: 40px 0px;
    padding: 60px 45px 53px !important;
    margin: 0px;
}

.res-wrap p {
    font-weight: 500;
    font-size: 16px;
    line-height: 170%;
    color: #2E3031;
}

.res-wrap p:last-child {
    margin-top: 5px;
}

.res-wrap h4 {
    font-weight: 600;
    font-size: 16px;
    line-height: 149%;
    text-transform: uppercase;
    color: #3A3D3E;
}

.res-wrap p:last-child {
    color: #3A3D3E;
}

.sec9 .col-xl-4.aos-init.aos-animate {
    padding-left: 22.5px;
    padding-right: 22.5px;
}

.sec10 {
    padding-top: 0px;
    background: linear-gradient(180deg, #D1E6FF 0%, #FFFFFF 37.79%);
    background: none;
}

.sec10.commn-layout .row > .col-xl-6:nth-child(2) {
    margin-top: 0;
    max-width: initial;
}

.sec10.commn-layout .row:last-child {
    display: grid;
    grid-template-columns: auto auto;
    gap: 22px;
}

.sec10.commn-layout .row:last-child * {
    padding: 0;
    margin: 0;
    margin-bottom: 22px;
}

.sec10 img {
    max-width: 100%;
}

.testimonials {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 45px;
}

.sec1 .img-box::before,
.sec1 .img-box::after,
.left-bottom {
    -webkit-animation: left-bottom 6s cubic-bezier(.39, .575, .565, 1) infinite;
    animation: left-bottom 6s cubic-bezier(.39, .575, .565, 1) infinite
}


.sec2 .col-xl-6 img {
    -webkit-animation: left-bottom 6s cubic-bezier(.39, .575, .565, 1) infinite;
    animation: left-bottom 6s cubic-bezier(.39, .575, .565, 1) infinite;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1, 1.1);
    }

    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes top-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes top-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}


@-webkit-keyframes left-bottom-translated {
    0% {
        transform: translateX(-50%);

    }

    50% {

        transform: translateX(calc(-50% - 10px))
    }

    100% {

        transform: translateX(-50%)
    }
}

@-webkit-keyframes left-bottom {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    50% {
        -webkit-transform: translateX(5px);
        transform: translateX(5px)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes left-bottom {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    50% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.top-bottom {
    -webkit-animation: top-bottom 6s cubic-bezier(.39, .575, .565, 1) 0.1s infinite;
    animation: top-bottom 6s cubic-bezier(.39, .575, .565, 1) 0.1s infinite
}

.sec3 .img-box {
    -webkit-animation: top-bottom 4s cubic-bezier(.39, .575, .565, 1) 0.1s infinite;
    animation: top-bottom 4s cubic-bezier(.39, .575, .565, 1) 0.1s infinite;
}


/* Pulse */
@-webkit-keyframes hvr-pulse {
    25% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    75% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes hvr-pulse {
    25% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    75% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

.hvr-pulse {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-pulse,
.hvr-pulse:focus,
.hvr-pulse:active {
    -webkit-animation-name: hvr-pulse;
    animation-name: hvr-pulse;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

/* ---------------------- Checkbox css ---------------------------------- */


input[type='checkbox'] {
    height: 0;
    width: 0;
    opacity: 0;
}

input[type='checkbox'] + label {
    position: relative;
    display: flex;
    margin: 0px 0;
    align-items: center;
    transition: color 250ms cubic-bezier(.4, .0, .23, 1);
    font-style: normal;
    font-weight: 600;
    font-size: 19px;
    cursor: pointer;
    line-height: 149%;
    text-transform: uppercase;
    color: #2E3031;
}

input[type='checkbox'] + label > ins {
    position: absolute;
    display: block;
    bottom: 0;
    left: 2em;
    height: 0;
    width: 100%;
    overflow: hidden;
    text-decoration: none;
    transition: height 300ms cubic-bezier(.4, .0, .23, 1);
}

input[type='checkbox'] + label > ins > i {
    position: absolute;
    bottom: 0;
    font-style: normal;
    color: #4FC3F7;
}

input[type='checkbox'] + label > span span {
    transform: rotate(0deg) scale(0);
    font-weight: 200;
    transition: all 0.3s cubic-bezier(.4, .0, .23, 1);
    color: #667f9e;
}

input[type='checkbox'] + label > span {
    box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    width: 50px;
    height: 50px;
    background: #fff;
    margin-bottom: -4px;
    /*
      border: 2px solid #9E9E9E;*/
    border-radius: 2px;
    cursor: pointer;
    transition: all 250ms cubic-bezier(.4, .0, .23, 1);
}

input[type='checkbox']:checked + label > span {

      animation: shrink-bounce 200ms cubic-bezier(.4,.0,.23,1);
}

input[type='checkbox']:checked + label > span span {
    transform: rotate(45deg) scale(3.345);
    font-weight: 300;
    color: #667f9e;
}

@keyframes shrink-bounce {
    0% {
        transform: scale(1);
    }
    33% {
        transform: scale(.85);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes checkbox-check {
    0% {
        width: 0;
        height: 0;
        border-color: #212121;
        transform: translate3d(0, 0, 0) rotate(45deg);
    }
    33% {
        width: .2em;
        height: 0;
        transform: translate3d(0, 0, 0) rotate(45deg);
    }
    100% {
        width: .2em;
        height: .5em;
        border-color: #212121;
        transform: translate3d(0, -.5em, 0) rotate(45deg);
    }
}

/*--------------------------------------------------------------
# button section
--------------------------------------------------------------*/
/* Bounce To Right */
.hvr-bounce-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.hvr-bounce-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-bounce-to-right:hover,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:active {
    color: white;
}

.parent-hover:hover .hvr-bounce-to-right:before,
.parent-hover:focus .hvr-bounce-to-right:before,
.parent-hover:active .hvr-bounce-to-right:before,
.hvr-bounce-to-right:hover:before,
.hvr-bounce-to-right:focus:before,
.hvr-bounce-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.parent-hover img {
    transform: scale(1);
    transition: all 0.5s ease-in-out;
}

.parent-hover:hover img {
    transform: scale(1.1);
}

@-webkit-keyframes slide-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }
}

@keyframes slide-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }
}

.slide-right {
    -webkit-animation: slide-right 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite both;
    animation: slide-right 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite both;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #2b2b2b;
    min-height: 40px;
    margin-top: 82px;
    color: #fff;
}


.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 500;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol a {
    color: #aaaaaa;
}

.breadcrumbs ol a:hover {
    color: #fff;
    transition: 0.3s;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #e03a3c;
    content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    padding: 73px 0 0px;
    background: #FFFFFF;
}

footer ul li {
    list-style: none;
    display: inline-block;
}

footer#footer > div {
    padding-top: 65px;
    box-shadow: 4px 0px 15px rgba(0, 0, 0, 0.1);
}

footer#footer .ftr-logo img {
    width: 210px;
    height: 57px;
}

footer#footer .container {
    max-width: 1300px;
    padding-bottom: 90px;
}

.ftr-txt p {
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    text-align: center;
}

.ftr-txt h3 {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 135%;
    color: #000000;
    margin: 23px 0 10px;
    letter-spacing: 0;
    font-family: 'Montserrat';
}

#footer *:not(i) {
    font-family: Montserrat;
}

.ftr-txt p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 135%;
    color: #2E3031;
    text-align: left;
}

#footer .mt-2 {
    max-width: 357px;
    margin-top: 14px !important;
}

#footer .col-xl-5.ftr-txt {
    padding-left: 0;
}

.ftr-rht {
    padding-left: 80px;
}

.ftr-rht li {
    width: 30%;
    float: left;
    text-align: left;
}

.ftr-rht li.address-block {
    width: 39%;
}

footer .cont-info {
    width: 100%;
}


ul.links-list {
    display: inline-block;
    border-bottom: 0.4px solid #2E3031;
    padding-bottom: 15px;
    padding-left: 0px;
    padding-right: 0;
    margin-bottom: 25px;
}

ul.cont-info > li:nth-child(2),
ul.links-list li:nth-child(3n-1) a {
    padding-left: 30px;
}

ul.cont-info > li:last-child,
ul.links-list li:nth-child(3n) a {
    padding-left: 40px;
}


#footer .botder-ftr * {
    max-width: 1120px;
    margin: auto;
    display: inline-block;
    letter-spacing: -0.2px;
}

#footer .botder-ftr img {
    max-width: 589px;
    margin-bottom: 20px !important;
}


#footer .botder-ftr {

    margin-top: 22px !important;
    padding-top: 30px !important;
}


ul.links-list li a {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    text-transform: uppercase;
    color: #000;
    display: block;
    text-align: left;
    padding: 10px 0 18px;
}


ul.cont-info li i {
    color: #06d;
    padding: 3px 10px 0 0;
}

ul.cont-info li {
    display: flex;
}

ul.cont-info {
    display: inline-block;
    padding-left: 0;
}

ul.cont-info li p, ul.cont-info li a {
    font-weight: 500;
    font-size: 14px;
    line-height: 170%;
    color: #2E3031;
    font-style: normal;
    margin: 0;
}

#footer .phone-icon,
#footer .location-icon,
#footer .clock-icon {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMyIgaGVpZ2h0PSIyMyIgZmlsbD0iIzA2ZCIgeG1sbnM6dj0iaHR0cHM6Ly92ZWN0YS5pby9uYW5vIj48cGF0aCBkPSJNMTEuNjU0IDIyLjg4M2ExMSAxMSAwIDEgMCAwLTIyIDExIDExIDAgMCAwLTExIDExYy4wMDMgMi45MTYgMS4xNjMgNS43MTIgMy4yMjUgNy43NzVhMTEuMDEgMTEuMDEgMCAwIDAgNy43NzUgMy4yMjVoMHptMC0yMC40NjVoMGMyLjUxIDAgNC45MTguOTk3IDYuNjkzIDIuNzcyczIuNzcyIDQuMTgzIDIuNzcyIDYuNjkzLS45OTcgNC45MTgtMi43NzIgNi42OTMtNC4xODMgMi43NzItNi42OTMgMi43NzItNC45MTgtLjk5Ny02LjY5My0yLjc3Mi0yLjc3Mi00LjE4My0yLjc3Mi02LjY5MyAxLjAwMS00LjkxNSAyLjc3NS02LjY5YTkuNDcgOS40NyAwIDAgMSA2LjY5LTIuNzc1aDB6bTMuNTUxIDE0LjFjLjE5Ni4xODMuNDczLjI1LjczMS4xNzdzLjQ1OS0uMjc0LjUzMS0uNTMxYS43Ny43NyAwIDAgMC0uMTc3LS43MzFsLTMuODY4LTMuODY5VjYuNzY2YzAtLjI3NC0uMTQ2LS41MjctLjM4NC0uNjY0YS43Ny43NyAwIDAgMC0uNzY4IDBjLS4yMzguMTM3LS4zODQuMzktLjM4NC42NjR2NS4xMTZjMCAuMjA0LjA4MS4zOTkuMjI1LjU0Mmw0LjA5MyA0LjA5M3oiLz48L3N2Zz4=);
    background-repeat: no-repeat;
    min-width: 22px !important;
    height: 22px;
    background-size: contain;
    margin-right: 11px;
}

#footer .location-icon {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIyMyIgZmlsbD0ibm9uZSIgeG1sbnM6dj0iaHR0cHM6Ly92ZWN0YS5pby9uYW5vIj48cGF0aCBkPSJNOC45NTQuMzgyYy00Ljg1MyAwLTguOCAzLjcwMS04LjggOC4yNSAwIDguNTI5IDguMDYzIDEzLjQzOCA4LjQwNiAxMy42NDIuMjQuMTQzLjU0OC4xNDMuNzg4IDAgLjM0My0uMjA0IDguNDA2LTUuMTEzIDguNDA2LTEzLjY0MiAwLTQuNTUtMy45NDgtOC4yNTEtOC44LTguMjUxaDB6bTAgMjAuNDc0Yy0xLjU3Ni0xLjA4MS03LjMzMy01LjQ5LTcuMzMzLTEyLjIyNCAwLTMuNzkxIDMuMjktNi44NzUgNy4zMzMtNi44NzVzNy4zMzMgMy4wODQgNy4zMzMgNi44NzVjMCA2LjczNC01Ljc1OSAxMS4xNDQtNy4zMzMgMTIuMjI0em0wLTE1LjY2MmMtMi4wMjIgMC0zLjY2NyAxLjU0Mi0zLjY2NyAzLjQzOHMxLjY0NSAzLjQzOCAzLjY2NyAzLjQzOCAzLjY2Ny0xLjU0MiAzLjY2Ny0zLjQzOC0xLjY0NS0zLjQzOC0zLjY2Ny0zLjQzOHptMCA1LjVjLTEuMjEzIDAtMi4yLS45MjYtMi4yLTIuMDYzcy45ODctMi4wNjMgMi4yLTIuMDYzIDIuMi45MjYgMi4yIDIuMDYzLS45ODcgMi4wNjMtMi4yIDIuMDYzeiIgZmlsbD0iIzA2ZCIvPjwvc3ZnPg==);
}

#footer .phone-icon {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMyIgaGVpZ2h0PSIyMyIgZmlsbD0ibm9uZSIgeG1sbnM6dj0iaHR0cHM6Ly92ZWN0YS5pby9uYW5vIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xLjk4MiAyLjE1NUMuNTggMy41NTkuMjUyIDUuNzEyIDEuMTcyIDcuNDcxIDIuNDc1IDkuOTI2IDQuNTggMTMuNTIyIDcuMDU1IDE2czYuMDcgNC41ODggOC41MzMgNS44NjdhNC41IDQuNSAwIDAgMCA1LjI3Ni0uODA3Yy40OTEtLjQ1NC45NzEtLjkzNCAxLjM0Ny0xLjMxLjI4NS0uMjg0LjQ0NC0uNjcuNDQ0LTEuMDczYTEuNTIgMS41MiAwIDAgMC0uNDQ0LTEuMDczbC0zLjYyMy0zLjYyN2MtLjI4NC0uMjg0LS42NjktLjQ0NC0xLjA3Mi0uNDQ0cy0uNzg4LjE2LTEuMDcyLjQ0NEwxNC40IDE2LjAyM2EuMS4xIDAgMCAxLS4wOTQuMDI3Yy0uNjk3LS4yOS0yLjMwNy0xLjA4My00LjAxLTIuNzg4YTE4LjMzIDE4LjMzIDAgMCAxLTMuMjUzLTQuNTMzYy0uMDE3LS4wMzktLjAwOC0uMDgyLjAyLS4xMTFMOS4wNzYgNi42Yy4yODQtLjI4NC40NDQtLjY3LjQ0NC0xLjA3M2ExLjUyIDEuNTIgMCAwIDAtLjQ0NC0xLjA3M0w1LjQ1My44MjdDNS4xNjkuNTQyIDQuNzgzLjM4MiA0LjM4MS4zODJzLS43ODguMTYtMS4wNzEuNDQ1TDEuOTgyIDIuMTU1em0uNzE0LjcxNmwxLjMyOC0xLjMyOWMuMDk1LS4wOTUuMjIzLS4xNDguMzU3LS4xNDhzLjI2My4wNTQuMzU3LjE0OGwzLjYyMyAzLjYyN2MuMDk0LjA5NS4xNDguMjI0LjE0OC4zNThzLS4wNTQuMjYzLS4xNDguMzU3TDYuMzQ3IDcuOTAzYTEuMTEgMS4xMSAwIDAgMC0uMjE5IDEuMjU3Yy40MzIuODYyIDEuNTgxIDIuOTQyIDMuNDUzIDQuODE2IDEuODU2IDEuODU5IDMuNjE1IDIuNzA4IDQuMzU0IDMuMDE1LjAwOC4wMDQuMDE3LjAwNy4wMjYuMDFhMS4xMSAxLjExIDAgMCAwIDEuMTU0LS4yNjRjMCAwIDIuMDQzLTIuMDQ2IDIuMDQzLTIuMDQ2LjA5NS0uMDk1LjIyNC0uMTQ4LjM1Ny0uMTQ4cy4yNjMuMDU0LjM1Ny4xNDhsMy42MjMgMy42MjdjLjA5NC4wOTUuMTQ4LjIyNC4xNDguMzU4cy0uMDU0LjI2My0uMTQ4LjM1OGwtMS4zMzIgMS4yOTZhMy41IDMuNSAwIDAgMS00LjEwOS42MzljLTIuMzkxLTEuMjQyLTUuODg0LTMuMjgxLTguMjg2LTUuNjg1UzMuMzMgOS4zODEgMi4wNjYgNy4wMDFhMy41MyAzLjUzIDAgMCAxIC42My00LjEzaDB6IiBmaWxsPSIjMDZkIiBzdHJva2U9IiMwNmQiIHN0cm9rZS13aWR0aD0iLjUiLz48L3N2Zz4=);
}

.botder-ftr {
    border-top: 0.2px solid rgb(46 48 49 / 48%);
}

.botder-ftr p {

    font-family: 'Montserrat' !important;
    font-style: normal;
    font-weight: 500;
    font-size: 9px;
    line-height: 135%;

    /* or 12px */
    text-align: center;
    text-transform: uppercase;
    color: #A4A4A4;
}

ul.cont-info a i {
    width: 27px;
    height: 27px;
    border: 1px solid #2E3031;
    border-radius: 50px;
    text-align: center;
    color: #2E3031;
    padding: 0;
    line-height: 27px;
    margin: 6px 5px 0 0;
}

.carousel-inner {
    overflow: visible;
}

.banner .carousel-item {
    height: 100%;
}

.banner .carousel-item .col-xl-5.bnr-lrft.position-relative.pb-5 {
    margin-left: 66px;
    padding-top: 84px;
    padding-right: 0;
    padding-left: 0;
}

.banner .carousel-item .col-xl-7.bnr-rht {
    max-width: 50%;
    padding-left: 40px;
    padding-top: 85px;
}

.banner .carousel-item .bnr-rht h3 {
    font-weight: 700;
    font-size: 50px;
    line-height: 130%;
    font-family: 'Montserrat';

    /* or 65px */
    text-transform: capitalize;

    /* TITLE COLOR */
    color: #2E3031;
}


.banner .carousel-item .bnr-rht p.prata-font {
    color: var(--othersblack, #000);
    font-family: Prata;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 156.5%;
    margin-top: 19px;
    max-width: 95%;
    padding-left: 15px;
    margin-bottom: 53px;
}

.large-btn.buy-btn,
.bnr-box .buy-btn {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
    padding: 24px 40px;
}

.large-btn.buy-btn {
    margin: 0;
}

.carousel {
    width: 100%;
}

@-webkit-keyframes slide-left {
    0% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }

    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@keyframes slide-left {
    0% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }

    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

.slide-left {
    -webkit-animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

::-webkit-scrollbar {
    background: #000000;
    height: 5px;
    width: 5px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px #000000;
}

::-webkit-scrollbar-thumb {
    background: #005a2b;
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00b456;
}


.scroll-top {
    background: #d52c44;
    border: 0;
    border-radius: 50%;
    bottom: 0;
    cursor: pointer;
    height: 50px;
    margin: 15px;
    position: fixed;
    right: -70px;
    transition: right 0.2s ease-in-out;
    width: 50px;
    z-index: 99;
}

.scroll-top.visible {
    right: 0;
}

.arrow {
    border: solid #fff;
    border-width: 0 3px 3px 0;
    display: inline-block;
    margin-top: 5px;
    padding: 4px;
}

.arrow.up {
    transform: rotate(-135deg);
}

.quote {
    width: 315px;
    border-radius: 15px;
    background-color: #c6a445;
    padding: 20px;
    display: flex;
    align-items: start;
    color: #fff;
    position: absolute;
    left: -48%;
    bottom: 45%;
}

.quote p {
    font-size: 22px;
    color: #ffffff;
    font-weight: 500;
    line-height: 30px;
    margin: 0;
}

.quote img {
    width: 55px;
}

p.text-left {
    text-align: left;
}

.people-info .quote {
    left: 0;
    bottom: 80px;
}

.people-info .quote p {
    text-align: left;
}

.people-info .quote p span {
    font-size: 30px;
    display: block;
    margin: 0 0 10px;
}

.people-info .quote img {
    position: absolute;
    right: 30px;
}

/* -------------- Product Page -------------- */
img.abt-img2 {
    margin: 0 70px 50px;
}

img.abt-img3 {
    max-width: 370px;
}

.abt1-sec .row.wrap1-box {
    margin: -220px 0 0;
}

.abt1-sec h2,
.abt1-sec ul li,
.abt1-sec h4,
.abt1-sec p {
    color: #000;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background: transparent;
}

.abt-box2 h3 {
    font-style: italic;
    font-weight: 700;
    font-size: 42px;
    line-height: 95.5%;
    text-transform: uppercase;
    color: #0C0B10;
    padding-left: 80px;
    margin: 0 0 40px;
}

img.bg-imgbtm {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: auto;
}

.abt1-sec .auth-dscr p,
.abt1-sec .auth-info p {
    color: #fff;
}

/* ------------------ Blog -------------------- */
.blog-wrap img.boximg {
    height: 400px;
}

.blog-wrap h6 {
    font-style: italic;
    font-weight: 700;
    font-size: 14px;
    line-height: 87.5%;
    text-transform: uppercase;
    color: #ACACAC;
    margin: 30px 0;
}

.blog-wrap h3 {
    font-style: italic;
    font-weight: 700;
    font-size: 30px;
    line-height: 87.5%;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 0;
    margin: 0 0 30px;
}

.blog-wrap p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #ACACAC;
}

.rht-blog {
    margin: 170px 0 0;
}

.content-box1 {
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
}

.content-box1 video, .content-box2 video {
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    width: 400px;
}

.content-box2 {
    clip-path: polygon(30% 0, 100% 0, 100% 99%, 0% 100%);
}

.accordion-button::after {
    background-image: var(--bs-accordion-btn-active-icon);
}

.desk-view {
    display: block;
    padding: 0px;
    justify-content: center;
    width: calc(32.333333% - 24px);
}

.sec4 .row.align-items-stretch {
  justify-content: space-between;

}

.resp-view {
    display: none;
}

.swiper-button-prev, .swiper-button-next {
    background: transparent;
    width: 50px;
}

.swiper-button-prev i, .swiper-button-next i {
    font-size: 50px;
    color: #fff;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: calc(50% - 40px);
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: calc(50% - 60px);
}

/*=======PDP========*/
label.s-active.click_subs {
    display: none;
}

label.s-active.click_subs ~ label {
    display: none
}

/*.purchase-details__buttons{ text-align:center;
    background: #0d47b6;
    color: #fff;
    border-radius: 30px;
    width: 70%;
    margin: 0px auto;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    border: 5px solid #ffffff;} */
.purchase-details__buttons {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 15px;
}

.flickity-prev-next-button {
    display: none;
}

span.addcrt {
    background-image: url('pdp-img2.png');
    background-repeat: no-repeat;
    background-position: center;
    height: 50px;
    padding: 32px 59px;
    width: 100%;
    color: #ccc0;
}

.pdp-section-1 .add-to-cart-box .top-part {
    padding-bottom: 30px;
}

.purchase-details__buttons button {
    padding: 15px 0px !important;
}

span.current_price.hidden {
    display: block;
}

.product_container img {
    max-width: 100%;
}

.custom_third span.money {
    font-weight: 700;
    color: #001e26;
    font-size: 18px;
}

.custom_third span.title {
    font-size: 14px;
    color: #001e26 !important;
    display: block;
}

.pro-details label.s-active.click_subs, .pro-details label.s-active.click_subs ~ label {
    display: block;
}

.pro-details .radioSelectContainer.options_0:before {
    display: none;
}

.prod-sec .radioSelectContainer label {
    display: flex !important;
    float: left;
    width: 50%;
    flex-direction: column;
    z-index: 1;
    position: relative;
    margin: 0;
    border: 0;
    align-items: center;
}

.prod-sec .radioSelectContainer select {
    width: 100%;
    display: block;
    padding: 5px;
    border-radius: 5px;
    border-color: #999;
    margin: 0 0 10px;
}

.prod-sec .radioSelectContainer .s-active {
    border: 0px;
}

.prod-sec .radioSelectContainer label img {
    max-width: 28px;
    margin: 25px auto 8px;
}

.prod-sec .radioSelectContainer input[type="radio"] {
    position: absolute;
    top: 5px;
    width: 20px !important;
    height: 25px;
}

.prod-sec .radioSelectContainer span.v_title {
    font-size: 14px;
    text-align: center;
}

.prod-sec .radioSelectContainer span.v_title span {
    clear: both;
    display: block;
    text-align: center;
}

.prod-sec .radioSelectContainer select#product-select-7062284894319productnew {
    display: none;
}

.prod-sec .radioSelectContainer .s-active::before, .prod-sec .radioSelectContainer .s-active::after {
    content: '';
    width: 15px;
    height: 15px;
    background: #0c49b9;
    border-radius: 50%;
    position: absolute;
    top: 9px;
}

.prod-sec .radioSelectContainer .s-active::after {
    background: transparent;
    width: 22px;
    height: 22px;
    border: 2px solid #0c49b9;
    top: 6px;
}

.prod-sec .options_0 .s-active span {
    color: #2a56a8;
}

.prod-sec span.current_price span.money {
    font-size: 36px;
    font-weight: 600;
}

.prod-sec .one-third {
    width: calc(33% - 10px);
    float: left;
    display: inline;
    margin-right: 10px;
    position: relative;
    margin-bottom: 1em;
    height: 360px;
    text-align: center;
}

.prod-sec .columns {
    float: left;
    width: 100%;
}

.prod-sec .image__container {
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    height: 280px;
}

.prod-sec .image__container img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
}

#footer {
    clear: both;
}

.prod-sec .info .title {
    color: #001e26 !important;
    padding: 0 15px !important;
    font-size: 14px;
}

.prod-sec .sale_banner {
    position: absolute;
    top: 25px;
    left: -5px;
    background: #ffb400;
    font-family: Open Sans, sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 5px;
    text-align: center;
    color: #fff;
}

.prod-sec .sale_banner {
    display: block;
    font-size: 16px;
    color: #fff !important;
    background-color: #0096ff !important;
}

.prod-sec .thumbnail .price {
    font-weight: 700;
    color: #363636;
    display: block;
}

.prod-sec .swap-true img.secondary, .prod-sec .swap-true img.secondary.lazyloaded {
    display: none;
    width: auto;
    margin: 0 auto;
}

/*
.prod-sec .image__container:hover img.secondary.lazyloaded  {
    display: block;
    opacity: 1;
}
.prod-sec .image__container:hover img.lazyloaded:first-of-type {
    display: none;
}*/
.customize .description {
    margin: 30px 0 0;
    display: inline;
    clear: both;
}

.description h3 img {
    margin: 0 0 30px;
}

#shopify-section-hair-loss img.bg-img1 {
    display: none;
}

.video-section .col-lg-6.col-md-6 {
    position: relative;
}

.pro-details {
    padding: 100px 0 50px;
}

/*
.prod-sec .image__container:hover img.secondary.lazyload {
    display: block;
}*/
.container .eight.columns {
    font-weight: 700;
}

.prod-sec {
    padding: 100px 0 60px;
}

.prod-sec .sixteen.columns h1 {
    letter-spacing: 1px;
}

.list-grp .image__container {
    height: 280px;
}

.list-grp {
    padding: 100px 0 20px;
}

.list-grp .info span {
    margin: 5px 0 40px;
    font-size: 18px;
    color: #000;
}

section.reasons-hair-loss-banner {
    padding: 120px 0 0;
}

section.reasons-hair-loss-sec5 .col-md-7 {
    padding-left: 50px;
    padding-right: 150px;
}

.reasons-hair-loss-sec2 .content-box {
    margin: 25px 0 0;
}

.content-box a.buy-btn, .reasons-hair-loss-sec5 a.buy-btn {
    margin: 30px 0 0;
}

ul.ns-pro-ul-list {
    padding: 0;
    margin: 0;
}

.ns-pro-ul-list li {
    list-style: none !important;
    float: left;
    width: 33.33%;
    min-height: 130px;
}

.ns-pro-ul-list div {
    font-size: 18px;
    line-height: 1.8em;
    color: #9aa7ab;
}

.pro-icon-img {
    float: left;
    width: 30%;
}

.pro-icon-text {
    text-align: left;
    float: left;
    width: 70%;
}

.ns-pro-ul-list strong {
    color: #1b273f !important;
}

.ns-pro-ul-list p {
    font-size: 18px;
    line-height: 1.8em;
    color: #9aa7ab;
}

.ns-pro-ul-list img {
    box-shadow: 0 10px 20px 0 rgb(0 0 0 / 10%);
    border-radius: 50%;
}

.customize .description h2:nth-child(1) {
    clear: both;
}

.log-main {
    padding: 120px 0 0;
}

.log-main .collection_nav h1 {
    font-weight: 900;
}

#create-customer,
#recover-password,
.log-main #login_form {
    margin: 0px auto;
    display: block;
    background-color: white;
    padding: 50px;
    border-radius: 5px;
    box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);;
}

.shopify-challenge__container {
    margin-top: 150px !important;
}

#recover-password input,
#login_form input {
    display: block;
    width: 100%;
}

.log-main #customer {
    display: flex;
    justify-content: center;
    min-width: 100%;
}

.log-main #customer br.clear {
    display: none;
}

.mobile-nav-active button.mobile-nav-toggle.d-lg-none {
    top: 7px;
    padding: 6px 15px;
}

.mobile-nav-active .mobile-nav-toggle i {
    margin: 0;
}

.mobile-nav-active ul {
    display: block;
}



#circle.active {
    transform: scale(1);

    transition: transform 1s cubic-bezier(.44, 1.01, .35, 1.88);
}

.sec5 .flickity-container {
    padding: 0;
}

.case-studies-carousel *,
.case-studies-carousel {
    cursor: none !important;
}

.reasons-hair-loss-sec3 {
    padding: 0;
    position: relative;
}

.reasons-hair-loss-sec3 .container {
    z-index: 1;
}


.reasons-hair-loss-sec3 .content-box h2 {
    font-weight: 300;
    font-size: 32px;
    line-height: 45px;
    text-transform: capitalize;
    color: #181818;
    margin-bottom: 54px;
    position: relative;
}

.reasons-hair-loss-sec3 .content-box h2::after {
    content: "";
    height: 1px;
    width: 60px;
    background-color: #2E3031;
    position: absolute;
    left: 0;
    bottom: -30px;
}

.reasons-hair-loss-sec3 .content-box p {
    font-weight: 600;
    font-size: 16px;
    line-height: 31px;
    color: #000000;
    margin-bottom: 48px;
    font-family: 'Montserrat';
    padding-right: 105px;
    letter-spacing: -0.3px;

}

.wistia-shell {
    position: relative;
    cursor: pointer;
}

.wistia-shell img {
    max-width: 100%;
}

.wistia-vid {
    position: absolute;
    width: 100%;
    height: 100%;
}


.comb-box {
    background-image: linear-gradient(180deg, transparent 63px, white 63px, white);

}

.comb-box .col-md-7 {
    padding-top: 164px;
}

.comb-box h2:after {
    width: 56px;
}

.comb-box img {
    max-width: 505px;
}



/* ---- Responsive -------  */
@media screen and (min-width: 1440px) {
    #footer > div > div > div > div.col-xl-7.ftr-rht > ul.links-list.d-none.d-md-inline-block > li:nth-child(6) > a {
        margin-right: -10px;
    }

    .ftr-txt p {
        font-weight: 600;
    }

    .nav-menu > ul > li:first-child {
        padding-left: 0;
    }

    .nav-menu > ul > li:last-child {
        padding-right: 0;
    }
}

@media screen and (max-width: 1000px) {
    [data-aos-delay] {
        transition-delay: 0s !important;
    }
}

@media (max-width: 1099px) {

    .reasons-hair-loss-sec3 .container {
        padding: 50px 0;
    }

    .reasons-hair-loss-sec3 .content-box h2 {
        font-size: 26px;
        line-height: 32px;
    }

}

.katty-interview .wistia_responsive_padding {
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    overflow: hidden;
}

@media (max-width: 1366px) and (min-width: 768px) {
    .nav-menu .menu-item-has-children .menu-item-has-children ul {
        left: -90%;
    }


    .nav-menu .menu-item-has-children .menu-item-has-children:hover > ul {
        left: -82%;
    }

    .sec3 .col-xl-1.aos-init.aos-animate {
        max-width: 7.5% !important;
    }

    footer#footer .container,
    .sec6 .container {
        max-width: 90%;
    }
}

@media (max-width: 1200px)and (min-width: 768px) {

    #footer > div {
        padding-left: 20px;
    }

    .sec3 .col-xl-1.aos-init.aos-animate {
        max-width: 2% !important;
    }


    .commn-layout .container,
    .container {
        max-width: calc(100% - 60px);
    }

    .commn-layout .row > .col-xl-6:nth-child(2) {
        max-width: 50%;
    }

    #header .container {
        padding: 0;
    }

    .banner .carousel-item .col-xl-5.bnr-lrft.position-relative.pb-5 {
        max-width: 50%;
        margin-left: 0;
    }

    .banner .carousel-item .bnr-rht h3 {
    }

    .sec2 .row.align-items-stretch,
    .sec2 .container > .row > .col-xl-12:nth-child(2) {
        padding-right: 12px;
        padding-left: 12px;
    }

    .sec2 .row.stretched .col-xl-12 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .commn-layout #hair-loss-image {
        max-width: 50%;
        padding-left: 0;
        display: flex;
        align-items: flex-end;
        justify-content: right;
        padding-top: 50px;
    }

    .sec3.commn-layout .row > div {
        max-width: 50%;
    }

    .sec3 .col-xl-1.aos-init.aos-animate {
    }

    .sec3 img {
        width: 150px;
        top: -80px;
    }

    .accp-box {
        right: -42px;
        margin-top: -91px;
    }


    .commn-layout .container,
    .container {
        max-width: calc(100% - 60px);
    }

    #hair-loss-image,
    .commn-layout .row > .col-xl-6:nth-child(2),
    .banner .carousel-item .col-xl-5.bnr-lrft.position-relative.pb-5 {
        max-width: 50%;
        margin-left: 0;
    }

    .sec3 .col-xl-1 {
        max-width: 0%;
    }

    #footer .col-xl-7 {
        max-width: 58%;
    }

    #footer .col-xl-5 {
        max-width: 41%;
    }

    .sec3 .col-xl-5 {
        max-width: 46%;
    }

    #hair-loss-image svg {
        max-width: 41.66vw;
    }

    input[type=checkbox] + label {
        font-size: 1.319444vw;
    }

    .banner .carousel-item .bnr-rht h3 {
        font-size: 3.27vw;
    }

    .sec2 .row.stretched {
        margin-left: 0;
        margin-right: 0;
    }

    .sec2 .row.stretched .col-xl-12 {
        padding-left: 0;
    }

    .sec7 .col-xl-4.aos-init {
        max-width: 33%;
    }

}

@media (max-width: 1199px)and (min-width: 768px) {

    .accp-box {
        right: 25px;
        margin-top: -55px;
    }

    .sec3 .col-xl-1.aos-init.aos-animate {
        display: none;
    }

    .sec2 .row.align-items-stretch, .sec2 .container > .row > .col-xl-12:nth-child(2) {
        margin-left: 0;
        margin-right: 0;
    }

}

@media (max-width: 1100px)and (min-width: 768px) {
    .sec3 .col-xl-1.aos-init.aos-animate {
        display: none;
    }

    .sec7 .products-holder {
        padding-right: 20px
    }

    .reason-wrap h4 img {
        width: 63px;
    }

    .reason-wrap h4 {
        font-size: 19px;
    }

    .sec2 .reason-wrap p {
        font-size: 13px;
    }

}

@media (max-width: 1078px)and (min-width: 768px) {
    ul.cont-info > li:last-child, ul.links-list li:nth-child(3n) a,
    ul.cont-info > li:nth-child(2), ul.links-list li:nth-child(3n-1) a {
        padding-left: 0;
    }

    footer ul.cont-info,
    footer ul.links-list {
        display: grid !important;
        grid-template-columns: auto auto;
        align-items: center;
        align-content: center;
        column-gap: 10.01vw;
    }

    footer ul.cont-info {
        column-gap: 7.01vw;
        row-gap: 2.01vw;
    }


    .ftr-rht li {
        padding-left: 0px;
        width: 100%;
    }

    .ftr-rht li:nth-child(even) {
        padding-left: 10px;

    }
}

@media (max-width: 999px) and (min-width: 768px) {
    #carouselExampleIndicators {
        padding-top: 36px;
    }

    .bnr-lrft img.ab-img {
        bottom: 30px;
        left: 84px;
        left: 14%;
    }

    .bnr-box {
        transform: scale(.9);
    }

    .breadcrumbs {
        margin-top: 57px;
    }


    .client-logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    footer ul.cont-info,
    footer ul.links-list {
        column-gap: 4vw;
    }


    .bnr-lrft img.full-img {
        max-width: 450px;
        margin: 0px auto;
        display: block;
    }

    .bnr-lrft img.ab-img {
        left: 14%;
    }

    .bnr-lrft p {
        position: relative;
        left: unset;
        text-align: center;
        bottom: -150px;
        left: 10%;
    }

    .sec2 .reason-wrap h4 img {
        width: 24%;
    }

    .sec2 .reason-wrap h4 {
        font-size: 1.8vw;
        margin-bottom: 10px;
    }

    .sec2 .row .aos-init.aos-animate:nth-child(1) img.reason-wrapimg,
    .sec2 .row .aos-init.aos-animate:nth-child(2) img.reason-wrapimg,
    .sec2 .row .aos-init.aos-animate:nth-child(3) img.reason-wrapimg {
        max-width: 16vw;
    }


    .sec2 .row .aos-init.aos-animate:nth-child(3) img.reason-wrapimg {
        max-width: 20vw;
        left: 57%;
        bottom: -5.4vw;
    }

    .sec2 .row.align-items-stretch {
        max-width: initial;
    }

    .sec2 .row .aos-init.aos-animate:nth-child(2) img.reason-wrapimg {
        left: 56%;
        bottom: -5.6vw;
        max-width: 17vw;
    }

    .sec2 .row .aos-init.aos-animate:nth-child(1) img.reason-wrapimg {
        bottom: -8vw;
    }


    .sec2 .box-wrap {
        border-bottom-width: 9vw;
        border-radius: 0 0 0 8.8vw
    }

    .sec2 .reason-wrap p {
        font-size: 1.2vw;
    }

    .sec2 .container > .row:first-child,
    .sec2 .row.align-items-stretch, .sec2 .container > .row > .col-xl-12:nth-child(2) {
        padding-right: 12px;
        padding-left: 12px;
    }

    .sec3 .left-content h3 {
        font-size: 2.8vw;
    }

    .sec3 .left-content p {
        font-size: 1.3vw;
        margin-top: 2vw;
    }

    .sec3 img {
        width: 13vw;
    }

    .sec3 .accp-box {
        transform: scale(0.75);
        left: 20%;
        margin-top: -9vw;
    }

    .bnr-rht {
    }

    .bnr-box {
        margin: 0px auto;
    }

    .sec1 img {
        margin: 0px auto;
        display: block;
    }

    .desk-view {
        display: block;
    }

    .resp-view {
        display: none;
    }

    .sec2 .reason-wrap p {
        height: auto;
    }


    .accp-box {
        position: relative;
        left: 10%;
    }

    .top-img img {
        margin: 0px auto;
        display: block;
    }

    .cat-box {
        margin: 30px 0 0;
    }

    .cat-title.desk-view {
        margin: 4% 0 0;
    }

    .sec8 .col-xl-5.img-wrap img {
        max-width: 400px;
        margin: 10px auto;
        display: block;
    }

    .rht-nav {
        padding-right: 30px;
    }

    .mobile-nav-toggle i {
        color: #000;
    }

    .mobile-nav-toggle {
        top: 10px;
    }

    .sec1 img.resp-view {
        display: none;
    }

    #shopify-section-nutraceutical > section > div > div > div:nth-child(3) {
        padding-top: 10vw;
    }

    .sec3.commn-layout {
        padding: 10vw 0 6vw;
    }

    .sec9 .res-wrap {
        padding: 4vw 3vw !important;
    }

    .sec9 .res-wrap p {
        font-size: 1.3vw;
    }

    .cat-box {
        margin-top: 7.2vw;
    }

    h2.heading,
    .pc h2,
    .commn-layout h2 {
        transform: scale(.7);
    }

    .sec4 h2:after {
        top: 180px;
    }

    #header {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .sec1.commn-layout .row > .col-xl-6:nth-child(2) {
        margin-top: 0;
    }

    .sec2.commn-layout h2 {
        position: relative;
        left: -15%;
    }

}


@media (max-width: 899px) and (min-width: 767px) {
    .banner .carousel-item .bnr-rht h3 {
        font-size: 3.2vw;
    }

    .bnr-lrft img.ab-img {
        width: 17vw;
        bottom: 23vw;
        left: 20%;
    }

    .commn-layout #hair-loss-image {
        padding-top: 0;
        align-items: center;
    }

    input[type=checkbox] + label {
        font-size: 1.7444vw;
    }

    .sec3 .accp-box {
        margin-top: -12vw;
    }

    .sec1 h3 {
        font-weight: 400;
        font-size: 28px;
    }
}

@media (max-width: 767px) {

    .youtube-container .video {
        padding-bottom: 179% !important;
    }

    .cart-icon-img {
        width: 7vw;
        display: block;
        height: 7vw;
        margin-left: 3vw;
        margin-right: 4vw;
        opacity: .6;
        position: relative;
        top: 0.2vw;
    }

    .two .video {
        padding-bottom: 56.5% !important;
    }

    .youtube-container .full-width .video {
        padding-bottom: 56.4% !important;
    }

    .bnr-lrft {
        width: 100% !important;
    }

    .top-text {
        padding-left: 4px;
    }

    #circle {
        display: none;
    }

    .desk-view {
        display: none;
    }

    .resp-view {
        display: block;
    }

    section {
        padding: 30px 0;
    }

    .bnr-rht p {
        font-size: 12px;
        line-height: 150%;
        text-transform: uppercase;
    }

    .bnr-rht h3 {
        font-weight: 700;
        font-size: 25px;
        line-height: 120%;
        margin-bottom: 3vw !important;
    }

    #hero {
        padding: 80px 0 0;
        padding-top: 4.3335vw !important;
    }

    .bnr-rht p.prata-font {
        font-size: 17px;
        line-height: 170%;
        text-transform: unset;
    }

    .bnr-lrft p {
        font-size: 3.2vw;
        margin-bottom: 0.266667vw;
        font-weight: 500;
        line-height: 150%;
        text-align: left;

        position: relative;
        right: 0;
        bottom: unset;
        left: unset;
    }

    .bnr-lrft.pb-5 {
        padding-bottom: 0px !important;
    }

    .bnr-rht .bnr-box p {
        font-size: 13px;
        line-height: 150%;
        text-transform: unset;
        margin-bottom: 26px;
    }

    .bnr-box {
        padding: 18px 14px 29px 20px;
        padding: 4.8vw 3.75vw 7.8vw 5.35vw;
    }

    .bnr-box p strong,
    .banner .carousel-item .bnr-rht .bnr-box p {
        font-size: 3.46vw;
        margin-bottom: 4.3vw;
        font-weight: 500;
        line-height: 150%;
        text-transform: none;
    }

    .bnr-box p strong {
        font-weight: 700;
        text-transform: capitalize;
        margin-bottom: 0;
    }


    .bnr-lrft p strong {
        font-weight: 700;
    }

    a.shop-btn,
    a.buy-btn,
    .sec6 .buy-btn,
    .sec5 .buy-btn,
    .sec8 .buy-btn,
    .sec2 .stretched .buy-btn,
    .large-btn.buy-btn,
    .bnr-box .buy-btn {
        font-size: 4.26vw;
        line-height: 5.3vw;
        padding: 3.5vw 10.67vw;
        text-align: center;
        text-transform: capitalize;
        color: #fff;
        font-weight: 600;
        margin: 0px auto;
        display: table;
    }

    .sec2 .stretched .buy-btn {
        margin-top: 30px;
        margin-top: 8vw;
    }

    a.shop-btn {
        font-weight: 700;
        text-align: center;
        text-decoration-line: underline;
        text-transform: capitalize;
        color: #0D47B6;
        margin: 20px auto 0;
        margin: 5.43vw auto 0;
        display: block;
        padding: 0;
    }

    .client-logos {
        flex-wrap: wrap;
        margin-top: 8vw !important;
    }

    .client-logos img {
        width: 100%;
    }

    h2.heading,
    .pc h2,
    .commn-layout h2 {
        font-weight: 300;
        font-size: 24px;
        line-height: 120%;
        padding-bottom: 6px !important;
        margin-bottom: 30px;

        font-size: 6.4vw;
        padding-bottom: 1.6vw !important;
        margin-bottom: 10.5vw;
    }

    .pc h2 {
        margin-bottom: 10.5vw !important;

    }


    .sec1 h3 {
        font-weight: 400;
        font-size: 18px;
        line-height: 150%;
        font-size: 4.8vw;
    }

    .sec1 h3 br {
        display: none;
    }


    .sec1 p {
        margin-top: 10px;
        margin-top: 2.7vw;
    }

    .col-xl-6 {
        width: auto !important;
        max-width: 100% !important;
    }

    .pc h2:after,
    h2.heading:after,
    .commn-layout h2:after {
        top: 71px;
        width: 40px;

        border-bottom-width: 0.3vw;
        top: 19vw;
        width: 10.68vw;
    }

    .pc h2:after {
        top: 14vw;
    }

    .sec1 .row > .col-xl-12.mb-5.pb-5.aos-init.aos-animate:first-child {
        padding: 0px;
        padding-bottom: 0px !important;
    }

    .col-xl-12.mb-5.pb-5 {
        margin-block: 0px !important;
    }

    .commn-layout p {
        font-size: 13px;
        line-height: 160%;
        text-align: left;
        font-size: 3.468vw;
    }

    input[type='checkbox'] + label {
        font-size: 13px;
        line-height: 149%;
        margin-bottom: 15px;
        min-height: 40px;

        font-size: 3.47vw;
        margin-bottom: 4vw;
        min-height: 10.7vw;
    }

    input[type=checkbox] + label > span {
        width: 10.7vw;
        height: 10.7vw;
        margin-right: 3.8vw;
        border-radius: 0.5333vw;
    }

    .col-xl-6.d-md-none.svg-one {
        padding: 0;
    }

    .commn-layout label[for=three] {
        margin-right: 0;
    }

    .sec2 h2 {
        line-height: 105%;
    }

    h3.sub-heading,
    .sec2 h2 span {

        font-weight: 600;
        font-size: 13px;
        line-height: 135%;
        margin-top: 10px;
        font-size: 3.46vw;
        margin-top: 2.68vw;
    }

    .sec2.commn-layout h2:after {
        top: 90px;
        margin: 0px;
        left: 12px;
        width: 60px;
        top: 24vw;
        left: 3.2vw;
        width: 16vw;
    }

    .sec2 .row > .col-xl-12.aos-init.mb-5 {
        margin-bottom: 1.2vw !important;
        padding-bottom: 0 !important;
    }


    .commn-layout p {
        margin-bottom: 0.8vw;
        padding-bottom: 0.8vw;
    }

    .p-divider {
        margin-bottom: 1.67vw !important;
    }

    .colored-txt-bg,
    .sec2.commn-layout p {
        font-weight: 400;
        font-size: 15px;
        line-height: 29px;
        padding: 2.5px 3px 3px 5px;
        font-size: 4vw;
        line-height: 7.74vw;
        padding: 0.67vw 0.8vw 0.8vw 1.334vw;
    }


    .sec2.commn-layout p:last-child {
        font-size: 15.2px;

        font-size: 4.0055vw;
    }


    .reason-wrap h4:after {
        content: '';
        background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjEyIiBmaWxsPSJub25lIiB4bWxuczp2PSJodHRwczovL3ZlY3RhLmlvL25hbm8iPjxwYXRoIGQ9Ik02LjkwMiA2LjIyOWEuNzUuNzUgMCAwIDAgMC0xLjA2MUwyLjEyOS4zOTVhLjc1Ljc1IDAgMCAwLTEuMDYxIDEuMDYxbDQuMjQzIDQuMjQzLTQuMjQzIDQuMjQzYS43NS43NSAwIDAgMCAxLjA2MSAxLjA2MWw0Ljc3My00Ljc3M3ptLTEuNjAxLjIyaDEuMDcxdi0xLjVINS4zMDF2MS41eiIgZmlsbD0iIzk5YjhkYiIvPjwvc3ZnPg==);
        width: 8px;
        height: 12px;
        background-size: contain;
        background-repeat: no-repeat;
        right: 15px;
        position: absolute;
        width: 2.135vw;
        right: 4vw;
        height: 3.2vw;
    }

    .reason-wrap h4 {
        flex-direction: row-reverse;
        justify-content: flex-end;
        font-size: 15px;
        margin-bottom: 47px;
        font-size: 4vw;
        margin-bottom: 12.5vw;
    }

    .sec2 .reason-wrap p, .linear-line {
        display: none;
    }

    img.reason-wrapimg {
        max-width: 86px;
    }

    .reason-wrap {
        padding: 15px 15px 0;
        padding: 4vw 4vw 0;
    }

    .reason-wrap h4 img {
        max-width: 40px;
        margin-right: 12px;
        max-width: 10.67vw;
        margin-right: 3.2vw;
    }

    .sec2 .box-wrap {
        border-bottom-width: 54px;
        border-radius: 0 0 0 50px;
        padding-bottom: 0;
        border-bottom-width: 14.4vw;
        border-radius: 0 0 0 13.5vw;
    }

    .sec2 .row .aos-init.aos-animate:nth-child(1) img.reason-wrapimg {
        max-width: 86px;
        bottom: -19px;
        max-width: 22.668vw;
        bottom: -5vw;
    }

    .sec2 .row .aos-init.aos-animate:nth-child(2) img.reason-wrapimg {
        bottom: -19px;
        max-height: 145px;
        max-height: 38.7vw;
        bottom: -5vw;
    }

    .sec2 .row .aos-init.aos-animate:nth-child(3) img.reason-wrapimg {
        bottom: -19px;
        max-height: 145px;
        max-height: 38.7vw;
        bottom: -5vw;
    }

    .sec2.commn-layout .row.stretched:last-child > .col-xl-12:nth-child(2) {
        padding-right: 0;
    }


    .btm-dsn {
        height: 54px;
        top: 40px;
    }

    .reason-wrap::after {
        top: 40px;
        z-index: -1;
    }

    .sec2 .btm-txt p {
        font-weight: 400;
        font-size: 13px;
        text-align: center;
    }

    .sec3 .row {
        flex-direction: column-reverse;
    }

    .sec3 .col-xl-5 img {
        width: 80px;
    }

    .accp-box {
        position: relative;
        max-width: calc(100% - 70px);
        margin: 10px 0 30px 70px;
    }

    .sec3 .left-content h3 {
        padding: 2px 5px 2px;
    }

    .sec3 .left-content h3 {
        font-size: 17.5px;
        font-size: 4.68vw;
        padding: 0.534vw 1.335vw;
    }

    .sec3 .left-content p {
        font-weight: 400;
        font-size: 13px;
        line-height: 170%;
        margin-top: 15px;
        padding-right: 10px;
        font-size: 3.47vw;
        margin-top: 4vw;
        padding-right: 2.7vw;
    }

    .sec3 .left-content {
        padding-right: initial;
    }

    .sec4 h2 {
        margin-bottom: 21px;
        margin-bottom: 5.6vw;
    }

    .sec4 h2 span {
        font-size: 13px;
        line-height: 135%;
        font-size: 3.468vw;
        font-weight: 600;
        padding: 2.5vw 0 0;
        transform: none;
    }


    .sec4 h2:after {
        top: 100px;
        width: 16vw;
        top: 23.7vw;
    }

    .sec4 .row .aos-animate:first-child {
        padding-bottom: 0 !important;
        margin-bottom: 16px !important;
        margin-bottom: 4.3vw !important;
    }


    .top-img img {
        max-width: 100%;
        margin: 0;
    }

    .sec4 .top-img img {
        max-width: 279px;
        margin: auto;
        max-width: 74.4vw;
    }

    .sec4 .col-xl-10.top-img.mx-auto.d-md-none.mb-5 {
        margin-bottom: 48px !important;
        margin-bottom: 12.9vw !important;
    }

    .sec9 h2::after {
        width: 6.4vw;
        bottom: 2.4vw;
    }

    .sec5 h2::after {
        width: 60px;
        top: 40px;
        width: 16vw;
        top: 10.6666vw;
    }

    .sec5.commn-layout .row .col-xl-12.mt-5.pt-4.aos-init.aos-animate:nth-child(2) {
        margin-top: 0 !important;
        padding-top: 0 !important;
        padding: 0;
    }

    .swiper-container {
        padding-left: 37px;
        padding-right: 37px;
        padding-left: 9.86666vw;
        padding-right: 9.8666vw;
    }

    .sec5 .col-xl-12.text-center:last-child {
        margin-top: 1.333vw;
    }


    .swiper-container .swiper-slide {
        padding-left: 2.67vw;
        padding-right: 2.67vw;
    }

    .sec5.commn-layout .row .aos-init:first-child {
        padding-bottom: 7.5px !important;
    }

    .swiper-container:hover .swiper-button-prev,
    .swiper-button-prev {
        left: 50% !important;
        transform: translateX(-80%);
    }

    .swiper-container:hover .swiper-button-next,
    .swiper-button-next {
        right: 50% !important;
        transform: translateX(80%);
    }

    .sec5 .buy-btn {
        padding: 3.6vw 7.8vw;
    }


    .swiper-button-prev i:before, .swiper-button-next i:before {
        content: '';
        background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MSIgaGVpZ2h0PSIxNiIgZmlsbD0ibm9uZSIgeG1sbnM6dj0iaHR0cHM6Ly92ZWN0YS5pby9uYW5vIj48cGF0aCBkPSJNLjQzNCA3LjQ3NWExIDEgMCAwIDAgMCAxLjQxNGw2LjM2NCA2LjM2NGExIDEgMCAwIDAgMS40MTQtMS40MTRMMi41NTYgOC4xODJsNS42NTctNS42NTdhMSAxIDAgMSAwLTEuNDE0LTEuNDE0TC40MzQgNy40NzV6bTU5LjQwNyAxLjQxNGExIDEgMCAwIDAgMC0xLjQxNGwtNi4zNjQtNi4zNjRhMSAxIDAgMSAwLTEuNDE0IDEuNDE0bDUuNjU3IDUuNjU3LTUuNjU3IDUuNjU3YTEgMSAwIDEgMCAxLjQxNCAxLjQxNGw2LjM2NC02LjM2NHptLTU4LjY5OS4yOTNoNTcuOTkydi0ySDEuMTQydjJ6IiBmaWxsPSIjZmZmIi8+PC9zdmc+);
        width: 30px;
        height: 15px;
        width: 8vw;
        height: 4vw;
        display: block;
        background-size: cover;
    }

    .swiper-button-next i {
        margin-top: 1px;
    }

    .swiper-button-next i:before {
        transform: rotate(180deg);
    }


    .swiper-button-prev, .swiper-button-next {
        background-color: transparent !important;
        box-shadow: none;
    }


    .sec6 img {
        max-width: 130px;
        max-width: 34.666vw;
        width: 34.666vw;
    }

    .sec6 .buy-btn {
        padding: 3.5vw 7.9vw;
    }

    .sec6 h2 span {
        font-size: 13px;
        font-size: 3.45vw;
        margin-top: 10px;
        margin-top: 2.66666vw;
        transform: none;
        font-weight: 600;
        letter-spacing: normal;
    }

    .sec6 .container > .row:first-child {
        margin: 0;
    }

    .sec6 h2 {
        padding: 20px 0;
        padding: 5.1vw 0;
        margin-bottom: 4vw;
    }

    h3.title-lfttxt {
        line-height: 120%;
        font-weight: 400;
        font-size: 24px;
        top: -37px;
    }

    .cat-box {
        margin: 0px 0 0;
    }

    .title-lft {
        height: 46px;
        max-width: 100%;
    }

    .cat-box .box-wht {
        margin: 0px 0 0;
        padding: 20px 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cat-box img {
        margin: 0px 0 0;
    }

    .cat-box h4 {
        font-size: 20px;
        text-align: left;
        padding: 8px 0 0 20px;
        padding: 2.15vw 0 0 5.35vw;
        font-size: 5.34vw;
        margin-bottom: 2.15vw;
    }

    .cat-box h4 span {
        font-size: 17px;
    }

    .cat-box a.buy-btn {
        padding: 23px 0;
        margin: 0 0 40px;
    }

    .cat-title {
        padding: 0;
    }

    .border-top h2 {
        text-align: center;
        margin: 0 0 30px;
    }

    .prod-dsc h3 {
        font-size: 20px;
    }

    .border-cir > div {
        display: none;
    }

    .border-cir:before {
        content: '“';
        font-family: Prata;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        font-size: 120px;
        text-align: center;
        text-transform: capitalize;
        height: 60px;
        margin-top: -10px !important;
        display: block;
        margin-left: -2px;

        height: 16vw;
        margin-top: -0.6667vw !important;
        margin-left: -0.53vw;
        font-size: 24vw;
    }

    .border-cir {
        width: 60px;
        height: 60px;
        line-height: 52px;
        width: 16vw;
        height: 16vw;
        border-width: 0.53vw;
        line-height: 13.5vw;
    }

    .sec9 h2 {
        margin-top: 4vw !important;
        margin-bottom: 1.6vw;
    }

    h2.light-heading,
    .sec9 h2 span {
        margin-top: 2.66667vw;
        font-size: 3.2vw;
    }


    .sec9 .col-xl-12.text-center {
        margin: 0 0 0 !important;
    }

    .testimonials .res-wrap p:first-child {
        font-weight: 300;
        font-size: 13px;
        line-height: 150%;
        font-size: 3.46vw;
    }

    .testimonials .res-wrap p:last-child {
        font-weight: 600;
        font-size: 13px;
        line-height: 149%;
        text-transform: uppercase;
        font-size: 3.46vw;
        margin-top: 1.334vw;
    }

    .testimonials .res-wrap {
        box-shadow: none;
        padding: 25px !important;
        padding-right: 18px !important;
        padding-bottom: 25px !important;
        padding: 6.6vw 4.8vw 6.6vw 6.6vw !important;
    }

    .testimonials {
        grid-template-columns: auto;
        gap: 15px;
        padding-left: 0;
        padding-right: 0;
        gap: 4vw;
        font-size: 3.46vw;
        margin-left: auto;
        margin-right: auto;
    }

    .sec10.commn-layout .row:last-child {
        grid-template-columns: auto;
        gap: 30px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .res-wrap h4 {
        font-size: 13px;
    }

    .botder-ftr img.mb-3 {
        max-width: 100%;
    }


    a.ftr-logo {
    }

    .ftr-txt h3 {
        font-size: 15px;
        line-height: 135%;
        color: #003C8F;
    }

    ul.links-list li a {
        font-size: 13px;
        color: #003C8F;
        padding: 0 0 10px;
    }

    .ftr-rht li {
        width: 50%;
    }

    #footer ul.cont-info {
        margin-bottom: 0;
    }

    ul.cont-info li {
        flex-direction: column;
    }

    ul.cont-info li i {
        padding: 3px 1px 10px;
    }

    .botder-ftr {
        margin-top: 0 !important;
        padding-top: 20px !important;
    }

    .rht-nav {
        margin-bottom: -2.8vw;
    }

    .mobile-nav-toggle i {
        color: #000;
    }

    #header .logo img {
        min-width: auto;
        padding: 2.1vw 0;
        max-width: 36.5vw;
        width: 36.5vw;
        max-height: initial;
    }


    .mobile-nav-toggle {
        top: 10px;
        padding: 0;
    }

    .mobile-nav-toggle img {
        width: 6vw;
        opacity: .8;
        top: 0.9vw;
        position: relative;
        display: block;
    }

    .rht-nav a {
        width: 5.5vw;
        height: 5.5vw;
        padding: 0 4vw;
    }


    .prog-caro .carousel-indicators [data-bs-target] {
        width: 100%;
        text-indent: inherit;
        height: auto;
        opacity: 1;
        background: transparent;
    }

    .prog-caro .carousel-indicators .active {
        background: transparent;
    }

    button h3 {
        font-size: 12px;
        line-height: 15px;
        text-align: center;
        color: #2E3031;
        font-weight: 700;
    }

    .prog-caro .carousel-indicators {
        bottom: unset;
        height: auto;
        top: 0;
    }

    .prog-caro .carousel-indicators [data-bs-target] img {
        display: block;
        height: 30px;
        width: 30px;
        margin: 0px auto;
        border-radius: 50%;
        display: none;
    }

    .prog-caro .carousel-indicators::before {
        content: '';
        width: 100%;
        height: 9px;
        position: absolute;
        left: 0;
        background: #C5DBF3;
        box-shadow: inset 0px 0px 5px rgb(0 0 0 / 15%);
        border-radius: 100px;
        top: 43px;
        z-index: -1;
    }

    .prog-caro .carousel-indicators .active img {
        display: block;
    }

    .quiz-box h6 {
        font-size: 17px;
        line-height: 21px;
        text-align: center;
        color: #000000;
        font-weight: 600;
        margin: 0;
        font-size: 4.53334vw;
        line-height: 5.6vw;
    }

    .quiz-box {
        margin-right: 20px;
        border-radius: 10.666vw 0;
    }

    .quiz-box h4 {
        margin: 15px -5px;
        font-size: 15px;
        margin-bottom: 18px;

        font-size: 4vw;
        margin: 4vw -1.334vw 4.8vw;
        margin-bottom: 4.8vw;
    }

    .quiz-box * {
        font-family: 'Montserrat';
    }

    .sec7 .quiz-box {
        padding: 12.8vw 11.73334vw 10.9334vw;
    }

    .prog-caro img.reason-wrapimg {
        max-width: 100%;
    }

    .sec8 .resp-view img {
        width: 100%;
        padding-right: 20px;
        padding-right: 5.335vw;
    }

    .sec8 .carousel-control-next i, .sec8 .carousel-control-prev i {
        color: #000;
        font-size: 30px;
    }

    .sec7.sec8 .wistia-shell img {
        padding: 0 !important;
    }

    .sec7.sec8 .wistia-shell {
        min-width: 91.8vw;
        margin-left: 10px;
    }

    .video {
        min-width: 92%;
        padding-bottom: 52%;
    }

    .carousel-control-next, .carousel-control-prev {
        opacity: 1;
    }

    .prod-dsc .quiz-box img {
        width: 100%;
        max-width: 230px;
    }

    .cat-box img {
        max-width: 57px;
    }

    .commn-layout .container,
    #header .container,
    footer#footer .container,
    .container {
        width: 100%;
        max-width: 100%;
        padding-right: 6.4vw;
        margin-left: auto;
        margin-right: auto;
        padding-left: 6.4vw;
    }

    footer#footer .container .row {
        margin: auto;
    }

    #header .container .row .col-xl-12,
    #header .container .row {
        padding: 0;
        margin: 0 !important;
    }

    #header .container .row .col-xl-12.d-flex {
        align-items: center;
    }

    #header .container .row .col-xl-12.d-flex .logo {
        flex: 1;
    }

    #header {
        filter: none;
        background-color: white;
        position: fixed;
        width: 100%;
    }

    #carouselExampleIndicators {
        padding-top: 5vw;
    }

    #hero {
        padding-top: 50px;
    }

 

    .banner .carousel-item .col-xl-7.bnr-rht {
    }

    .banner .carousel-item .bnr-rht p {
        font-weight: 500;
        font-size: 2.7vw;
        line-height: 149%;
        text-transform: uppercase;
        color: #2E3031;
        text-align: left;
        margin-bottom: 1.9vw;
    }

    .banner .carousel-item .bnr-rht h3,
    .bnr-rht h3 span {
        font-size: 6.67vw;
        margin: 0.5vw 0;
        text-align: left;
        font-weight: 700;
        line-height: 120%;
        text-transform: capitalize;
        color: #2E3031;
    }

    .bnr-rht h3 span {
        padding: 0 0.8vw;
    }


    .banner .carousel-item .bnr-rht p.prata-font {
        font-weight: 400;
        line-height: 170%;
        color: #000000;
        margin-top: 0;
        padding-left: 4px;
        font-size: 4.3vw;
        margin-bottom: 5.4vw !important;
    }

    .bnr-lrft img.full-img {
        width: 100%;
        max-width: 100%;
        padding: 0 5.3vw;
    }

    .bnr-lrft img.ab-img {
        max-width: 32.8vw;
        width: 100%;
        margin-left: 13vw;
        margin-top: -18vw;
        position: initial;
        margin-bottom: -3vw;
    }


    .col-xl-12.bnr-lrft.position-relative.pb-5 {
        margin-bottom: 6.3vw;
    }

    .sec1 {
        background: linear-gradient(0deg, #e9f3fe 0%, #FFFFFF 70.79%);
        padding-top: 4vw;
        padding-bottom: 0;
    }

    .commn-layout .row > .col-xl-6:nth-child(2) {
        margin-top: 0px;
    }

    #hair-loss-image {
        margin-top: -5px;
        padding-left: 8px !important;
        padding-right: 8px;
        margin-bottom: -1px;


        margin-top: -1.25vw;
        margin-bottom: -0.2699vw;
        padding-left: 2.14vw !important;
        padding-right: 2.14vw !important;

    }

    #hair-loss-image svg {
        width: 200%;
        max-width: initial;
        margin: 0px -23px;
    }

    #hair-loss-image svg path[fill="url(#F)"] {
        display: none;
    }

    input[type=checkbox] {
        overflow: hidden;
        position: absolute;
    }

    .sec2 {
        padding-top: 9.7vw;
        padding-bottom: 60px;
        padding-bottom: 16vw;
        background: linear-gradient(180deg, #e9f3fe 0%, #D1E6FF 25%, #FFFFFF 72%);
    }


    .p-divider {
        margin-bottom: 10px;
    }

    .sec2 .row.align-items-stretch {
        gap: 50px;
        margin-top: 30px;
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
        margin-top: 8vw;
        gap: 13.4vw;
        padding-left: 0;
    }

    .commn-layout .aos-init {
        padding-bottom: 6.7vw !important;
    }


    .sec2 .row.align-items-stretch > div {
        width: 100%;
        max-width: 100%;
    }


    .sec2 .row.stretched {
        margin-top: 42px;
        margin-top: 11.2vw;
    }

    .sec2 .row.stretched .col-xl-12.aos-init.aos-animate:first-child {
        display: none;
    }

    .sec2.commn-layout .row:last-child > .col-xl-12:nth-child(2) {
        margin-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .sec2.commn-layout .row:last-child > .col-xl-12:nth-child(2) p {
        font-weight: 400;
        font-size: 13px;
        font-size: 3.47vw;
        line-height: 150%;
        margin-top: 2vw;
    }

    .col-xl-5 {
        max-width: initial !important;
        width: 100%;
    }

    .sec3.commn-layout {
        background-size: 100.5% 100%;
        background-repeat: no-repeat;
        background-position: -1px top;
        padding-top: 14.6vw;
        padding-bottom: 5.5vw;
    }

    .sec3 .col-xl-5 img {
        position: initial;
        width: 21.3vw;
    }

    .accp-box {
        margin-top: 13px;
        margin-left: 55px;
        padding: 25px 24px 20px 24px;
        max-width: 240px;
        border-radius: 18px;
        margin-bottom: 25px;

        margin-top: 3.33vw;
        margin-left: -0.8vw;
        width: 64vw;
        padding: 6.8vw 6.4vw 5.35vw;
        max-width: 64vw;
        border-radius: 4.8vw;
        margin-bottom: 6.7vw;
        right: -24.5vw;
    }

    .accp-box:before {
        width: 90px;
        height: 72px;
        top: -15px;
        left: -20px;
        transform: scale(0.8);
        width: 24vw;
        height: 19.2vw;
        top: -4vw;
        left: -5.35vw;
    }

    .accp-box strong,
    .accp-box p {
        font-weight: 600;
        font-size: 11px;
        line-height: 170%;
        color: #4E4E4E;
        font-size: 2.935vw;
    }

    .accp-box strong {
        font-size: 12px;
        font-size: 3.2vw;
        color: black;
    }


    /**
    Sec 4
     */
    .sec4 {
        padding-top: 70px;
        padding-top: 18.8vw;
        padding-bottom: 0;
    }

    .sec4 .carousel-indicators:before {
    }

    .sec4 .prog-caro > div:first-child {
        position: relative;
        display: flex;
        margin-bottom: 17px;
        margin-bottom: 4.5vw;
        justify-content: space-between;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .sec4 .prog-caro > div:first-child > h3 {
        font-weight: 700;
        font-size: 3.2vw;
        line-height: 4vw;
        text-align: center;
        color: #2E3031;
        font-family: 'Montserrat';

    }

    .sec4 .prog-caro > div:first-child > h3:nth-child(2) {
        padding-left: 24px;
        padding-left: 6.4vw;
    }

    .sec4 .prog-caro > div:first-child > h3:last-child {
        margin-right: -16px;
        padding-left: 12px;
        margin-right: -3.2vw;
        padding-left: 3.2vw;
    }

    .sec4 .quiz-box {
        margin-top: 18px !important;
        width: 100%;
        min-height: auto;
        padding: 24px;
        padding: 6.4vw;
        margin-top: 4.8vw !important;
        margin-right: 5.34vw;
    }

    .sec4 .quiz-box img {
        max-width: 100%;
        width: auto;
        max-height: 100%;
        border-radius: 10px;
        border-radius: 3vw;
    }

    .sec4 div[aria-label="1 / 3"] .quiz-box {
        padding-bottom: 27px;
        padding-bottom: 7.2vw;

    }

    .sec4 div[aria-label="3 / 3"] .quiz-box img {
        max-height: 140px;
        max-height: 37.4vw;
    }

    .sec4 div[aria-label="1 / 3"] .quiz-box img {
        height: 140px;
        height: 37.4vw;
        max-height: initial;
    }


    .sec4 h2 {
        line-height: 105%;
    }

    .swiper.swiper-videos,
    .swiper.swiper-packages,
    .swiper.different-systems {
        padding-left: 70px;
        padding-right: 70px;
        margin-left: -60px;
        margin-right: -36px;
        /*wow*/
        padding-left: 15.6vw;
        padding-right: 15.6vw;
        margin-left: -16vw;
        margin-right: -9vw;
    }

    .swiper.swiper-packages {
        padding-left: 16.6vw;
    }

    .swiper.swiper-videos {
        margin-top: 8vw;
        margin-bottom: 6.8vw;
        padding-right: 19.6vw;
    }

    .sec8 .buy-btn {
        padding: 3.6vw 9vw;
    }


    .swiper.swiper-videos .swiper-slide,
    .swiper.swiper-packages .swiper-slide,
    .swiper.different-systems .swiper-slide {
        padding: 0 !important;
    }

    .sec5,
    .sec6,
    .sec7,
    .sec10,
    #footer,
    .sec9.commn-layout {
        padding-top: 70px;
        padding-top: 18.65vw;
        padding-bottom: 0;
    }

    .sec7.commn-layout {
        background-image: linear-gradient(180deg, transparent 9%, #D1E6FF 51%, #D1E6FF 51%, transparent 91%);
    }

    .sec8.commn-layout,
    .sec6.commn-layout {
        background-image: none;
    }

    .sec9 {
        background: linear-gradient(0deg, #e8f2fe 0%, #FFFFFF 94.79%);
        background: none !important;
    }

    .sec10 {
        background: linear-gradient(180deg, #e8f2fe 0%, #FFFFFF 37.79%);
        background: none !important;
    }

    .swiper-slide .prod-dsc {
        width: 100%;
        margin-right: 20px;
        margin-right: 5.35vw;
    }

    .sec5.commn-layout .row .aos-init:first-child {
        padding-bottom: 2vw !important;
    }

    .sec6.commn-layout .aos-init.risk-wrap {
        padding: 31.5px 29px !important;
        padding: 8.4vw 7.7vw !important;
    }

    .title-lft {
        height: 12vw;
    }

    .title-lft:before {
        background: linear-gradient(90deg, #BBD1ED 25.85%, rgba(187, 209, 237, 0) 103.07%);
        background-size: 300px auto;
        height: 45px;
        background-repeat: no-repeat;
        background-size: 80vw;
        height: 12vw;

    }

    h3.title-lfttxt {
        font-size: 24px;
        top: -37px;
        font-size: 6.4vw;
        top: -9.8vw;
    }

    .sec7 .col-xl-4.aos-init.aos-animate {
        max-width: initial;
    }

    .sec7 .col-xl-12.text-center.mb-5.aos-init.aos-animate:first-child {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
        padding-left: 3.2vw !important;
        padding-right: 3.2vw !important;
    }

    .sec7 .col-xl-4.aos-init.aos-animate {
        padding-top: 30px;
        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 10px !important;
        padding-top: 8vw;
        padding-left: 3.2vw;
        padding-right: 3.2vw;
        padding-bottom: 2.6vw !important;
    }

    .cat-title h3 span {
        font-weight: 500;
        font-size: 12px;
        line-height: 170%;
        font-size: 3.2vw;
    }

    .cat-box a.buy-btn {
        font-weight: 600;
        font-size: 15px;
        padding: 25.5px 0;
        line-height: 18px;
        margin-bottom: 0 !important;
        font-size: 4vw;
        padding: 6.8vw 0;
        line-height: 4.8vw;
        border-radius: 0 0 0 26.6vw;
    }

    .cat-title h3 {
        font-weight: 400;
        font-size: 20px;
        line-height: 149%;
        border: none;
        font-size: 5.34vw;
    }

    .cat-title.resp-view {
        border-bottom: 0;
    }

    .cat-box .box-wht {
        padding: 18px 20px 3px;
        align-items: center;
        justify-content: left;
        width: 100%;
        margin-top: 12px;

        padding: 4.8vw 5.333vw 0.8vw;
        margin-top: 3.2vw;
    }

    .cat-box img {
        position: initial;
        max-width: 49px;
        max-width: 13.06vw;
    }

    .sec7 .row.border-top.mt-5 {
        margin-top: 0 !important;
        border: 0 !important;
        padding-top: 35px;
        padding-top: 9.34vw;
    }

    .sec7 .row.border-top.mt-5:before {
        content: '';
        position: absolute;
        width: 234px;
        border-top: 1px solid #CCD8E8;
        left: 50%;
        transform: translateX(-50%);
        width: 62.4vw;
        border-top-width: 0.267vw;
    }

    .border-top .text-left h2 {
        font-weight: 300;
        font-size: 24px;
        line-height: 110%;
        margin-bottom: 0;
        font-size: 6.2vw;
    }

    .border-top .text-left {
        width: auto;
        margin-left: auto;
        margin-right: auto;
        padding-top: 40px;
        padding-top: 10.66667vw;
    }

    .sec7 .prod-dsc > h3 {
        text-align: left;
        font-weight: 400;
        font-size: 15px;
        position: initial;
        line-height: 149%;
        font-size: 4vw;

    }

    .sec7 .prod-dsc > p {
        margin-top: 15px;
        padding-bottom: 0;
        font-weight: 500;
        font-size: 12px;
        line-height: 170%;
        margin-top: 4vw;
        font-size: 3.2vw;
    }

    .sec7 .prod-dsc img {
        max-width: 50.6666vw;
    }

    .sec7 .resp-view.mb-4 {
        margin-bottom: 1.1vw !important;
    }

    .sec10.commn-layout h2:after {
        top: 40px;
        width: 16vw;
        top: 10.666vw;
    }

    .sec10.commn-layout .aos-init {
        padding-bottom: 0 !important;
        margin-bottom: 13px !important;
    }


    #footer {
        background-image: none;
    }

    footer#footer > div {
        box-shadow: none;
      box-shadow: 4px 0px 15px rgba(0, 0, 0, 0.1);
        padding-top: 0;
    }

    .ftr-txt h3 {
        font-weight: 500;
        font-size: 15px;
        line-height: 170%;
        color: #000000;
        margin-bottom: 2.3vw;
        margin-top: 8vw;
        font-size: 4vw;
    }

    a.ftr-logo {
        margin-top: 8vw;
        display: none;
    }

    .ftr-txt p {
        font-family: 'Montserrat';
        font-weight: 600;
        font-size: 12px;
        line-height: 144%;
        color: #2E3031;
        margin-bottom: 15px;
        font-size: 3.2vw;
        margin-bottom: 4vw;
    }

    #footer .mt-2 {
        max-width: 100%;
        margin-top: 14px !important;
        margin-top: 2.95vw !important;
    }

    .ftr-rht {
        padding-left: initial;
    }

    .ftr-rht li {
        width: 100%;
    }

    .ftr-rht li.address-block {
        width: 100%;
    }


    .ftr-rht .d-flex.d-md-none {
        margin-top: 8vw;
        gap: 11.18vw;
    }

    .ftr-rht .d-flex.d-md-none ul.links-list {
        border: 0;
        margin-bottom: 0;
    }


    .ftr-rht .d-flex.d-md-none ul.links-list li a {
        font-weight: 600;
        font-size: 13px;
        line-height: 135%;
        text-transform: uppercase;
        color: #000000;
        padding-bottom: 16px;
        font-size: 3.4666vw;
        padding-bottom: 4.266667vw;
    }

    .ftr-rht .d-flex.d-md-none ul.links-list:last-child li a {
    }

    #footer .col-xl-7.ftr-rht,
    #footer .col-xl-5.ftr-txt {
        padding-right: 0 !important;
    }


    ul.cont-info > li:nth-child(2), ul.links-list li:nth-child(3n-1) a,
    ul.cont-info > li:last-child, ul.links-list li:nth-child(3n) a {
        padding-left: 0;
    }

    #footer .phone-icon,
    #footer .location-icon,
    #footer .clock-icon {
        margin-bottom: 10px;
        max-width: 20px;
        height: 20px;
        padding: 0px;
        min-width: 20px !important;

        margin-bottom: 2.666667vw;
        max-width: 5.333333vw;
        min-width: 5.333333vw !important;
        height: 5.333333vw;
    }


    #footer .clock-icon {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMSIgaGVpZ2h0PSIyMSIgZmlsbD0iIzAwMCIgeG1sbnM6dj0iaHR0cHM6Ly92ZWN0YS5pby9uYW5vIj48cGF0aCBkPSJNMTAuMzcxIDIwLjQyMWExMCAxMCAwIDEgMCAwLTIwIDEwIDEwIDAgMCAwLTEwIDEwIDEwLjAxIDEwLjAxIDAgMCAwIDEwIDEwaDB6bTAtMTguNjA1aDBjMi4yODIgMCA0LjQ3MS45MDYgNi4wODUgMi41MnMyLjUyIDMuODAyIDIuNTIgNi4wODRhOC42MSA4LjYxIDAgMCAxLTIuNTIgNi4wODUgOC42IDguNiAwIDAgMS0xMi4xNjggMCA4LjYxIDguNjEgMCAwIDEtMi41Mi02LjA4NSA4LjYgOC42IDAgMCAxIDIuNTIzLTYuMDgyYzEuNjEzLTEuNjEzIDMuOC0yLjUyIDYuMDgyLTIuNTIzaDB6bTMuMjMgMTIuODE5YS43LjcgMCAwIDAgMS4xNDctLjMyMi43LjcgMCAwIDAtLjE2MS0uNjY0bC0zLjUxNi0zLjUxN1Y1Ljc3YS43LjcgMCAwIDAtLjM0OS0uNjA0Yy0uMjE2LS4xMjUtLjQ4Mi0uMTI1LS42OTggMGEuNy43IDAgMCAwLS4zNDkuNjA0djQuNjUxYzAgLjE4NS4wNzQuMzYzLjIwNS40OTNsMy43MjEgMy43MjF6Ii8+PC9zdmc+);
    }

    #footer .location-icon {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyMSIgZmlsbD0ibm9uZSIgeG1sbnM6dj0iaHR0cHM6Ly92ZWN0YS5pby9uYW5vIj48cGF0aCBkPSJNOC4zNzEuNDIxYy00LjQxMSAwLTggMy4zNjQtOCA3LjUgMCA3Ljc1NCA3LjMzIDEyLjIxNyA3LjY0MiAxMi40MDIuMjE4LjEzLjQ5OC4xMy43MTYgMCAuMzEyLS4xODYgNy42NDItNC42NDggNy42NDItMTIuNDAyIDAtNC4xMzYtMy41ODktNy41MDEtOC03LjUwMWgwem0wIDE4LjYxM2MtMS40MzMtLjk4Mi02LjY2Ny00Ljk5MS02LjY2Ny0xMS4xMTMgMC0zLjQ0NiAyLjk5MS02LjI1IDYuNjY3LTYuMjVzNi42NjcgMi44MDQgNi42NjcgNi4yNWMwIDYuMTIyLTUuMjM1IDEwLjEzMS02LjY2NyAxMS4xMTN6bTAtMTQuMjM4Yy0xLjgzOCAwLTMuMzMzIDEuNDAyLTMuMzMzIDMuMTI1czEuNDk2IDMuMTI1IDMuMzMzIDMuMTI1IDMuMzMzLTEuNDAyIDMuMzMzLTMuMTI1LTEuNDk1LTMuMTI1LTMuMzMzLTMuMTI1em0wIDVjLTEuMTAzIDAtMi0uODQxLTItMS44NzVzLjg5OC0xLjg3NSAyLTEuODc1IDIgLjg0MSAyIDEuODc1LS44OTggMS44NzUtMiAxLjg3NXoiIGZpbGw9IiMwMDAiLz48L3N2Zz4=);

    }

    #footer .phone-icon {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMSIgaGVpZ2h0PSIyMSIgZmlsbD0ibm9uZSIgeG1sbnM6dj0iaHR0cHM6Ly92ZWN0YS5pby9uYW5vIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xLjU3OCAyLjAzM2E0LjEzIDQuMTMgMCAwIDAtLjczNyA0LjgzM2MxLjE4NCAyLjIzMSAzLjA5OSA1LjUwMSA1LjM0OSA3Ljc1NHM1LjUxOCA0LjE3MSA3Ljc1NyA1LjMzNGMxLjU4Ni44MzEgMy41MjkuNTM1IDQuNzk2LS43MzRsMS4yMjQtMS4xOTFhMS4zOCAxLjM4IDAgMCAwIDAtMS45NTFsLTMuMjk0LTMuMjk4YTEuMzggMS4zOCAwIDAgMC0uOTc0LS40MDRjLS4zNjYgMC0uNzE2LjE0NS0uOTc0LjQwNGwtMS44NTggMS44NmMtLjAyMi4wMjItLjA1NS4wMzItLjA4Ni4wMjQtLjYzNC0uMjY0LTIuMDk3LS45ODQtMy42NDYtMi41MzUtMS42MDItMS42MDQtMi41ODctMy4zODQtMi45NTgtNC4xMjEtLjAxNS0uMDM2LS4wMDctLjA3NS4wMTgtLjEwMWwxLjgzMS0xLjgzNGExLjM4IDEuMzggMCAwIDAgMC0xLjk1MUw0LjczMy44MjVDNC40NzUuNTY3IDQuMTI1LjQyMSAzLjc1OS40MjFzLS43MTYuMTQ2LS45NzQuNDA0TDEuNTc4IDIuMDMzem0uNjQ5LjY1MWwxLjIwNy0xLjIwOGEuNDYuNDYgMCAwIDEgLjY0OSAwbDMuMjk0IDMuMjk4YS40Ni40NiAwIDAgMSAwIC42NUw1LjU0NyA3LjI1OWExLjAxIDEuMDEgMCAwIDAtLjE5OSAxLjE0M2MuMzkzLjc4NCAxLjQzNyAyLjY3NSAzLjEzOSA0LjM3OCAxLjY4OCAxLjY5IDMuMjg2IDIuNDYyIDMuOTU4IDIuNzQxbC4wMjQuMDA5YTEuMDEgMS4wMSAwIDAgMCAxLjA0OS0uMjM5YzAgMCAxLjg1OC0xLjg2IDEuODU4LTEuODZhLjQ2LjQ2IDAgMCAxIC42NSAwbDMuMjk0IDMuMjk4YS40Ni40NiAwIDAgMSAwIC42NWwtMS4yMTEgMS4xNzhjLS45OTYuOTk3LTIuNTA0IDEuMjI3LTMuNzM1LjU4MS0yLjE3NC0xLjEyOS01LjM0OS0yLjk4Mi03LjUzMi01LjE2OFMyLjgwNCA4LjYwMiAxLjY1NSA2LjQzOGEzLjIxIDMuMjEgMCAwIDEgLjU3My0zLjc1NGgweiIgZmlsbD0iIzAwMCIgc3Ryb2tlPSIjMDMwMzAzIiBzdHJva2Utd2lkdGg9Ii41Ii8+PC9zdmc+);
        margin-bottom: 7px;
        margin-bottom: 1.86666vw;
    }


    ul.cont-info li p, ul.cont-info li a {
        font-weight: 500;
        font-size: 13px;
        line-height: 135%;
        font-size: 3.46666vw;
    }

    ul.cont-info li:nth-child(2) {
        margin-top: -3px;
        margin-top: -0.8vw;
    }

    ul.cont-info li:nth-child(3) > div {

        margin-right: -12px;
        margin-right: -3.2vw;
    }

    ul.cont-info {
        display: grid;
        grid-template-columns: auto auto;
        column-gap: 51px;
        column-gap: 13.6vw;
        row-gap: 25px;
        row-gap: 6.6vw;
    }

    ul.cont-info a i {
        width: 21px;
        height: 21px;
        border-width: 0.266667vw;
        border-radius: 100%;
        color: #2e3031;
        line-height: 14px;
        margin: 6px 5px 0 0;
        padding: 3px 1px 10px 1.5px;
        font-size: 11px;
        width: 5.6vw;
        height: 5.6vw;
        line-height: 3.73333vw;
        margin: 1.6vw 1.33333vw 0 0;
        padding: 0.8vw 0.266667vw 2.66667vw 0.4vw;
        font-size: 2.93333vw;
    }

    #footer .botder-ftr {
        border-top: 1px solid #2E3031;
        margin-top: 30px !important;
        padding-top: 30px !important;
        margin-top: 8vw !important;
        padding-top: 8vw !important;
        border-top: 0.266667vw solid #2E3031;
    }

    #footer .botder-ftr img {
        max-width: 100%;
        margin-bottom: 0;
    }

    footer#footer .container {
        padding-bottom: 48px;
        padding-bottom: 13.06667vw;
    }

    #hero a.buy-btn {
        padding: 3.5vw 13.67vw;
    }

    .sec4 div.swiper-slide[aria-label="2 / 3"] > div.quiz-box > img {
        max-height: 38.133338vw;
    }

    .sec10 .row.desk-view {
        display: none !important;
    }

    .sec10 .row.resp-view {
        display: grid !important;
        row-gap: 8vw;
    }


    #footer .col-xl-5,
    #footer .col-xl-7 {
        max-width: initial;
    }

    footer#footer > div {
        padding-left: 0 !important;
      box-shadow: 4px 0px 15px rgba(0, 0, 0, 0.1);
    }

    #footer .botder-ftr img.d-md-none {
        margin-bottom: 0 !important;
    }

    .commn-layout #hair-loss-image {
        width: 100% !important;
        text-align: center;
        max-width: 100% !important;
    }

    .commn-layout #hair-loss-image svg {
        display: inline-block;
        width: 96.6vw;
        max-width: 96.6vw;
    }

    .sec2.commn-layout .row.stretched:last-child {
        margin-left: 0;
        margin-right: 0;
    }

    .sec2.commn-layout .row.stretched:last-child > .col-xl-12:nth-child(2) {
        padding-left: 0;
        padding-right: 0;
    }

    .sec2 .container > .row > .col-xl-12:nth-child(2) {
        padding-right: 12px;
    }

    .flickity-prev-next-button.previous {
        left: 41vw;
    }

    .flickity-prev-next-button.next {
        margin: 0px !important;
        right: auto;
        left: 49vw;
    }

    .flickity-prev-next-button {
        background-color: transparent;
        display: block;
    }

    .carousel-cell {
        margin-left: 2.66667vw;
        margin-right: 2.66667vw;
        max-width: 75.19999vw;
    }

    .flickity-prev-next-button svg {
        display: none;
    }

    .flickity-prev-next-button.previous:after,
    .flickity-prev-next-button.next:after {
        content: '';
        width: 31px;
        width: 8.26666667vw;
        height: 16px;
        height: 4.26666667vw;
        background-size: cover;
        display: block;

    }

    .flickity-prev-next-button.previous:after {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSIxNiIgZmlsbD0ibm9uZSIgeG1sbnM6dj0iaHR0cHM6Ly92ZWN0YS5pby9uYW5vIj48ZyBjbGlwLXBhdGg9InVybCgjQSkiPjxwYXRoIGQ9Ik0xLjQzNCA3LjQ3NWExIDEgMCAwIDAgMCAxLjQxNGw2LjM2NCA2LjM2NGExIDEgMCAwIDAgMS40MTQtMS40MTRMMy41NTYgOC4xODJsNS42NTctNS42NTdhMSAxIDAgMSAwLTEuNDE0LTEuNDE0TDEuNDM0IDcuNDc1em01OS40MDcgMS40MTRhMSAxIDAgMCAwIDAtMS40MTRsLTYuMzY0LTYuMzY0YTEgMSAwIDEgMC0xLjQxNCAxLjQxNGw1LjY1NyA1LjY1Ny01LjY1NyA1LjY1N2ExIDEgMCAxIDAgMS40MTQgMS40MTRsNi4zNjQtNi4zNjR6bS01OC42OTkuMjkzaDU3Ljk5MnYtMkgyLjE0MnYyeiIgZmlsbD0iI2ZmZiIvPjwvZz48ZGVmcz48Y2xpcFBhdGggaWQ9IkEiPjxwYXRoIGZpbGw9IiNmZmYiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xNTYuNjE3IC04NC44NTYpIiBkPSJNMCAwaDM3NC44MjZ2MTg2LjkxM0gweiIvPjwvY2xpcFBhdGg+PC9kZWZzPjwvc3ZnPg==);
        margin-right: -0.8vw;
    }

    .flickity-prev-next-button.next:after {
        margin-left: -0.8vw;
        content: '';
        background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSIxNiIgZmlsbD0ibm9uZSIgeG1sbnM6dj0iaHR0cHM6Ly92ZWN0YS5pby9uYW5vIj48ZyBjbGlwLXBhdGg9InVybCgjQSkiPjxwYXRoIGQ9Ik0tMjkuNTY1IDcuNDc1YTEgMSAwIDAgMCAwIDEuNDE0bDYuMzY0IDYuMzY0YTEgMSAwIDAgMCAxLjQxNC0xLjQxNGwtNS42NTctNS42NTcgNS42NTctNS42NTdhMSAxIDAgMCAwLTEuNDE0LTEuNDE0bC02LjM2NCA2LjM2NHptNTkuNDA3IDEuNDE0YTEgMSAwIDAgMCAwLTEuNDE0bC02LjM2NC02LjM2NGExIDEgMCAxIDAtMS40MTQgMS40MTRsNS42NTcgNS42NTctNS42NTcgNS42NTdhMSAxIDAgMSAwIDEuNDE0IDEuNDE0bDYuMzY0LTYuMzY0em0tNTguNjk5LjI5M2g1Ny45OTJ2LTJoLTU3Ljk5MnYyeiIgZmlsbD0iI2ZmZiIvPjwvZz48ZGVmcz48Y2xpcFBhdGggaWQ9IkEiPjxwYXRoIGZpbGw9IiNmZmYiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xODcuNjE3IC04NC44NTYpIiBkPSJNMCAwaDM3NC44MjZ2MTg2LjkxM0gweiIvPjwvY2xpcFBhdGg+PC9kZWZzPjwvc3ZnPg==);
    }

    .flickity-button:hover,
    .flickity-button:active,
    .flickity-button:focus {
        box-shadow: none;
        background-color: transparent;
    }

    .reasons-hair-loss-sec3 {
        padding-top: 66px;
        padding-top: 18.66666668vw;
    }

    .reasons-hair-loss-sec3 .content-box h2 {
        font-size: 24px;
        line-height: 29px;
        margin-bottom: 30px;
        font-size: 6.400000001vw;
        line-height: 7.9vw;
        margin-bottom: 8vw;
    }


    .reasons-hair-loss-sec3 .content-box h2::after {
        bottom: -15px;
        width: 58px;
        bottom: -4vw;
        width: 16.13333334vw;
    }


    .reasons-hair-loss-sec3 .content-box p {
        font-weight: 500;
        font-size: 13px;
        margin-bottom: 12px;
        padding-right: 9px;
        line-height: 192%;
        letter-spacing: 0.1px;
        font-size: 3.46666667vw;
        margin-bottom: 3.46666667vw;
        padding-right: 0;
        letter-spacing: 0.02777778vw;
    }

    .reasons-hair-loss-sec3 .content-box a.buy-btn {
        margin: 0 auto !important;
        text-transform: uppercase;
        padding: 3.6vw 8vw;
    }

    .reasons-hair-loss-sec3 img {
        max-width: 230px;
        float: right;
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
        margin-top: 25px;
        margin-right: 0px;
        max-width: 64.66666667vw;
        margin-top: 6.66666668vw;
    }

    .reasons-hair-loss-sec3 .container {
        padding-bottom: 0;
    }

    .comb-box .col-md-7 {
        padding-top: 0;
    }


    .comb-box {
        background-color: white;
        background-image: none;
        margin-left: 24px;
        margin-right: 24px;
        width: auto;
        padding-top: 34px !important;
        margin-bottom: 70px;
        margin-left: 6.66666668vw;
        margin-right: 6.66666668vw;
        padding-top: 9.33333334vw !important;
        margin-bottom: 18.33333334vw;
    }

    .comb-box .px-4 {
        padding-right: 20px !important;
        padding-left: 20px !important;
        padding-right: 5.33333334vw !important;
        padding-left: 5.33333334vw !important;
    }


}


.swiper-range[type=range] {
    -webkit-appearance: none;
    width: 80%;
    display: block;
    margin: 18px auto;
    margin: 4.7vw auto;
    background: transparent;
}

.fixed-size .swiper-range[type=range] {
    width: 100%;
    margin: 18px auto;
}

.swiper-range-container:before {
    content: '';
    width: 100%;
    background: #C5DBF3;
    box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.15);
    border-radius: 100px;
    margin-bottom: -27px;
    height: 9px;
    display: block;

    border-radius: 26.6vw;
    box-shadow: inset 0 0 1.1vw rgba(0, 0, 0, 0.15);
    height: 2.4vw;
    margin-bottom: -7.2vw;
}

.fixed-size:before {
    background: #C5DBF3;
    box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.15);
    border-radius: 100px;
    margin-bottom: -27px;
    height: 9px;
    display: block;
}

@-moz-document url-prefix() {
    /* Your Firefox-specific CSS rules go here */
    .fixed-size:before {
        margin-top: 10px;
        margin-bottom: -37px;
    }
}


input.swiper-range[type=range]:focus {
    outline: none;
}

input.swiper-range[type=range]::-moz-range-track {
    padding: 0;
}

.swiper-range[type=range]::-webkit-slider-runnable-track {
    background: transparent !important;
    height: 9px;
    height: 2.4vw;
    width: 100%;
}

input.swiper-range[type=range]::-moz-range-track {
    background: transparent !important;
    height: 2.4vw;
    width: 100%;
}


.draggable-range {
    margin-left: 54px;
    margin-right: 54px;
}

.draggable-thumb {
    background-image: radial-gradient(circle, #ffffff, #ffffff 5.8px, #0D47B6 6.5px, #0D47B6);
    width: 25px;
    top: -9px;
    height: 25px;
    border-radius: 100%;
    cursor: pointer;
    box-shadow: 0px 0px 0.53333vw rgba(0, 0, 0, 0.25);
}

.draggable-track {
    height: 8px;
    width: 100%;
    background: #E7ECF1;
    border-radius: 30px;
}


.swiper-range[type=range]::-webkit-slider-thumb {
    border: 0;
    transition: all .3s ease-in;
    border-radius: 100%;
    background: #ffffff;
    cursor: pointer;
    -webkit-appearance: none;
    height: 8vw;
    width: 8vw;
    min-width: 8vw;
    min-height: 8vw;
    margin-top: -2.6666vw;
    background-image: radial-gradient(circle, #0D47B6, #0D47B6 2.53vw, #ffffff 2.61vw, #ffffff);
    box-shadow: 0px 0px 0.53333vw rgba(0, 0, 0, 0.25);
}

input.swiper-range[type=range]::-moz-range-thumb {
    border: 0;
    transition: all .3s ease-in;
    border-radius: 100%;
    background: #ffffff;
    cursor: pointer;
    -webkit-appearance: none;
    height: 8vw;
    width: 8vw;
    min-width: 8vw;
    min-height: 8vw;
    margin-top: -2.6666vw;
    background-image: radial-gradient(circle, #0D47B6, #0D47B6 2.53vw, #ffffff 2.61vw, #ffffff);
    box-shadow: 0px 0px 0.53333vw rgba(0, 0, 0, 0.25);
}


.fixed-size input.swiper-range[type=range]::-moz-range-thumb {
    margin-top: -20px;
}


.swiper-range[type=range]:focus::-webkit-slider-runnable-track {
    background: #367ebd;
}

.fixed-size .swiper-range[type=range]::-webkit-slider-runnable-track {
    height: 9px;
    background-color: transparent !important;
}

.fixed-size .swiper-range[type=range]::-moz-range-track {
    height: 9px;
}


.fixed-size .swiper-range[type=range]::-webkit-slider-thumb {
    height: 30px;
    width: 30px;
    min-width: 30px;
    min-height: 20px;
    border-radius: 100%;
    margin-top: -10px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
    background-image: radial-gradient(circle, #0D47B6, #0D47B6 9.5px, #ffffff 9.8px, #ffffff);
}

.fixed-size .swiper-range[type=range]::-moz-range-thumb {
    height: 30px;
    width: 30px;
    min-width: 30px;
    min-height: 20px;
    border-radius: 100%;
    margin-top: -10px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
    background-image: radial-gradient(circle, #0D47B6, #0D47B6 9.5px, #ffffff 9.8px, #ffffff);
}


input.swiper-range[type=range]::-ms-track {
    width: 100%;
    height: 8.4px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    border-width: 16px 0;
    color: transparent;
    height: 2.24vw;
    border-width: 4.266vw 0;
}

input.swiper-range[type=range]::-ms-fill-lower {
    background: #2a6495;
    border: 0.2px solid #010101;
    border-radius: 2.6px;
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;

    border: 0.0532vw solid #010101;
    box-shadow: 0.2666vw 0.2666vw 0.2666vw #000000, 0px 0px 0.2666vw #0d0d0d;
    border-radius: 0.69px;

}

input.swiper-range[type=range]::-ms-fill-upper {
    background: #3071a9;
    border: 0.2px solid #010101;
    border-radius: 2.6px;
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    border: 0.0532vw solid #010101;
    box-shadow: 0.2666vw 0.2666vw 0.2666vw #000000, 0px 0px 0.2666vw #0d0d0d;
    border-radius: 0.69px;
}

input.swiper-range[type=range]::-ms-thumb {
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    border: 1px solid #000000;
    height: 36px;
    width: 16px;
    border-radius: 3px;
    background: #ffffff;
    cursor: pointer;

    border: 0.0532vw solid #010101;
    box-shadow: 0.2666vw 0.2666vw 0.2666vw #000000, 0px 0px 0.2666vw #0d0d0d;
    border-radius: 0.8px;
    height: 9.6vw;
    width: 4.2vw;
}

input.swiper-range[type=range]:focus::-ms-fill-lower {
    background: #3071a9;
}

input.swiper-range[type=range]:focus::-ms-fill-upper {
    background: #367ebd;
}


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


    header .offer-banner {
        padding: 1vw;
        font-size: 3.6vw;
        max-height: max-content;
    }

    .more-btn {
        width: 98%;
    }

    .more-btn .buy-btn {
        width: 100%;
    }

    .katty-interview .wistia_responsive_padding {
        border-top-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }

    section.reasons-hair-loss-sec5 .col-md-7 {
        padding-left: 0px;
        padding-right: 0px;
    }

    .draggable-range {
        margin-left: 54px;
        margin-right: 54px;
        margin-left: 14.3333333333333333vw;
        margin-right: 15.3333333333333333vw;

    }

    .draggable-thumb {
        background-image: radial-gradient(circle, #ffffff, #ffffff 5.8px, #0D47B6 6.5px, #0D47B6);
        width: 25px;
        top: -9px;
        height: 25px;
        background-image: radial-gradient(circle, #ffffff, #ffffff 1.6vw, #0D47B6 1.7vw, #0D47B6);
        width: 7.2vw;
        top: -2.4vw;
        height: 7.2vw;
    }

    .draggable-track {
        height: 8px;
        border-radius: 30px;
        border-radius: 8vw;
        height: 2.1333333333333333vw;
    }

    #wistia-banner,
    #special-video-right,
    #special-video-left {
        display: none;
    }


    .sec8 .will-videos > .img-wrap {
        width: 100%;
    }

    .swiping-videos {
        display: flex;
        overflow-x: scroll;
        gap: 3vw;
        overflow-y: hidden;
        scrollbar-width: none;
        margin: 8vw -6.4vw;
    }

    .swiping-videos::-webkit-scrollbar {
        display: none;
    }


    .swiping-videos iframe {
        min-width: 92%;
        flex: 1;
        display: block;
        aspect-ratio: 16 / 9;
    }

    .tri-color-md .draggable-range {
        margin-left: 37px;
        margin-right: 37px;
        margin-left: 10.1333333333333333vw;
        margin-right: 10.1333333333333333vw;

    }

    .tri-color-md .draggable-track {
        background-image: linear-gradient(90deg, #D93940 calc(33.33% - 0.75px), transparent calc(33.33% - 0.75px), transparent calc(33.33% + 0.75px), #23A0E0 calc(33.33% + 0.75px), #23A0E0 calc(66.66% - 0.75px), transparent calc(66.66% - 0.75px), transparent calc(66.66% + 0.75px), #F0E462 calc(66.66% + 0.75px));
        opacity: 1 !important;
        height: 9px;
        background-image: linear-gradient(90deg, #D93940 calc(33.33% - 0.2vw), transparent calc(33.33% - 0.2vw), transparent calc(33.33% + 0.2vw), #23A0E0 calc(33.33% + 0.2vw), #23A0E0 calc(66.66% - 0.2vw), transparent calc(66.66% - 0.2vw), transparent calc(66.66% + 0.2vw), #F0E462 calc(66.66% + 0.2vw));
        height: 2.4vw;
    }

    .tri-color-md .draggable-thumb {
        background-image: radial-gradient(circle, #D93940, #D93940 11px, white 11.5px, white);
        width: 35px;
        top: -15px;
        height: 35px;
        border-radius: 100%;
        box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
        background-image: radial-gradient(circle, #D93940, #D93940 3.0666666666666667vw, white 3.1333333333333333vw, white);
        width: 9.8666666666666667vw;
        top: -4.2666666666666667vw;
        height: 9.8666666666666667vw;
        box-shadow: 0 0 0.5333333333333333vw rgba(0, 0, 0, 0.25);
    }


}


.tri-color .draggable-labels,
.tri-color .draggable-range {
    margin-left: 37px;
    margin-right: 37px;

    margin-left: auto;
    margin-right: auto;
    max-width: 66.666666%;

}

.tri-color .draggable-labels {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: 11px 10.5% 43px 14.15%;
    justify-content: left;
    position: relative;
}


.tri-color .draggable-labels span {
    position: absolute;
    left: 0;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #000000;

}


.tri-color .draggable-track {
    background-image: linear-gradient(90deg, #D93940 calc(33.33% - 2.5px), transparent calc(33.33% - 2.5px), transparent calc(33.33% + 2.5px), #23A0E0 calc(33.33% + 2.5px), #23A0E0 calc(66.66% - 2.5px), transparent calc(66.66% - 2.5px), transparent calc(66.66% + 2.5px), #F0E462 calc(66.66% + 2.5px));
    opacity: 1 !important;
    height: 9px;

}

.tri-color .draggable-thumb {
    background-image: radial-gradient(circle, #D93940, #D93940 11px, white 11.5px, white);
    width: 35px;
    top: -15px;
    height: 35px;
    border-radius: 100%;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
}


.button_su .buy-btn {
    margin: 0 0;
}

.button_su {
    overflow: hidden;
    position: relative;
    display: inline-block;
    border-radius: 3px;
    margin: 0;
    margin-bottom: 30px;
}

.ud .button_su_inner,
.test-banner .button_su_inner,
.bnr-rht .button_su .button_su_inner {
    padding: 24px 40px;
}

.bnr-rht .button_su {
    margin: 0 25px 0px 10px;
    border-radius: 0;
    margin-left: 7px;
    width: max-content;
}

.su_button_circle {
    background-color: red;
    border-radius: 1000px;
    position: absolute;
    left: 0;
    top: 0;
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    pointer-events: none;
    /*animation-timing-function: ease-in-out; */
}

.button_su_inner {
    display: inline-block;
    transition: .4s;
}

.button_text_container {
    position: relative;
    z-index: 10000;
}

.explode-circle {
    animation: explode 0.6s forwards;

}

.desplode-circle {
    animation: desplode 0.6s forwards;
}

.shadowed:after {
    background-image: linear-gradient(0deg, #fff 0px, #ffffffe8 28px, transparent 132px);
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: block;
    top: 0;
    z-index: 3;
}

.shadowed .desk-view {
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes explode {
    0% {
        width: 0;
        height: 0;
        margin-left: 0px;
        margin-top: 0px;
        background-color: rgba(42, 53, 80, 0.2);
    }
    100% {
        width: 400px;
        height: 400px;
        margin-left: -200px;
        margin-top: -200px;
        background-color: rgba(0, 0, 0, 1);
    }
}

@keyframes desplode {
    0% {
        width: 400px;
        height: 400px;
        margin-left: -200px;
        margin-top: -200px;
        background-color: rgba(0, 0, 0, 1);
    }
    100% {
        width: 0px;
        height: 0px;
        margin-left: 0px;
        margin-top: 0px;
        background-color: rgba(0, 0, 0, 0.6);
    }
}


@keyframes explode-large {
    0% {
        width: 0;
        height: 0;
        margin-left: 0px;
        margin-top: 0px;
        background-color: rgba(42, 53, 80, 0.2);
    }
    100% {
        width: 700px;
        height: 700px;
        margin-left: -250px;
        margin-top: -250px;
        background-color: rgba(0, 0, 0, 1);
    }
}

@keyframes desplode-large {
    0% {
        width: 700px;
        height: 700px;
        margin-left: -250px;
        margin-top: -250px;
        background-color: rgba(0, 0, 0, 1);
    }
    100% {
        width: 0px;
        height: 0px;
        margin-left: 0px;
        margin-top: 0px;
        background-color: rgba(0, 0, 0, 0.6);
    }
}


.user-avatar {
    background-image: none;
    width: auto;
    height: auto;
}

.user-avatar svg {
    height: 40px;
    width: 35px;
    margin-top: 4px;
}


@media screen and (max-width: 768px) {
    .user-avatar,
    .old-ones {
        display: none;
    }


    .rht-nav .menu-label {
        display: block !important;
        font-size: 15px;
        text-transform: uppercase;
        font-weight: 500;
        margin: auto;
        font-size: 3vw;
        text-align: center;
        color: black;
        text-decoration: none;
    }

    .svg-container {
        width: 10vw;
        height: 9vw;
        display: grid !important;
        position: relative;
        place-items: center;
    }

    .svg-container svg {
        width: 100%;
        height: 100%;
    }

    .cart-icon svg,
    .shop-menu svg {
        height: 80%;
    }

    .rht-nav .cart-icon,
    .rht-nav .shop-menu {
        display: block !important;
        padding: 0;
        width: auto;
        height: auto;
        text-decoration: none;
    }


    .rht-nav {
        margin-top: -4.5vw;
    }


    .rht-nav .cart-icon,
    .rht-nav .mobile-nav-toggle,
    .rht-nav .shop-menu {
        line-height: 1 !important;
        font-size: 1vw;
    }

    .mobile-nav-toggle,
    .shop-menu {
        margin-right: 3vw;
    }

}