@charset "UTF-8";
/**
 * Set up a decent box model on the root element
 */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital@1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@500&display=swap");
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 0 !important; }

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  padding: 0;
  margin: 0; }

/**
 * Basic styles for links
 */
a {
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  text-decoration: underline;
  color: inherit; }
  a:hover, a:active, a:focus {
    text-decoration: underline; }
  a:hover {
    text-decoration: none;
    color: inherit; }

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow-x: hidden;
  background: transparent;
  overflow-x: hidden;
  padding-right: 0 !important; }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    body {
      padding-right: 0 !important; } }
  @media only screen and (max-width: 767px) {
    body {
      overflow-x: hidden; } }

body:after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 100;
  background-color: #3b4454;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s 0.2s, opacity 0.2s ease;
  -o-transition: visibility 0s 0.2s, opacity 0.2s ease;
  transition: visibility 0s 0.2s, opacity 0.2s ease; }

body.overlay:after {
  opacity: 1;
  visibility: visible;
  -webkit-transition: visibility 0s, opacity 0.2s ease;
  -o-transition: visibility 0s, opacity 0.2s ease;
  transition: visibility 0s, opacity 0.2s ease; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button,
.phone {
  -webkit-appearance: none !important;
  margin: 0; }

/* Firefox */
input[type="number"],
.phone {
  -moz-appearance: textfield; }

footer {
  margin-top: auto; }

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: '';
  display: table; }

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap; }

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.slide-in-top {
  -webkit-animation: slide-in-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }

.slide-out-top {
  -webkit-animation: slide-out-top 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation: slide-out-top 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both; }

@-webkit-keyframes slide-out-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0; } }

@keyframes slide-out-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0; } }

@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

.border-box-yellow {
  border: 2px solid #F1E47F; }

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.eot");
  src: url("../fonts/Montserrat-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff"), url("../fonts/Montserrat-SemiBold.ttf") format("truetype"), url("../fonts/Montserrat-SemiBold.svg#Montserrat-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.eot");
  src: url("../fonts/Montserrat-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff"), url("../fonts/Montserrat-Regular.ttf") format("truetype"), url("../fonts/Montserrat-Regular.svg#Montserrat-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Thin.eot");
  src: url("../fonts/Montserrat-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Thin.woff2") format("woff2"), url("../fonts/Montserrat-Thin.woff") format("woff"), url("../fonts/Montserrat-Thin.ttf") format("truetype"), url("../fonts/Montserrat-Thin.svg#Montserrat-Thin") format("svg");
  font-weight: 100;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.eot");
  src: url("../fonts/Montserrat-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff") format("woff"), url("../fonts/Montserrat-Light.ttf") format("truetype"), url("../fonts/Montserrat-Light.svg#Montserrat-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.eot");
  src: url("../fonts/Montserrat-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff"), url("../fonts/Montserrat-Medium.ttf") format("truetype"), url("../fonts/Montserrat-Medium.svg#Montserrat-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-MediumItalic.eot");
  src: url("../fonts/Montserrat-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-MediumItalic.woff") format("woff"), url("../fonts/Montserrat-MediumItalic.ttf") format("truetype"), url("../fonts/Montserrat-MediumItalic.svg#Montserrat-MediumItalic") format("svg");
  font-weight: 500;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.eot");
  src: url("../fonts/Montserrat-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff"), url("../fonts/Montserrat-Bold.ttf") format("truetype"), url("../fonts/Montserrat-Bold.svg#Montserrat-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-BoldItalic.eot");
  src: url("../fonts/Montserrat-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-BoldItalic.woff2") format("woff2"), url("../fonts/Montserrat-BoldItalic.woff") format("woff"), url("../fonts/Montserrat-BoldItalic.ttf") format("truetype"), url("../fonts/Montserrat-BoldItalic.svg#Montserrat-BoldItalic") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap; }

/**
 * Basic typography style for copy text
 */
.montserrat, .cookies-banner p, .pre-footer ​ p, .pre-footer .custom-ul,
.pre-footer .custom-ol,
.montserrat-regular,
.btn-template-3,
#externalModal .close #icon,
#carouselModal .close #icon,
#cookiesOptionsModal .close #icon {
  font-family: "Montserrat";
  font-weight: normal;
  font-style: normal; }

.montserrat-thin {
  font-family: "Montserrat";
  font-weight: 100;
  font-style: normal; }

.montserrat-light {
  font-family: "Montserrat";
  font-weight: 300;
  font-style: normal; }

.montserrat-medium, p, .footnote {
  font-family: "Montserrat";
  font-weight: 500;
  font-style: normal; }

.montserrat-semibold, .bar-header .links-bar-header span, .bar-header .links-bar-header a, #externalModal .modal-body h1, #externalModal .modal-body h2, #externalModal .modal-body h3, #externalModal .modal-body h4, #externalModal .modal-body h5, #externalModal .modal-body h6, #cookiesOptionsModal .modal-body h1, #cookiesOptionsModal .modal-body h2, #cookiesOptionsModal .modal-body h3, #cookiesOptionsModal .modal-body h4, #cookiesOptionsModal .modal-body h5, #cookiesOptionsModal .modal-body h6, #cookiesOptionsModal .modal-body .custom-switch label {
  font-family: "Montserrat";
  font-weight: 600;
  font-style: normal; }

.montserrat-bold, .section-menu-mobile .btn-menu-mobile span, .section-menu-mobile .btn-menu-mobile #show-menu,
.section-menu-mobile .btn-menu-mobile #close-menu, .section-menu-mobile .btn-menu-mobile.open #show-menu, .section-menu-mobile .btn-menu-mobile.open #close-menu, .cookies-banner p strong, .pre-footer ​ p strong, .pre-footer.pinned .pre-footer__show-more #see-more,
.pre-footer.pinned .pre-footer__show-more #see-less, .btn-template-1, .btn-template-5, .btn-template-6, #externalModal .close span, #carouselModal .close span, #cookiesOptionsModal .close span, .now-approved-section .heading-1 h1, .now-approved-section .heading-1 h2, .now-approved-section .heading-1 h3, .now-approved-section .heading-1 h4, .now-approved-section .heading-1 h5, .now-approved-section .heading-1 h6 {
  font-family: "Montserrat";
  font-weight: bold;
  font-style: normal; }

.montserrat-bold-italic, .now-approved-section .heading-1 h1 i, .now-approved-section .heading-1 h2 i, .now-approved-section .heading-1 h3 i, .now-approved-section .heading-1 h4 i, .now-approved-section .heading-1 h5 i, .now-approved-section .heading-1 h6 i {
  font-family: "Montserrat";
  font-weight: bold;
  font-style: italic; }

.montserrat-black {
  font-family: "Montserrat";
  font-weight: 900;
  font-style: normal; }

.sans-serif-bold {
  font-family: sans-serif;
  font-weight: bold;
  font-style: normal; }

.fw-700 {
  font-weight: 700; }

.modal-backdrop {
  background-color: #020811; }
  .modal-backdrop.show {
    opacity: 0.8; }

.modal button.close:hover span {
  color: #394456 !important; }

.menu {
  padding-top: 0;
  padding-bottom: 0;
  z-index: 3 !important;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  background: transparent; }
  @media screen and (max-width: 991px) {
    .menu {
      background: #394456;
      padding-left: 0;
      padding-right: 0;
      -webkit-box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
      box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px; }
      .menu .logo {
        max-width: 120px; }
      .menu .container-logo {
        position: relative;
        left: 0; }
      .menu .section-menu-mobile {
        position: absolute;
        right: 20px;
        top: 14px; } }

.nav-item-blue::after {
  background-color: #425264;
  color: #425264; }

.nav-link-blue {
  color: #425264; }
  .nav-link-blue span {
    color: #425264; }
  .nav-link-blue:hover {
    color: #425264; }
    .nav-link-blue:hover span {
      color: #425264; }

.sticky-wrapper:not(.is-sticky) {
  height: auto !important; }

.sticky-wrapper.is-sticky .menu {
  background-color: #394456;
  padding: 0; }

.sticky-wrapper.is-sticky .custom-container {
  padding: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.sticky-wrapper.is-sticky .btn-menu-mobile {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.sticky-wrapper.is-sticky .container-logo {
  display: none; }

.sticky-wrapper.is-sticky .section-menu-mobile {
  position: static; }

.sticky-wrapper.is-sticky .menu-desktop {
  margin-left: 0;
  background-color: #53667d; }
  .sticky-wrapper.is-sticky .menu-desktop .nav-item:first-child {
    display: inline-block; }
  .sticky-wrapper.is-sticky .menu-desktop:after, .sticky-wrapper.is-sticky .menu-desktop:before {
    content: none; }
  .sticky-wrapper.is-sticky .menu-desktop .nav-item .nav-link {
    text-transform: uppercase; }

.menu-desktop .navbar-nav {
  width: 92%; }

.menu-desktop .nav-item {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .menu-desktop .nav-item.active a {
    color: #f4e36e !important;
    text-decoration: none !important; }
  .menu-desktop .nav-item:last-child::after {
    display: none; }
  .menu-desktop .nav-item .nav-link:focus {
    color: white; }
  .menu-desktop .nav-item .nav-link {
    color: #f4e36e !important;
    text-decoration: none;
    font-size: 22px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 20px;
    font-weight: bold;
    font-family: "Barlow Condensed", sans-serif;
    line-height: 22px; }
    .menu-desktop .nav-item .nav-link span {
      font-weight: 600; }
    @media only screen and (max-width: 1021px) and (min-width: 768px) {
      .menu-desktop .nav-item .nav-link {
        font-size: 12px; } }
    .menu-desktop .nav-item .nav-link:hover, .menu-desktop .nav-item .nav-link:focus {
      color: #fff !important;
      border-bottom: 3px solid #fff;
      text-decoration: none !important; }
      .menu-desktop .nav-item .nav-link:hover svg path, .menu-desktop .nav-item .nav-link:focus svg path {
        stroke: #e26d64 !important; }
      .menu-desktop .nav-item .nav-link:hover svg path.path-fill, .menu-desktop .nav-item .nav-link:focus svg path.path-fill {
        fill: #e26d64; }

.menu-container {
  position: relative;
  z-index: 2 !important; }

#sticky-wrapper.is-sticky {
  z-index: 300 !important;
  height: auto !important;
  position: relative; }
  #sticky-wrapper.is-sticky .menu.slide-in-top {
    height: auto; }
    #sticky-wrapper.is-sticky .menu.slide-in-top .container-logo.invisible {
      display: none; }
    #sticky-wrapper.is-sticky .menu.slide-in-top .section-menu-mobile {
      height: auto;
      margin-top: 0; }
      #sticky-wrapper.is-sticky .menu.slide-in-top .section-menu-mobile .btn-menu-mobile {
        height: 55px; }
        #sticky-wrapper.is-sticky .menu.slide-in-top .section-menu-mobile .btn-menu-mobile #show-menu {
          margin-right: 10px; }

.container-logo {
  text-align: center;
  position: absolute;
  top: 0;
  left: 30px;
  z-index: 100; }
  .container-logo.invisible {
    padding: 0;
    width: 0;
    overflow: hidden; }
  @media (min-width: 992px) {
    .container-logo .logo {
      max-width: 200px; } }

.navbar .custom-container {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important; }
  @media screen and (max-width: 578px) {
    .navbar .custom-container {
      position: relative;
      z-index: 502; } }

.menu__mobile-left {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100vw;
  height: 0;
  max-height: 0;
  overflow-y: auto;
  background: #53667d;
  z-index: 1000;
  -webkit-transition: max-height 0.3s linear;
  -o-transition: max-height 0.3s linear;
  transition: max-height 0.3s linear; }
  @media (max-width: 768px) {
    .menu__mobile-left {
      top: 118px; } }
  .menu__mobile-left .menu-mobile {
    text-align: center;
    padding-top: 0; }
    .menu__mobile-left .menu-mobile .item br {
      display: none; }
    .menu__mobile-left .menu-mobile .item.active {
      background: #40576e; }
    .menu__mobile-left .menu-mobile a {
      color: #f4e36e;
      text-decoration: none !important;
      font-size: 18px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      padding: 0 25px;
      text-align: left;
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 600;
      text-transform: uppercase; }
      .menu__mobile-left .menu-mobile a div {
        display: inline-block;
        padding-top: 1rem;
        padding-bottom: 1rem;
        background-color: transparent;
        -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
        transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
        -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; }
      .menu__mobile-left .menu-mobile a:hover, .menu__mobile-left .menu-mobile a:focus, .menu__mobile-left .menu-mobile a.active {
        background-color: #40576e; }
  @media screen and (min-width: 992px) {
    .menu__mobile-left {
      display: none; } }

.customLinkExternalMobile {
  font-family: 'Barlow Semi Condensed', sans-serif !important; }

.menu__mobile-left.open {
  height: 100vh;
  max-height: 100vh; }

.bar-header {
  -webkit-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
  background-color: #153350;
  position: relative;
  z-index: 1000; }
  @media (max-width: 991px) {
    .bar-header {
      background: #4e677f; } }
  .bar-header p {
    color: #fff !important;
    font-size: 14px;
    margin-bottom: 0; }
    @media screen and (max-width: 991px) {
      .bar-header p {
        font-size: 12px; } }
  @media screen and (max-width: 991px) {
    .bar-header .links-bar-header {
      display: none;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; } }
  .bar-header .links-bar-header span {
    font-size: 14px;
    color: black; }
    .bar-header .links-bar-header span:hover {
      text-decoration: none; }
    @media screen and (max-width: 991px) {
      .bar-header .links-bar-header span {
        text-align: center; } }
  .bar-header .links-bar-header a {
    font-size: 14px;
    color: #fff;
    display: inline-block;
    text-decoration: none; }
    .bar-header .links-bar-header a:hover {
      text-decoration: underline; }
    .bar-header .links-bar-header a:not(:last-child) {
      margin-right: 15px; }
    @media screen and (max-width: 991px) {
      .bar-header .links-bar-header a {
        text-align: center; } }
    @media screen and (max-width: 991px) {
      .bar-header .links-bar-header a:first-child {
        margin-bottom: 0.5rem; } }
    .bar-header .links-bar-header a:last-child::after {
      display: none; }
    .bar-header .links-bar-header a span {
      color: #fa06cb; }

.section-menu-mobile {
  cursor: pointer;
  margin-top: 7px;
  z-index: 5001;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .section-menu-mobile .btn-menu-mobile {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    height: 45px; }
    .section-menu-mobile .btn-menu-mobile .hamburger {
      width: 45px;
      height: 3px;
      background-color: #fff;
      border-radius: 5px;
      -webkit-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      position: relative;
      left: 0; }
      .section-menu-mobile .btn-menu-mobile .hamburger::before, .section-menu-mobile .btn-menu-mobile .hamburger::after {
        content: "";
        position: absolute;
        width: 45px;
        height: 3px;
        background-color: #fff;
        border-radius: 5px;
        -webkit-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        left: 50%; }
    .section-menu-mobile .btn-menu-mobile span {
      margin-bottom: 0;
      color: #fff;
      font-size: 14px; }
    .section-menu-mobile .btn-menu-mobile #show-menu,
    .section-menu-mobile .btn-menu-mobile #close-menu {
      -webkit-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out; }
    .section-menu-mobile .btn-menu-mobile #close-menu {
      display: none; }
  .section-menu-mobile .btn-menu-mobile .hamburger::before {
    -webkit-transform: translate(-50%, -10px);
    -ms-transform: translate(-50%, -10px);
    transform: translate(-50%, -10px); }
  .section-menu-mobile .btn-menu-mobile .hamburger::after {
    -webkit-transform: translate(-50%, 10px);
    -ms-transform: translate(-50%, 10px);
    transform: translate(-50%, 10px); }
  .section-menu-mobile .btn-menu-mobile.open .hamburger {
    background-color: transparent; }
    .section-menu-mobile .btn-menu-mobile.open .hamburger::before {
      -webkit-transform: rotate(45deg) translate(-15px, 15px);
      -ms-transform: rotate(45deg) translate(-15px, 15px);
      transform: rotate(45deg) translate(-15px, 15px);
      background-color: #fff; }
    .section-menu-mobile .btn-menu-mobile.open .hamburger::after {
      -webkit-transform: rotate(-45deg) translate(-15px, -15px);
      -ms-transform: rotate(-45deg) translate(-15px, -15px);
      transform: rotate(-45deg) translate(-15px, -15px);
      background-color: #fff; }
  .section-menu-mobile .btn-menu-mobile.open #show-menu {
    display: none; }
  .section-menu-mobile .btn-menu-mobile.open #close-menu {
    display: inline-block;
    color: #fff; }

.sticky-wrapper.is-sticky .btn-menu-mobile {
  padding-top: 13px;
  padding-bottom: 13px; }

@media (max-width: 768px) {
  .sticky-wrapper.is-sticky .menu__mobile-left {
    top: 100px; } }

@media (max-width: 575px) {
  .sticky-wrapper.is-sticky .menu__mobile-left {
    top: 75px; } }

.cookies-banner p {
  font-size: 14px; }
  .cookies-banner p strong {
    color: #4b5c71;
    text-transform: uppercase;
    font-size: 16px; }

.cookies-banner a:not(.btn) {
  color: #003447;
  text-decoration: underline; }
  .cookies-banner a:not(.btn):hover {
    color: #003447;
    text-decoration: none; }

.menu-desktop {
  position: relative;
  margin-left: 200px; }
  .menu-desktop .nav-item:first-child {
    display: none; }
  .menu-desktop .menu-item {
    border-bottom: 3px solid transparent;
    height: 100%; }
    .menu-desktop .menu-item.active {
      border-bottom: 3px solid #fff;
      color: #fff !important; }
  .menu-desktop::before {
    content: "";
    position: absolute;
    width: calc(100% + 16px);
    height: 100%;
    top: 0;
    right: -20px;
    left: 35px;
    background: -webkit-gradient(linear, left top, left bottom, from(#153350), color-stop(22%, #153350), to(rgba(21, 51, 80, 0.5)));
    background: -webkit-linear-gradient(top, #153350 0%, #153350 22%, rgba(21, 51, 80, 0.5) 100%);
    background: -o-linear-gradient(top, #153350 0%, #153350 22%, rgba(21, 51, 80, 0.5) 100%);
    background: linear-gradient(180deg, #153350 0%, #153350 22%, rgba(21, 51, 80, 0.5) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 0 0 0 45px; }
  .menu-desktop::after {
    content: "";
    position: absolute;
    border-top-right-radius: 40px;
    left: -25px;
    top: 0;
    height: 70px;
    width: 62px;
    background-color: transparent;
    -webkit-box-shadow: 0 -30px 0 0 #153450;
    box-shadow: 0 -30px 0 0 #153450; }

.header-shape {
  position: relative; }

.btn-cookies {
  font-size: 16px !important; }

@media screen and (min-width: 992px) {
  .custom-cs-main {
    margin-top: -71px; } }

.border-r {
  border-right: 1px solid white; }

@media (min-width: 576px) {
  .sm-border-r {
    border-right: 1px solid white; } }

footer {
  background-color: #323d4b !important; }

.links-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  @media screen and (max-width: 767px) {
    .links-footer {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; } }
  .links-footer a {
    color: white;
    text-decoration: underline; }
    .links-footer a:hover, .links-footer a:focus {
      color: white;
      text-decoration: none; }
    .links-footer a::after {
      display: inline-block;
      width: 1.5px;
      height: 12px;
      background-color: white;
      color: white;
      content: "";
      position: relative;
      margin-left: 10px;
      margin-right: 10px; }
    .links-footer a:last-child::after {
      display: none; }
    @media screen and (max-width: 991px) {
      .links-footer a {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
        padding: 13px 0; }
        .links-footer a::after {
          display: none !important; } }

.disclaimer-footer {
  text-align: center; }
  .disclaimer-footer p {
    margin-bottom: 0;
    color: white; }

.pre-footer {
  width: 100%;
  -webkit-transition: max-height 0.15s linear;
  -o-transition: max-height 0.15s linear;
  transition: max-height 0.15s linear;
  padding-top: 20px;
  padding-bottom: 1rem;
  background-color: white;
  border-radius: 24px 24px 0 0;
  color: #53667d;
  font-family: "Montserrat", sans-serif;
  z-index: 502;
  max-width: 1260px; }
  @media (max-width: 991px) {
    .pre-footer {
      overflow-y: hidden; } }
  @media (max-width: 576px) {
    .pre-footer {
      max-width: calc(100% - 30px); } }
  .pre-footer p {
    font-size: 16px;
    font-family: "Montserrat";
    font-weight: 500;
    font-style: normal;
    margin-bottom: 5px;
    line-height: 25px; }
  .pre-footer ul {
    font-size: 16px;
    font-family: "Montserrat";
    font-weight: 500;
    font-style: normal; }
  .pre-footer a:not(.link-phone) {
    color: #53667d;
    text-decoration: underline; }
    .pre-footer a:not(.link-phone):hover, .pre-footer a:not(.link-phone):focus {
      color: #53667d;
      text-decoration: none; }
  .pre-footer .link-phone {
    color: #53667d; }
    .pre-footer .link-phone:hover {
      color: #53667d; }
  .pre-footer .color-red {
    font-weight: 500; }
  .pre-footer i {
    font-family: sans-serif;
    font-weight: 300;
    font-style: italic; }
  .pre-footer::-webkit-scrollbar {
    width: 0.4rem;
    height: 1rem;
    margin-right: 5px; }
  .pre-footer::-webkit-scrollbar-track-piece {
    background: #dde0e5;
    border-radius: 5px; }
  .pre-footer::-webkit-scrollbar-thumb {
    background: #53667d;
    border-radius: 5px; }
  .pre-footer ​ p strong {
    text-transform: uppercase; }
  .pre-footer .custom-ul,
  .pre-footer .custom-ol {
    padding-left: 1rem; }
    .pre-footer .custom-ul li,
    .pre-footer .custom-ol li {
      margin-bottom: 5px; }
  .pre-footer .custom-ol {
    margin-top: 5px; }
  .pre-footer .c-strong {
    font-size: 16px; }
  .pre-footer .yellow-heading {
    background-color: #f4e36e;
    display: none; }
  @media screen and (min-width: 992px) {
    .pre-footer .unpinned-headingv2 {
      display: block !important; }
    .pre-footer .unpinned-headingv3 {
      display: block !important; }
    .pre-footer .custom_headingv2 {
      padding-top: 0 !important; } }
  @media (min-width: 992px) {
    .pre-footer .customTitleHeading {
      display: none; } }
  .pre-footer.pinned {
    position: fixed;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0px;
    height: 190px;
    max-height: 190px;
    -webkit-transition: max-height 0.25s ease-out, height 0.25s ease-out;
    -o-transition: max-height 0.25s ease-out, height 0.25s ease-out;
    transition: max-height 0.25s ease-out, height 0.25s ease-out;
    z-index: 502;
    -webkit-box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.16); }
    @media screen and (min-width: 992px) {
      .pre-footer.pinned {
        overflow-y: hidden; }
        .pre-footer.pinned .unpinned-headingv2 {
          display: none !important; }
        .pre-footer.pinned .custom_headingv2 {
          padding-top: 7.5px !important; }
        .pre-footer.pinned .unpinned-heading-v3 {
          display: none !important; } }
    @media screen and (max-width: 991px) {
      .pre-footer.pinned .unpinned-headingv2 {
        line-height: 1;
        font-size: 24px !important; } }
    @media (min-width: 992px) {
      .pre-footer.pinned .customTitleHeading {
        display: inline-block; } }
    .pre-footer.pinned .headingDesktopFooter {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .pre-footer.pinned .yellow-heading {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-left: -16px;
      margin-right: -16px;
      font-family: "Barlow Condensed", sans-serif; }
      @media (max-width: 991px) {
        .pre-footer.pinned .yellow-heading {
          display: none; } }
      .pre-footer.pinned .yellow-heading p {
        font-size: 19px;
        line-height: 1; }
      .pre-footer.pinned .yellow-heading [class^="col"] {
        padding-left: 16px;
        padding-right: 16px; }
    .pre-footer.pinned .unpinned-heading {
      visibility: hidden;
      margin-bottom: 0; }
      @media (max-width: 991px) {
        .pre-footer.pinned .unpinned-heading {
          display: inline-block;
          visibility: visible;
          font-size: 24px; } }
    .pre-footer.pinned .pre-footer__show-more {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      position: absolute !important;
      top: 7px;
      z-index: 1;
      right: 5px;
      -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      transform: translate(0, 0);
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      outline: 0;
      border: none;
      height: 28px;
      background: none; }
      @media (max-width: 991px) {
        .pre-footer.pinned .pre-footer__show-more {
          top: 10px;
          right: 7px; } }
      .pre-footer.pinned .pre-footer__show-more:hover #see-more,
      .pre-footer.pinned .pre-footer__show-more:hover #see-less {
        color: #e16c63; }
      .pre-footer.pinned .pre-footer__show-more:hover .icon {
        border: 2px solid #e16c63;
        background: #e16c63;
        -webkit-transition: background-color 0.2s ease;
        -o-transition: background-color 0.2s ease;
        transition: background-color 0.2s ease; }
      .pre-footer.pinned .pre-footer__show-more #see-more,
      .pre-footer.pinned .pre-footer__show-more #see-less {
        text-transform: uppercase;
        color: #e16c63;
        -webkit-transition: color 0.2s ease;
        -o-transition: color 0.2s ease;
        transition: color 0.2s ease; }
        @media screen and (max-width: 991px) {
          .pre-footer.pinned .pre-footer__show-more #see-more,
          .pre-footer.pinned .pre-footer__show-more #see-less {
            display: none; } }
      .pre-footer.pinned .pre-footer__show-more .icon {
        position: relative;
        display: inline-block;
        border-radius: 50%;
        border: 2px solid #e16c63;
        background: #e16c63;
        -webkit-transition: background-color 0.2s ease;
        -o-transition: background-color 0.2s ease;
        transition: background-color 0.2s ease;
        height: 35px;
        width: 35px; }
        .pre-footer.pinned .pre-footer__show-more .icon svg {
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-48%, -49%);
          -ms-transform: translate(-48%, -49%);
          transform: translate(-48%, -49%);
          width: 1rem;
          height: 1rem; }
          @media screen and (min-width: 992px) {
            .pre-footer.pinned .pre-footer__show-more .icon svg {
              top: 50%;
              left: 50%;
              -webkit-transform: translate(-52%, -48%);
              -ms-transform: translate(-52%, -48%);
              transform: translate(-52%, -48%);
              width: 20px;
              height: 20px; } }
          .pre-footer.pinned .pre-footer__show-more .icon svg line {
            fill: none;
            stroke: #fff;
            stroke-width: 8px;
            stroke-linecap: square;
            -webkit-transition: stroke 0.2s ease;
            -o-transition: stroke 0.2s ease;
            transition: stroke 0.2s ease; }
            .pre-footer.pinned .pre-footer__show-more .icon svg line:first-child {
              display: block; }
  .pre-footer .unpinned-heading {
    font-family: "Barlow Condensed", sans-serif;
    color: #BD5547;
    font-size: 24px;
    margin-bottom: 5px;
    line-height: 1.2; }
  .pre-footer #see-more {
    display: block; }
  .pre-footer #see-less {
    display: none; }
  .pre-footer.open {
    -webkit-transition: max-height 0.25s ease-in;
    -o-transition: max-height 0.25s ease-in;
    transition: max-height 0.25s ease-in;
    height: 71vh;
    max-height: 71vh; }
    .pre-footer.open .overflow-y-scroll {
      overflow-y: scroll;
      height: calc(71vh - 110px);
      max-height: calc(71vh - 110px); }
      @media (min-width: 992px) {
        .pre-footer.open .overflow-y-scroll {
          height: calc(64vh - 100px);
          max-height: calc(64vh - 100px); } }
    @media screen and (min-width: 1400px) {
      .pre-footer.open {
        height: 60vh;
        max-height: 60vh; } }
    .pre-footer.open #see-more {
      display: none; }
    .pre-footer.open #see-less {
      display: block; }
    .pre-footer.open .pre-footer__show-more svg line:first-child {
      display: none !important; }
  .pre-footer .pre-footer__show-more {
    display: none; }

@media screen and (min-width: 992px) {
  .pinned {
    padding: 0 0 5px 0; } }

.social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  @media screen and (max-width: 991px) {
    .social-media {
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; } }
  .social-media a {
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    text-decoration: none; }
    .social-media a:hover, .social-media a:focus {
      text-decoration: none; }
      .social-media a:hover .facebook,
      .social-media a:hover .fb,
      .social-media a:hover .twitter,
      .social-media a:hover .tw,
      .social-media a:hover .yt,
      .social-media a:hover .ig,
      .social-media a:hover .ink, .social-media a:focus .facebook,
      .social-media a:focus .fb,
      .social-media a:focus .twitter,
      .social-media a:focus .tw,
      .social-media a:focus .yt,
      .social-media a:focus .ig,
      .social-media a:focus .ink {
        background-color: #4267b2; }
        .social-media a:hover .facebook::after,
        .social-media a:hover .fb::after,
        .social-media a:hover .twitter::after,
        .social-media a:hover .tw::after,
        .social-media a:hover .yt::after,
        .social-media a:hover .ig::after,
        .social-media a:hover .ink::after, .social-media a:focus .facebook::after,
        .social-media a:focus .fb::after,
        .social-media a:focus .twitter::after,
        .social-media a:focus .tw::after,
        .social-media a:focus .yt::after,
        .social-media a:focus .ig::after,
        .social-media a:focus .ink::after {
          color: white; }
  .social-media .facebook,
  .social-media .fb {
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    background-color: white;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .social-media .facebook::after,
    .social-media .fb::after {
      font-family: "Font Awesome 5 Brands";
      font-weight: 900;
      content: "\f39e";
      color: black;
      font-size: 20px; }
  .social-media .twitter,
  .social-media .tw {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .social-media .twitter::after,
    .social-media .tw::after {
      font-family: "Font Awesome 5 Brands";
      font-weight: 400;
      content: "\f081";
      color: white;
      font-size: 20px; }
  .social-media .yt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .social-media .yt::after {
      font-family: "Font Awesome 5 Brands";
      font-weight: 400;
      content: "\f167";
      color: white;
      font-size: 20px; }
  .social-media .ig {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .social-media .ig::after {
      font-family: "Font Awesome 5 Brands";
      font-weight: 400;
      content: "\e055";
      color: white;
      font-size: 20px; }
  .social-media .ink {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .social-media .ink::after {
      font-family: "Font Awesome 5 Brands";
      font-weight: 400;
      content: "\f08c";
      color: white;
      font-size: 20px; }

@media screen and (max-width: 991px) {
  .unpinned-headingv2 {
    font-size: 24px !important; } }

@media screen and (max-width: 991px) {
  .unpinned-heading-v3 {
    font-size: 24px !important; } }

.customTitleHeading {
  color: #BD5547 !important;
  line-height: 1;
  font-family: "Barlow Condensed", sans-serif !important;
  font-size: 24px !important; }

.btn-template-1 {
  background-color: white;
  border: 3px solid #f0e36d;
  color: #425264;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 14px;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  border-radius: 30px;
  -webkit-box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.15); }
  .btn-template-1:hover {
    background-color: #fcf7d4;
    -webkit-box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.15); }
  .btn-template-1:focus {
    background-color: #f4e36e;
    -webkit-box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.15); }

.btn-template-2 {
  background-color: #f4e36e;
  border-color: #f4e36e;
  color: #425264;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 22px;
  border-radius: 26px;
  -webkit-box-shadow: -2px 4px 3px rgba(0, 0, 0, 0.65);
  box-shadow: -2px 4px 3px rgba(0, 0, 0, 0.65);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: bold;
  padding: 0.5rem 1.2rem;
  border: 3px solid #f4e36e; }
  .btn-template-2 .fa {
    font-size: 18px; }
  .btn-template-2:hover, .btn-template-2:focus {
    background-color: #fff;
    border-color: #f4e36e;
    color: #425264;
    text-decoration: none !important; }

.btn-template-3 {
  background-color: #f4e36e;
  border-color: #f4e36e;
  color: black;
  border-radius: 25px 25px 0 0;
  padding-left: 2rem;
  padding-right: 2rem;
  text-decoration: none; }
  .btn-template-3:hover, .btn-template-3:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    background-color: #f4e36e;
    border-color: #f4e36e;
    color: black;
    text-decoration: none !important; }

.btn-template-4 {
  background-color: white;
  border: 5px solid #e26d64;
  color: #53667d;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 22px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  border-radius: 26px;
  -webkit-box-shadow: -2px 4px 3px rgba(0, 0, 0, 0.65);
  box-shadow: -2px 4px 3px rgba(0, 0, 0, 0.65);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: bold; }
  .btn-template-4 .fa {
    font-size: 17px; }
  .btn-template-4:hover {
    background-color: #fcf7d4;
    color: #53667d; }
  .btn-template-4:active {
    background-color: #e26d64;
    color: #53667d; }

.btn-template-5 {
  background-color: #f4e36e;
  color: #3b4454;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 16px;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 26px;
  -webkit-box-shadow: -2px 4px 3px rgba(0, 0, 0, 0.65);
  box-shadow: -2px 4px 3px rgba(0, 0, 0, 0.65); }
  @media (max-width: 767px) {
    .btn-template-5 {
      font-size: 14px; } }
  .btn-template-5:hover {
    background-color: #fcf7d4; }
  .btn-template-5:active {
    background-color: #e26d64; }

.btn-template-6 {
  background-color: #f4e36e;
  color: #3b4454;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 22px;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 26px;
  -webkit-box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.15); }
  .btn-template-6:hover {
    background-color: #fcf7d4; }
  .btn-template-6:active {
    background-color: #e26d64; }

.btn-template-7 {
  background: #53667d;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  text-decoration: none;
  font-size: 22px;
  line-height: 22px;
  border-radius: 21px;
  text-decoration: none;
  padding: 5px 25px;
  line-height: 1;
  font-weight: bold; }
  .btn-template-7:hover {
    background: #394456;
    color: #fff; }

@media screen and (min-width: 992px) {
  #externalModal .modal-dialog {
    max-width: 650px !important; } }

#externalModal .modal-content {
  border-radius: 0;
  background-color: #e26d64;
  border-top: 5px solid #f0e36d;
  border-left: 0;
  border-bottom: 0;
  border-right: 0; }

#externalModal .close {
  opacity: 1;
  text-shadow: none;
  color: #262a36;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  #externalModal .close:hover {
    color: #fff; }
    #externalModal .close:hover svg line {
      stroke: #fff; }
  #externalModal .close #icon {
    font-size: 65px !important;
    line-height: 0.6; }
  #externalModal .close span {
    font-size: 11px;
    margin-top: 5px !important; }

#externalModal .modal-body h1, #externalModal .modal-body h2, #externalModal .modal-body h3, #externalModal .modal-body h4, #externalModal .modal-body h5, #externalModal .modal-body h6 {
  color: white; }

#carouselModal .modal-body {
  padding-top: 75px; }

#carouselModal .close {
  opacity: 1;
  text-shadow: none;
  color: #57657b;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  margin-top: -60px; }
  #carouselModal .close #icon {
    font-size: 65px !important;
    line-height: 0.6; }
  #carouselModal .close span {
    font-size: 11px;
    margin-top: 5px !important; }

#carouselModal .modal-carousel {
  width: 85%;
  margin: auto;
  margin-bottom: 50px;
  -webkit-box-shadow: 8px 8px 4px rgba(0, 0, 0, 0.16);
  box-shadow: 8px 8px 4px rgba(0, 0, 0, 0.16); }
  #carouselModal .modal-carousel .slick-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  #carouselModal .modal-carousel > img:not(:first-child) {
    display: none; }
  #carouselModal .modal-carousel .slick-arrow:not(.slick-disabled):before {
    opacity: 1; }
  #carouselModal .modal-carousel .slick-prev {
    left: -40px; }
    #carouselModal .modal-carousel .slick-prev:before {
      content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23.937' height='42.217' viewBox='0 0 23.937 42.217'%3E%3Cg id='Grupo_8472' data-name='Grupo 8472' transform='translate(21.108 39.388) rotate(180)'%3E%3Cline id='Línea_202' data-name='Línea 202' x2='18.28' y2='18.28' transform='translate(0)' fill='none' stroke='%2357657b' stroke-linecap='round' stroke-width='4'/%3E%3Cline id='Línea_203' data-name='Línea 203' y1='18.28' x2='18.28' transform='translate(0 18.28)' fill='none' stroke='%2357657b' stroke-linecap='round' stroke-width='4'/%3E%3C/g%3E%3C/svg%3E%0A"); }
  #carouselModal .modal-carousel .slick-next {
    right: -40px; }
    #carouselModal .modal-carousel .slick-next:before {
      content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23.937' height='42.217' viewBox='0 0 23.937 42.217'%3E%3Cg id='Grupo_8471' data-name='Grupo 8471' transform='translate(2.828 2.828)'%3E%3Cline id='Línea_202' data-name='Línea 202' x2='18.28' y2='18.28' fill='none' stroke='%2357657b' stroke-linecap='round' stroke-width='4'/%3E%3Cline id='Línea_203' data-name='Línea 203' y1='18.28' x2='18.28' transform='translate(0 18.28)' fill='none' stroke='%2357657b' stroke-linecap='round' stroke-width='4'/%3E%3C/g%3E%3C/svg%3E%0A"); }
  #carouselModal .modal-carousel .slick-dots {
    bottom: -45px; }
    #carouselModal .modal-carousel .slick-dots li button {
      border: 3px solid #57657b;
      border-radius: 50%; }
      #carouselModal .modal-carousel .slick-dots li button::before {
        content: none; }
    #carouselModal .modal-carousel .slick-dots li.slick-active button {
      border: 2px solid #fff;
      background: #57657b; }

@media screen and (min-width: 992px) {
  #hcpModal .modal-dialog {
    max-width: 550px !important; } }

#cookiesOptionsModal .modal-header {
  border-bottom: 0; }

@media screen and (max-width: 400px) {
  #cookiesOptionsModal .modal-body {
    padding-left: 40px !important;
    padding-right: 40px !important; } }

#cookiesOptionsModal .modal-content {
  border-radius: 30px;
  border: 0; }

#cookiesOptionsModal .close {
  opacity: 1;
  text-shadow: none;
  color: black;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  #cookiesOptionsModal .close:hover, #cookiesOptionsModal .close:focus {
    color: #394456; }
    #cookiesOptionsModal .close:hover *, #cookiesOptionsModal .close:focus * {
      color: #394456; }
  #cookiesOptionsModal .close #icon {
    font-size: 65px !important;
    line-height: 0.6;
    color: #53667d; }
  #cookiesOptionsModal .close span {
    font-size: 10px;
    color: #53667d; }

#cookiesOptionsModal .modal-body {
  padding-left: 60px;
  padding-right: 80px; }
  #cookiesOptionsModal .modal-body .heading-title {
    font-size: 16px; }
  #cookiesOptionsModal .modal-body h1, #cookiesOptionsModal .modal-body h2, #cookiesOptionsModal .modal-body h3, #cookiesOptionsModal .modal-body h4, #cookiesOptionsModal .modal-body h5, #cookiesOptionsModal .modal-body h6 {
    color: white; }
  #cookiesOptionsModal .modal-body p {
    font-size: 14px;
    color: #53667d; }
    #cookiesOptionsModal .modal-body p strong {
      color: #53667d; }
  #cookiesOptionsModal .modal-body a {
    color: #53667d;
    text-decoration: underline; }
    #cookiesOptionsModal .modal-body a:hover, #cookiesOptionsModal .modal-body a:focus {
      color: #53667d;
      text-decoration: none; }
  #cookiesOptionsModal .modal-body hr {
    border-top: 1.5px solid #57657b; }
  #cookiesOptionsModal .modal-body .custom-switch {
    padding-left: 3.25rem; }
    #cookiesOptionsModal .modal-body .custom-switch .custom-control-input:checked ~ .custom-control-label:after {
      -webkit-transform: translateX(1.25rem);
      -ms-transform: translateX(1.25rem);
      transform: translateX(1.25rem); }
    #cookiesOptionsModal .modal-body .custom-switch .custom-control-label:before {
      height: 1.5rem;
      width: 2.75rem;
      left: -3.25rem;
      border-radius: 99px; }
    #cookiesOptionsModal .modal-body .custom-switch .custom-control-label:after {
      width: calc(1.5rem - 4px);
      height: calc(1.5rem - 4px);
      left: calc(-3.25rem + 2px);
      border-radius: 50%; }
    #cookiesOptionsModal .modal-body .custom-switch label {
      color: #53667d; }
    #cookiesOptionsModal .modal-body .custom-switch .custom-control-input:checked ~ .custom-control-label::before {
      color: #53667d;
      border-color: #53667d;
      background-color: #dde0e5; }
    #cookiesOptionsModal .modal-body .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
      background-color: #53667d; }

#cookiesOptionsModal .modal-header {
  border-bottom: 0; }

#cookiesOptionsModal .modal-content {
  border-radius: 30px;
  border: 0; }

#cookiesOptionsModal .close {
  opacity: 1;
  text-shadow: none;
  color: black;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  #cookiesOptionsModal .close #icon {
    font-size: 65px !important;
    line-height: 0.6;
    color: #53667d; }
  #cookiesOptionsModal .close span {
    font-size: 10px;
    color: #53667d; }

#cookiesOptionsModal .modal-body {
  padding-left: 60px;
  padding-right: 80px; }
  #cookiesOptionsModal .modal-body .heading-title {
    font-size: 16px; }
  #cookiesOptionsModal .modal-body h1, #cookiesOptionsModal .modal-body h2, #cookiesOptionsModal .modal-body h3, #cookiesOptionsModal .modal-body h4, #cookiesOptionsModal .modal-body h5, #cookiesOptionsModal .modal-body h6 {
    color: white; }
  #cookiesOptionsModal .modal-body p {
    font-size: 14px;
    color: #53667d; }
    #cookiesOptionsModal .modal-body p strong {
      color: #53667d; }
  #cookiesOptionsModal .modal-body a {
    color: #53667d;
    text-decoration: underline; }
    #cookiesOptionsModal .modal-body a:hover, #cookiesOptionsModal .modal-body a:focus {
      color: #53667d;
      text-decoration: none; }
  #cookiesOptionsModal .modal-body hr {
    border-top: 1.5px solid #57657b; }
  #cookiesOptionsModal .modal-body .custom-switch label {
    color: #53667d; }
  #cookiesOptionsModal .modal-body .custom-switch .custom-control-input:checked ~ .custom-control-label::before {
    color: #53667d;
    border-color: #53667d;
    background-color: #dde0e5; }
  #cookiesOptionsModal .modal-body .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
    background-color: #53667d; }

#quizTest .modal-content {
  border-radius: 0; }

#quizTest .modal-header {
  background-color: #f3645e;
  border-radius: 0;
  padding-right: 65px;
  padding-top: 8px;
  padding-bottom: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  @media (max-width: 520px) {
    #quizTest .modal-header {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; } }
  #quizTest .modal-header .modal-title {
    line-height: 1;
    margin-bottom: 0;
    font-size: 30px;
    padding-top: 13px; }
  #quizTest .modal-header .btn-template-2 {
    font-size: 22px; }
    #quizTest .modal-header .btn-template-2 .fa {
      font-size: 18px;
      margin-left: 5px; }
    @media (max-width: 520px) {
      #quizTest .modal-header .btn-template-2 {
        margin-top: 7px; } }

#quizTest #quizTestClose {
  cursor: pointer;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 20px;
  top: 18px; }
  #quizTest #quizTestClose:hover path {
    fill: #fff; }

#quizTest .modal-body {
  padding: 0; }

#quizTest .quiz-step__content {
  padding: 20px; }

#quizTest .quiz-step__answer {
  padding: 20px;
  background-color: #dfeef6;
  color: #53667d;
  font-family: "Montserrat", sans-serif; }
  #quizTest .quiz-step__answer ol {
    padding-left: 18px;
    margin-bottom: 0; }

#quizTest .quiz-step .btn-template-4 {
  font-size: 22px; }

#quizTest .quiz-step .btn-template-7:focus, #quizTest .quiz-step .btn-template-7:active, #quizTest .quiz-step .btn-template-7:hover {
  text-decoration: none; }

#quizTest .quiz-step .btn-template-7.correct {
  background: #3b4454;
  text-decoration: none !important; }
  #quizTest .quiz-step .btn-template-7.correct:hover, #quizTest .quiz-step .btn-template-7.correct:focus {
    text-decoration: none !important;
    background: #3b4454; }
  #quizTest .quiz-step .btn-template-7.correct:after {
    content: "✓";
    margin-left: 5px; }

#quizTest .quiz-step .btn-template-7.incorrect {
  background: #3b4454;
  text-decoration: none !important; }
  #quizTest .quiz-step .btn-template-7.incorrect:hover, #quizTest .quiz-step .btn-template-7.incorrect:focus {
    background: #3b4454;
    text-decoration: none !important; }
  #quizTest .quiz-step .btn-template-7.incorrect:after {
    content: "X";
    margin-left: 5px;
    font-size: 115%; }

#vowst-navigation-tabs {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end; }
  #vowst-navigation-tabs .nav-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 250px;
    text-align: center; }
    @media (max-width: 991px) {
      #vowst-navigation-tabs .nav-item {
        margin-right: 0 !important; }
        #vowst-navigation-tabs .nav-item:last-child {
          margin-left: -20px !important; } }
  #vowst-navigation-tabs .nav-link {
    border-radius: 17px 17px 0 0;
    text-decoration: none;
    background: #f4f4f4;
    border: none;
    font-weight: bold;
    font-size: 22px;
    line-height: 22px;
    color: #53667d; }
    @media (max-width: 768px) {
      #vowst-navigation-tabs .nav-link {
        font-size: 17px; } }
    #vowst-navigation-tabs .nav-link:not(.active) {
      -webkit-box-shadow: inset 0 -4px 6px rgba(0, 0, 0, 0.16);
      box-shadow: inset 0 -4px 6px rgba(0, 0, 0, 0.16); }
    #vowst-navigation-tabs .nav-link.active {
      border: none;
      background-color: #fef9df;
      position: relative;
      z-index: 10; }
  #vowst-navigation-tabs.blue-tabs .nav-link.active {
    background-color: #dbeff7; }

#faq-accordion .card {
  text-align: left;
  border: none;
  border-radius: 0;
  margin-bottom: 30px; }
  #faq-accordion .card .card-header {
    background-color: #53667d;
    border: none;
    color: #fff;
    padding: 0;
    border-radius: 0;
    position: relative; }
    #faq-accordion .card .card-header button {
      display: block;
      text-align: left;
      height: 100%;
      width: 100%;
      color: #fff;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      background: transparent;
      border: none;
      font-family: "Veneer", sans-serif;
      padding: 20px 80px 15px 20px;
      letter-spacing: 1px;
      font-size: 30px; }
      @media (max-width: 991px) {
        #faq-accordion .card .card-header button {
          font-size: 27px; } }
      #faq-accordion .card .card-header button[aria-expanded="true"] + .fa:before {
        content: "\f068"; }
    #faq-accordion .card .card-header .fa {
      position: absolute;
      right: 30px;
      top: 17px;
      color: #f4e36e;
      font-size: 40px;
      color: #f4e36e;
      pointer-events: none; }
  #faq-accordion .card .card-body {
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    font-family: "Montserrat", sans-serif; }
    #faq-accordion .card .card-body p {
      color: #53667d;
      font-weight: 500; }
    #faq-accordion .card .card-body a.barlow-condensed {
      color: #BD5547;
      font-weight: bold;
      font-size: 19px;
      text-transform: uppercase; }
      @media (min-width: 992px) {
        #faq-accordion .card .card-body a.barlow-condensed {
          font-size: 22px; } }
    #faq-accordion .card .card-body a:hover, #faq-accordion .card .card-body a:active, #faq-accordion .card .card-body a:focus {
      text-decoration: none; }
      #faq-accordion .card .card-body a:hover:not(.barlow-condensed), #faq-accordion .card .card-body a:active:not(.barlow-condensed), #faq-accordion .card .card-body a:focus:not(.barlow-condensed) {
        color: inherit; }

.now-approved-section {
  position: relative; }
  @media screen and (min-width: 1400px) {
    .now-approved-section {
      max-width: 1140px;
      margin: auto; } }
  .now-approved-section .group-people {
    position: absolute;
    top: -50px;
    right: 10%;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    height: 100%;
    z-index: 2; }
    @media screen and (max-width: 991px) {
      .now-approved-section .group-people {
        display: none; } }
  .now-approved-section .group-people-mobile {
    width: 100%;
    position: relative;
    right: -15px;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
    @media screen and (min-width: 992px) {
      .now-approved-section .group-people-mobile {
        display: none; } }
  .now-approved-section .heading-1 {
    text-align: center; }
    .now-approved-section .heading-1 h1, .now-approved-section .heading-1 h2, .now-approved-section .heading-1 h3, .now-approved-section .heading-1 h4, .now-approved-section .heading-1 h5, .now-approved-section .heading-1 h6 {
      color: #ed8b00; }

#block-vowst-content {
  background: #55657e; }

.now-approved-section-v2 {
  position: relative;
  background-color: #77b2cf;
  -webkit-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out; }
  .now-approved-section-v2 .content {
    position: absolute;
    top: 20%;
    left: 0;
    height: 100%;
    z-index: 1; }
    @media (min-width: 992px) {
      .now-approved-section-v2 .content {
        top: 0;
        left: 0;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0); } }
  @media (min-width: 992px) and (min-width: 769px) {
    .now-approved-section-v2 .content .row {
      height: 100%;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; } }
  .now-approved-section-v2 h1 {
    font-size: 60px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    line-height: 1; }
    @media (max-width: 768px) {
      .now-approved-section-v2 h1 {
        font-size: 30px; } }
  @media screen and (min-width: 992px) {
    .now-approved-section-v2 .customH1 {
      font-size: 68px; } }
  .now-approved-section-v2 .btn-template-1 {
    padding: 15px; }
    @media (min-width: 768px) {
      .now-approved-section-v2 .btn-template-1 {
        max-width: 350px; } }
  .now-approved-section-v2 .content-2 {
    position: absolute;
    bottom: 0;
    left: 80%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
    @media screen and (max-width: 991px) {
      .now-approved-section-v2 .content-2 {
        left: 50%; } }
  .now-approved-section-v2 .cs-disclaimer {
    position: absolute;
    bottom: 11%;
    left: 45px;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 17px; }

.yellow-card {
  border-radius: 44px;
  color: #53667d;
  font-family: "Montserrat", "Helvetica Neue", Helvetica;
  padding: 60px 0; }
  @media (max-width: 768px) {
    .yellow-card {
      padding: 30px 15px; } }
  @media (min-width: 769px) {
    .yellow-card__header {
      max-width: 50%;
      margin: auto; } }

.banner-mobile-yellow-badge {
  padding: 15px;
  font-size: 36px;
  line-height: 1;
  color: #53667D;
  text-align: center;
  text-transform: uppercase; }

@media (max-width: 991px) {
  .customTextHeroDesktop {
    display: none !important; } }

.customVideoHomepage video {
  -o-object-fit: cover;
  object-fit: cover; }

.dv-ruler {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 170px; }
  @media (min-width: 992px) {
    .dv-ruler {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      margin-bottom: 60px; }
      .dv-ruler::before {
        content: "";
        position: absolute;
        left: 0;
        top: 23%;
        width: 100%;
        height: 13px;
        background: #e26d64;
        border-radius: 20px; } }
  .dv-ruler__item {
    z-index: 1;
    position: relative;
    padding: 0 15px;
    width: 100%;
    margin-bottom: 25px; }
    @media (max-width: 991px) {
      .dv-ruler__item p {
        margin-bottom: 0; } }
    @media (min-width: 992px) {
      .dv-ruler__item {
        width: 25%;
        margin-bottom: 0; } }
    .dv-ruler__item img {
      width: 150px; }
      @media (max-width: 991px) {
        .dv-ruler__item img {
          width: 200px; } }

.red-border-box {
  border: 3px solid #e26d64;
  padding: 25px;
  padding-top: 50px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  border-radius: 17px;
  position: relative;
  font-size: 17px;
  font-weight: 500; }
  .red-border-box__icon {
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 61px;
    padding: 13px;
    border-radius: 50%;
    background: #e26d64;
    -webkit-box-shadow: -2px 4px 3px rgba(0, 0, 0, 0.6);
    box-shadow: -2px 4px 3px rgba(0, 0, 0, 0.6); }
  .red-border-box--v2 {
    color: #53667d;
    background: #fdf9e2; }
    .red-border-box--v2 .bulb-icon {
      padding: 12px 15px; }

.yellow-border-box {
  border: 3px solid #f4e36e;
  padding: 25px;
  padding-top: 50px;
  color: #53667d;
  font-family: "Montserrat", sans-serif;
  border-radius: 17px;
  position: relative;
  font-size: 17px;
  background-color: #fdf9e2; }
  .yellow-border-box__icon {
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 61px;
    padding: 13px;
    border-radius: 50%;
    background: #e26d64;
    -webkit-box-shadow: -2px 4px 3px rgba(0, 0, 0, 0.6);
    box-shadow: -2px 4px 3px rgba(0, 0, 0, 0.6); }
    .yellow-border-box__icon.bulb-icon {
      padding: 12px 15px; }
  .yellow-border-box p {
    font-weight: 500; }

.yellow-badge-navigation {
  position: relative;
  font-size: 18px; }
  @media (min-width: 992px) {
    .yellow-badge-navigation {
      font-size: 22px; } }
  .yellow-badge-navigation p {
    font-size: 18px; }
    @media (min-width: 992px) {
      .yellow-badge-navigation p {
        font-size: 22px; } }
  @media (max-width: 991px) {
    .yellow-badge-navigation__wrapper {
      position: relative;
      top: 22px;
      z-index: 10;
      font-size: 16px; } }
  @media (max-width: 991px) {
    .yellow-badge-navigation__wrapper.dv-fx-ht {
      top: 0;
      padding-top: 11px; } }
  .yellow-badge-navigation__link {
    padding: 10px 20px;
    font-size: 22px;
    line-height: 22px; }
    @media screen and (max-width: 991px) {
      .yellow-badge-navigation__link {
        padding: 10px 14px;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        font-size: 18px; } }
    .yellow-badge-navigation__link:hover {
      color: #bd5547;
      text-decoration: none; }

@media (max-width: 991px) {
  .dv-fx-01 {
    margin-top: -20px; } }

.balance-infographic {
  border-radius: 30px;
  border: 3px solid #e26d64;
  background-color: #f7ffff;
  overflow: hidden; }
  .balance-infographic__body {
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 16px; }
    .balance-infographic__body img {
      max-width: 140px;
      max-height: 85px; }
      .balance-infographic__body img.rounded-image {
        max-height: 65px; }
  .balance-infographic__footer {
    background-color: #d4e9f3;
    padding: 18px 30px;
    text-align: center;
    color: #53667d;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 17px; }
    .balance-infographic__footer p {
      line-height: 1;
      margin-bottom: 0; }

.symptomItem1 {
  max-width: 55%; }

.symptomItem2 {
  max-width: 54%; }

.symptomItem3 {
  top: 25px !important;
  max-width: 60%; }

.symptomItem4 {
  max-width: 65%; }

.treatment-box {
  border-radius: 44px;
  padding: 30px 20px;
  font-family: "Montserrat", sans-serif;
  color: #53667d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 140px; }
  @media (max-width: 991px) {
    .treatment-box {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      text-align: center; } }
  .treatment-box--white {
    background: #fff; }
  .treatment-box--yellow {
    background: #faf1b7; }
  @media (max-width: 991px) {
    .treatment-box--md-rounded {
      padding-top: 40px;
      padding-bottom: 40px;
      border-radius: 0px; } }
  .treatment-box a:hover {
    color: inherit;
    text-decoration: none; }
  .treatment-box p {
    margin-bottom: 0; }
  @media (max-width: 991px) {
    .treatment-box img {
      margin-bottom: 25px; } }
  .treatment-box__content {
    padding-left: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-left: 2px solid #d57566; }
    @media (max-width: 991px) {
      .treatment-box__content {
        border-top: 2px solid #d57566;
        border-left: none;
        padding-top: 20px; } }

.dv-rounded-stories-v2 {
  position: relative; }
  .dv-rounded-stories-v2 img.rounded-stories {
    position: absolute;
    right: 3.5%;
    bottom: -32%;
    max-width: 11%;
    z-index: 10; }

.info-quote {
  border-left: 2px solid #e26d64; }
  .info-quote p {
    margin-bottom: 0; }
  .info-quote a:hover {
    text-decoration: none;
    color: inherit; }

.link-white {
  color: white; }
  .link-white:hover {
    color: white !important;
    text-decoration: none !important; }

.step-item-number {
  position: relative;
  padding-left: 65px; }
  .step-item-number span.number {
    position: absolute;
    border-radius: 50%;
    font-family: "Veneer", sans-serif;
    border: 3px solid #f3645e;
    background-color: #fcf1b0;
    color: #53667d;
    width: 45px;
    height: 45px;
    left: 10px;
    top: -11px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 7px;
    font-size: 25px;
    line-height: 1; }

.callout__blue {
  font-style: italic;
  background: #d4e9f3;
  display: inline-block;
  padding: 3px 13px;
  border-radius: 20px;
  font-size: 90%;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 500; }

.callout-quote {
  border: 3px solid #e26d64;
  border-radius: 30px;
  position: relative;
  background: #f7ffff;
  font-family: "Montserrat", sans-serif;
  padding: 15px 20px 15px 65px; }
  @media (max-width: 991px) {
    .callout-quote {
      padding: 20px; } }
  .callout-quote .quote {
    position: absolute;
    top: 50%;
    left: -15px;
    font-family: "Veneer", sans-serif;
    width: 60px;
    height: 60px;
    color: #f4e36e;
    background: #e26d64;
    border-radius: 50%;
    font-size: 95px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1;
    padding-top: 6px;
    padding-right: 2px;
    -webkit-transform: translateY(-52%);
    -ms-transform: translateY(-52%);
    transform: translateY(-52%);
    -webkit-box-shadow: -2px 4px 3px rgba(0, 0, 0, 0.6);
    box-shadow: -2px 4px 3px rgba(0, 0, 0, 0.6); }
    @media (max-width: 991px) {
      .callout-quote .quote {
        width: 45px;
        height: 45px;
        top: 0;
        font-size: 60px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%); } }

.callout-blue-icon {
  position: relative;
  background-color: #dbeff7;
  border: 3px solid #53667d;
  padding: 30px 30px 30px 100px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 95px;
  min-height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  @media (max-width: 991px) {
    .callout-blue-icon {
      border-radius: 35px;
      padding: 60px 30px 30px 30px;
      margin-bottom: 50px; } }
  .callout-blue-icon img {
    position: absolute;
    top: 50%;
    left: 2%;
    max-width: 130px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
    @media (max-width: 991px) {
      .callout-blue-icon img {
        top: 0;
        left: 50%;
        max-width: 90px; } }
  .callout-blue-icon h2 {
    font-family: "Barlow Condensed", sans-serif;
    color: #BE5F55;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 25px; }
  .callout-blue-icon p {
    font-family: "Montserrat", sans-serif;
    margin-bottom: 0;
    color: #53667d; }

.explore-vowst-banner {
  position: relative; }
  .explore-vowst-banner__content {
    position: absolute;
    left: 3%;
    top: 50%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
    @media (max-width: 991px) {
      .explore-vowst-banner__content {
        left: 50%;
        top: 17%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); } }
  .explore-vowst-banner img {
    width: 100%; }

.left-border-content-box {
  position: relative;
  padding-left: 20px;
  margin-bottom: 40px; }
  .left-border-content-box a:hover {
    text-decoration: none;
    color: inherit; }
  @media (max-width: 991px) {
    .left-border-content-box {
      text-align: center;
      padding-left: 0; } }
  .left-border-content-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    border-radius: 10px;
    background-color: #e26d64; }
    @media (max-width: 991px) {
      .left-border-content-box::before {
        content: none; } }
  .left-border-content-box h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 24px; }
  .left-border-content-box p {
    font-family: "Montserrat", sans-serif; }

.single-resource-content {
  text-align: center;
  position: relative;
  margin-bottom: 20px; }
  @media (max-width: 991px) {
    .single-resource-content {
      margin-bottom: 40px; } }
  .single-resource-content:before {
    content: "";
    position: absolute;
    left: 50%;
    top: -10px;
    width: 100px;
    height: 3px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 15px;
    background-color: #f3645e; }
  .single-resource-content .veneer-font, .single-resource-content h2, .single-resource-content .h2 {
    font-size: 25px; }
  .single-resource-content p:not(.veneer-font):not(h2):not(.h2),
  .single-resource-content a {
    color: white; }
  .single-resource-content a {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px; }
    .single-resource-content a:hover {
      text-decoration: none; }

section.recurrent-cdiff {
  margin-top: -50px; }

h1 {
  font-size: 60px; }
  @media screen and (max-width: 991px) {
    h1 {
      font-size: 32px !important; } }

h2, .h2 {
  font-size: 36px !important; }
  @media screen and (max-width: 991px) {
    h2, .h2 {
      font-size: 27px !important; } }

h3, .h3 {
  font-size: 24px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: bold; }

p {
  font-size: 18px;
  font-weight: 500 !important; }

.footnote {
  font-size: 14px;
  font-weight: 500 !important; }

.font-weight-500 {
  font-weight: 500 !important; }

.title-page h1, .title-page h2, .title-page h3, .title-page h4, .title-page h5, .title-page h6 {
  font-size: 64px;
  line-height: 1; }
  @media screen and (max-width: 991px) {
    .title-page h1, .title-page h2, .title-page h3, .title-page h4, .title-page h5, .title-page h6 {
      font-size: 44px; } }

.title-section {
  text-align: center; }
  .title-section h1, .title-section h2, .title-section h3, .title-section h4, .title-section h5, .title-section h6 {
    text-transform: uppercase;
    color: white;
    margin-bottom: 0; }

.basic-page-faq p, .basic-page-faq span {
  color: black; }
  .basic-page-faq p strong, .basic-page-faq span strong {
    color: red; }

.basic-page p, .basic-page span {
  color: black; }
  .basic-page p strong, .basic-page span strong {
    color: black; }

.color-blue-light {
  color: #ccdde4; }

.color-blue-dark {
  color: #003447; }

.color-pink {
  color: #fa06cb !important; }

.color-pink-light {
  color: #fa68de !important; }

.color-white {
  color: white; }

a.color-white {
  color: white; }
  a.color-white:hover {
    color: white;
    text-decoration: none; }

.color-yellow {
  color: #f4e36e; }

.color-pastel-red {
  color: #f3645e; }

.color-dark-pastel-red {
  color: #BE5F55; }

.color-electric-blue {
  color: #53667d; }

@media screen and (max-width: 767px) {
  .fs-12px,
  .fs-12 {
    font-size: 12px; } }

@media screen and (max-width: 767px) {
  .fs-14px,
  .fs-14 {
    font-size: 14px; } }

@media screen and (max-width: 767px) {
  .fs-16px,
  .fs-16 {
    font-size: 16px; } }

@media screen and (max-width: 767px) {
  .fs-18px,
  .fs-18 {
    font-size: 18px; } }

@media screen and (max-width: 767px) {
  .fs-20px,
  .fs-20 {
    font-size: 20px; } }

@media screen and (max-width: 991px) {
  .fs-22px, .fs-22 {
    font-size: 22px; } }

@media screen and (max-width: 991px) {
  .fs-24px,
  .fs-24 {
    font-size: 24px; } }

@media screen and (min-width: 768px) {
  .fs-md-12px,
  .fs-md-12 {
    font-size: 12px; } }

@media screen and (min-width: 768px) {
  .fs-md-14px,
  .fs-md-14 {
    font-size: 14px; } }

@media screen and (min-width: 768px) {
  .fs-md-16px,
  .fs-md-16 {
    font-size: 16px; } }

@media screen and (min-width: 768px) {
  .fs-md-18px,
  .fs-md-18 {
    font-size: 18px; } }

@media screen and (min-width: 992px) {
  .fs-lg-22px,
  .fs-lg-22 {
    font-size: 22px; } }

@media screen and (min-width: 992px) {
  .fs-lg-18px,
  .fs-lg-18 {
    font-size: 18px; } }

@media screen and (min-width: 992px) {
  .fs-lg-20px,
  .fs-lg-20 {
    font-size: 20px; } }

.fs-h1 {
  font-size: 2.5rem; }

.fs-h2 {
  font-size: 2rem; }

.fs-h3 {
  font-size: 1.75rem; }

.fs-h4 {
  font-size: 1.5rem; }

.fs-h5 {
  font-size: 1.25rem; }

.fs-h6 {
  font-size: 1rem; }

.border-none {
  border: none !important; }

.br-10px {
  border-radius: 10px; }

.br-15px {
  border-radius: 15px; }

.br-20px {
  border-radius: 20px; }

.br-30px {
  border-radius: 30px; }

@media screen and (min-width: 768px) {
  .br-md-30px {
    border-radius: 30px; } }

@media screen and (min-width: 768px) {
  .w-md-60 {
    width: 60%; } }

@media screen and (min-width: 768px) {
  .w-md-80 {
    width: 80%; } }

@media screen and (min-width: 768px) {
  .h-md-90 {
    height: 90%; } }

@media screen and (min-width: 768px) {
  .h-md-100 {
    height: 100%; } }

.word-break-word {
  word-break: break-word; }

@media screen and (max-width: 767px) {
  .border-radius-0 {
    border-radius: 0; } }

@media only screen and (max-width: 991px) {
  .custom-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important; } }

@media only screen and (min-width: 992px) {
  .custom-container {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important; } }

@media only screen and (max-width: 1199px) and (min-width: 768px) {
  .custom-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
    max-width: 100%; }
    .custom-container .navbar-nav {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      margin-left: auto !important; } }

.z-index-1 {
  z-index: 1 !important; }

.list-style-none {
  list-style: none !important; }

@media screen and (min-width: 768px) {
  .h-md-85vh {
    height: 85vh; } }

@media only screen and (max-width: 1023px) and (min-width: 768px) {
  .social-media .custom-width {
    max-width: 100% !important;
    -webkit-box-flex: 100% !important;
    -ms-flex: 100% !important;
    flex: 100% !important; }
    .social-media .custom-width a .fb,
    .social-media .custom-width a .tw,
    .social-media .custom-width a .ig {
      display: -webkit-inline-box !important;
      display: -ms-inline-flexbox !important;
      display: inline-flex !important; } }

.link-legal {
  color: white;
  text-decoration: underline; }
  .link-legal:hover, .link-legal:focus {
    color: white;
    text-decoration: none; }

@media screen and (max-width: 767px) {
  .main {
    margin-top: -1px; } }

.custom-hr-yellow {
  width: 100%; }

@media screen and (max-width: 991px) {
  .z-index-2-m {
    z-index: 2 !important; } }

@media screen and (max-width: 991px) {
  .c-w-100 {
    width: 100%; } }

.link-phone {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted; }
  .link-phone:hover, .link-phone:focus {
    text-decoration: none; }

.dv-circles-hr {
  position: relative;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px; }
  .dv-circles-hr::before {
    content: "";
    position: absolute;
    border-radius: 3px;
    left: 0;
    top: 50%;
    width: 46%;
    height: 3px;
    background: #53667d;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
    @media (max-width: 768px) {
      .dv-circles-hr::before {
        width: 44%; } }
  .dv-circles-hr::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 46%;
    border-radius: 3px;
    height: 3px;
    background: #53667d;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
    @media (max-width: 768px) {
      .dv-circles-hr::after {
        width: 44%; } }
  .dv-circles-hr img {
    max-width: 39px; }
    @media (max-width: 768px) {
      .dv-circles-hr img {
        max-width: 30px; } }
  .dv-circles-hr--yellow::before, .dv-circles-hr--yellow::after {
    background: #f1e37e; }

.wrapper-pdf-thumbnail {
  margin: auto;
  position: relative;
  max-width: 320px; }
  @media (min-width: 992px) {
    .wrapper-pdf-thumbnail {
      max-width: 420px; } }
  .wrapper-pdf-thumbnail .btn {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }

.dv-rounded-stories {
  position: relative; }
  .dv-rounded-stories img.rounded-stories {
    position: absolute;
    left: 3.5%;
    top: -40px;
    max-width: 11%; }

.dv-info-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  @media (max-width: 991px) {
    .dv-info-banner {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; } }
  .dv-info-banner__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-left: 3px solid #e26d64; }
    @media (max-width: 991px) {
      .dv-info-banner__content {
        border-top: 3px solid #e26d64;
        border-left: none;
        padding-top: 25px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        margin-bottom: 20px; } }
  .dv-info-banner .btn-template-4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .dv-info-banner .btn-template-4 svg {
      margin-left: 10px; }

.hr-white {
  border-top: 1px solid #fff; }

.underline-dotted {
  text-decoration: underline;
  -webkit-text-decoration-style: dotted !important;
  text-decoration-style: dotted !important; }

.veneer-font, h2, .h2 {
  font-family: "Veneer", sans-serif; }

.veneer-three-font {
  font-family: "Veneer Three", sans-serif;
  -webkit-font-smoothing: antialiased; }

.barlow-condensed {
  font-family: "Barlow Condensed", sans-serif; }

@media (min-width: 992px) {
  .cs-main {
    margin-top: -90px; } }

.column-divider {
  position: relative; }
  .column-divider::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 3px;
    width: 80%;
    background: #fff;
    border-radius: 10px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
  @media (min-width: 992px) {
    .column-divider::before {
      top: 50%;
      left: auto;
      right: 0;
      height: 120%;
      width: 3px;
      background: #fff;
      border-radius: 10px;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); } }

.cs-banner-p1 {
  position: absolute;
  right: 4%;
  bottom: -17px;
  max-width: 270px;
  z-index: 1; }
  @media (max-width: 991px) {
    .cs-banner-p1 {
      max-width: 220px;
      width: 50%;
      bottom: 100%;
      right: 0; } }
  @media (max-width: 768px) {
    .cs-banner-p1 {
      max-width: 190px;
      width: 50%;
      bottom: 100%;
      right: 0; } }
  @media (max-width: 551px) {
    .cs-banner-p1 {
      max-width: 165px;
      width: 50%;
      bottom: 100%; } }
  @media (min-width: 992px) {
    .cs-banner-p1--v2 {
      bottom: 0; } }
  @media (min-width: 992px) {
    .cs-banner-p1--v3 {
      max-width: 295px; } }

.chevron-up-list {
  list-style: none; }
  .chevron-up-list li {
    position: relative;
    padding-left: 37px;
    margin-bottom: 20px; }
    .chevron-up-list li::before {
      content: "";
      position: absolute;
      left: 5px;
      top: 1px;
      width: 21px;
      height: 21px;
      background: url(../img/rounded-chevron-up.svg) no-repeat center/contain; }

.red-link {
  color: #be5f55;
  display: inline-block;
  position: relative; }
  .red-link:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 3px dotted #be5f55;
    z-index: 10; }
  .red-link:hover {
    color: #f3645e; }
    .red-link:hover:after {
      content: none; }

@media (max-width: 991px) {
  .fx-margin-top-01 {
    margin-top: -65px; } }

@media (max-width: 991px) {
  .fx-margin-top-02 {
    margin-top: -100px; } }

@media (max-width: 575px) {
  .fx-margin-top-02 {
    margin-top: -150px; } }

@media screen and (min-width: 992px) {
  .contentClinical {
    max-width: 445px; } }

.customNameFoundation {
  font-size: 25px !important;
  text-decoration: underline;
  color: #f4e36e !important;
  font-family: "Veneer", sans-serif !important;
  margin-bottom: 1rem;
  display: block; }
  .customNameFoundation:hover, .customNameFoundation:focus {
    text-decoration: none; }

@media screen and (max-width: 404px) {
  .custompbv2 {
    padding-bottom: 3rem; } }

@media screen and (max-width: 991px) {
  .customButtonStack {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .customButtonStack a:first-child {
      margin-bottom: 1.5rem; } }

@media screen and (max-width: 991px) {
  .main-single-resource-content .single-resource-content:last-child {
    margin-bottom: 0 !important; } }

.item-symptoms {
  position: relative; }
  .item-symptoms .customCircle {
    background-color: #f7ffff;
    height: 300px;
    width: 300px;
    border-radius: 50%;
    padding: 1.5rem;
    margin-left: auto;
    margin-right: auto; }
    .item-symptoms .customCircle img {
      position: relative;
      top: 10px; }
  .item-symptoms .customContent {
    border: 2px solid #f3645e;
    background-color: #3b4454;
    border-radius: 100px;
    padding: 15px 10px;
    margin-top: -90px;
    min-height: 95px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    @media screen and (max-width: 991px) {
      .item-symptoms .customContent {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto; } }
    .item-symptoms .customContent p {
      margin-bottom: 0;
      color: #f8e256;
      font-family: "Veneer", sans-serif;
      font-size: 24px;
      letter-spacing: 0.5px;
      line-height: 1.2; }

@media screen and (max-width: 991px) {
  .yellow-badge-navigation__wrapperv2 {
    top: 10px; } }

.customYellowBadgeNav::after {
  width: 100%;
  position: absolute;
  top: 0px;
  height: 16px;
  background-color: #f4e36e;
  z-index: 1;
  left: 0px;
  content: ''; }

@media screen and (max-width: 991px) {
  .customCrosslinks h1, .customCrosslinks h2, .customCrosslinks h3, .customCrosslinks h4, .customCrosslinks h5, .customCrosslinks h6 {
    font-size: 30px !important; } }

span.avoidwrap {
  display: inline-block; }

.color-red {
  color: #BD5547; }

.color-electric-blue {
  color: #53667d; }

.color-dark-blue-v2 {
  color: #3b4454; }

.color-yellow {
  color: #f4e36e; }

.bg-blue {
  background-color: #185a7d; }

.bg-blue-light {
  background-color: #ccdde4; }

.bg-blue-dark {
  background-color: #003447; }

.bg-white {
  background-color: white; }

.bg-yellow-light {
  background-color: #fcf7d4; }

.bg-yellow-v2 {
  background-color: #faf1b7; }

.bg-yellow {
  background-color: #f4e36e; }

.bg-blue-dark-v2 {
  background-color: #54667e; }

.bg-white-v2 {
  background-color: #f7ffff; }

.bg-sunshine {
  background-color: #f4e36e; }

.bg-pastel-red {
  background-color: #f3645e; }

.bg-red-light-circles {
  background-color: #e26d64;
  border-top: 5px solid #f4e36e; }
  @media (min-width: 769px) {
    .bg-red-light-circles {
      background-size: 190px;
      background-position: top left;
      background-image: url(../img/red-circles.png);
      background-repeat: no-repeat; } }

.bg-bricks {
  background-repeat: no-repeat;
  background-image: url("../img/bg-bricks-v2.jpg"); }
  @media screen and (min-width: 992px) {
    .bg-bricks {
      background-size: cover;
      background-position: center top; } }
  @media screen and (max-width: 991px) {
    .bg-bricks {
      background-position: 32% 24%; } }
  @media (max-width: 991px) {
    .bg-bricks-wp {
      min-height: 300px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; } }
  @media (max-width: 768px) {
    .bg-bricks-wp {
      min-height: 250px; } }

.paper-bg-v2 {
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/bgSection2v2.png); }
  @media (max-width: 991px) {
    .paper-bg-v2 {
      background-image: url(../img/TP_Strip_2-mobile.png), -webkit-gradient(linear, left top, left bottom, color-stop(50%, #77b2cf), color-stop(50%, #f3645e));
      background-image: url(../img/TP_Strip_2-mobile.png), -webkit-linear-gradient(top, #77b2cf 50%, #f3645e 50%);
      background-image: url(../img/TP_Strip_2-mobile.png), -o-linear-gradient(top, #77b2cf 50%, #f3645e 50%);
      background-image: url(../img/TP_Strip_2-mobile.png), linear-gradient(180deg, #77b2cf 50%, #f3645e 50%);
      background-repeat: repeat;
      background-size: cover;
      background-position: left; } }

.paper-bg-v2--about {
  position: relative;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #f4e36e), color-stop(50%, #53667d));
  background-image: -webkit-linear-gradient(top, #f4e36e 50%, #53667d 50%);
  background-image: -o-linear-gradient(top, #f4e36e 50%, #53667d 50%);
  background-image: linear-gradient(180deg, #f4e36e 50%, #53667d 50%); }
  .paper-bg-v2--about .img-bg-desktop {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0; }
    @media (max-width: 991px) {
      .paper-bg-v2--about .img-bg-desktop {
        -o-object-fit: cover;
        object-fit: cover; } }

.paper-bg-v2--take {
  position: relative;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #f3645e));
  background-image: -webkit-linear-gradient(top, transparent 50%, #f3645e 50%);
  background-image: -o-linear-gradient(top, transparent 50%, #f3645e 50%);
  background-image: linear-gradient(180deg, transparent 50%, #f3645e 50%);
  margin-top: -40px; }
  .paper-bg-v2--take .img-bg-desktop {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0; }
    @media (max-width: 991px) {
      .paper-bg-v2--take .img-bg-desktop {
        -o-object-fit: cover;
        object-fit: cover;
        width: 200%; } }

.paper-bg-v2--patient {
  position: relative;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #dbeff7), color-stop(50%, #54667e));
  background-image: -webkit-linear-gradient(top, #dbeff7 50%, #54667e 50%);
  background-image: -o-linear-gradient(top, #dbeff7 50%, #54667e 50%);
  background-image: linear-gradient(180deg, #dbeff7 50%, #54667e 50%);
  margin-top: 0; }
  .paper-bg-v2--patient .img-bg-desktop {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0; }
    @media (max-width: 991px) {
      .paper-bg-v2--patient .img-bg-desktop {
        -o-object-fit: cover;
        object-fit: cover;
        width: 200%; } }

.paper-bg-v2--about-recurrent {
  position: relative;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #54667e), color-stop(50%, transparent));
  background-image: -webkit-linear-gradient(top, #54667e 50%, transparent 50%);
  background-image: -o-linear-gradient(top, #54667e 50%, transparent 50%);
  background-image: linear-gradient(180deg, #54667e 50%, transparent 50%);
  margin-top: 0; }
  .paper-bg-v2--about-recurrent .img-bg-desktop {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0; }
    @media (max-width: 991px) {
      .paper-bg-v2--about-recurrent .img-bg-desktop {
        -o-object-fit: cover;
        object-fit: cover;
        width: 200%; } }

.bg-tile-wall {
  background: url("../img/tile-wall.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

.bg-happy-faces {
  background: url("../img/happy-bg.jpg") no-repeat center/cover; }

.bg-pastel-yellow {
  background-color: #fef9df; }

.bg-pastel-blue {
  background-color: #dbeff7; }

/*# sourceMappingURL=style.css.map */