@font-face {
  font-family: Inter;
  src: url("/assets/fonts/Inter-VariableFont_opsz.ttf");
  font-weight: 400; }
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-VariableFont_opsz.eot");
  src: url("/assets/fonts/Inter-VariableFont_opsz.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  font-stretch: normal; }
/*
  EX: 
  .container{
    @include vertical-align(".container-content");
  }
*/
/**
 * Reset some basic elements
 */
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0;
  padding: 0; }

*, *:before, *:after {
  box-sizing: border-box; }

/**
 * Basic styling
 */
body {
  font: 400 16px/1.5 Inter, Arial, sans-serif;
  color: #558F51;
  background-color: #ffffff;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "kern" 1;
  -moz-font-feature-settings: "kern" 1;
  -o-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal; }
  body.dark-mode {
    background-color: #558F51;
    color: #ffffff; }

/**
 * Set `margin-bottom` to maintain vertical rhythm
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure,
.highlight {
  margin-bottom: 15px; }

/**
 * Images
 */
img {
  max-width: 100%;
  vertical-align: middle; }

/**
 * Figures
 */
figure > img {
  display: block; }

figcaption {
  font-size: 14px; }

/**
 * Lists
 */
ul, ol {
  margin-left: 30px; }

li > ul,
li > ol {
  margin-bottom: 0; }

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400; }

/**
 * Links
 */
a {
  color: #558F51 !important;
  text-decoration: none; }
  a:visited {
    color: #385e35; }
  a:hover {
    color: #463A57;
    text-decoration: underline; }

/**
 * Blockquotes
 */
blockquote {
  color: #FAF8FF;
  border-left: 4px solid white;
  padding-left: 15px;
  font-size: 18px;
  letter-spacing: -1px;
  font-style: italic; }
  blockquote > :last-child {
    margin-bottom: 0; }

/**
 * Code formatting
 */
pre,
code {
  font-size: 15px;
  border: 1px solid white;
  border-radius: 3px;
  background-color: #eef; }

code {
  padding: 1px 5px; }

pre {
  padding: 8px 12px;
  overflow-x: auto; }
  pre > code {
    border: 0;
    padding-right: 0;
    padding-left: 0; }

sup {
  font-size: 50%;
  margin-left: 4px;
  letter-spacing: 2px;
  font-weight: 500; }

/**
 * Wrapper
 */
.wrapper {
  max-width: -webkit-calc(1262px - (30px * 2));
  max-width: calc(1262px - (30px * 2));
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px; }
  @media screen and (max-width: 800px) {
    .wrapper {
      max-width: -webkit-calc(1262px - (30px));
      max-width: calc(1262px - (30px));
      padding-right: 15px;
      padding-left: 15px; } }

/**
 * Clearfix
 */
.wrapper:after {
  content: "";
  display: table;
  clear: both; }

/**
 * Icons
 */
.icon > svg {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle; }
  .icon > svg path {
    fill: #FAF8FF; }

@font-face {
  font-family: HeadingNow;
  src: url("/assets/fonts/HeadingNow-85Medium.woff2"); }
/*body#body{
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999; }

#loader img {
  width: 100px;
  height: 100px; }

.container {
  max-width: 1262px;
  margin: 0 auto;
  padding: 0 15px; }

.row {
  display: flex; }
  .row.wrap {
    flex-wrap: wrap; }

.column {
  flex: 1 1 auto;
  max-width: 100%; }

.mobile-only {
  display: none; }
  @media screen and (max-width: 767px) {
    .mobile-only {
      display: flex; } }

.desktop-only {
  display: flex; }
  @media screen and (max-width: 767px) {
    .desktop-only {
      display: none; } }

h1 {
  font-size: 130px;
  line-height: 134px;
  letter-spacing: -0.02em;
  font-family: Inter;
  /*font-weight: 500;*/ }
  .fr h1 {
    font-size: 105px;
    line-height: 115px; }
  @media screen and (max-width: 1400px) {
    h1 {
      font-size: 70px;
      line-height: 75px; }
      .fr h1 {
        font-size: 70px;
        line-height: 75px; } }
  @media screen and (max-width: 767px) {
    h1 {
      font-size: 46px;
      line-height: 50px; }
      .fr h1 {
        font-size: 34px;
        line-height: 46px; } }

h2, .h2 {
  font-size: 40px;
  line-height: 45px;
  color: #558F51;
  font-family: Inter;
  font-weight: 500;
  margin: 0 0 24px 0; }
  @media screen and (max-width: 991px) {
    h2, .h2 {
      font-size: 25px;
      line-height: 28px; } }
  .dark-mode h2, .dark-mode .h2 {
    color: #ffffff; }

h3, .h3 {
  font-size: 32px;
  line-height: 42px;
  color: #558F51;
  font-family: Inter;
  font-weight: 400;
  font-stretch: expanded;
  margin: 0 0 18px 0; }
  @media screen and (max-width: 1400px) {
    h3, .h3 {
      font-size: 26px;
      line-height: 32px; } }
  @media screen and (max-width: 991px) {
    h3, .h3 {
      font-size: 22px;
      line-height: 28px; } }
  @media screen and (max-width: 767px) {
    h3, .h3 {
      font-size: 16px;
      line-height: 21px; } }
  .dark-mode h3, .dark-mode .h3 {
    color: #ffffff; }

p {
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  margin: 0 0 20px 0; }
  @media screen and (max-width: 991px) {
    p {
      font-size: 18px;
      line-height: 23px; } }
  @media screen and (max-width: 767px) {
    p {
      font-size: 16px;
      line-height: 20px; } }
  p:last-child {
    margin-bottom: 0; }

.button {
  font-size: 20px;
  line-height: 25px;
  border-radius: 50px;
  background-color: #558F51;
  color: #ffffff !important;
  font-family: Inter;
  font-weight: 400;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center; }
  @media screen and (max-width: 767px) {
    .button {
      font-size: 16px;
      line-height: 21px;
      padding: 16px 35px; } }
  @media screen and (max-width: 991px) {
    .button {
      font-size: 12px; } }
  .button:hover {
    text-decoration: none; }
  .button.yellow {
    background-color: #000000;
    color: #ffffff; }
  .button.blue {
    background-color: #5500FF;
    color: white !important; }
    .button.blue:hover {
      background-color: white !important;
      color: #5500FF !important;
      border-color: 1px #5500FF !important; }
  .button.white {
    background-color: #558F51;
    color: #5500FF; }
    .button.white:hover {
      background-color: #558F51 !important;
      color: #ffffff !important; }
  .button.italic {
    font-family: Inter;
    font-size: 16px;
    line-height: 22px; }
  .button.circle {
    border-radius: 100%; }
  .button.outline {
    color: #558F51;
    border: 1.5px solid #ffffff; }
    .button.outline:hover {
      background-color: #558F51 !important;
      color: #558F51 !important; }
    .button.outline.white {
      border-color: #ffffff; }
    .button.outline.dark-blue {
      border-color: #5500FF;
      color: #5500FF; }
      .button.outline.dark-blue:hover {
        background-color: #5500FF !important;
        color: #ffffff !important; }
      .dark-mode .button.outline.dark-blue {
        border-color: #ffffff;
        color: #ffffff; }
        .dark-mode .button.outline.dark-blue:hover {
          background-color: #ffffff !important;
          color: #558F51 !important; }
    .button.outline.black {
      border-color: #558F51;
      color: #558F51; }
      .button.outline.black:hover {
        background-color: transparent !important; }
      .dark-mode .button.outline.black {
        border-color: #ffffff; }

.pageWrapper {
  padding: 80px 0 16px; }
  @media screen and (max-width: 767px) {
    .pageWrapper {
      padding: 130px 0 30px; } }

.content-block.container {
  max-width: 1024px; }
.content-block h1 {
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 40px;
  font-weight: 400;
  font-stretch: expanded; }
  @media screen and (max-width: 767px) {
    .content-block h1 {
      font-size: 30px; } }
.content-block h2 {
  font-size: 32px;
  line-height: 42px;
  margin-top: 40px;
  margin-bottom: 24px;
  font-weight: 400;
  font-stretch: expanded;
  font-family: Inter; }
  @media screen and (max-width: 767px) {
    .content-block h2 {
      font-size: 24px;
      line-height: 1.3;
      margin-top: 30px;
      margin-bottom: 14px; } }
.content-block h3 {
  font-size: 22px;
  line-height: 29px;
  margin-bottom: 8px;
  font-weight: 400;
  font-stretch: expanded; }
  @media screen and (max-width: 767px) {
    .content-block h3 {
      font-size: 18px;
      line-height: 1.3; } }
.content-block h4 {
  font-size: 28px;
  line-height: 1.25;
  font-weight: 400;
  font-family: Inter;
  margin-bottom: 30px; }
  @media screen and (max-width: 1400px) {
    .content-block h4 {
      font-size: 22px; } }
  @media screen and (max-width: 991px) {
    .content-block h4 {
      font-size: 18px; } }
  @media screen and (max-width: 767px) {
    .content-block h4 {
      font-size: 16px; } }
.content-block h5 {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 400;
  font-family: Inter;
  margin-bottom: 30px; }
  @media screen and (max-width: 1400px) {
    .content-block h5 {
      font-size: 17px; } }
  @media screen and (max-width: 991px) {
    .content-block h5 {
      font-size: 14px;
      margin-bottom: 22px; } }
.content-block h6 {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 400;
  font-family: Inter;
  margin-bottom: 30px; }
  @media screen and (max-width: 991px) {
    .content-block h6 {
      font-size: 12px;
      margin-bottom: 22px; } }
.content-block ul li, .content-block ol li {
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  margin: 0 0 30px 0; }
  @media screen and (max-width: 991px) {
    .content-block ul li, .content-block ol li {
      font-size: 18px;
      line-height: 23px; } }
  @media screen and (max-width: 767px) {
    .content-block ul li, .content-block ol li {
      font-size: 16px;
      line-height: 20px;
      margin-bottom: 22px; } }
.content-block .style-none {
  list-style-type: none;
  margin: 0; }
.content-block p {
  margin-bottom: 24px; }
  @media screen and (max-width: 767px) {
    .content-block p {
      margin-bottom: 22px; } }
.content-block a {
  text-decoration: underline; }
  .content-block a:hover {
    text-decoration: none !important; }

.comingsoon {
  text-align: center;
  background-color: #DCDCDC; }
  .comingsoon h1 {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px; }
  .comingsoon h2 {
    text-align: center;
    font-size: 24px; }
    .comingsoon h2 strong {
      color: #5500FF;
      font-size: 40px; }

.local {
  background-color: #666666; }

/**
 * Syntax highlighting styles
 */
.highlight {
  background: #fff; }
  .highlighter-rouge .highlight {
    background: #eef; }
  .highlight .c {
    color: #998;
    font-style: italic; }
  .highlight .err {
    color: #a61717;
    background-color: #e3d2d2; }
  .highlight .k {
    font-weight: bold; }
  .highlight .o {
    font-weight: bold; }
  .highlight .cm {
    color: #998;
    font-style: italic; }
  .highlight .cp {
    color: #999;
    font-weight: bold; }
  .highlight .c1 {
    color: #998;
    font-style: italic; }
  .highlight .cs {
    color: #999;
    font-weight: bold;
    font-style: italic; }
  .highlight .gd {
    color: #000;
    background-color: #fdd; }
  .highlight .gd .x {
    color: #000;
    background-color: #faa; }
  .highlight .ge {
    font-style: italic; }
  .highlight .gr {
    color: #a00; }
  .highlight .gh {
    color: #999; }
  .highlight .gi {
    color: #000;
    background-color: #dfd; }
  .highlight .gi .x {
    color: #000;
    background-color: #afa; }
  .highlight .go {
    color: #888; }
  .highlight .gp {
    color: #555; }
  .highlight .gs {
    font-weight: bold; }
  .highlight .gu {
    color: #aaa; }
  .highlight .gt {
    color: #a00; }
  .highlight .kc {
    font-weight: bold; }
  .highlight .kd {
    font-weight: bold; }
  .highlight .kp {
    font-weight: bold; }
  .highlight .kr {
    font-weight: bold; }
  .highlight .kt {
    color: #458;
    font-weight: bold; }
  .highlight .m {
    color: #099; }
  .highlight .s {
    color: #d14; }
  .highlight .na {
    color: #008080; }
  .highlight .nb {
    color: #0086B3; }
  .highlight .nc {
    color: #458;
    font-weight: bold; }
  .highlight .no {
    color: #008080; }
  .highlight .ni {
    color: #800080; }
  .highlight .ne {
    color: #900;
    font-weight: bold; }
  .highlight .nf {
    color: #900;
    font-weight: bold; }
  .highlight .nn {
    color: #555; }
  .highlight .nt {
    color: #000080; }
  .highlight .nv {
    color: #008080; }
  .highlight .ow {
    font-weight: bold; }
  .highlight .w {
    color: #bbb; }
  .highlight .mf {
    color: #099; }
  .highlight .mh {
    color: #099; }
  .highlight .mi {
    color: #099; }
  .highlight .mo {
    color: #099; }
  .highlight .sb {
    color: #d14; }
  .highlight .sc {
    color: #d14; }
  .highlight .sd {
    color: #d14; }
  .highlight .s2 {
    color: #d14; }
  .highlight .se {
    color: #d14; }
  .highlight .sh {
    color: #d14; }
  .highlight .si {
    color: #d14; }
  .highlight .sx {
    color: #d14; }
  .highlight .sr {
    color: #009926; }
  .highlight .s1 {
    color: #d14; }
  .highlight .ss {
    color: #990073; }
  .highlight .bp {
    color: #999; }
  .highlight .vc {
    color: #008080; }
  .highlight .vg {
    color: #008080; }
  .highlight .vi {
    color: #008080; }
  .highlight .il {
    color: #099; }

body.fr_FR .hero-section--top .banner-title {
  font-size: 50px;
  line-height: 56px; }

@media screen and (max-width: 1400px) {
  body.fr_FR .hero-section--top .banner-title {
    font-size: 70px;
    line-height: 75px; } }
@media screen and (max-width: 767px) {
  body.fr_FR .hero-section--top {
    padding-top: 130px; }
    body.fr_FR .hero-section--top .banner-title {
      font-size: 40px;
      line-height: 50px; } }
.cta-app-store {
  background-color: #558F51;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: 17px;
  line-height: 24px;
  padding: 14px 15px 14px 30px;
  border-radius: 0px 9px 9px 0px;
  font-family: Inter;
  font-weight: 400; }
  .cta-app-store ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0 0 0 19px; }
    .cta-app-store ul li {
      padding-left: 16px;
      padding-right: 16px;
      border-left: 1px solid #ffffff; }

.scroll-cricle {
  width: 104px;
  height: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; }
  .scroll-cricle .cricle {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg); } }
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
.slick-dots-1 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  padding-top: 40px;
  align-items: center; }
  .slick-dots-1 li {
    margin: 0 7px; }
    @media screen and (max-width: 767px) {
      .slick-dots-1 li {
        margin: 0 5px; } }
    .slick-dots-1 li button {
      width: 15px;
      height: 15px;
      border-radius: 100%;
      display: block;
      overflow: hidden;
      text-indent: 1000px;
      background-color: #E2DCEB;
      padding: 0;
      border: 0;
      cursor: pointer; }
      @media screen and (max-width: 767px) {
        .slick-dots-1 li button {
          width: 6px;
          height: 6px; } }
    .slick-dots-1 li.slick-active button {
      background-color: #28a745; }

.slick-dots {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  padding-top: 40px;
  align-items: center; }
  .slick-dots li {
    margin: 0 7px; }
    @media screen and (max-width: 767px) {
      .slick-dots li {
        margin: 0 5px; } }
    .slick-dots li button {
      width: 15px;
      height: 15px;
      border-radius: 100%;
      display: block;
      overflow: hidden;
      text-indent: 1000px;
      background-color: #F4C196;
      padding: 0;
      border: 0;
      cursor: pointer; }
      @media screen and (max-width: 767px) {
        .slick-dots li button {
          width: 6px;
          height: 6px; } }
    .slick-dots li.slick-active button {
      background-color: #EA8939; }

.site-header {
  z-index: 10;
  padding: 50px 0px 20px 0px; }
  @media screen and (max-width: 991px) {
    .site-header {
      padding: 30px 0px 20px 0px; } }
  .site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .site-header .navigation {
    display: flex;
    align-items: center; }
  .site-header .nav {
    display: flex; }
  .site-header .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center; }
    @media screen and (max-width: 991px) {
      .site-header .nav-links {
        display: none;
        flex-direction: column;
        background-color: #f8f9fa;
        position: absolute;
        top: 91px;
        right: 0px;
        width: 100%;
        padding: 10px 20px; }
        .site-header .nav-links.active {
          display: flex; } }
  .site-header .nav-links a {
    text-decoration: none;
    font-size: 22px;
    color: #EA8939;
    padding: 0 6px;
    position: relative;
    font-weight: 500; }
    @media screen and (max-width: 767px) {
      .site-header .nav-links a {
        font-size: 18px;
        position: static; } }
  .site-header .nav-links li {
    color: #EA8939;
    display: inline-flex;
    align-items: center; }
    @media screen and (max-width: 991px) {
      .site-header .nav-links li {
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid #000000;
        width: 100%; } }
  .site-header .nav-links li:last-child {
    margin-left: 25px; }
    @media screen and (max-width: 991px) {
      .site-header .nav-links li:last-child {
        border-bottom: none;
        margin-left: 0px; } }
  .site-header .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none; }
    @media screen and (max-width: 991px) {
      .site-header .hamburger {
        display: flex;
        position: relative;
        z-index: 20; } }
  .site-header .hamburger span {
    width: 20px;
    height: 3px;
    background-color: #333;
    border-radius: 2px; }
  @media screen and (max-width: 1199px) {
    .site-header .header-left img {
      max-width: 250px; } }
  @media screen and (max-width: 767px) {
    .site-header .header-left img {
      max-width: 150px; } }
  .site-header .header-left .dark-img-mode {
    display: none; }
    .dark-mode .site-header .header-left .dark-img-mode {
      display: block; }
  .site-header .header-left .light-img-mode {
    display: block; }
    .dark-mode .site-header .header-left .light-img-mode {
      display: none; }
  .site-header .header-utility-link {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center; }
    .site-header .header-utility-link li {
      margin-left: 40px; }
      @media screen and (max-width: 767px) {
        .site-header .header-utility-link li {
          margin-left: 9px; } }
      .site-header .header-utility-link li:first-child {
        margin-left: 0; }
    .site-header .header-utility-link .theme-mode .button.circle {
      width: 40px;
      height: 40px;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      min-width: inherit; }
      @media screen and (max-width: 767px) {
        .site-header .header-utility-link .theme-mode .button.circle {
          width: 40px;
          height: 40px; } }
    @media screen and (max-width: 767px) {
      .site-header .header-utility-link .theme-mode .button img {
        max-height: 17px; } }
    .site-header .header-utility-link .theme-mode .button img.light-mode {
      display: none; }
    .site-header .header-utility-link .theme-mode .button img.dark-mode {
      display: block; }
    .site-header .header-utility-link .theme-mode span.light-mode {
      display: none; }
    .site-header .header-utility-link .theme-mode span.dark-mode {
      display: block; }

.scrolled {
  border-bottom: 1px solid #cdcdcd; }

.theme-text {
  display: none; }
  @media screen and (max-width: 767px) {
    .theme-text {
      display: inline-block;
      padding-left: 10px;
      font-size: 18px;
      font-weight: 500; }
      .theme-text .dark-mode .site-header .header-utility-link .theme-mode span.light-mode {
        display: block; }
      .theme-text .dark-mode .site-header .header-utility-link .theme-mode span.dark-mode {
        display: none; } }

.dark-mode .site-header .header-utility-link .theme-mode .button img.light-mode {
  display: block; }
.dark-mode .site-header .header-utility-link .theme-mode .button img.dark-mode {
  display: none; }

.hcp-site-header {
  z-index: 10;
  padding: 50px 0px 20px 0px; }
  @media screen and (max-width: 991px) {
    .hcp-site-header {
      padding: 30px 0px 20px 0px; } }
  .hcp-site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .hcp-site-header .navigation {
    display: flex;
    align-items: center; }
  .hcp-site-header .nav {
    display: flex; }
  .hcp-site-header .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    color: #EA8939 !important; }
    @media screen and (max-width: 991px) {
      .hcp-site-header .nav-links {
        display: none;
        flex-direction: column;
        background-color: #f8f9fa;
        position: absolute;
        top: 91px;
        right: 0px;
        width: 100%;
        padding: 10px 20px; }
        .hcp-site-header .nav-links.active {
          display: flex; } }
  .hcp-site-header .nav-links a {
    text-decoration: none;
    font-size: 22px;
    color: #EA8939 !important;
    top: 3px;
    right: 40px;
    padding: 0 6px;
    position: relative;
    font-weight: 500; }
    @media screen and (max-width: 767px) {
      .hcp-site-header .nav-links a {
        font-size: 18px; } }
  .hcp-site-header .nav-links li {
    color: #EA8939;
    display: inline-flex;
    align-items: center; }
    @media screen and (max-width: 991px) {
      .hcp-site-header .nav-links li {
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid #000000;
        width: 100%; } }
  .hcp-site-header .nav-links li:last-child {
    margin-left: 25px; }
    @media screen and (max-width: 991px) {
      .hcp-site-header .nav-links li:last-child {
        border-bottom: none;
        margin-left: 0px; } }
  .hcp-site-header .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none; }
    @media screen and (max-width: 991px) {
      .hcp-site-header .hamburger {
        display: flex;
        position: relative;
        z-index: 20; } }
  .hcp-site-header .hamburger span {
    width: 20px;
    height: 3px;
    background-color: #333;
    border-radius: 2px; }
  @media screen and (max-width: 1199px) {
    .hcp-site-header .header-left img {
      max-width: 250px; } }
  @media screen and (max-width: 767px) {
    .hcp-site-header .header-left img {
      max-width: 150px; } }
  .hcp-site-header .header-left .dark-img-mode {
    display: none; }
    .dark-mode .hcp-site-header .header-left .dark-img-mode {
      display: block; }
  .hcp-site-header .header-left .light-img-mode {
    display: block; }
    .dark-mode .hcp-site-header .header-left .light-img-mode {
      display: none; }
  .hcp-site-header .header-utility-link {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center; }
    .hcp-site-header .header-utility-link li {
      margin-left: 40px; }
      @media screen and (max-width: 767px) {
        .hcp-site-header .header-utility-link li {
          margin-left: 9px; } }
      .hcp-site-header .header-utility-link li:first-child {
        margin-left: 0; }
    .hcp-site-header .header-utility-link .theme-mode .button.circle {
      width: 40px;
      height: 40px;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      min-width: inherit; }
      @media screen and (max-width: 767px) {
        .hcp-site-header .header-utility-link .theme-mode .button.circle {
          width: 40px;
          height: 40px; } }
    @media screen and (max-width: 767px) {
      .hcp-site-header .header-utility-link .theme-mode .button img {
        max-height: 17px; } }
    .hcp-site-header .header-utility-link .theme-mode .button img.light-mode {
      display: none; }
    .hcp-site-header .header-utility-link .theme-mode .button img.dark-mode {
      display: block; }
    .hcp-site-header .header-utility-link .theme-mode span.light-mode {
      display: none; }
    .hcp-site-header .header-utility-link .theme-mode span.dark-mode {
      display: block; }

.scrolled {
  border-bottom: 1px solid #cdcdcd; }

.theme-text {
  display: none; }
  @media screen and (max-width: 767px) {
    .theme-text {
      display: inline-block;
      padding-left: 10px;
      font-size: 18px;
      font-weight: 500; }
      .theme-text .dark-mode .site-header .header-utility-link .theme-mode span.light-mode {
        display: block; }
      .theme-text .dark-mode .site-header .header-utility-link .theme-mode span.dark-mode {
        display: none; } }

.dark-mode .site-header .header-utility-link .theme-mode .button img.light-mode {
  display: block; }
.dark-mode .site-header .header-utility-link .theme-mode .button img.dark-mode {
  display: none; }

.hero-section {
  padding: 42px 0px 0px 0px;
  font-family: Inter; }
  @media screen and (max-width: 767px) {
    .hero-section {
      padding: 38px 0px 20px 0px; } }
  .hero-section .container {
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px; }
    .hero-section .container h1 {
      font-size: 55px;
      font-weight: bold;
      letter-spacing: 3.2px;
      color: #558F51;
      text-align: left;
      padding-right: 110px;
      padding-bottom: 16px; }
      @media screen and (max-width: 1199px) {
        .hero-section .container h1 {
          text-align: left;
          font-size: 40px;
          letter-spacing: 0px;
          padding-right: 0px; } }
      @media screen and (max-width: 991px) {
        .hero-section .container h1 {
          text-align: center;
          font-size: 34px;
          letter-spacing: 0px;
          padding-right: 0px; } }
    .hero-section .container p {
      font-size: 20px;
      color: #7B828A;
      text-align: left;
      padding-right: 80px; }
      @media screen and (max-width: 1199px) {
        .hero-section .container p {
          text-align: left;
          letter-spacing: 0px;
          padding-right: 0px; } }
      @media screen and (max-width: 991px) {
        .hero-section .container p {
          font-size: 16px;
          line-height: 24px;
          text-align: center;
          padding-right: 0px; } }
    @media screen and (max-width: 991px) {
      .hero-section .container {
        flex-direction: column-reverse;
        gap: 20px; } }
    .hero-section .container .text-section {
      flex: 1; }
    .hero-section .container .download-option {
      display: flex;
      gap: 23px;
      padding-top: 35px;
      padding-bottom: 40px; }
      .hero-section .container .download-option .qr-code {
        display: flex;
        flex-direction: column; }
        .hero-section .container .download-option .qr-code img {
          position: relative;
          left: 20px;
          padding-bottom: 16px; }
          @media screen and (max-width: 991px) {
            .hero-section .container .download-option .qr-code img {
              padding-left: 0px;
              padding-bottom: 18px; } }
      @media screen and (max-width: 767px) {
        .hero-section .container .download-option {
          flex-direction: column-reverse;
          gap: 25px;
          margin: 0 auto;
          padding-bottom: 22px; } }
      @media screen and (max-width: 991px) {
        .hero-section .container .download-option {
          gap: 25px;
          margin: 0 auto;
          padding-bottom: 22px; } }
      .hero-section .container .download-option .download-buttons {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        gap: 20px; }
        @media screen and (max-width: 991px) {
          .hero-section .container .download-option .download-buttons {
            justify-content: center;
            align-items: center; } }
      @media screen and (max-width: 991px) {
        .hero-section .container .download-option {
          flex-direction: column-reverse;
          justify-content: center;
          align-items: center; } }
    .hero-section .container .button-box {
      display: flex;
      justify-content: flex-start;
      flex-direction: column;
      align-items: flex-start; }
      @media screen and (max-width: 767px) {
        .hero-section .container .button-box {
          display: flex;
          align-items: center;
          justify-content: center; } }
      @media screen and (max-width: 991px) {
        .hero-section .container .button-box {
          display: flex;
          align-items: center;
          justify-content: center; } }
      .hero-section .container .button-box .button {
        width: 185px;
        height: 29px;
        font-size: 20px; }
      .hero-section .container .button-box span {
        font-size: 12px;
        max-width: 300px; }
    .hero-section .container .banner-image {
      position: relative;
      top: -20px;
      bottom: 0;
      right: 72px;
      margin: 0; }
      @media screen and (max-width: 1400px) {
        .hero-section .container .banner-image {
          position: static;
          bottom: 0;
          right: 0px; } }

.dark-mode .banner-title {
  color: #ffffff; }
.dark-mode .banner-subtext {
  color: #EA8939; }

.hcp-hero-section {
  padding: 42px 0px 0px 0px;
  font-family: Inter; }
  @media screen and (max-width: 767px) {
    .hcp-hero-section {
      padding: 38px 0px 20px 0px; } }
  .hcp-hero-section .container {
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px; }
    .hcp-hero-section .container h1 {
      font-size: 50px;
      font-weight: bold;
      letter-spacing: 3.2px;
      background: linear-gradient(90deg, #EA8939 0%, #FE7777 76%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: #EA8939;
      text-align: left;
      padding-right: 60px;
      padding-bottom: 16px; }
      @media screen and (max-width: 1199px) {
        .hcp-hero-section .container h1 {
          text-align: left;
          font-size: 40px;
          letter-spacing: 0px;
          padding-right: 0px; } }
      @media screen and (max-width: 991px) {
        .hcp-hero-section .container h1 {
          text-align: center;
          font-size: 34px;
          letter-spacing: 0px;
          padding-right: 0px; } }
    .hcp-hero-section .container p {
      font-size: 20px;
      color: #7B828A;
      text-align: left;
      padding-right: 80px; }
      @media screen and (max-width: 1199px) {
        .hcp-hero-section .container p {
          text-align: left;
          letter-spacing: 0px;
          padding-right: 0px; } }
      @media screen and (max-width: 991px) {
        .hcp-hero-section .container p {
          font-size: 16px;
          line-height: 24px;
          text-align: center;
          padding-right: 0px; } }
    @media screen and (max-width: 991px) {
      .hcp-hero-section .container {
        flex-direction: column-reverse;
        gap: 20px; } }
    .hcp-hero-section .container .text-section {
      flex: 1; }
    .hcp-hero-section .container .download-option {
      display: flex;
      flex-direction: column;
      gap: 23px;
      padding-top: 35px;
      padding-bottom: 40px; }
      .hcp-hero-section .container .download-option .qr-code {
        display: flex;
        flex-direction: column; }
        .hcp-hero-section .container .download-option .qr-code img {
          position: relative;
          left: 20px;
          padding-bottom: 16px; }
          @media screen and (max-width: 991px) {
            .hcp-hero-section .container .download-option .qr-code img {
              padding-left: 0px;
              padding-bottom: 18px; } }
      @media screen and (max-width: 767px) {
        .hcp-hero-section .container .download-option {
          flex-direction: column-reverse;
          gap: 25px;
          margin: 0 auto;
          padding-bottom: 22px; } }
      @media screen and (max-width: 991px) {
        .hcp-hero-section .container .download-option {
          gap: 25px;
          margin: 0 auto;
          padding-bottom: 22px; } }
      .hcp-hero-section .container .download-option .download-buttons {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: row;
        gap: 15px; }
        @media screen and (max-width: 991px) {
          .hcp-hero-section .container .download-option .download-buttons {
            justify-content: center;
            align-items: center; } }
      @media screen and (max-width: 991px) {
        .hcp-hero-section .container .download-option {
          flex-direction: column-reverse;
          justify-content: center;
          align-items: center; } }
    .hcp-hero-section .container .button-box {
      display: flex;
      justify-content: flex-start;
      flex-direction: column;
      align-items: flex-start; }
      @media screen and (max-width: 767px) {
        .hcp-hero-section .container .button-box {
          display: flex;
          align-items: center;
          justify-content: center; } }
      @media screen and (max-width: 991px) {
        .hcp-hero-section .container .button-box {
          display: flex;
          align-items: center;
          justify-content: center; } }
      .hcp-hero-section .container .button-box .button {
        padding: 15px 20px;
        font-size: 20px;
        font-weight: bold;
        background-color: #EA8939; }
      .hcp-hero-section .container .button-box span {
        font-size: 12px;
        max-width: 300px; }
    .hcp-hero-section .container .banner-image {
      position: relative;
      top: -20px;
      bottom: 0;
      right: 72px;
      margin: 0; }
      @media screen and (max-width: 1400px) {
        .hcp-hero-section .container .banner-image {
          position: static;
          bottom: 0;
          right: 0px; } }

.dark-mode .banner-title {
  color: #ffffff; }
.dark-mode .banner-subtext {
  color: #EA8939; }

.text-and-image-section {
  font-family: Inter;
  padding-top: 106px;
  position: relative;
  padding-bottom: 102px; }
  @media screen and (max-width: 991px) {
    .text-and-image-section {
      padding-top: 0px;
      padding-bottom: 30px; } }
  .text-and-image-section .container {
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    gap: 154px; }
    .text-and-image-section .container .left-column {
      display: flex;
      flex-direction: column; }
      .text-and-image-section .container .left-column .text-content {
        padding-top: 96px; }
        @media screen and (max-width: 1199px) {
          .text-and-image-section .container .left-column .text-content {
            padding-top: 30px; } }
        @media screen and (max-width: 991px) {
          .text-and-image-section .container .left-column .text-content {
            padding-top: 0px; } }
        .text-and-image-section .container .left-column .text-content h4 {
          font-size: 50px;
          line-height: 60px;
          color: #558F51;
          font-weight: 600;
          letter-spacing: 2px; }
          @media screen and (max-width: 991px) {
            .text-and-image-section .container .left-column .text-content h4 {
              text-align: center;
              font-size: 42px;
              line-height: 50px; } }
        .text-and-image-section .container .left-column .text-content h2 {
          font-weight: bold;
          font-size: 100px;
          background: linear-gradient(90deg, #A0F233 0%, #B5B705 51%, #207F01 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent; }
          @media screen and (max-width: 991px) {
            .text-and-image-section .container .left-column .text-content h2 {
              text-align: center;
              font-size: 72px;
              line-height: 80px; } }
    .text-and-image-section .container .right-column {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      flex-wrap: wrap;
      flex: 1; }
      .text-and-image-section .container .right-column .content {
        display: flex;
        flex-direction: column;
        gap: 40px; }
        .text-and-image-section .container .right-column .content .row {
          display: flex;
          gap: 21px;
          align-items: flex-start;
          justify-content: flex-start; }
          .text-and-image-section .container .right-column .content .row .img-content {
            width: 80px;
            display: flex;
            justify-content: center; }
          .text-and-image-section .container .right-column .content .row .text-content {
            flex: 1; }
          .text-and-image-section .container .right-column .content .row h6 {
            font-size: 28px;
            line-height: 26px; }
            @media screen and (max-width: 991px) {
              .text-and-image-section .container .right-column .content .row h6 {
                font-size: 24px;
                padding-left: 15px;
                padding-right: 15px; } }
          .text-and-image-section .container .right-column .content .row p {
            font-size: 20px;
            color: #7B828A;
            padding-right: 26px; }
            @media screen and (max-width: 1199px) {
              .text-and-image-section .container .right-column .content .row p {
                padding-right: 0px; } }
            @media screen and (max-width: 991px) {
              .text-and-image-section .container .right-column .content .row p {
                font-size: 16px; } }
          .text-and-image-section .container .right-column .content .row #pad-right {
            padding-right: 96px; }
            @media screen and (max-width: 1199px) {
              .text-and-image-section .container .right-column .content .row #pad-right {
                padding-right: 0px; } }
            @media screen and (max-width: 991px) {
              .text-and-image-section .container .right-column .content .row #pad-right {
                padding-right: 0px; } }
          .text-and-image-section .container .right-column .content .row span {
            color: #69BE58; }
          @media screen and (max-width: 991px) {
            .text-and-image-section .container .right-column .content .row {
              flex-direction: column;
              justify-content: center;
              align-items: center;
              gap: 25px; } }
      @media screen and (max-width: 991px) {
        .text-and-image-section .container .right-column {
          justify-content: center;
          align-items: center;
          text-align: center; } }
    .text-and-image-section .container .row:nth-child(1) img {
      width: 58px; }
    .text-and-image-section .container .row:nth-child(2) img {
      width: 80px;
      height: auto; }
    .text-and-image-section .container .row:nth-child(3) img {
      width: 58px; }
    .text-and-image-section .container .row:nth-child(4) img {
      width: 57px; }
    @media screen and (max-width: 1199px) {
      .text-and-image-section .container {
        gap: 80px; } }
    @media screen and (max-width: 991px) {
      .text-and-image-section .container {
        flex-direction: column;
        gap: 40px; } }

.hcp-text-and-image-section {
  font-family: Inter;
  padding-top: 106px;
  position: relative;
  padding-bottom: 102px; }
  @media screen and (max-width: 991px) {
    .hcp-text-and-image-section {
      padding-top: 0px;
      padding-bottom: 30px; } }
  .hcp-text-and-image-section .container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 20px; }
    .hcp-text-and-image-section .container .left-column {
      display: flex;
      flex-direction: column; }
      .hcp-text-and-image-section .container .left-column .text-content {
        padding-top: 96px; }
        @media screen and (max-width: 1199px) {
          .hcp-text-and-image-section .container .left-column .text-content {
            padding-top: 30px; } }
        @media screen and (max-width: 991px) {
          .hcp-text-and-image-section .container .left-column .text-content {
            padding-top: 0px; } }
        .hcp-text-and-image-section .container .left-column .text-content h4 {
          font-size: 64px;
          line-height: 68px;
          color: #EA8939;
          font-weight: 500;
          letter-spacing: 2px; }
          @media screen and (max-width: 991px) {
            .hcp-text-and-image-section .container .left-column .text-content h4 {
              text-align: center;
              font-size: 42px;
              line-height: 50px; } }
        .hcp-text-and-image-section .container .left-column .text-content h2 {
          font-weight: bold;
          font-size: 100px;
          background: linear-gradient(90deg, #EA8939 0%, #FE7777 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent; }
          @media screen and (max-width: 991px) {
            .hcp-text-and-image-section .container .left-column .text-content h2 {
              text-align: center;
              font-size: 72px;
              line-height: 80px; } }
        .hcp-text-and-image-section .container .left-column .text-content p {
          font-size: 35px;
          line-height: 40px;
          color: #EA8939;
          font-weight: 600; }
    .hcp-text-and-image-section .container .right-column {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      flex-wrap: wrap; }
      .hcp-text-and-image-section .container .right-column .content {
        display: flex;
        flex-direction: column;
        gap: 40px; }
        .hcp-text-and-image-section .container .right-column .content .row {
          display: flex;
          gap: 21px;
          align-items: flex-start;
          justify-content: flex-start; }
          .hcp-text-and-image-section .container .right-column .content .row .img-content {
            width: 80px;
            display: flex;
            justify-content: center; }
          .hcp-text-and-image-section .container .right-column .content .row .text-content {
            flex: 1; }
          .hcp-text-and-image-section .container .right-column .content .row h6 {
            font-size: 28px;
            line-height: 26px; }
            @media screen and (max-width: 991px) {
              .hcp-text-and-image-section .container .right-column .content .row h6 {
                font-size: 24px;
                padding-left: 15px;
                padding-right: 15px; } }
          .hcp-text-and-image-section .container .right-column .content .row p {
            font-size: 20px;
            color: #7B828A;
            padding-right: 26px; }
            @media screen and (max-width: 1199px) {
              .hcp-text-and-image-section .container .right-column .content .row p {
                padding-right: 26px; } }
            @media screen and (max-width: 991px) {
              .hcp-text-and-image-section .container .right-column .content .row p {
                font-size: 16px;
                padding-left: 15px;
                padding-right: 15px; } }
          .hcp-text-and-image-section .container .right-column .content .row #pad-right {
            padding-right: 96px; }
            @media screen and (max-width: 1199px) {
              .hcp-text-and-image-section .container .right-column .content .row #pad-right {
                padding-right: 0px; } }
            @media screen and (max-width: 991px) {
              .hcp-text-and-image-section .container .right-column .content .row #pad-right {
                padding-right: 0px; } }
          .hcp-text-and-image-section .container .right-column .content .row span {
            color: #EA8939; }
          @media screen and (max-width: 991px) {
            .hcp-text-and-image-section .container .right-column .content .row {
              flex-direction: column;
              justify-content: center;
              align-items: center;
              gap: 25px; } }
      @media screen and (max-width: 991px) {
        .hcp-text-and-image-section .container .right-column {
          justify-content: center;
          align-items: center;
          text-align: center; } }
    .hcp-text-and-image-section .container .row:nth-child(1) img {
      width: 58px; }
    .hcp-text-and-image-section .container .row:nth-child(2) img {
      width: 80px;
      height: auto; }
    .hcp-text-and-image-section .container .row:nth-child(3) img {
      width: 58px; }
    .hcp-text-and-image-section .container .row:nth-child(4) img {
      width: 57px; }
    @media screen and (max-width: 1199px) {
      .hcp-text-and-image-section .container {
        gap: 80px; } }
    @media screen and (max-width: 991px) {
      .hcp-text-and-image-section .container {
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: center; } }

.site-info {
  position: relative;
  padding-bottom: 55px; }
  @media screen and (max-width: 767px) {
    .site-info {
      padding-bottom: 14px; } }
  .site-info ul, .site-info ol {
    max-width: 1004px;
    margin: 0 0 0 15px; }
  .site-info li {
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 15px;
    color: #558F51;
    font-family: Inter;
    font-weight: 400; }
    .dark-mode .site-info li {
      color: #ffffff; }

.disclaimer-info {
  font-size: 12px;
  margin: 15px 0 0 15px;
  text-align: center; }

.site-footer {
  background: linear-gradient(180deg, #F8FCFD 0%, #008000 48%, #025D02 100%);
  padding: 100px 0px 128px 0px;
  font-family: Inter; }
  @media screen and (max-width: 991px) {
    .site-footer {
      padding: 40px 0 0px 0px;
      background: none;
      background-color: #008000; } }
  .site-footer .top-footer {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    align-items: flex-start; }
    .site-footer .top-footer .footer-logo {
      margin-top: 15px;
      padding-bottom: 68px; }
      @media screen and (max-width: 1199px) {
        .site-footer .top-footer .footer-logo {
          padding-bottom: 35px; } }
      @media screen and (max-width: 991px) {
        .site-footer .top-footer .footer-logo {
          padding-bottom: 25px; } }
      @media screen and (max-width: 991px) {
        .site-footer .top-footer .footer-logo {
          padding-bottom: 25px; } }
    .site-footer .top-footer .social-media-text {
      font-size: 24px;
      margin-bottom: 18px;
      line-height: 28px;
      color: #ffffff;
      text-align: left; }
      @media screen and (max-width: 991px) {
        .site-footer .top-footer .social-media-text {
          text-align: center; } }
    @media screen and (max-width: 991px) {
      .site-footer .top-footer {
        display: flex;
        flex-direction: column;
        gap: 0px;
        align-items: center; }
        .site-footer .top-footer .left-column {
          margin-bottom: 24px; } }
    .site-footer .top-footer .social-media {
      display: flex;
      list-style: none;
      padding: 0;
      margin: 0; }
      .site-footer .top-footer .social-media li {
        margin-left: 14px; }
        .site-footer .top-footer .social-media li:first-child {
          margin-left: 0; }
        @media screen and (max-width: 991px) {
          .site-footer .top-footer .social-media li {
            margin: 0 auto; } }
    .site-footer .top-footer .right-column {
      display: flex;
      gap: 56px;
      align-items: flex-end;
      margin-bottom: 15px; }
      @media screen and (max-width: 1199px) {
        .site-footer .top-footer .right-column {
          gap: 30px; } }
      @media screen and (max-width: 991px) {
        .site-footer .top-footer .right-column {
          gap: 30px;
          flex-direction: row;
          align-items: center; } }
      @media screen and (max-width: 767px) {
        .site-footer .top-footer .right-column {
          gap: 30px;
          flex-direction: column;
          align-items: center; } }
      .site-footer .top-footer .right-column .enhance-text {
        font-size: 24px;
        line-height: 28px;
        color: #ffffff;
        text-align: left; }
        @media screen and (max-width: 1199px) {
          .site-footer .top-footer .right-column .enhance-text {
            font-size: 21px; } }
        @media screen and (max-width: 991px) {
          .site-footer .top-footer .right-column .enhance-text {
            text-align: center; } }
      .site-footer .top-footer .right-column .download-option {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0; }
        @media screen and (max-width: 991px) {
          .site-footer .top-footer .right-column .download-option {
            flex-direction: row;
            gap: 15px; } }
        @media screen and (max-width: 767px) {
          .site-footer .top-footer .right-column .download-option {
            flex-direction: column;
            gap: 15px; } }
        .site-footer .top-footer .right-column .download-option li {
          margin-right: 20px; }
          @media screen and (max-width: 991px) {
            .site-footer .top-footer .right-column .download-option li {
              margin: 0 auto; } }
  .site-footer .bottom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff !important; }
    @media screen and (max-width: 991px) {
      .site-footer .bottom-footer {
        flex-direction: column;
        padding-top: 25px; }
        .site-footer .bottom-footer .left-column {
          margin-bottom: 56px;
          flex: 0 0 100%;
          max-width: 100%;
          width: 100%; } }
    .site-footer .bottom-footer .footer-nav {
      display: flex;
      color: #ffffff !important;
      list-style: none;
      padding-bottom: 105px;
      padding: 0;
      margin: 0;
      font-family: Inter;
      margin-bottom: 15px; }
      @media screen and (max-width: 991px) {
        .site-footer .bottom-footer .footer-nav {
          flex-direction: row; } }
      @media screen and (max-width: 767px) {
        .site-footer .bottom-footer .footer-nav {
          flex-direction: column; } }
      .site-footer .bottom-footer .footer-nav li {
        margin-right: 30px;
        font-size: 22px;
        line-height: 28px;
        font-weight: 500;
        border-right: 1px solid;
        padding: 0 24px 0 0;
        margin: 0 24px 0 0; }
        @media screen and (max-width: 1199px) {
          .site-footer .bottom-footer .footer-nav li {
            font-size: 22px; } }
        .site-footer .bottom-footer .footer-nav li:last-child {
          border-right: none; }
        .site-footer .bottom-footer .footer-nav li a {
          color: #ffffff !important;
          font-weight: 500; }
        @media screen and (max-width: 991px) {
          .site-footer .bottom-footer .footer-nav li {
            border-right: none;
            margin: 10px;
            text-align: center; } }
        @media screen and (max-width: 767px) {
          .site-footer .bottom-footer .footer-nav li {
            margin: 10px;
            border-right: none; } }
        .site-footer .bottom-footer .footer-nav li a {
          transition: all 0.5s ease; }
          .site-footer .bottom-footer .footer-nav li a:hover {
            opacity: 0.6;
            text-decoration: none;
            transition: all 0.5s ease; }
        .site-footer .bottom-footer .footer-nav li select {
          color: #ffffff;
          border: none;
          background-color: transparent; }
          .site-footer .bottom-footer .footer-nav li select:focus {
            background-color: #008000; }
    .site-footer .bottom-footer .copyright {
      font-size: 18px;
      line-height: 28px;
      color: #ffffff;
      text-align: left; }
      @media screen and (max-width: 991px) {
        .site-footer .bottom-footer .copyright {
          padding: 5px; } }
      @media screen and (max-width: 991px) {
        .site-footer .bottom-footer .copyright {
          padding: 5px;
          text-align: center;
          display: block; } }

.hcp-site-footer {
  background: linear-gradient(180deg, #F8FCFD 0%, #EA8939 42%);
  padding: 100px 0px 40px 0px;
  margin-top: 80px;
  font-family: Inter; }
  @media screen and (max-width: 991px) {
    .hcp-site-footer {
      padding: 40px 0 0px 0px;
      background: none;
      background-color: #EA8939; } }
  .hcp-site-footer .top-footer {
    display: grid;
    grid-template-columns: 1fr  2fr;
    align-items: flex-start; }
    .hcp-site-footer .top-footer .footer-logo {
      padding-bottom: 68px; }
      @media screen and (max-width: 1199px) {
        .hcp-site-footer .top-footer .footer-logo {
          padding-bottom: 35px; } }
      @media screen and (max-width: 991px) {
        .hcp-site-footer .top-footer .footer-logo {
          padding-bottom: 25px; } }
      @media screen and (max-width: 991px) {
        .hcp-site-footer .top-footer .footer-logo {
          padding-bottom: 25px; } }
    .hcp-site-footer .top-footer .social-media-text {
      font-size: 24px;
      margin-bottom: 18px;
      line-height: 28px;
      color: #ffffff;
      text-align: left; }
      @media screen and (max-width: 991px) {
        .hcp-site-footer .top-footer .social-media-text {
          text-align: center; } }
    @media screen and (max-width: 991px) {
      .hcp-site-footer .top-footer {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center; }
        .hcp-site-footer .top-footer .left-column {
          margin-bottom: 24px; } }
    .hcp-site-footer .top-footer .social-media {
      display: flex;
      list-style: none;
      padding: 0;
      margin: 0; }
      .hcp-site-footer .top-footer .social-media li {
        margin-left: 14px; }
        .hcp-site-footer .top-footer .social-media li:first-child {
          margin-left: 0; }
        @media screen and (max-width: 991px) {
          .hcp-site-footer .top-footer .social-media li {
            margin: 0 auto; } }
    .hcp-site-footer .top-footer .right-column {
      display: flex;
      gap: 16px;
      align-items: flex-end;
      margin-bottom: 20px; }
      @media screen and (max-width: 1199px) {
        .hcp-site-footer .top-footer .right-column {
          gap: 30px; } }
      @media screen and (max-width: 991px) {
        .hcp-site-footer .top-footer .right-column {
          gap: 30px;
          flex-direction: row;
          align-items: center; } }
      @media screen and (max-width: 767px) {
        .hcp-site-footer .top-footer .right-column {
          gap: 30px;
          flex-direction: column;
          align-items: center; } }
      .hcp-site-footer .top-footer .right-column .enhance-text {
        font-size: 24px;
        line-height: 28px;
        color: #ffffff;
        text-align: left; }
        @media screen and (max-width: 1199px) {
          .hcp-site-footer .top-footer .right-column .enhance-text {
            font-size: 21px; } }
        @media screen and (max-width: 991px) {
          .hcp-site-footer .top-footer .right-column .enhance-text {
            text-align: center; } }
      .hcp-site-footer .top-footer .right-column .download-option {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0; }
        @media screen and (max-width: 991px) {
          .hcp-site-footer .top-footer .right-column .download-option {
            flex-direction: row;
            gap: 15px; } }
        @media screen and (max-width: 767px) {
          .hcp-site-footer .top-footer .right-column .download-option {
            flex-direction: column;
            gap: 15px; } }
        .hcp-site-footer .top-footer .right-column .download-option li {
          margin-right: 20px; }
          @media screen and (max-width: 991px) {
            .hcp-site-footer .top-footer .right-column .download-option li {
              margin: 0 auto; } }
  .hcp-site-footer .bottom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff !important; }
    @media screen and (max-width: 991px) {
      .hcp-site-footer .bottom-footer {
        flex-direction: column;
        padding-top: 25px; }
        .hcp-site-footer .bottom-footer .left-column {
          margin-bottom: 56px;
          flex: 0 0 100%;
          max-width: 100%;
          width: 100%; } }
    .hcp-site-footer .bottom-footer .footer-nav {
      display: flex;
      color: #ffffff !important;
      list-style: none;
      padding-bottom: 105px;
      padding: 0;
      margin: 0;
      font-family: Inter; }
      @media screen and (max-width: 991px) {
        .hcp-site-footer .bottom-footer .footer-nav {
          flex-direction: row; } }
      @media screen and (max-width: 767px) {
        .hcp-site-footer .bottom-footer .footer-nav {
          flex-direction: column; } }
      .hcp-site-footer .bottom-footer .footer-nav li {
        margin-right: 30px;
        font-size: 18px;
        line-height: 28px;
        font-weight: 500;
        border-right: 1px solid;
        padding: 0 24px 0 0;
        margin: 0 24px 0 0; }
        @media screen and (max-width: 1199px) {
          .hcp-site-footer .bottom-footer .footer-nav li {
            font-size: 22px; } }
        .hcp-site-footer .bottom-footer .footer-nav li:last-child {
          border-right: none; }
        .hcp-site-footer .bottom-footer .footer-nav li a {
          color: #ffffff !important;
          font-weight: 500; }
        @media screen and (max-width: 991px) {
          .hcp-site-footer .bottom-footer .footer-nav li {
            border-right: none;
            margin: 10px;
            text-align: center; } }
        @media screen and (max-width: 767px) {
          .hcp-site-footer .bottom-footer .footer-nav li {
            margin: 10px;
            border-right: none; } }
        .hcp-site-footer .bottom-footer .footer-nav li a {
          transition: all 0.5s ease; }
          .hcp-site-footer .bottom-footer .footer-nav li a:hover {
            opacity: 0.6;
            text-decoration: none;
            transition: all 0.5s ease; }
        .hcp-site-footer .bottom-footer .footer-nav li select {
          color: #ffffff;
          border: none;
          background-color: transparent; }
          .hcp-site-footer .bottom-footer .footer-nav li select:focus {
            background-color: #008000; }
    .hcp-site-footer .bottom-footer .copyright1 {
      font-size: 18px;
      line-height: 24px;
      color: #ffffff;
      text-align: left;
      padding-top: 20px; }
      @media screen and (max-width: 991px) {
        .hcp-site-footer .bottom-footer .copyright1 {
          padding: 5px; } }
      @media screen and (max-width: 991px) {
        .hcp-site-footer .bottom-footer .copyright1 {
          padding: 5px;
          text-align: center;
          display: block; } }
    .hcp-site-footer .bottom-footer .copyright2, .hcp-site-footer .bottom-footer .copyright3 {
      font-size: 18px;
      line-height: 24px;
      color: #ffffff;
      text-align: left; }
      @media screen and (max-width: 991px) {
        .hcp-site-footer .bottom-footer .copyright2, .hcp-site-footer .bottom-footer .copyright3 {
          padding: 5px; } }
      @media screen and (max-width: 991px) {
        .hcp-site-footer .bottom-footer .copyright2, .hcp-site-footer .bottom-footer .copyright3 {
          padding: 5px;
          text-align: center;
          display: block; } }

.site-footer-global {
  background-color: #ffffff;
  color: #182E41 !important;
  padding: 100px 0px 128px 0px;
  font-family: Outfit, Inter; }
  @media screen and (max-width: 991px) {
    .site-footer-global {
      padding: 40px 0 0px 0px;
      background: none; } }
  .site-footer-global .container {
    max-width: 1200px;
    margin: 0 auto; }
  .site-footer-global .top-footer {
    display: flex;
    gap: 232px;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid #182E41; }
    @media screen and (max-width: 1199px) {
      .site-footer-global .top-footer {
        gap: 90px;
        justify-content: center;
        align-items: flex-start; } }
    @media screen and (max-width: 991px) {
      .site-footer-global .top-footer {
        flex-direction: column;
        gap: 0px;
        align-items: center; }
        .site-footer-global .top-footer .left-column {
          margin-bottom: 24px; } }
    @media screen and (max-width: 1199px) {
      .site-footer-global .top-footer .right-column {
        gap: 30px; } }
    @media screen and (max-width: 991px) {
      .site-footer-global .top-footer .right-column {
        gap: 30px;
        flex-direction: row;
        align-items: center; } }
    @media screen and (max-width: 767px) {
      .site-footer-global .top-footer .right-column {
        gap: 30px;
        flex-direction: column;
        align-items: center; } }
    .site-footer-global .top-footer .right-column .download-option {
      display: flex;
      list-style: none;
      padding: 0;
      margin: 0; }
      @media screen and (max-width: 991px) {
        .site-footer-global .top-footer .right-column .download-option li {
          margin: 0 auto; } }
  .site-footer-global .bottom-footer {
    display: flex;
    color: #182E41 !important;
    gap: 176px;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 20px; }
    @media screen and (max-width: 991px) {
      .site-footer-global .bottom-footer {
        flex-direction: column;
        padding-top: 25px; } }
    .site-footer-global .bottom-footer .left-column {
      margin-bottom: 30px; }
    .site-footer-global .bottom-footer .right-column {
      display: flex;
      gap: 56px;
      align-items: flex-end; }
      @media screen and (max-width: 1199px) {
        .site-footer-global .bottom-footer .right-column {
          gap: 30px; } }
      @media screen and (max-width: 991px) {
        .site-footer-global .bottom-footer .right-column {
          gap: 30px;
          flex-direction: column;
          align-items: center; } }
    @media screen and (max-width: 991px) {
      .site-footer-global .bottom-footer {
        flex-direction: column;
        gap: 0px; }
        .site-footer-global .bottom-footer .left-column {
          margin-bottom: 56px;
          flex: 0 0 100%;
          max-width: 100%;
          width: 100%; } }
    .site-footer-global .bottom-footer .footer-nav {
      display: flex;
      list-style: none;
      padding: 0;
      margin: 0;
      font-family: Inter; }
      @media screen and (max-width: 991px) {
        .site-footer-global .bottom-footer .footer-nav {
          flex-direction: row; } }
      @media screen and (max-width: 767px) {
        .site-footer-global .bottom-footer .footer-nav {
          flex-direction: column; } }
      .site-footer-global .bottom-footer .footer-nav li {
        margin-right: 30px;
        font-size: 15px;
        color: #182E41 !important;
        line-height: 20px;
        font-weight: 500;
        border-right: 1px solid;
        padding: 0 10px 0 0;
        margin: 0 12px 0 0; }
        @media screen and (max-width: 1199px) {
          .site-footer-global .bottom-footer .footer-nav li {
            font-size: 22px; } }
        .site-footer-global .bottom-footer .footer-nav li:last-child {
          border-right: none; }
        .site-footer-global .bottom-footer .footer-nav li a {
          color: #182E41 !important;
          font-weight: 500; }
        @media screen and (max-width: 991px) {
          .site-footer-global .bottom-footer .footer-nav li {
            margin: 10px;
            border-right: 1px solid;
            text-align: center; } }
        @media screen and (max-width: 767px) {
          .site-footer-global .bottom-footer .footer-nav li {
            margin: 10px;
            border-right: none; } }
    .site-footer-global .bottom-footer #select-country {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex-wrap: wrap; }
    .site-footer-global .bottom-footer .copyright {
      font-size: 10px;
      line-height: 18px;
      text-align: left; }
      @media screen and (max-width: 991px) {
        .site-footer-global .bottom-footer .copyright {
          padding: 5px;
          text-align: center; } }
      @media screen and (max-width: 991px) {
        .site-footer-global .bottom-footer .copyright {
          text-align: center;
          padding: 5px;
          text-align: center;
          display: block; } }
  .site-footer-global .top-footer p {
    font-size: 15px; }

.about-logo {
  padding: 50px 20px 50px 40px; }

.about-section {
  padding: 15px 23px; }
  @media screen and (max-width: 1400px) {
    .about-section {
      padding: 15px; } }
  @media screen and (max-width: 767px) {
    .about-section {
      padding: 54px 8px 35px; } }
  .about-section h2 {
    font-family: Inter; }
  .about-section p {
    font-family: Outfit, Inter;
    color: #182E41;
    font-size: 25px;
    line-height: 30px;
    width: 50%;
    margin-top: 40px; }
    @media screen and (max-width: 567px) {
      .about-section p {
        width: 80%; } }
  .about-section--top {
    background: #d4f1f7 url(/assets/images/global/Blueblock.jpg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #d4f1f7;
    height: 100vh;
    min-height: 940px;
    color: #ffffff;
    padding-top: 180px;
    position: relative;
    overflow: hidden;
    border-radius: 22px; }
    @media screen and (max-width: 1400px) {
      .about-section--top {
        min-height: 770px; } }
    @media (min-height: 1200px) {
      .about-section--top {
        height: inherit; } }
    @media screen and (max-width: 767px) {
      .about-section--top {
        border-radius: 19px;
        padding-top: 102px;
        background-size: 707px;
        background-position: 90% 210%;
        height: inherit;
        min-height: 620px; } }
    .about-section--top:after {
      content: '';
      position: absolute;
      left: 0;
      width: 100%;
      height: 100%;
      background: url(/assets/images/global/ellipses.svg) no-repeat bottom left;
      background-size: 100%;
      z-index: 2;
      pointer-events: none; }
      @media screen and (max-width: 767px) {
        .about-section--top:after {
          bottom: -3px; } }
    .about-section--top .banner-image {
      position: absolute;
      bottom: 0;
      right: 0;
      height: 100%;
      z-index: 1;
      margin: 0;
      display: flex;
      align-items: flex-end;
      justify-content: flex-end; }
      @media screen and (max-width: 1400px) {
        .about-section--top .banner-image {
          max-width: 60%; } }
      @media screen and (max-width: 991px) {
        .about-section--top .banner-image {
          max-width: 100%; } }
      .about-section--top .banner-image img {
        display: block;
        max-height: -moz-calc(100% - 50px);
        max-height: -webkit-calc(100% - 50px);
        max-height: calc(100% - 50px); }
    .about-section--top .container {
      position: relative;
      z-index: 3;
      display: flex;
      flex-direction: column;
      height: 100%; }
    .about-section--top .banner-title {
      /*max-width: 900px;*/
      font-family: Outfit, Inter;
      font-size: 75px;
      font-weight: bold;
      color: #182E41; }
      @media screen and (max-width: 567px) {
        .about-section--top .banner-title {
          font-size: 40px;
          margin-top: 40px; } }
    .about-section--top .button-box {
      display: flex;
      flex-direction: column;
      padding-bottom: 270px; }
      @media screen and (max-width: 567px) {
        .about-section--top .button-box {
          align-items: center; } }
      .about-section--top .button-box .globalButton {
        width: 475px;
        max-width: 95%;
        padding: 12px 24px;
        font-size: 22px;
        line-height: 28px;
        margin-top: 24px;
        font-family: Inter !important;
        color: #FFFEFE !important;
        background: #1DADF5; }
      .about-section--top .button-box .globalButton:hover {
        color: white !important;
        background: #1DADF5 !important; }
  .about-section--bottom .container {
    display: flex;
    flex-wrap: wrap; }
    @media screen and (max-width: 767px) {
      .about-section--bottom .container {
        padding: 0 8px; } }
    .about-section--bottom .container .left-column {
      flex: 0 0 416px;
      max-width: 416px; }
      @media screen and (max-width: 1400px) {
        .about-section--bottom .container .left-column {
          flex: 0 0 355px;
          max-width: 355px; } }
      @media screen and (max-width: 991px) {
        .about-section--bottom .container .left-column {
          flex: 0 0 310px;
          max-width: 310px; } }
      @media screen and (max-width: 767px) {
        .about-section--bottom .container .left-column {
          flex: 0 0 100%;
          max-width: 100%; } }
    .about-section--bottom .container .right-column {
      flex: 0 0 calc(100% - 416px);
      max-width: calc(100% - 416px);
      display: flex;
      align-items: center;
      padding: 160px 0 20px 88px; }
      @media screen and (max-width: 1400px) {
        .about-section--bottom .container .right-column {
          flex: 0 0 calc(100% - 355px);
          max-width: calc(100% - 355px);
          padding: 130px 0 20px 58px; } }
      @media screen and (max-width: 991px) {
        .about-section--bottom .container .right-column {
          flex: 0 0 calc(100% - 310px);
          max-width: calc(100% - 310px); } }
      @media screen and (max-width: 767px) {
        .about-section--bottom .container .right-column {
          flex: 0 0 100%;
          max-width: 100%;
          padding: 64px 0 0 0; } }
      .about-section--bottom .container .right-column--inner {
        max-width: 595px; }
  .about-section--bottom .solid-block {
    background-color: #E2DCEB;
    color: #558F51;
    border-radius: 35px;
    position: relative;
    z-index: 3;
    margin-top: -420px;
    padding-top: 10px; }
    @media screen and (max-width: 1400px) {
      .about-section--bottom .solid-block {
        margin-top: -340px; } }
    @media screen and (max-width: 991px) {
      .about-section--bottom .solid-block {
        max-width: 355px; } }
    @media screen and (max-width: 767px) {
      .about-section--bottom .solid-block {
        margin-top: -240px;
        max-width: 239px;
        margin-left: 0;
        border-radius: 19px;
        display: flex;
        flex-direction: column; } }
    .about-section--bottom .solid-block p {
      padding: 30px;
      margin-bottom: 0;
      font-size: 22px;
      line-height: 28px;
      font-family: Arial; }
      @media screen and (max-width: 991px) {
        .about-section--bottom .solid-block p {
          font-size: 18px;
          line-height: 23px; } }
      @media screen and (max-width: 767px) {
        .about-section--bottom .solid-block p {
          padding: 16px 16px 13px 16px;
          order: 1; } }
  .about-section--bottom .scroll-badge {
    padding: 56px 30px 30px 21px; }
    @media screen and (max-width: 767px) {
      .about-section--bottom .scroll-badge {
        display: none; } }
  @media screen and (max-width: 767px) {
    .about-section--bottom .cta-app-store {
      order: 3;
      position: relative;
      z-index: 2;
      border-radius: 0px 0px 19px 19px;
      font-size: 16px;
      line-height: 21px;
      padding: 17px 16px;
      justify-content: flex-start; }
      .about-section--bottom .cta-app-store ul {
        padding-left: 11px; }
        .about-section--bottom .cta-app-store ul li {
          padding-left: 11px;
          padding-right: 11px;
          display: flex;
          align-items: center; }
          .about-section--bottom .cta-app-store ul li a {
            display: flex;
            align-items: center; }
          .about-section--bottom .cta-app-store ul li img {
            max-height: 17px; } }
  .about-section--bottom .mobile-img {
    height: 587px;
    background-position: left bottom;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end; }
    @media screen and (max-width: 1400px) {
      .about-section--bottom .mobile-img {
        height: 467px;
        background-size: 100%; } }
    @media screen and (max-width: 991px) {
      .about-section--bottom .mobile-img {
        height: 417px; } }
    @media screen and (max-width: 767px) {
      .about-section--bottom .mobile-img {
        order: 2;
        height: 216px;
        background-position: 0 -15px;
        margin-bottom: 50px; } }
    .about-section--bottom .mobile-img img {
      position: absolute;
      bottom: 0;
      left: 0;
      max-width: inherit;
      width: 504px; }
      @media screen and (max-width: 1400px) {
        .about-section--bottom .mobile-img img {
          width: 425px; } }
      @media screen and (max-width: 991px) {
        .about-section--bottom .mobile-img img {
          width: 375px; } }
      @media screen and (max-width: 767px) {
        .about-section--bottom .mobile-img img {
          width: 289px;
          margin-bottom: 30px; } }

#pop-detect-langue {
  display: none; }

#pop-up-select-country {
  display: none; }

#pop-up-form {
  display: none; }

#pop-up-validation {
  display: none; }

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 850px;
  background-color: #FFF1D5;
  border: 1px solid #ccc;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  border-radius: 16px;
  max-height: 90vh;
  overflow: hidden; }
  @media screen and (max-width: 567px) {
    .popup {
      max-width: 350px;
      left: 50%; } }
  .popup h2 {
    font-size: 40px;
    color: #190032;
    font-family: 'Outfit', sans-serif;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px; }
    @media screen and (max-width: 567px) {
      .popup h2 {
        font-size: 24px; } }
  .popup h3 {
    font-size: 30px;
    color: #190032;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 15px; }
    @media screen and (max-width: 567px) {
      .popup h3 {
        font-size: 24px; } }
  .popup h3::before,
  .popup h3::after {
    content: "";
    flex: 1;
    height: 1px;
    /* thickness of line */
    background: #000; }
  .popup p {
    font-size: 16px;
    color: #190032;
    font-family: 'Nunito', sans-serif;
    margin-top: 10px;
    margin-bottom: 10px; }
  .popup .popup-container {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    text-align: center; }
    .popup .popup-container .bg-color {
      background-color: #ffffff;
      max-width: 130px;
      height: 110px;
      border-radius: 10px;
      display: inline-block;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #182E41 !important;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); }
  .popup #flagFirstPopup {
    width: 104px;
    height: 69px;
    margin-top: 10px;
    margin-bottom: 10px;
    background-size: cover; }
  .popup .blue-button {
    width: 100%;
    height: 64px;
    background-color: #5500FF;
    color: white !important;
    font-family: Inter;
    border-radius: 40px;
    border: none;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: background-color .2s,color .2s,border-color .2s,box-shadow .2s;
    cursor: pointer; }
    .popup .blue-button:hover {
      background: #00099e;
      border-color: #00099e; }
    .popup .blue-button.loader {
      background-color: #f1f1f1;
      border: none;
      color: #ccc !important; }
    .popup .blue-button.loader:before {
      content: "";
      width: 40px;
      height: 40px;
      display: inline-block;
      background-image: url("/assets/images/global/loader.gif");
      background-size: cover;
      margin-right: 5px; }
  .popup .blue-link {
    color: #FD3333 !important;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px; }
  .popup li {
    display: flex;
    list-style-type: none;
    align-items: center;
    width: 50%;
    margin: 20px; }
    .popup li img {
      width: 24px;
      height: 16px;
      margin-bottom: 10px; }
    .popup li a {
      font-size: 16px;
      font-family: 'Outfit', sans-serif;
      color: #182E41 !important; }
  .popup ul {
    width: 100%;
    display: flex;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 0 !important;
    justify-content: center;
    align-items: center; }

#pop-up-form .popup-container {
  align-items: flex-start;
  text-align: start;
  font-family: 'Nunito', sans-serif; }
  #pop-up-form .popup-container .dropdown {
    width: 100%;
    background-color: #F6F6FE;
    border-radius: 8px;
    height: 50px;
    border: none;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 5px; }
  #pop-up-form .popup-container input {
    width: 100%;
    background-color: #F6F6FE;
    border-radius: 8px;
    height: 50px;
    border: none;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 5px; }
  #pop-up-form .popup-container #back {
    border-radius: 8px;
    border: 1px solid #D0D2F8;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 5px; }
    #pop-up-form .popup-container #back img {
      width: 24px;
      height: 24px; }
  #pop-up-form .popup-container #name {
    display: flex;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px; }
  #pop-up-form .popup-container #name .input-name {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin-right: 10px; }
  #pop-up-form .popup-container .checkbox {
    margin-top: 5px;
    margin-bottom: 5px; }
    #pop-up-form .popup-container .checkbox label {
      margin-bottom: 0px; }
    #pop-up-form .popup-container .checkbox div {
      display: flex;
      align-items: flex-start;
      margin-top: 5px;
      margin-bottom: 5px; }
      #pop-up-form .popup-container .checkbox div input {
        width: 16px;
        height: 16px;
        border-color: #ABABB8;
        margin-right: 5px;
        padding: 5px; }

#pop-up-validation img {
  width: 104px;
  height: 104px; }

.error-message {
  color: red; }

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99;
  display: none; }

.disclaimer {
  width: 100% !important;
  font-size: 10px !important;
  position: absolute;
  bottom: 0; }
  @media screen and (max-width: 567px) {
    .disclaimer {
      left: 4% !important; } }

.site-header {
  width: 100%;
  z-index: 10;
  padding: 50px 0px 20px 0px; }
  @media screen and (max-width: 767px) {
    .site-header {
      padding: 40px 0px 20px 0px; } }
  .site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .site-header .nav {
    display: flex; }
  .site-header .nav-links a {
    text-decoration: none;
    display: inline-block;
    font-size: 22px;
    padding: 0 6px;
    font-weight: 500; }
    @media screen and (max-width: 767px) {
      .site-header .nav-links a {
        font-size: 18px; } }
  @media screen and (max-width: 767px) {
    .site-header .header-left img {
      max-width: 150px; } }
  .site-header .header-left .dark-img-mode {
    display: none; }
    .dark-mode .site-header .header-left .dark-img-mode {
      display: block; }
  .site-header .header-left .light-img-mode {
    display: block; }
    .dark-mode .site-header .header-left .light-img-mode {
      display: none; }
  .site-header .header-utility-link {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center; }
    .site-header .header-utility-link li {
      margin-left: 40px; }
      @media screen and (max-width: 767px) {
        .site-header .header-utility-link li {
          margin-left: 9px; } }
      .site-header .header-utility-link li:first-child {
        margin-left: 0; }
      .site-header .header-utility-link li:not(.theme-mode) .button {
        padding: 13px 40px;
        font-size: 16px;
        font-family: Inter;
        font-weight: 500;
        font-stretch: condensed; }
        @media screen and (max-width: 767px) {
          .site-header .header-utility-link li:not(.theme-mode) .button {
            font-size: 11px;
            line-height: 14px;
            padding: 8px 20px; } }
        .black-header .site-header .header-utility-link li:not(.theme-mode) .button {
          border-color: #00C3E6; }
    .site-header .header-utility-link .theme-mode .button.circle {
      width: 56px;
      height: 56px;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      min-width: inherit; }
      @media screen and (max-width: 767px) {
        .site-header .header-utility-link .theme-mode .button.circle {
          width: 40px;
          height: 40px; } }
    @media screen and (max-width: 767px) {
      .site-header .header-utility-link .theme-mode .button img {
        max-height: 17px; } }
    .site-header .header-utility-link .theme-mode .button img.light-mode {
      display: none; }
    .site-header .header-utility-link .theme-mode .button img.dark-mode {
      display: block; }
    .site-header .header-utility-link .theme-mode span.light-mode {
      display: none; }
    .site-header .header-utility-link .theme-mode span.dark-mode {
      display: block; }

.scrolled {
  border-bottom: 1px solid #cdcdcd; }

.dark-mode .site-header .header-utility-link .theme-mode .button img.light-mode {
  display: block; }
.dark-mode .site-header .header-utility-link .theme-mode .button img.dark-mode {
  display: none; }

.dark-mode .site-header .header-utility-link .theme-mode span.light-mode {
  display: block; }
.dark-mode .site-header .header-utility-link .theme-mode span.dark-mode {
  display: none; }

.three-block-with-image {
  position: relative;
  text-align: center; }
  @media screen and (max-width: 991px) {
    .three-block-with-image {
      padding-top: 40px; } }
  @media screen and (max-width: 767px) {
    .three-block-with-image {
      overflow: hidden;
      padding-bottom: 25px; } }

.three-grid-header {
  display: flex;
  justify-content: center; }

.three-grid-header h3 {
  font-family: Inter;
  font-weight: bold;
  margin: 50px;
  font-size: 55px;
  background: linear-gradient(90deg, #A0F233 0%, #B5B705 51%, #207F01 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }
  @media screen and (max-width: 767px) {
    .three-grid-header h3 {
      margin: 0px; } }

.three-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 45px;
  width: 100%;
  max-width: 1200px;
  padding: 0 96px;
  margin: 0 auto; }
  @media screen and (max-width: 767px) {
    .three-grid {
      flex-direction: column;
      align-items: center;
      padding: 0 10%;
      max-width: 100%; } }

.item {
  flex: 0 0 30%;
  max-width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  position: relative;
  min-height: 200px; }
  @media screen and (max-width: 767px) {
    .item {
      flex: 0 0 100%;
      max-width: 100%; } }

.item .text-box {
  display: block;
  max-width: 300px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #207f01;
  margin-bottom: 15px; }

.item:nth-child(3) .text-box {
  max-width: 100px; }

.item img {
  max-width: 100%;
  height: auto;
  border-radius: 10px; }

.item .bottom-box {
  background: #f8f8f8;
  font-family: Inter;
  color: #207f01;
  padding: 15px;
  margin-top: 10px;
  border-radius: 10px;
  width: 100%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); }

.large-box-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 50px;
  padding: 30px;
  overflow: visible; }
  .large-box-container .slick-list {
    overflow: visible; }

.large-box-1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  gap: 40px;
  border-radius: 50px;
  padding: 50px;
  margin-bottom: 80px;
  width: 100%;
  max-width: 1000px;
  height: 477px;
  box-sizing: border-box;
  margin: 0 auto;
  border: 8px solid #017C01; }
  @media screen and (max-width: 767px) {
    .large-box-1 {
      flex-direction: column;
      padding: 20px;
      gap: 20px;
      text-align: center;
      height: auto; } }
  .large-box-1 .text-content {
    flex: 1;
    padding: 20px;
    text-align: left;
    min-width: 0; }
    @media screen and (max-width: 767px) {
      .large-box-1 .text-content {
        text-align: center; } }
  .large-box-1 h3 {
    font-size: 32px;
    color: #207f01;
    margin-bottom: 10px;
    font-family: Inter; }
    @media screen and (max-width: 767px) {
      .large-box-1 h3 {
        font-size: 28px; } }
  .large-box-1 h4 {
    font-size: 24px;
    color: #69BE58;
    font-family: Inter; }
    @media screen and (max-width: 767px) {
      .large-box-1 h4 {
        font-size: 20px; } }
  .large-box-1 p {
    font-size: 22px;
    color: #7B828A;
    font-family: Inter; }
    @media screen and (max-width: 767px) {
      .large-box-1 p {
        font-size: 18px; } }
  .large-box-1 img {
    max-width: 320px;
    flex: 0 0 380px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    overflow: hidden; }
    @media screen and (max-width: 767px) {
      .large-box-1 img {
        height: auto; } }
  @media screen and (max-width: 767px) {
    .large-box-1:nth-child(1) img {
      max-width: 50%;
      height: auto; } }
  .large-box-1:nth-child(2) {
    flex-direction: row-reverse; }

.large-box--reverse {
  flex-direction: row-reverse; }
  @media screen and (max-width: 767px) {
    .large-box--reverse {
      flex-direction: column; } }

.large-box--big-image img {
  flex: 0 0 420px;
  max-width: 420px; }

.large-box-container .slick-list {
  overflow: hidden;
  padding: 0 !important;
  margin: 0 auto;
  max-width: 1000px; }

.slick-dots li button:before {
  content: none !important;
  display: none !important; }

.img-carousel {
  display: flex;
  justify-content: center;
  align-items: center; }

.btn-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px; }

.download-btn {
  max-width: 250px;
  background-color: #000000;
  color: #ffffff !important;
  text-align: center;
  display: inline-block;
  border-radius: 25px;
  padding: 10px 28px;
  font-size: 18px;
  font-family: Inter;
  text-decoration: none !important; }

.hcp-three-block-with-image {
  position: relative;
  text-align: center; }
  @media screen and (max-width: 991px) {
    .hcp-three-block-with-image {
      padding-top: 40px; } }
  @media screen and (max-width: 767px) {
    .hcp-three-block-with-image {
      overflow: hidden;
      padding-bottom: 25px; } }

.three-grid-header {
  display: flex;
  justify-content: center; }

.three-grid-header h2 {
  font-family: Inter;
  font-weight: bold;
  margin: 50px;
  font-size: 50px;
  background: linear-gradient(90deg, #EA8939 0%, #FE7777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }
  @media screen and (max-width: 767px) {
    .three-grid-header h2 {
      margin: 0px; } }

.three-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 45px;
  width: 100%;
  max-width: 1200px;
  padding: 0 96px;
  margin: 0 auto; }
  @media screen and (max-width: 767px) {
    .three-grid {
      flex-direction: column;
      align-items: center;
      padding: 0 10%;
      max-width: 100%; } }

.item {
  flex: 0 0 30%;
  max-width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  position: relative;
  min-height: 200px; }
  @media screen and (max-width: 767px) {
    .item {
      flex: 0 0 100%;
      max-width: 100%; } }

.item .text-box {
  display: block;
  max-width: 300px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #DF4F3B;
  margin-bottom: 15px; }

.item:nth-child(3) .text-box {
  max-width: 100px; }

.item img {
  max-width: 100%;
  height: auto;
  border-radius: 10px; }

.item .bottom-box {
  background: #f8f8f8;
  font-family: Inter;
  color: #DF4F3B;
  padding: 15px;
  margin-top: 10px;
  border-radius: 10px;
  width: 100%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); }

.large-box-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 50px;
  padding: 30px;
  overflow: visible; }
  .large-box-container .slick-list {
    overflow: visible; }

.large-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  gap: 40px;
  padding: 50px;
  margin-bottom: 80px;
  width: 100%;
  max-width: 1000px;
  height: 477px;
  box-sizing: border-box;
  margin: 0 auto;
  border: 8px solid #FE7777;
  border-radius: 50px; }
  @media screen and (max-width: 767px) {
    .large-box {
      flex-direction: column;
      padding: 20px;
      gap: 20px;
      text-align: center;
      height: auto; } }
  .large-box .text-content {
    flex: 1;
    padding: 20px;
    text-align: left;
    min-width: 0; }
    @media screen and (max-width: 767px) {
      .large-box .text-content {
        text-align: center; } }
  .large-box h3 {
    font-size: 32px;
    color: #DF4F3B;
    margin-bottom: 10px;
    font-family: Inter; }
    @media screen and (max-width: 767px) {
      .large-box h3 {
        font-size: 28px; } }
  .large-box h4 {
    font-size: 24px;
    color: #DF4F3B;
    font-family: Inter; }
    @media screen and (max-width: 767px) {
      .large-box h4 {
        font-size: 20px; } }
  .large-box p {
    font-size: 22px;
    color: #7B828A;
    font-family: Inter; }
    @media screen and (max-width: 767px) {
      .large-box p {
        font-size: 18px; } }
  .large-box img {
    max-width: 318px;
    flex: 0 0 380px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    overflow: hidden; }
    @media screen and (max-width: 767px) {
      .large-box img {
        height: auto; } }
  @media screen and (max-width: 767px) {
    .large-box:nth-child(1) img {
      max-width: 50%;
      height: auto; } }
  .large-box:nth-child(2) {
    flex-direction: row-reverse; }

.large-box--reverse {
  flex-direction: row-reverse; }
  @media screen and (max-width: 767px) {
    .large-box--reverse {
      flex-direction: column; } }

.large-box--big-image img {
  flex: 0 0 420px;
  max-width: 325px; }

.large-box-container .slick-list {
  overflow: hidden;
  padding: 0 !important;
  margin: 0 auto;
  max-width: 1000px; }

.slick-dots li button:before {
  content: none !important;
  display: none !important; }

.img-carousel {
  display: flex;
  justify-content: center;
  align-items: center; }

.btn-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px; }

.download-btn {
  max-width: 250px;
  background-color: #000000;
  color: #ffffff !important;
  text-align: center;
  display: inline-block;
  border-radius: 25px;
  padding: 10px 28px;
  font-size: 18px;
  font-family: Inter;
  text-decoration: none !important; }

.support {
  display: flex;
  align-items: flex-start; }
  .support img {
    margin-right: 20px; }
  .support h2 {
    font-family: Inter;
    margin-bottom: 40px; }
  .support p {
    font-family: Arial; }

.contact {
  display: flex;
  background-color: #F8F6FA;
  border-radius: 25px;
  align-items: flex-start;
  margin-top: 100px;
  margin-bottom: 100px;
  margin-left: 50px;
  margin-right: 50px;
  padding: 20px; }
  .contact div {
    display: flex;
    flex-direction: column; }
  .contact img {
    margin-right: 20px; }
  .contact h2 {
    font-family: Inter;
    margin-bottom: 40px; }
  .contact p {
    font-family: Arial; }
  .contact a {
    text-decoration: underline; }
  .dark-mode .contact {
    background-color: grey; }
