@charset "UTF-8";

html {
  --alert: #df0024;
  --magenta: #BB16A3;
  --orange: #FF6A39;
  --green: #C5E86C;
  --taupe: #ECEAE3;
  --blue: #307FE2;
  --indigo: #2E008B;
  --purple: #201547;
  --black: #000000;
  --copy: #201547;
  --darkGrey: #333333;
  --grey: #DDDDDD;
  --lightGrey: #F6F7FA;
  --white: #ffffff;
  --gray-300: #939393;
  --svg-blue: invert(49%) sepia(32%) saturate(5433%) hue-rotate(196deg) brightness(91%) contrast(93%);
  --svg-copy: invert(18%) sepia(2%) saturate(0%) hue-rotate(237deg) brightness(99%) contrast(93%);
  --svg-darkGrey: invert(18%) sepia(2%) saturate(0%) hue-rotate(237deg) brightness(99%) contrast(93%);
  --svg-grey: invert(100%) sepia(0%) saturate(7098%) hue-rotate(166deg) brightness(120%) contrast(73%);
  --svg-lightGrey: invert(99%) sepia(1%) saturate(363%) hue-rotate(186deg) brightness(99%) contrast(98%);
  --svg-white: invert(100%) sepia(100%) saturate(0%) hue-rotate(190deg) brightness(108%) contrast(110%);
}

.bg-alert {
  background-color: var(--alert);
}
.bg-alert .alert {
  background-color: var(--alert);
}
@media (prefers-contrast: no-preference) {
  .bg-alert.btn {
    border-color: var(--alert);
  }
  .bg-alert.btn.outlined {
    color: var(--alert);
  }
  .bg-alert.btn.outlined:after {
    filter: var(--svg-alert);
  }
  .bg-alert.btn.outlined:hover {
    background-color: var(--alert);
    color: var(--white);
  }
}

.bg-magenta {
  background-color: var(--magenta);
}
.bg-magenta .magenta {
  background-color: var(--magenta);
}
@media (prefers-contrast: no-preference) {
  .bg-magenta.btn {
    border-color: var(--magenta);
  }
  .bg-magenta.btn.outlined {
    color: var(--magenta);
  }
  .bg-magenta.btn.outlined:after {
    filter: var(--svg-magenta);
  }
  .bg-magenta.btn.outlined:hover {
    background-color: var(--magenta);
    color: var(--white);
  }
}

.bg-orange {
  background-color: var(--orange);
}
.bg-orange .orange {
  background-color: var(--orange);
}
@media (prefers-contrast: no-preference) {
  .bg-orange.btn {
    border-color: var(--orange);
  }
  .bg-orange.btn.outlined {
    color: var(--orange);
  }
  .bg-orange.btn.outlined:after {
    filter: var(--svg-orange);
  }
  .bg-orange.btn.outlined:hover {
    background-color: var(--orange);
    color: var(--white);
  }
}

.bg-green {
  background-color: var(--green);
}
.bg-green .green {
  background-color: var(--green);
}
@media (prefers-contrast: no-preference) {
  .bg-green.btn {
    border-color: var(--green);
  }
  .bg-green.btn.outlined {
    color: var(--green);
  }
  .bg-green.btn.outlined:after {
    filter: var(--svg-green);
  }
  .bg-green.btn.outlined:hover {
    background-color: var(--green);
    color: var(--white);
  }
}

.bg-taupe {
  background-color: var(--taupe);
}
.bg-taupe .taupe {
  background-color: var(--taupe);
}
@media (prefers-contrast: no-preference) {
  .bg-taupe.btn {
    border-color: var(--taupe);
  }
  .bg-taupe.btn.outlined {
    color: var(--taupe);
  }
  .bg-taupe.btn.outlined:after {
    filter: var(--svg-taupe);
  }
  .bg-taupe.btn.outlined:hover {
    background-color: var(--taupe);
    color: var(--white);
  }
}

.bg-blue {
  background-color: var(--blue);
}
.bg-blue .blue {
  background-color: var(--blue);
}
@media (prefers-contrast: no-preference) {
  .bg-blue.btn {
    border-color: var(--blue);
  }
  .bg-blue.btn.outlined {
    color: var(--blue);
  }
  .bg-blue.btn.outlined:after {
    filter: var(--svg-blue);
  }
  .bg-blue.btn.outlined:hover {
    background-color: var(--blue);
    color: var(--white);
  }
}

.bg-indigo {
  background-color: var(--indigo);
  color: var(--white);
}
.bg-indigo .indigo {
  background-color: var(--indigo);
}
@media (prefers-contrast: no-preference) {
  .bg-indigo.btn {
    border-color: var(--indigo);
  }
  .bg-indigo.btn.outlined {
    color: var(--indigo);
  }
  .bg-indigo.btn.outlined:after {
    filter: var(--svg-indigo);
  }
  .bg-indigo.btn.outlined:hover {
    background-color: var(--indigo);
    color: var(--white);
  }
}
.bg-indigo .heading1,
.bg-indigo .heading2,
.bg-indigo .heading3,
.bg-indigo .heading4,
.bg-indigo .copy,
.bg-indigo .arrow-link {
  color: var(--white);
}
.bg-indigo .icon,
.bg-indigo .arrow-link:after {
  filter: var(--svg-white);
}

.bg-purple {
  background-color: var(--purple);
}
.bg-purple .purple {
  background-color: var(--purple);
}
@media (prefers-contrast: no-preference) {
  .bg-purple.btn {
    border-color: var(--purple);
  }
  .bg-purple.btn.outlined {
    color: var(--purple);
  }
  .bg-purple.btn.outlined:after {
    filter: var(--svg-purple);
  }
  .bg-purple.btn.outlined:hover {
    background-color: var(--purple);
    color: var(--white);
  }
}

.bg-black {
  background-color: var(--black);
  color: var(--white);
}
.bg-black .black {
  background-color: var(--black);
}
@media (prefers-contrast: no-preference) {
  .bg-black.btn {
    border-color: var(--black);
  }
  .bg-black.btn.outlined {
    color: var(--black);
  }
  .bg-black.btn.outlined:after {
    filter: var(--svg-black);
  }
  .bg-black.btn.outlined:hover {
    background-color: var(--black);
    color: var(--white);
  }
}
.bg-black .heading1,
.bg-black .heading2,
.bg-black .heading3,
.bg-black .heading4,
.bg-black .copy,
.bg-black .arrow-link {
  color: var(--white);
}
.bg-black .icon,
.bg-black .arrow-link:after {
  filter: var(--svg-white);
}

.bg-copy {
  background-color: var(--copy);
  color: var(--white);
}
.bg-copy .copy {
  background-color: var(--copy);
}
@media (prefers-contrast: no-preference) {
  .bg-copy.btn {
    border-color: var(--copy);
  }
  .bg-copy.btn.outlined {
    color: var(--copy);
  }
  .bg-copy.btn.outlined:after {
    filter: var(--svg-copy);
  }
  .bg-copy.btn.outlined:hover {
    background-color: var(--copy);
    color: var(--white);
  }
}
.bg-copy .heading1,
.bg-copy .heading2,
.bg-copy .heading3,
.bg-copy .heading4,
.bg-copy .copy,
.bg-copy .arrow-link {
  color: var(--white);
}
.bg-copy .icon,
.bg-copy .arrow-link:after {
  filter: var(--svg-white);
}

.bg-darkGrey {
  background-color: var(--darkGrey);
  color: var(--white);
}
.bg-darkGrey .darkGrey {
  background-color: var(--darkGrey);
}
@media (prefers-contrast: no-preference) {
  .bg-darkGrey.btn {
    border-color: var(--darkGrey);
  }
  .bg-darkGrey.btn.outlined {
    color: var(--darkGrey);
  }
  .bg-darkGrey.btn.outlined:after {
    filter: var(--svg-darkGrey);
  }
  .bg-darkGrey.btn.outlined:hover {
    background-color: var(--darkGrey);
    color: var(--white);
  }
}
.bg-darkGrey .heading1,
.bg-darkGrey .heading2,
.bg-darkGrey .heading3,
.bg-darkGrey .heading4,
.bg-darkGrey .copy,
.bg-darkGrey .arrow-link {
  color: var(--white);
}
.bg-darkGrey .icon,
.bg-darkGrey .arrow-link:after {
  filter: var(--svg-white);
}

.bg-grey {
  background-color: var(--grey);
}
.bg-grey .grey {
  background-color: var(--grey);
}
@media (prefers-contrast: no-preference) {
  .bg-grey.btn {
    border-color: var(--grey);
  }
  .bg-grey.btn.outlined {
    color: var(--grey);
  }
  .bg-grey.btn.outlined:after {
    filter: var(--svg-grey);
  }
  .bg-grey.btn.outlined:hover {
    background-color: var(--grey);
    color: var(--white);
  }
}

.bg-lightGrey {
  background-color: var(--lightGrey);
}
.bg-lightGrey .lightGrey {
  background-color: var(--lightGrey);
}
@media (prefers-contrast: no-preference) {
  .bg-lightGrey.btn {
    border-color: var(--lightGrey);
  }
  .bg-lightGrey.btn.outlined {
    color: var(--lightGrey);
  }
  .bg-lightGrey.btn.outlined:after {
    filter: var(--svg-lightGrey);
  }
  .bg-lightGrey.btn.outlined:hover {
    background-color: var(--lightGrey);
    color: var(--white);
  }
}

.bg-white {
  background-color: var(--white);
}
.bg-white .white {
  background-color: var(--white);
}
@media (prefers-contrast: no-preference) {
  .bg-white.btn {
    border-color: var(--white);
  }
  .bg-white.btn.outlined {
    color: var(--white);
  }
  .bg-white.btn.outlined:after {
    filter: var(--svg-white);
  }
  .bg-white.btn.outlined:hover {
    background-color: var(--white);
    color: var(--white);
  }
}

.bg-gradient-blue {
  background: linear-gradient(90deg, var(--indigo) 0%, var(--blue) 100%);
}

.bg-gradient-magenta {
  background: linear-gradient(90deg, var(--magenta) 45%, var(--orange) 100%);
}

.bg-gradient-magenta .heading1,
.bg-gradient-magenta .heading2,
.bg-gradient-magenta .heading3,
.bg-gradient-magenta .heading4,
.bg-gradient-magenta .copy,
.bg-gradient-magenta .footnote,
.bg-gradient-magenta .arrow-link,
.bg-gradient-blue .heading1,
.bg-gradient-blue .heading2,
.bg-gradient-blue .heading3,
.bg-gradient-blue .heading4,
.bg-gradient-blue .copy,
.bg-gradient-blue .footnote,
.bg-gradient-blue .arrow-link,
.hero-curve .heading1,
.hero-curve .heading2,
.hero-curve .heading3,
.hero-curve .heading4,
.hero-curve .copy,
.hero-curve .footnote,
.hero-curve .arrow-link,
.quote-cta .heading1,
.quote-cta .heading2,
.quote-cta .heading3,
.quote-cta .heading4,
.quote-cta .copy,
.quote-cta .footnote,
.quote-cta .arrow-link,
.injection-force-cta .heading1,
.injection-force-cta .heading2,
.injection-force-cta .heading3,
.injection-force-cta .heading4,
.injection-force-cta .copy,
.injection-force-cta .footnote,
.injection-force-cta .arrow-link {
  color: var(--white);
}
.bg-gradient-magenta .icon,
.bg-gradient-magenta .arrow-link:after,
.bg-gradient-blue .icon,
.bg-gradient-blue .arrow-link:after,
.hero-curve .icon,
.hero-curve .arrow-link:after,
.quote-cta .icon,
.quote-cta .arrow-link:after,
.injection-force-cta .icon,
.injection-force-cta .arrow-link:after {
  filter: var(--svg-white);
}

img {
  max-width: 100%;
}

.bg-top {
  background-position: top;
}
.bg-center {
  background-position: center;
}
.bg-bottom {
  background-position: bottom;
}

.flex {
  display: flex;
}
@media screen and (max-width: 768px) {
  .flex {
    flex-direction: column;
  }
  .flex.mobile-reverse {
    flex-direction: column-reverse;
  }
}
.flex.gap-large {
  gap: 50px;
}
.flex.gap-small {
  gap: 25px;
}
.flex.align-center {
  align-items: center;
}
.flex.stack {
  flex-direction: column;
}

.grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 992px) {
  .grid-amt1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-amt2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-amt3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-amt4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .desktop {
    display: block;
  }
  .desktop.flex {
    display: flex;
  }
}

.mobile {
  display: block;
}
@media screen and (min-width: 768px) {
  .mobile {
    display: none;
  }
}

.txt-center {
  text-align: center;
}

.footnote {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 20px;
}
.footnote.sup {
  position: relative;
}
.footnote.sup sup:first-of-type {
  position: absolute;
  width: 10px;
  text-align: right;
  display: block;
  left: -10px;
  top: 5px;
}
.footnote:last-of-type {
  margin-bottom: 0;
}

.asterisk {
  position: relative;
}
.asterisk span:first-of-type {
  position: absolute;
  left: -7px;
}

.asterisk .starz {
  left: -12px !important;
}

.small-caps {
  text-transform: uppercase;
  font-size: 80%;
}

.arrow-link {
  display: inline-block;
  color: var(--copy);
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .arrow-link {
    padding-right: 25px;
  }
}
.arrow-link:after {
  position: absolute;
  display: block;
  content: "";
  width: 17px;
  height: 16px;
  top: 50%;
  left: auto;
  right: -30px;
  bottom: auto;
  background-image: url(/content/dam/embecta/na/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  filter: var(--svg-blue);
}
@media screen and (max-width: 768px) {
  .arrow-link:after {
    right: 5px;
  }
}
@media (hover: hover) {
  .arrow-link {
    transition: 0.3s;
    cursor: pointer;
  }
  .arrow-link:after {
    transition: 0.3s;
  }
  .arrow-link:hover {
    color: var(--blue);
  }
  .arrow-link:hover:after {
    right: -35px;
  }
}
.arrow-link span {
  text-transform: lowercase;
}

.eyebrow-gradient > div:first-child {
  width: 100%;
  max-width: 480px;
  height: 6px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--magenta) 100%);
}
.eyebrow-gradient > div:last-child {
  margin: 30px 0 0 20px;
}
.eyebrow-gradient .heading2 {
  margin-bottom: 10px;
}
.eyebrow-gradient.no-margin > div:last-child {
  margin: 30px 0 0 0;
}

.heading-gradient-border {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.heading-gradient-border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 7px;
  border-radius: 30px;
  background: linear-gradient(to right, #BB16A3, #FF6A39);
}

.hero-product .heading-gradient-border {
  padding-bottom: 2px;
}
.hero-product .heading-gradient-border::after {
  width: calc(100% + 20px);
}

.inline {
  display: inline;
}

.pl-10 {
  padding-left: 5rem;
}

.flex-wrap {
  flex-wrap: wrap;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.align-middle {
  vertical-align: middle;
}

.h-100 {
  height: 100%;
}

.w-1\/2 {
  width: 50%;
}

.w-100 {
  width: 100%;
}

.text-white {
  color: var(--white);
}

.text-indigo {
  color: var(--indigo);
}

.text-copy {
  color: var(--copy);
}

.text-center {
  text-align: center;
}

.font-fieldwork {
  font-family: arial, sans-serif;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.justify-center {
  justify-content: center;
}

.none {
  display: none;
}

.block {
  display: block;
}

.font-18, .font-16,
.font-20, .font-24, .font-26 .font-30,
.font-34, .font-36,
.font-40, .font-42,
.font-60,
.font-80,
.font-90 {
  margin-top: 1em;
  margin-bottom: 1em;
}

.font-16 {
  font-size: 16px;
  line-height: 16px;
}

.font-18 {
  font-size: 18px;
  line-height: 18px;
}

.font-22 {
  font-size: 22px;
  line-height: 22px;
}
@media screen and (max-width: 768px) {
  .font-22 {
    font-size: 16px;
    line-height: 16px;
  }
}

.font-24 {
  font-size: 24px;
  line-height: 36px;
}
@media screen and (max-width: 768px) {
  .font-24 {
    font-size: 20px;
    line-height: 30px;
  }
}

.font-26 {
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.5;
}

.font-30 {
  font-size: 30px;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  .font-30 {
    font-size: 18px;
    line-height: 25px;
  }
}

.font-32 {
  font-size: 32px;
  line-height: 32px;
}
@media screen and (max-width: 768px) {
  .font-32 {
    font-size: 24px;
    line-height: 24px;
  }
}

.font-34 {
  font-size: 34px;
  line-height: 34px;
}
@media screen and (max-width: 768px) {
  .font-34 {
    font-size: 28px;
    line-height: 28px;
  }
}

.font-36 {
  font-size: 36px;
  line-height: 45px;
}
@media screen and (max-width: 768px) {
  .font-36 {
    font-size: 20px;
    line-height: 25px;
  }
}

.font-40 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.font-42 {
  font-size: 42px;
  line-height: 52.5px;
}
@media screen and (max-width: 768px) {
  .font-42 {
    font-size: 24px;
    line-height: 30px;
  }
}

.font-60 {
  font-size: 60px;
  line-height: 60px;
}
@media screen and (max-width: 768px) {
  .font-60 {
    font-size: 32px;
    line-height: 32px;
  }
}

.font-80 {
  font-size: 80px;
  line-height: 80px;
}
@media screen and (max-width: 768px) {
  .font-80 {
    font-size: 60px;
    line-height: 60px;
  }
}

.font-20 {
  font-size: 20px;
  line-height: 20px;
}
@media screen and (max-width: 768px) {
  .font-20 {
    font-size: 16px;
    line-height: 20px;
  }
}

.btn-v2.font-20 {
  font-size: 20px !important;
  line-height: 30px;
}

.font-90 {
  font-size: 90px;
  line-height: 90px;
}
@media screen and (max-width: 1200px) {
  .font-90 {
    font-size: 60px;
    line-height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .font-90 {
    font-size: 40px;
    line-height: 45px;
  }
}
@media screen and (max-width: 450px) {
  .font-90 {
    font-size: 60px;
    line-height: 60px;
  }
}

.font-weight-700 {
  font-weight: 700;
}

.font-weight-600 {
  font-weight: 600;
}

.font-weight-400 {
  font-weight: 400;
}

.no-default-margins {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.container-v2 {
  padding-left: 260px;
  padding-right: 140px;
}
@media screen and (max-width: 768px) {
  .container-v2 {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.bg-beige-to-white {
  background: linear-gradient(to bottom, rgba(209, 204, 189, 0.1), rgba(255, 255, 255, 0.2));
}

.bd-header__navigation__right {
  margin-bottom: auto;
  margin-top: 17px;
}

@media (min-width: 768px) {
  .bd-header__navigation > li:nth-child(5), .bd-header__navigation > li:nth-child(6), .bd-header__navigation > li:nth-child(7), .bd-header__navigation > li:nth-child(8) {
    position: unset;
    padding: 24px 9px;
    margin-right: 25px;
  }
  .bd-header__navigation > li:nth-child(5) span {
    font-size: 18px;
  }
}
.bd-header__navigation > li:nth-child(1) {
  order: inherit;
}

/* consumers */
.bd-header__navigation > li:nth-child(2) {
  order: inherit;
}

/* healthcare providers */
.bd-header__navigation > li:nth-child(3) {
  order: inherit;
}

/* about us */
.bd-header__navigation > li:nth-child(4) {
  order: inherit;
}

/* careers */
@media (min-width: 1023px) {
  .bd-header__navigation > li:nth-last-child(-n+4) {
    padding: 10px;
    margin-right: 0;
    right: 0px;
    position: absolute;
    top: 3px;
  }
  .bd-header__navigation > li:nth-last-child(-n+4) a, .bd-header__navigation > li:nth-last-child(-n+4) span {
    text-transform: none;
    font-size: 14px;
  }
  .bd-header__navigation > li:nth-last-child(4) {
    right: 150px !important;
  }
  .bd-header__navigation > li:nth-last-child(3) {
    right: 80px !important;
  }
  .bd-header__navigation > li:nth-last-child(2) {
    right: 0px !important;
  }
  *:lang(de) .bd-header__navigation > li:nth-last-child(3) {
    right: 75px !important;
  }
}
#home-video,
#splash-video {
  margin-top: 6% !important;
}

@media (min-width: 1024px) {
  #horiz-sep {
    margin: 45px auto !important;
  }
}
.cmp-text,
.cmp-text p {
  margin-bottom: 0 !important;
}

.bd-image-card__container--alternate {
  justify-content: flex-end;
}

body {
  font-family: arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body .default-fonts-v2 {
  font-family: arial, sans-serif !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

.heading1,
.heading2,
.heading3,
.heading4,
.copy {
  margin: 0;
  color: var(--copy);
}

.heading1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 49px;
}

.heading2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.heading2-md {
  font-size: 30px;
  line-height: 42px;
  font-weight: 700;
}

.heading3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.heading3-lg {
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;
}

.heading3-xl {
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
}

.heading4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.heading2:has(b, strong),
.heading3:has(b, strong),
.heading4:has(b, strong) {
  font-weight: 400;
}

.copy,
.list li {
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
}

.copy {
  margin-bottom: 10px;
}
.copy:has(.arrow-link) .arrow-link {
  margin-top: 15px;
}

.link {
  color: var(--blue);
  text-decoration: none;
}
@media (hover: hover) {
  .link {
    transition: 0.3s;
  }
  .link:hover {
    color: var(--magenta);
  }
}

.list li {
  margin-bottom: 0;
}

.copy + p, .copy + ul,
.list li + p,
.list li + ul,
.ordered-list li + p,
.ordered-list li + ul {
  margin-top: 15px;
}

strong,
b {
  font-size: inherit;
  font-weight: 600;
}
strong strong,
strong b,
b strong,
b b {
  font-weight: 700;
}

sup {
  line-height: 0;
  vertical-align: super;
  font-size: 0.55em;
  white-space: break-spaces;
  top: 0;
}

.list,
.ordered-list {
  margin: 0;
  padding: 0;
}
.list li,
.ordered-list li {
  margin-bottom: 10px;
  color: var(--copy);
}
.list li:last-of-type,
.ordered-list li:last-of-type {
  margin-bottom: 20px;
}

.list {
  padding: 0 0 0 25px;
  list-style-type: disc;
}

.ordered-list {
  display: inline;
  list-style-position: inside;
}
.ordered-list li {
  display: inline list-item;
}
.ordered-list li::marker {
  font-weight: 600;
}

.references {
  line-height: 0;
  margin-top: 40px;
}
.references p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  display: inline;
}

body {
  background-color: var(--white);
  margin: 0;
}

.section {
  padding: 80px 0;
}

.content-container {
  margin: 0 auto;
  width: 95vw;
  max-width: 1200px;
  box-sizing: content-box;
}
.content-container._md-width {
  max-width: 1015px;
}
.content-container._sm-width {
  max-width: 900px;
}
.content-container._xs-width {
  max-width: 750px;
}
.content-container + .content-container {
  padding-top: 30px;
}
@media screen and (min-width: 992px) {
  .content-container + .content-container {
    padding-top: 60px;
  }
}
@media screen and (max-width: 992px) {
  .content-container {
    width: calc(100% - 40px);
  }
}

.btn-container:has(.btn:nth-child(2)) {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 135px;
  width: fit-content;
  flex-shrink: 0;
  height: 70px;
  padding: 0 40px;
  margin: 20px 0;
  box-sizing: border-box;
  border-radius: 10px;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  color: var(--indigo);
  background-color: var(--white);
}
.btn.center {
  margin-left: auto;
  margin-right: auto;
}
.btn.outlined {
  border: 2px solid;
  border-color: var(--white);
  color: var(--white);
  background-color: transparent;
  padding: 0 20px;
}
@media (hover: hover) {
  .btn {
    transition: 0.3s;
  }
  .btn:hover {
    border-color: var(--indigo);
    background-color: var(--indigo);
    color: var(--white);
  }
}
@media (prefers-contrast: more) {
  .btn {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--black);
  }
}

.btn-v2:link, .btn-v2:visited {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 135px;
  flex-shrink: 0;
  height: 70px;
  padding: 0 40px;
  margin: 20px 0;
  box-sizing: border-box;
  border-radius: 42px;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  color: var(--indigo);
  background-color: var(--white);
  font-family: arial, sans-serif;
}
.btn-v2.center {
  margin-left: auto;
  margin-right: auto;
}
.btn-v2.outlined {
  border: 2px solid;
  border-color: var(--white);
  color: var(--white);
  background-color: transparent;
  padding: 0 20px;
}
@media (hover: hover) {
  .btn-v2 {
    transition: 0.3s;
  }
  .btn-v2:hover {
    border-color: var(--indigo);
    background-color: var(--indigo);
    color: var(--white);
  }
}
@media (prefers-contrast: more) {
  .btn-v2 {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--black);
  }
}

.btn-v2.variant-secondary:link, .btn-v2.variant-secondary:visited {
  color: var(--white);
  background-color: var(--indigo);
}
.btn-v2.variant-secondary:hover {
  background-color: var(--white);
  color: var(--indigo);
  outline: 1px solid var(--indigo);
}
.btn-v2.variant-secondary:active {
  color: var(--white);
  background-color: var(--indigo);
}

.btn-v2.variant-transparent {
  color: var(--indigo);
  background: none;
  border: 1px solid var(--indigo);
}
.btn-v2.variant-transparent:hover {
  background-color: var(--indigo);
  color: var(--white);
}
.btn-v2.variant-transparent:active {
  color: var(--indigo);
  background: none;
  border: 1px solid var(--indigo);
}
.btn-v2.variant-transparent:focus {
  color: var(--indigo);
  background: none;
  border: 1px solid var(--indigo);
}

.btn-v2.variant-magenta:link, .btn-v2.variant-magenta:visited {
  color: var(--white);
  background-color: var(--magenta);
}
.btn-v2.variant-magenta:hover {
  background-color: var(--white);
  color: var(--magenta);
  outline: 1px solid var(--magenta);
}
.btn-v2.variant-magenta:active {
  color: var(--white);
  background-color: var(--magenta);
}

.custom-card {
  display: flex;
  gap: 30px;
  flex-direction: column;
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  .custom-card {
    flex-direction: row;
    align-items: flex-start;
  }
  .custom-card:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 992px) {
  .custom-card {
    gap: 60px;
  }
}
.custom-card .eyebrow-gradient {
  width: 100%;
  max-width: 460px;
}
.custom-card img,
.custom-card video {
  min-width: 0;
}

@media screen and (min-width: 768px) {
  .content-container:has(.custom-card:nth-child(4)) .custom-card:nth-of-type(even) {
    flex-direction: row;
  }
  .content-container:has(.custom-card:nth-child(4)) .custom-card:nth-of-type(odd) {
    flex-direction: row-reverse;
  }
}
.video {
  position: relative;
  overflow: hidden;
  width: 90%;
}

.video:after {
  display: block;
  content: "";
  padding-top: 56.25%;
}

.video img {
  position: absolute;
  z-index: 9;
  opacity: 1;
  transition: 0.3s;
  transform: scale(1.01);
}

iframe.tapped + img {
  opacity: 0;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.image-hover {
  position: relative;
  width: 100%;
  min-width: 0;
  cursor: pointer;
}
.image-hover img:last-of-type {
  display: none;
}
@media (hover: hover) {
  .image-hover:hover img:first-of-type, .image-hover:hover:after {
    display: none;
  }
  .image-hover:hover img:last-of-type {
    display: block;
  }
  .image-hover:after {
    position: absolute;
    display: block;
    content: "";
    width: 280px;
    height: 61px;
    top: 10px;
    left: 10px;
    right: auto;
    bottom: auto;
    background-image: url(/content/dam/embecta/na/icon-hover.png);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
  }
}
@media (hover: none) {
  .image-hover {
    margin-bottom: 25px;
  }
  .image-hover.tapped img:first-of-type {
    display: none;
  }
  .image-hover.tapped:after {
    opacity: 0.4;
  }
  .image-hover.tapped img:last-of-type {
    display: block;
  }
  .image-hover:after {
    position: absolute;
    display: block;
    content: "";
    width: 255px;
    height: 61px;
    top: auto;
    left: 50%;
    right: auto;
    bottom: -70px;
    transform: translateX(-50%);
    background-image: url(/content/dam/embecta/na/icon-tap.png);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
  }
}

.injection-force-cta {
  width: 100%;
  max-width: 1300px;
  background-image: url(/content/dam/embecta/na/belly.png);
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  position: relative;
  padding: 20px;
  margin: 30px auto -80px;
}
@media screen and (min-width: 768px) {
  .injection-force-cta {
    background-position: -30%;
    padding: 50px;
    margin-top: 60px;
  }
}
@media screen and (min-width: 1100px) {
  .injection-force-cta {
    background-position: top left;
  }
}
.injection-force-cta:after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 15%, var(--indigo) 25%, var(--blue) 100%);
}
@media screen and (min-width: 768px) {
  .injection-force-cta:after {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 15%, var(--indigo) 40%, var(--blue) 100%);
  }
}
.injection-force-cta > .flex {
  position: relative;
  z-index: 9;
  width: 100%;
  max-width: 650px;
  margin-top: 70%;
}
@media screen and (min-width: 768px) {
  .injection-force-cta > .flex {
    margin: 0 0 0 auto;
  }
}
.injection-force-cta .heading2 {
  font-weight: 900;
  margin: 0;
}

.connect-cta {
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .connect-cta {
    height: 530px;
  }
}
@media screen and (min-width: 768px) {
  .connect-cta .content-container {
    max-width: 900px;
    margin: 0 50px 0 0;
    padding-left: 480px;
  }
}
@media screen and (max-width: 1200px) {
  .connect-cta .flex {
    flex-direction: column;
  }
}

.connect-icon {
  margin-bottom: 25px;
  left: -10px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .connect-icon {
    width: 500px;
    left: -70px;
    position: absolute;
    bottom: -50px;
    margin: 0;
  }
}

.quote-cta {
  width: 100%;
  max-width: 450px;
  background-image: linear-gradient(90deg, var(--indigo), var(--blue));
  box-sizing: border-box;
  margin: 80px auto -80px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .quote-cta {
    max-width: 1400px;
    height: 290px;
  }
}
.quote-cta:after {
  position: absolute;
  display: block;
  content: "";
  width: 760px;
  height: 290px;
  top: 0;
  left: -300px;
  right: auto;
  bottom: auto;
  background-image: url(/content/dam/embecta/na/belly-alt.png);
  background-size: contain;
}
@media screen and (min-width: 1200px) {
  .quote-cta:after {
    left: 0;
  }
}
.quote-cta > .flex {
  padding: 40px 25px 20px;
  box-sizing: border-box;
  margin-top: 280px;
}
@media screen and (min-width: 768px) {
  .quote-cta > .flex {
    margin-left: 480px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .quote-cta > .flex {
    padding: 80px 0 0;
    margin-left: 810px;
    margin-right: 40px;
  }
}

.hero {
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
}

.hero._autoshield {
  background-image: url(/content/dam/embecta/na/hero-autoshield.jpg);
}

.hero._couch {
  background-image: url(/content/dam/embecta/na/hero-couch.jpg);
}

.hero._forest {
  background-image: url(/content/dam/embecta/na/hero-forest.jpg);
}

.hero._kitchen {
  background-image: url(/content/dam/embecta/na/hero-kitchen.jpg);
}

.hero._injection {
  background-image: url(/content/dam/embecta/na/hero-injection.jpg);
}

.hero._living-room {
  background-image: url(/content/dam/embecta/na/hero-living-room.jpg);
}

.hero._nurse {
  background-image: url(/content/dam/embecta/na/hero-nurse.jpg);
}

.hero._pharmacy {
  background-image: url(/content/dam/embecta/na/hero-pharmacy.jpg);
}

.hero._park {
  background-image: url(/content/dam/embecta/na/hero-park.jpg);
}

.hero._park-de {
  background-image: url(/content/dam/embecta/na/hero-park-de.jpg);
}

.hero._park-alt {
  background-image: url(/content/dam/embecta/na/hero-park-alt.jpg);
}

.hero._table {
  background-image: url(/content/dam/embecta/na/hero-table.jpg);
}

.hero._park-fr {
  background-image: url(/content/dam/embecta/na/hero-park-fr.jpg);
}

.hero._park-alt-fr {
  background-image: url(/content/dam/embecta/na/hero-park-alt-fr.jpg);
}

.hero._asd-de {
  background-image: url(/content/dam/embecta/na/hero-asd-de.jpg);
}

.hero._pro-pt-de {
  background-image: url(/content/dam/embecta/na/hero-pro-pt-de.jpg);
}

.hero._pro-hcp-de {
  background-image: url(/content/dam/embecta/na/hero-pro-hcp-de.jpg);
}

.hero._park-ca {
  background-image: url(/content/dam/embecta/na/hero-park-ca.jpg);
}

.hero._park-alt-ca {
  background-image: url(/content/dam/embecta/na/hero-park-alt-ca.jpg);
}

.hero._autoshield-ca {
  background-image: url(/content/dam/embecta/na/hero-autoshield-ca.jpg);
}

.hero._forest-mx {
  background-image: url(/content/dam/embecta/na/hero-forest-mx.jpg);
}

.hero._kitchen-mx {
  background-image: url(/content/dam/embecta/na/hero-kitchen-mx.jpg);
}

.hero._forest-it {
  background-image: url(/content/dam/embecta/na/hero-forest-it.jpg);
}

.hero._forest-cn {
  background-image: url(/content/dam/embecta/na/hero-forest-cn.jpg);
}

.hero._autoshield-cn {
  background-image: url(/content/dam/embecta/na/hero-autoshield-cn.jpg);
}

.hero._living-room-cn {
  background-image: url(/content/dam/embecta/na/hero-living-room-cn.jpg);
}

.hero._kitchen-cn {
  background-image: url(/content/dam/embecta/na/hero-kitchen-cn.jpg);
}

.hero._park-us {
  background-image: url(/content/dam/embecta/na/hero-park-us.jpg);
}

.hero._autoshield-us {
  background-image: url(/content/dam/embecta/na/hero-autoshield-us.jpg);
}

.hero._asd-eu {
  background-image: url(/content/dam/embecta/na/hero-asd-eu.jpg);
}

.hero._forest-cn-alt {
  background-image: url(/content/dam/embecta/na/hero-forest-cn-alt.jpg);
}

.hero._forest-in {
  background-image: url(/content/dam/embecta/na/hero-forest-in.jpg);
}

.hero._living-room-in {
  background-image: url(/content/dam/embecta/na/hero-living-room-in.jpg);
}

.hero._javier {
  background-image: url(/content/dam/embecta/na/hero-javier.jpg);
}

.hero._products {
  background-image: url(/content/dam/embecta/na/hero-products.jpg);
}

.hero._forest-anz {
  background-image: url(/content/dam/embecta/na/hero-forest-anz.jpg);
}

.hero._autoshield-anz {
  background-image: url(/content/dam/embecta/na/hero-autoshield-anz.jpg);
}

.hero._forest-generic {
  background-image: url(/content/dam/embecta/na/hero-forest-generic.jpg);
}

.hero-product {
  position: relative;
  background-image: url(/content/dam/embecta/na/packaging/hero-product-banner.jpg);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: cover;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 800px) {
  .hero-product {
    height: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .hero-product {
    height: 400px;
  }
}
.hero-product img {
  position: absolute;
  top: 0;
  right: -20px;
  height: 200px;
}
@media screen and (min-width: 800px) {
  .hero-product img {
    right: -75px;
    height: 400px;
  }
}
@media screen and (min-width: 1200px) {
  .hero-product img {
    height: 500px;
    right: 0;
  }
}
@media screen and (min-width: 1400px) {
  .hero-product img {
    height: 600px;
  }
}
.hero-product p {
  font-size: 32px;
  line-height: 38px;
  font-weight: 900;
  color: var(--white);
  margin: 210px 0 30px;
}
@media screen and (min-width: 800px) {
  .hero-product p {
    margin: 0;
    font-size: 40px;
    line-height: 46px;
  }
}
@media screen and (min-width: 992px) {
  .hero-product p {
    font-size: 60px;
    line-height: 65px;
  }
}
.hero-product span {
  line-height: 90px;
}

.hero-curve {
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(/content/dam/embecta/na/hero-curve-mobile.png);
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 16.5vh;
  padding: 70px 0 50px;
}
@media screen and (min-width: 768px) {
  .hero-curve {
    background-image: url(/content/dam/embecta/na/hero-curve-desktop.png);
    width: 550px;
    margin-top: 0;
    padding: 0;
  }
}
@media screen and (min-width: 1600px) {
  .hero-curve {
    width: 700px;
  }
}
@media screen and (min-width: 1800px) {
  .hero-curve {
    width: 800px;
  }
}
.hero-curve .content-container {
  max-width: 450px;
}

.hero,
.hero-curve {
  background-position: top center;
}
@media screen and (min-width: 768px) {
  .hero,
  .hero-curve {
    background-position: center right;
    height: 400px;
  }
}
@media screen and (min-width: 1200px) {
  .hero,
  .hero-curve {
    height: 550px;
  }
}

.icons {
  display: flex;
  justify-content: space-evenly;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .icons {
    flex-direction: column;
  }
}
.icons div {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 15px;
  margin: 0px 5px;
}
.icons img {
  width: 180px;
  height: 180px;
}
.icons p {
  text-align: center;
}

.icons .subhead {
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  color: #2E008B;
}
.icons .subcopy {
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: #201547;
}

#overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
#overlay.hidden {
  pointer-events: all;
  opacity: 1;
}

#modalContainer {
  position: absolute;
  z-index: 99999999;
}

.modal-item {
  position: fixed;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  width: 95vw;
  max-width: 590px;
  box-sizing: border-box;
  border-radius: 10px;
  max-height: 85vh;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.modal-item.hidden {
  pointer-events: all;
  opacity: 1;
  top: 50%;
}
.modal-item > div {
  overflow: auto;
  max-height: 85vh;
}

.close {
  position: absolute;
  cursor: pointer;
  top: -65px;
  right: 12px;
  font-size: 45px;
  font-weight: 300;
  font-family: system-ui;
  transform: rotate(45deg);
  color: var(--indigo);
}

.showcase {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  padding: 80px 0;
}
@media screen and (max-width: 992px) {
  .showcase {
    flex-direction: column;
  }
}

.showcase-feed {
  width: 100%;
  max-width: 460px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.compatibility-table {
  border-collapse: collapse;
}
.compatibility-table th {
  background-color: var(--indigo);
  border-radius: 10px 10px 0 0;
}
.compatibility-table .heading3 {
  color: var(--white);
  padding-top: 15px;
}
.compatibility-table .copy,
.compatibility-table .footnote {
  margin: 0;
}
.compatibility-table td {
  border: 1px solid var(--grey);
  padding: 15px 10px;
}
.compatibility-table td:first-of-type {
  width: 50%;
  max-width: 150px;
}
.compatibility-table tr:first-child th {
  border-top: 0;
}
.compatibility-table tr:last-child td {
  border-bottom: 0;
}
.compatibility-table tr td:first-child, .compatibility-table tr th:first-child {
  border-left: 0;
}
.compatibility-table tr td:last-child, .compatibility-table tr th:last-child {
  border-right: 0;
}

.container-product,
.faq-container-product {
  padding: 0 136.5px;
}
@media screen and (max-width: 992px) {
  .container-product,
  .faq-container-product {
    padding: 0 3%;
  }
}

.product-introdution.container-product {
  padding: 220px 136.5px 0 85px;
  margin-left: auto;
  margin-right: auto;
}
.product-introdution.container-product .flex {
  justify-content: center;
}
@media screen and (max-width: 1400px) {
  .product-introdution.container-product {
    padding: 220px 5% 0 5%;
  }
}
@media screen and (max-width: 992px) {
  .product-introdution.container-product {
    padding: 80px 3% 0 3%;
  }
}
@media screen and (min-width: 1401px) {
  .product-introdution.container-product .product-description-wrapper {
    padding-left: 51.5px;
  }
}
@media screen and (min-width: 992px) {
  .product-introdution.container-product .product-description-wrapper .product-description-info {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .hero-product-content.container-product {
    padding: 0 20px 20px 20px;
  }
}

.product-portfolio .container-product {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 768px) {
  .container-product {
    padding-left: 63px;
    padding-right: 63px;
  }
}

.faq-container-product {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (min-width: 992px) {
  .faq-container-product {
    flex-direction: row;
    align-items: flex-start;
  }
}

.features-product.mobile {
  height: 793px;
}
.features-product.mobile .pen-needle-mobile {
  margin-top: 40px;
  margin-bottom: 20px;
}
.features-product.mobile .syringes-mobile {
  margin-top: 40px;
  margin-bottom: 20px;
}
.features-product.mobile .mobile-information.active {
  display: block;
}
.features-product.mobile .mobile-information {
  display: none;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.features-product.mobile .mobile-information .mobile-information-item {
  display: flex;
  align-items: center;
}
.features-product.mobile .mobile-information .mobile-information-item img {
  margin-right: 10px;
}
.features-product.mobile .mobile-information .mobile-information-item p {
  font-weight: 700;
}

.features-product {
  width: 100%;
  padding-bottom: 120px;
  background-image: url(/content/dam/embecta/na/features-patientes-products.jpg);
  background-repeat: no-repeat;
  background-position: 100% 20%;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .features-product {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .features-product {
    padding-top: 70px;
  }
}
@media screen and (max-width: 992px) {
  .features-product {
    background-image: url(/content/dam/embecta/na/features-patientes-products-mobile.jpg);
  }
}
.features-product .carousel .carousel-buttons-top {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .features-product .carousel .carousel-buttons-top {
    margin-top: 10px;
  }
}

.carousel {
  position: relative;
}

.image-container {
  width: 100%;
  display: flex;
}
.image-container .image {
  transition: visibility 0s, opacity 0.8s ease-in, opacity 0.8s ease-in-out;
  visibility: hidden;
  position: absolute;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .image-container .image {
    width: 800px;
    height: 333px;
  }
}
@media screen and (min-width: 1200px) {
  .image-container .image {
    width: 1200px;
    height: 500px;
  }
}
.image-container .image.active {
  opacity: 1;
  position: relative;
  visibility: visible;
}

.carousel .arrows .arrow-right, .carousel .arrows .arrow-left {
  width: 22px !important;
}
.carousel .arrows .arrow-right:active, .carousel .arrows .arrow-right:focus, .carousel .arrows .arrow-left:active, .carousel .arrows .arrow-left:focus {
  -webkit-tap-highlight-color: transparent;
}
.carousel .arrows .arrow-right svg:active, .carousel .arrows .arrow-right svg:focus, .carousel .arrows .arrow-left svg:active, .carousel .arrows .arrow-left svg:focus {
  -webkit-tap-highlight-color: transparent;
}

.features-product .arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  color: var(--white);
}
.features-product .arrow {
  fill: var(--white);
}
.features-product .arrow-inactive {
  opacity: 0.2;
}
.features-product .arrow-left {
  transform: rotate(-180deg);
  position: absolute;
  top: 0;
  left: 180px;
}
@media screen and (max-width: 1447px) {
  .features-product .arrow-left {
    left: 3.5vw;
  }
}
.features-product .arrow-right {
  position: absolute;
  top: 0;
  right: 180px;
}
@media screen and (max-width: 1447px) {
  .features-product .arrow-right {
    right: 3.5vw;
  }
}
.features-product .button-product.active {
  opacity: 1;
  background-color: var(--white);
}
.features-product .images-control {
  bottom: 10px;
  left: 50%;
}
@media screen and (max-width: 992px) {
  .features-product .images-control {
    top: 430px;
  }
}
@media screen and (max-width: 768px) {
  .features-product .images-control {
    top: 600px;
  }
}

@media screen and (max-width: 992px) {
  .product-introdution .arrow {
    display: none;
  }
}
.product-introdution #carousel1-autoplay {
  width: 55%;
}
@media screen and (max-width: 992px) {
  .product-introdution #carousel1-autoplay {
    width: 100%;
  }
}
.product-introdution .image-container {
  margin-bottom: 60px;
}
@media screen and (max-width: 1275px) {
  .product-introdution .image-container {
    margin-bottom: 0px;
    margin-top: 50px;
  }
}
.product-introdution .image {
  visibility: hidden;
  position: absolute;
  width: 672px;
  height: 403px;
}
@media screen and (max-width: 1609px) {
  .product-introdution .image {
    width: 500px;
    height: 300px;
  }
}
@media screen and (max-width: 1275px) {
  .product-introdution .image {
    width: 400px;
    height: 240px;
  }
}
@media screen and (max-width: 992px) {
  .product-introdution .image {
    width: 600px;
    height: 400px;
  }
}
@media screen and (max-width: 656px) {
  .product-introdution .image {
    width: 400px;
    height: 240px;
  }
}
@media screen and (max-width: 424px) {
  .product-introdution .image {
    width: 350px;
    height: 210px;
  }
}
.product-introdution .image.active {
  position: relative;
  visibility: visible;
}
.product-introdution .introduction-headline {
  box-sizing: border-box;
  padding-left: 23px;
  align-items: center;
  display: flex;
  flex-direction: column;
  vertical-align: middle;
  justify-content: center;
  width: 45%;
}
.product-introdution .introduction-headline p:nth-child(1) {
  margin-bottom: 20px;
}
.product-introdution .introduction-headline p:nth-child(2) {
  padding-right: 10px;
}
@media screen and (max-width: 992px) {
  .product-introdution .introduction-headline {
    width: 100%;
    margin-top: 70px;
  }
}
.product-introdution .product-description {
  margin-top: 120px;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 992px) {
  .product-introdution .product-description {
    margin-top: 10px;
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 992px) {
  .product-introdution .product-description {
    width: 100%;
  }
}
@media screen and (min-width: 1700px) {
  .product-introdution .product-description {
    width: 1323px;
  }
}
.product-introdution .product-description .product-benefits-bar {
  width: 100%;
  display: flex;
  gap: 50px;
  background-color: var(--magenta);
  justify-content: center;
  border-radius: 24px;
  padding: 28px 2%;
  justify-content: space-evenly;
}
@media screen and (max-width: 1287px) {
  .product-introdution .product-description .product-benefits-bar {
    gap: 30px;
  }
}
@media screen and (max-width: 992px) {
  .product-introdution .product-description .product-benefits-bar {
    padding: 20px 0;
    margin-left: auto;
    margin-right: auto;
  }
}
.product-introdution .product-description .product-benefits-bar p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(18px, 2vw, 27px);
}
@media screen and (max-width: 852px) {
  .product-introdution .product-description .product-benefits-bar p {
    align-items: center;
    padding-left: 20px;
  }
}
@media screen and (max-width: 852px) {
  .product-introdution .product-description .product-benefits-bar {
    gap: 10px;
    flex-direction: column;
    vertical-align: center;
  }
}
.product-introdution .product-description .product-benefits-bar .product-description-icon {
  width: 37.02px;
}
@media screen and (max-width: 1458px) {
  .product-introdution .product-description .product-benefits-bar .product-description-icon {
    width: 30px;
  }
}
@media screen and (max-width: 852px) {
  .product-introdution .product-description .product-benefits-bar .product-description-icon {
    width: 16px;
  }
}
@media screen and (max-width: 992px) {
  .product-introdution .product-description {
    flex-direction: column;
    justify-content: center;
    padding: 28px 4% 28px 4%;
  }
}
.product-introdution .arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  color: var(--copy);
}
.product-introdution .arrow {
  fill: var(--copy);
}
.product-introdution .arrow-inactive {
  opacity: 0.2;
}
.product-introdution .arrow-left {
  transform: rotate(-180deg);
  position: absolute;
  top: 0;
  left: 20px;
}
@media screen and (max-width: 1059px) {
  .product-introdution .arrow-left {
    left: 10px;
  }
}
.product-introdution .arrow-right {
  position: absolute;
  top: 0;
  right: 35px;
}
@media screen and (max-width: 1059px) {
  .product-introdution .arrow-right {
    right: 10px;
  }
}
@media screen and (max-width: 992px) {
  .product-introdution .arrow-left {
    transform: rotate(-180deg);
    position: absolute;
    top: 0;
    left: -10%;
  }
  .product-introdution .arrow-right {
    position: absolute;
    top: 0;
    right: -3%;
  }
}
.product-introdution .button-product.active {
  opacity: 1;
  background-color: var(--copy);
}
.product-introdution .images-top-controll {
  margin-top: 50px;
}
.product-introdution .images-control {
  bottom: -30px;
  left: 50%;
}

.arrow {
  background: none;
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.images-control {
  position: absolute;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.button-product {
  width: 32px;
  height: 4px;
  background-color: var(--gray-300);
  border: none;
  cursor: pointer;
  opacity: 0.5;
  border-radius: 5px;
}

.images-top-controll {
  width: 288px;
  height: 55px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 60px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .images-top-controll {
    width: 280px;
  }
}

.button-top {
  border-radius: 60px;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  color: var(--white);
  cursor: pointer;
}
.button-top:active, .button-top:focus {
  -webkit-tap-highlight-color: transparent;
}

.button-top-active {
  color: var(--indigo);
  background-color: var(--white);
}

.left:active,
.right:active,
.left:focus,
.right:focus {
  outline: none;
  background: none;
}

.product-portfolio {
  padding-top: 120px;
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .product-portfolio {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .product-portfolio .container-product {
    padding-left: 4%;
    padding-right: 4%;
  }
}
.product-portfolio .container-product .container-title {
  display: block;
  max-width: 750px;
  margin: 0 auto 35px;
}
@media screen and (min-width: 768px) {
  .product-portfolio .container-product .container-title {
    margin: 0 auto 70px;
  }
}

.reference-bar {
  margin-top: 70px;
  display: flex;
  border: 1px solid var(--indigo);
  justify-content: space-between;
  border-radius: 24px;
  padding: 10px 60px;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 992px) {
  .reference-bar {
    flex-direction: column;
    gap: 0;
    padding: 10px 20px;
  }
  .reference-bar .btn-v2 {
    padding: 0 20px;
  }
}
.reference-bar .reference-bar-content {
  font-size: 24px;
  font-weight: 600;
  color: var(--indigo);
  width: 100%;
}

.span-round-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: none;
}

@media screen and (max-width: 992px) {
  .conditional-br::after {
    content: "\a";
    white-space: pre;
  }
}

.hcp-product-contact-us {
  box-sizing: border-box;
  background-image: url(/content/dam/embecta/na/hcp-product-contact-us.png);
  background-repeat: no-repeat;
  background-position: 100% 20%;
  background-size: cover;
  padding-top: 300px;
  padding-bottom: 80px;
  display: flex;
  justify-content: center;
  vertical-align: middle;
  flex-direction: column;
  align-items: center;
}
.hcp-product-contact-us p {
  margin-top: 0;
  margin-bottom: 10px;
}
.hcp-product-contact-us a {
  min-width: 200px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .hcp-product-contact-us a {
    width: 240px;
  }
}
@media screen and (max-width: 768px) {
  .hcp-product-contact-us {
    padding-left: 4%;
    padding-right: 4%;
    background-image: url(/content/dam/embecta/na/hcp-product-contact-us-mobile.png);
    background-position: 100% 100%;
    background-size: 130% 100%;
    padding-bottom: 60px;
    padding-top: 130px;
  }
  .hcp-product-contact-us p {
    text-align: center;
  }
}

.accordion-item-faq {
  display: block;
  margin-bottom: 10px;
  transition: border-color 0.3s ease;
  border-bottom: 2px solid;
  border-image: linear-gradient(to right, #bb16a3, #ff6a39) 1;
}

.accordion-item-faq .accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
}

.accordion-item-faq input[type=checkbox] {
  display: none;
}

.accordion-arrow svg {
  font-size: 18px;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.accordion-item-faq input[type=checkbox]:checked + .accordion-title .accordion-arrow svg {
  transform: rotate(270deg);
}

.accordion-content {
  width: 100%;
  display: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-top: 0;
}
@media screen and (min-width: 992px) {
  .accordion-content {
    padding: 0 15px;
  }
}

.accordion-item-faq input[type=checkbox]:checked + .accordion-title + .accordion-content {
  display: block;
}

.product-faq-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 52px;
  color: var(--indigo);
}

.product-faq {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .product-faq {
    padding-top: 20px;
  }
}
.product-faq .faq-title {
  width: 30%;
}
.product-faq .faq-title span {
  margin: 0;
  width: 370px;
  display: inline-block;
}
@media screen and (max-width: 1440px) {
  .product-faq .faq-title span {
    width: 100%;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  .product-faq .faq-title span {
    width: 100%;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 992px) {
  .product-faq .faq-title {
    width: 100%;
    text-align: center;
  }
}
.product-faq .accordion-container {
  display: block;
  width: 70%;
  padding-left: 80px;
}
@media screen and (max-width: 992px) {
  .product-faq .accordion-container {
    width: 100%;
    padding-left: 0;
  }
}

.educational-resources {
  background: linear-gradient(to left, rgba(209, 204, 189, 0.4), rgba(209, 204, 189, 0.2), rgba(255, 255, 255, 0.2));
  padding: 0 2%;
}
@media screen and (max-width: 768px) {
  .educational-resources .educational-resources-title {
    padding: 0 2%;
  }
}
.educational-resources .container-product {
  padding-left: 0;
  padding-right: 0;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .educational-resources .container-product {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .educational-resources .container-product .container-title {
    padding: 0 50px;
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .educational-resources .post-container-link-space {
    padding-bottom: 77px;
  }
}
@media screen and (max-width: 992px) {
  .educational-resources .post-container-link-space {
    padding-bottom: 20px;
  }
}

.hcp.posts-section .post-card {
  min-height: 592px;
}
@media screen and (max-width: 768px) {
  .hcp.posts-section .post-card {
    min-height: 500px;
  }
}

.posts-section {
  /* Post card style */
  /* Hover effect */
  /* Post image styling */
  /* Title styling */
  /* Content styling */
  /* CTA link */
}
.posts-section .cta-learn-more-arrow {
  fill: var(--indigo);
}
.posts-section .posts-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 80px;
  padding: 0 40px;
  gap: 10px;
}
@media screen and (min-width: 1200px) {
  .posts-section .posts-container {
    justify-content: center;
    gap: 20px;
  }
}
.posts-section .post-card {
  min-width: 350px;
  max-width: 400px;
  min-height: 520px;
  border: double 4px transparent;
  border-radius: 10px;
  text-align: left;
  position: relative;
  overflow: hidden;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-image: linear-gradient(white, white), radial-gradient(circle at top left, var(--indigo), var(--indigo));
  display: flex;
  flex-direction: column;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s ease;
}
@media screen and (min-width: 992px) {
  .posts-section .post-card {
    width: 400px;
  }
}
.posts-section .post-card:hover {
  background-image: linear-gradient(white, white), radial-gradient(circle at top left, #bb16a3, #ff6a39);
  -webkit-box-shadow: 0px 1px 10px 0.5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 1px 10px 0.5px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 1px 10px 0.5px rgba(0, 0, 0, 0.75);
}
.posts-section .post-image {
  width: 100%;
  height: 245px;
  position: relative;
  top: -3px;
  left: 0;
  object-fit: cover;
  object-position: center; /* Centers the image if the aspect ratio doesn't match */
  border-radius: 10px 10px 0 0;
}
.posts-section .post-title {
  font-weight: 700;
  color: var(--indigo);
}
.posts-section .post-content {
  font-weight: 400;
  color: var(--copy);
  margin-bottom: 15px;
}
.posts-section .post-container {
  padding: 10px 30px 34px 30px;
  flex-grow: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 20px;
}
.posts-section .cta-learn-more {
  color: var(--indigo);
  text-decoration: none;
  font-weight: 700;
  display: flex;
  vertical-align: middle;
}
.posts-section .cta-learn-more svg {
  margin-left: 20px;
  transition: margin-left 1s ease;
}
.posts-section .cta-learn-more-loadbar {
  display: block;
  margin-top: 10px;
  width: 0px;
  height: 6px;
  border-radius: 8px;
  background-image: linear-gradient(to right, #bb16a3, #ff6a39);
  transition: width 1s ease;
}
.posts-section .cta-wrapper:hover .cta-learn-more-loadbar {
  width: 190px;
}
.posts-section .cta-wrapper:hover .cta-learn-more svg {
  margin-left: 50px;
}

.background-gradient-home {
  position: relative;
  background: linear-gradient(to left, rgba(209, 204, 189, 0.2), rgba(255, 255, 255, 0.2), rgba(209, 204, 189, 0.1)) !important;
}

.hero-home .hero-home-video {
  position: relative;
  height: 826px;
  width: 100%;
}
.hero-home .hero-home-video #background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Faz o vídeo cobrir toda a área sem distorção */
  z-index: -1; /* Coloca o vídeo atrás do conteúdo */
}
.hero-home .hero-home-video .hero-home-video-content {
  max-width: 790px;
  min-height: 600px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hero-home .hero-home-video .hero-home-video-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 4%;
    padding-right: 4%;
  }
}
.hero-home .subhero-home {
  position: relative;
  z-index: 2;
  width: 100%;
  background-image: url(/content/dam/embecta/na/subhero-home-v2.png);
  background-size: cover;
  background-position: 100% 0%;
  margin-top: -180px;
  padding-top: 126px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .hero-home .subhero-home {
    padding-top: 103px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 450px) {
  .hero-home .subhero-home {
    background-image: url(/content/dam/embecta/na/subhero-home-v2-mobile.png);
  }
}
@media screen and (min-width: 1700px) {
  .hero-home .subhero-home {
    margin-top: -200px;
  }
}
.hero-home .subhero-home .subhero-home-container {
  padding-left: 260px;
  padding-right: 260px;
  position: inherit;
}
@media screen and (max-width: 768px) {
  .hero-home .subhero-home .subhero-home-container {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media screen and (min-width: 1400px) {
  .hero-home .subhero-home .subhero-home-container {
    padding-left: 180px;
    padding-right: 180px;
  }
}

.learn-about-our-products {
  position: relative;
  padding: 120px 80px;
}
@media screen and (max-width: 768px) {
  .learn-about-our-products {
    padding-left: 2%;
    padding-right: 2%;
  }
}
.learn-about-our-products .container-v2 {
  padding-left: 140px;
  padding-right: 140px;
}
.learn-about-our-products .content {
  position: relative;
  display: flex;
}
@media screen and (max-width: 1200px) {
  .learn-about-our-products .content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.learn-about-our-products .content img {
  width: 426px;
  max-width: none;
}
@media screen and (max-width: 426px) {
  .learn-about-our-products .content img {
    width: 325px;
  }
}
.learn-about-our-products .content .learn-about-cta {
  padding-left: 40px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .learn-about-our-products .content .learn-about-cta {
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .learn-about-our-products .content .learn-about-cta .container-v2 {
    padding-left: 2%;
    padding-right: 2%;
  }
}
.learn-about-our-products .content .learn-about-cta .content {
  display: flex;
  flex-direction: column;
}
.learn-about-our-products .content .learn-about-cta .content a {
  max-width: 435px;
}
@media screen and (max-width: 768px) {
  .learn-about-our-products .content .learn-about-cta .content {
    width: 100%;
  }
  .learn-about-our-products .content .learn-about-cta .content a {
    max-width: 340px;
  }
}

.hero-home-2 {
  height: 701px;
  background-image: url(/content/dam/embecta/na/hero-home-2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 100% 60%;
}
@media screen and (max-width: 768px) {
  .hero-home-2 {
    background-position: 50% 60%;
  }
}
.hero-home-2 .container-v2 {
  padding-top: 199px;
}
.hero-home-2 .container-v2 .content {
  max-width: 650px;
}
.hero-home-2 .container-v2 .content a {
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  .hero-home-2 .container-v2 .content {
    text-align: center;
    width: 100%;
  }
  .hero-home-2 .container-v2 .content a {
    max-width: 370px;
    white-space: pre-wrap;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    line-height: 28px;
  }
}

.message-cta {
  position: relative;
  height: 35vw;
  background-image: url(/content/dam/embecta/na/home-background-section.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 100% 60%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 450px) {
  .message-cta {
    height: 804px;
  }
}
@media screen and (max-width: 992px) {
  .message-cta .container-v2 {
    text-align: left;
    margin-right: auto;
    padding-left: 80px;
    padding-right: 0;
  }
}
@media screen and (max-width: 450px) {
  .message-cta .container-v2 p {
    position: absolute;
    top: 25px;
    left: 13vw;
    z-index: 1;
  }
}
.message-cta img.desktop {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 41vw;
  display: none;
}
@media screen and (min-width: 450px) {
  .message-cta img.desktop {
    display: block;
  }
}
.message-cta img.mobile {
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: none;
}
@media screen and (max-width: 450px) {
  .message-cta img.mobile {
    display: block;
  }
}

.home-posts {
  background-image: url(/content/dam/embecta/na/home-posts-background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 100% 60%;
}
@media screen and (max-width: 768px) {
  .home-posts {
    padding-top: 220px;
    background-image: none;
  }
}
.home-posts .container-v2 {
  padding: 80px 2%;
}
.home-posts .container-v2 .post-container {
  padding: 40px 20px 20px 30px;
}
.home-posts .container-v2 .post-card {
  min-height: 475px;
  max-width: 400px;
}
.home-posts .container-v2 .post-card .post-title {
  margin-block-end: 0;
  min-height: 117px;
  margin: 0;
}
.home-posts .container-v2 .post-card .post-content {
  padding-top: 20px;
}
.home-posts .container-v2 .post-card .cta-learn-more {
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .home-posts .container-v2 {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
}
.home-posts a {
  max-width: 287px;
}

.home-sect-2 {
  /*max-width:530px;*/
}
@media screen and (max-width: 450px) {
  .home-sect-2 {
    max-width: 330px !important;
  }
}

.home-posts .post-title {
  font-size: 24px;
}
.home-posts .post-content {
  font-size: 20px;
}
.home-posts .cta-learn-more {
  font-size: 24px;
}

.hcp-care {
  background-image: url(/content/dam/embecta/na/hcp-product-care-bg.jpg);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1400px) {
  .hcp-care {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 1400px) {
  .hcp-care .container-product {
    padding-left: 2%;
    padding-right: 2%;
  }
}
.hcp-care .post-container {
  display: flex;
  gap: 30px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .hcp-care .post-container {
    flex-direction: column;
  }
}
.hcp-care .post-container .post-card {
  width: 620px;
  border: 2px solid var(--indigo);
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  background-color: #ffffff;
}
@media screen and (max-width: 992px) {
  .hcp-care .post-container .post-card {
    width: 80vw;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 450px) {
  .hcp-care .post-container .post-card {
    width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1200px) {
  .hcp-care .post-container .post-card {
    width: 620px;
  }
}
.hcp-care .post-container .post-card .post-card-box .post-image {
  width: 48px;
  height: 48px;
}
@media screen and (max-width: 768px) {
  .hcp-care .post-container .post-card .post-card-box .post-image {
    margin-top: 6px;
    width: 24px;
    height: 24px;
  }
}
.hcp-care .post-container .post-card .post-card-box .headline {
  display: flex;
}
.hcp-care .post-container .post-card .post-card-box .headline p {
  text-align: left;
  padding-left: 15px;
}
.hcp-care .post-container .post-card .post-card-box .hcp-care-list {
  text-align: left;
  padding-left: 95px;
}
@media screen and (max-width: 992px) {
  .hcp-care .post-container .post-card .post-card-box .hcp-care-list {
    padding-left: 60px;
  }
}
.hcp-care .post-container .post-card .post-card-box .hcp-care-list p {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 27.5px;
}
.hcp-care .post-container .post-card .post-card-box .post-title {
  text-align: left;
  padding-left: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 6px 6px 0 0;
}
@media screen and (max-width: 768px) {
  .hcp-care .post-container .post-card .post-card-box .post-title {
    padding-top: 20px;
  }
}
.hcp-care .post-container .post-card .post-card-box .post-title.var-indigo {
  background: linear-gradient(90deg, #2D0F8B 0%, #306DD6 100%);
}
.hcp-care .post-container .post-card .post-card-box .post-title.var-pink {
  background: linear-gradient(90deg, #BB16A3 0%, #FF6A39 100%);
}
.hcp-care .post-container .post-card .post-card-box .content {
  padding: 40px 30px;
}

.relative-page {
  position: relative;
}

.sticky-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: linear-gradient(45deg, #bb16a3 45%, #ff6a39 100%);
  color: white;
  padding: 15px 20px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.25);
  position: relative;
  box-sizing: border-box;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sticky-popup img {
    width: 56px;
    height: 56px;
  }
}
.sticky-popup .heading2 {
  color: white;
  margin: 0;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .sticky-popup .heading2 {
    font-size: 18px;
    line-height: 22px;
  }
}
.sticky-popup .close-btn {
  align-self: flex-start;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .sticky-popup .close-btn {
    top: 11px;
    right: 24px;
  }
}
@media screen and (max-width: 768px) {
  .sticky-popup .close-btn svg {
    width: 11px;
    height: 11px;
  }
}
.sticky-popup .btn-v2 {
  font-size: 22px;
  margin: 0;
  height: inherit;
  padding: 10px 30px;
}
@media screen and (max-width: 768px) {
  .sticky-popup .btn-v2 {
    /*display: none;*/
    color: #ffffff;
    font-size: 12px;
    padding: unset;
    border-radius: unset;
    min-width: auto;
    background-color: transparent;
    text-decoration: underline;
  }
 
  .sticky-popup .btn-v2:hover {
  background-color: transparent !important;
  }
}

.product-new-look {
  position: relative;
  padding: 4% 6%;
  overflow: hidden;
}
.product-new-look::after {
  position: absolute;
  top: 0;
  right: 1.5%;
  content: "";
  background: linear-gradient(90deg, rgba(209, 204, 189, 0.25) 20%, rgb(255, 255, 255) 100%);
  border-top-left-radius: 100%;
  z-index: -1;
  width: 52%;
  height: 160%;
}
@media screen and (max-width: 992px) {
  .product-new-look::after {
    background: linear-gradient(90deg, rgba(209, 204, 189, 0.25) 20%, rgb(255, 255, 255) 100%);
    top: 0;
    right: 7%;
    width: 100%;
    height: 160%;
  }
}
@media screen and (min-width: 992px) {
  .product-new-look {
    padding: 4% 10%;
  }
}
.product-new-look__container {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .product-new-look__container {
    display: flex;
    justify-content: center;
  }
}
.product-new-look__image-container {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .product-new-look__image-container {
    width: 50%;
  }
}
.product-new-look__img--mobile {
  width: 100%;
}
.product-new-look__img--desktop {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 550px;
}
.product-new-look__cta {
  width: 50%;
  display: flex;
  align-items: center;
}
.product-new-look__cta-block {
  height: 90%;
}
@media screen and (min-width: 992px) {
  .product-new-look__cta-block {
    padding-left: 2.5rem;
  }
}
.product-new-look__btn.btn-v2 {
  display: inline-block;
  height: auto;
  padding: 15px 40px;
  font-size: clamp(20px, 2vw, 24px);
}
.product-new-look__heading {
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.7;
  font-weight: 700;
}
.product-new-look__heading .heading-gradient-border {
  padding-bottom: 5px;
}
.product-new-look__heading .heading-gradient-border::after {
  width: calc(100% + 20px);
}
.product-new-look__text {
  margin-bottom: 0;
  font-size: clamp(20px, 2vw, 24px);
}

.product-new-look-home {
  position: relative;
  padding: 100px 4%;
  overflow: hidden;
}
.product-new-look-home::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #2D0F8B 20%, #306DD6 100%);
  z-index: -2;
}
@media screen and (min-width: 992px) {
  .product-new-look-home {
    padding: 100px;
  }
}
@media screen and (max-width: 550px) {
  .product-new-look-home {
    padding: 25px 0%;
  }
}
.product-new-look-home__container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 992px) {
  .product-new-look-home__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-new-look-home__image-container img {
  max-width: 548px;
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .product-new-look-home__image-container img {
    width: 90%;
  }
}

@media screen and (max-width: 992px) {
  .product-new-look-home__image-container {
    margin-bottom: 150px;
  }
}
.product-new-look-home__image-container::after {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: -50%;
  content: "";
  background: linear-gradient(90deg, rgb(209, 204, 189) 20%, rgb(255, 255, 255) 100%);
  border-radius: 100%;
  z-index: -1;
  width: 100%;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 992px) {
  .product-new-look-home__image-container::after {
    background: linear-gradient(90deg, rgb(209, 204, 189) 20%, rgb(255, 255, 255) 100%);
    transform: translate(-50%, 0%);
    height: 100%;
    width: inherit;
    top: -50%;
    left: 50%;
  }
}
.product-new-look-home__img {
  width: 100%;
}
.product-new-look-home__cta {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 550px) {
  .product-new-look-home__cta {
    text-align: center;
    margin: 20px;
  }
}

.product-new-look-home__cta-block {
  height: 90%;
}
@media screen and (min-width: 992px) {
  .product-new-look-home__cta-block {
    padding-left: 2.5rem;
  }
}
.product-new-look-home__btn.btn-v2 {
  display: inline-block;
  height: auto;
  padding: 15px 40px;
  font-size: clamp(20px, 2vw, 24px);
}
.product-new-look-home__heading {
  font-weight: 700;
  margin: 0 0 0.5em 0;
  color: var(--white);
}
.product-new-look-home__heading .heading-gradient-border {
  padding-bottom: 5px;
}
.product-new-look-home__heading .heading-gradient-border::after {
  width: calc(100% + 20px);
}
.product-new-look-home__text {
  color: var(--white);
  margin-bottom: 0;
}

.exit-modal {
  border: 1px solid gray;
  border-radius: 1rem;
  padding: 1rem;
  background: white;
  position: fixed;
  opacity: 0;
  left: -100vw;
  top: 50%;
  width: 100%;
  transition: opacity 300ms ease-in-out;
  max-width: 80%;
}
@media screen and (min-width: 480px) {
  .exit-modal {
    max-width: 30%;
  }
}
.exit-modal.open {
  opacity: 1;
  left: 50%;
  transform: translate(-50%, -50%);
}
.exit-modal .exit-modal-content {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.exit-modal .exit-modal-content h3 {
  margin-top: 0;
}
.exit-modal .exit-modal-content p {
  margin: 0;
}
.exit-modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-top: 2rem;
}
.exit-modal-actions button {
  cursor: pointer;
  border: 1px solid gray;
  background: white;
  padding: 0.3rem 0.5rem;
  border-radius: 0.5rem;
  color: black;
}
.exit-modal-actions button:hover {
  background: gray;
  border-color: white;
  color: white;
}

#ce-mark-new {
  max-height: 36px;
  margin-left: 20px;
}

@media (max-width: 767px) {
  #ce-mark-new {
    margin-top: 10px;
  }
}
/*# sourceMappingURL=style.css.map */
