


/* Animation */
  
@keyframes btn_ripple {
  0% {
    opacity: .3;
  }
  30% {
    opacity: .3;
  }
  100% {
    opacity: 0;
    transform: scale(4, 4);
  }
}

/* Base */

.btn {
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: none;
  border: none; /* for <button> */
  font-family: 
    
      'Mona Sans', sans-serif
    
  ;
  font-weight: 500;
  font-style: normal;
  line-height: 1.56;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  transform: scale(1); /* required for the ripple effect, otherwise it won't show on :focus */
  transition: box-shadow, background-image, background-color, transform;
  transition-duration: .1s;
  transition-timing-function: ease-in-out;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.btn:not(:focus-visible) {
  outline: none;
}

.btn.btn--full {
  display: block;
}

.btn:hover {
  text-decoration: none;
  transform: scale(1.07, 1.07);
}

.btn:active {
  transform: scale(.93, .93);
  transition-duration: 0.05s;
}

.btn::after { /* ripple effect */
  content: '';
  display: block;
  width: 2.22rem;
  height: 2.22rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -1.11rem;
  margin-left: -1.11rem;
  z-index: -1;
  background: currentColor;
  border-radius: 20px;
  color: inherit;
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}

.btn:focus::after {
  animation: .5s ease-in-out btn_ripple;
  animation-fill-mode: forwards;
}

/* Outline */

.btn--outline {
  border: 2px solid;
}

.btn--outline:hover {
  border: 0;
}

/* Small */

.btn--small {
  padding: 0.45rem 0.68rem;
  border-radius: 999px;
  font-size: .83rem;
}

.btn--small.btn--outline:not(:hover) {
  padding: calc(0.45rem - 2px) calc(0.68rem - 2px);
}

/* Medium */

.btn--medium {
  padding: 0.64rem 0.91rem;
  border-radius: 999px;
  font-size: .89rem;
}

.btn--medium.btn--outline:not(:hover) {
  padding: calc(0.64rem - 2px) calc(0.91rem - 2px);
}

/* Large */

.btn--large {
  padding: 0.91rem 1.36rem;
  border-radius: 999px;
  font-size: 1rem;
}

.btn--large.btn--outline:not(:hover) {
  padding: calc(0.91rem - 2px) calc(1.36rem - 2px);
}

/* Accent */

.btn--accent.btn--outline {
  border-color: #6F35F2;
  color: #6F35F2;
}

.btn--accent.btn--fill,
.btn--accent.btn--outline:hover {
  background: #6F35F2;
  color: #fff;
}

.btn--accent:focus-visible:not(:hover):not(:active) {
  box-shadow: 0 0 0 3px rgba(111, 53, 242, .15);
}

/* Dark */

.btn--dark.btn--outline {
  border-color: #002B4E;
  color: #002B4E;
}

.btn--dark.btn--fill,
.btn--dark.btn--outline:hover {
  background: #002B4E;
  color: #fff;
}

.btn--dark:focus-visible:not(:hover):not(:active) {
  box-shadow: 0 0 0 3px rgba(0, 43, 78, .15);
}

/* Light */

.btn--light.btn--outline {
  border-color: #E2E8F0;
  color: #002B4E;
}

.btn--light.btn--fill,
.btn--light.btn--outline:hover {
  background: #F8FAFC;
  color: #002B4E;
}

.btn--light:focus-visible:not(:hover):not(:active) {
  box-shadow: 0 0 0 3px rgba(226, 232, 240, .15);
}

/* Light darker */

.btn--light-darker.btn--outline {
  border-color: #E2E8F0;
  color: #002B4E;
}

.btn--light-darker.btn--fill,
.btn--light-darker.btn--outline:hover {
  background: #E2E8F0;
  color: #002B4E;
}

.btn--light-darker:focus-visible:not(:hover):not(:active) {
  box-shadow: 0 0 0 3px rgba(226, 232, 240, .15);
}

/* White */

.btn--white.btn--outline {
  border-color: #fff;
  color: #fff;
}

.btn--white.btn--fill,
.btn--white.btn--outline:hover {
  background: #fff;
  color: #6F35F2;
}

.btn--white:focus-visible:not(:hover):not(:active) {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .15);
}

/* White with accent */

.btn--white-accent.btn--outline {
  border-color: #fff;
  color: #002B4E;
}

.btn--white-accent.btn--fill,
.btn--white-accent.btn--outline:hover {
  background: #fff;
  color: #002B4E;
}

.btn--white-accent:focus-visible:not(:hover):not(:active) {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .15);
}

/* White with hover accent */

.btn--white-hover-accent.btn--outline {
  border-color: #fff;
  color: #fff;
}

.btn--white-hover-accent.btn--fill {
  background: #fff;
  color: #002B4E;
}

.btn--white-hover-accent.btn--fill:hover,
.btn--white-hover-accent.btn--outline:hover {
  background: #fff;
  color: #002B4E;
}

.btn--white-hover-accent:focus-visible:not(:hover):not(:active) {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .15);
}

/* Ghost */

.btn--ghost.btn--outline {
  border-color: rgba(255, 255, 255, .2);
  color: #fff;
}

.btn--ghost.btn--fill {
  background: rgba(255, 255, 255, .2);
  color: #fff;
  
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
  
}

.btn--ghost.btn--outline:hover,
.btn--ghost.btn--fill:hover {
  background: #fff;
  color: #002B4E;
}

.btn--ghost:focus-visible:not(:hover):not(:active) {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .15);
}

/* Pill */

.btn--pill {
  border-radius: 999px;
}

/* Icon */

.btn__icon {
  color: inherit;
  line-height: 0;
}

.btn__icon--right {
  order: 1;
  margin-left: .4em;
}

.btn__icon--left {
  margin-right: .4rem;
}

.btn__icon svg {
  fill: currentColor;
}

/* Text Link */

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.textlink:hover {
  opacity: 0.8;
}

.textlink__icon {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.textlink__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.textlink__icon--right {
  transition: transform 0.2s ease;
}

.textlink:hover .textlink__icon--right {
  transform: translateX(4px);
}

/* Text Link Colors */

.textlink--button {
  color: #6F35F2;
}

.textlink--accent {
  color: #002B4E;
}

.textlink--dark {
  color: #002B4E;
}

.textlink--light {
  color: #F8FAFC;
}


/* Blog card border */
.blog-card {
  border: 1px solid #E2E8F0;
}

/* Blog card info - remove border */
.blog-card--with-summary .blog-card__info {
  padding-top:0!important;
  border-top: none!important;
}

/* Blog card info container - flex layout with arrow */
.blog-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Blog card date styling */
.blog-card__date {
  font-size: 14px;
  font-weight: 500;
  color: #6F35F2; 
}

/* Arrow icon after date */
.blog-card__info::after {
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #F4F3FF;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='12' viewBox='0 0 13 12'%3E%3Cpath fill='%236F35F2' d='M12.184721 5.818182L12.666667 5.3347549L12.184721 4.8513284L7.8301997 0.48342663L7.3482542 0L6.387198 0.96400958L6.8691435 1.4474362L10.061325 4.6522703L0.68039393 4.6522703L0 4.6522703L0 6.01724L0.68039393 6.01724L10.061325 6.01724L6.8663087 9.2192307L6.3843627 9.7026567L7.3454194 10.666667L7.8273649 10.18324L12.184721 5.818182Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* Blog card badge styling - using tertiary light colors */
.blog-card__tags .badge {
  background: #CEFCFF;
  color: #00C1DE;
}
.blog-card__tags .badge:hover {
  color: #00C1DE; 
}


/* Extra form styles */

.form.form--box  {
  border: 1px solid rgba(226, 232, 240, 1)!important;
}

.hs-input {
  box-shadow: none!important;
}

/* Higher specificity so this wins over HubSpot form CSS (loaded as separate asset after child.css) */
.hs-form .hs-input::placeholder,
.hs-form .hs-input::-webkit-input-placeholder,
.hs-form .hs-input::-moz-placeholder,
.hs-form .hs-input:-ms-input-placeholder,
.hs-form #hs-pwd-widget-password,
.hs-form .hs-input {
  font-weight: 400;
  color: #64748B !important;
}

.form.form--light .hs-form-field label {
  color: #6F35F2;
  font-size: 12px;
  font-weight: 600;
}
.hs-error-msg{
  color:#fff!important;
}
.actions{
  text-align: right;
}
.form--one-field .hs-form{
  gap:15px;
}
@media (max-width: 767px) {
  .form--one-field .actions{
    text-align: center;
  }
}


/* Header color schemes – background on .header__section--main; only when NOT overlap (overlap keeps blur) */
.header--dark:not(.header--overlap) .header__section--main {
    background: #002B4E;
    color: #fff;
}
.header--dark:not(.header--overlap) .header__section--main a:not(.btn):not(.textlink),
.header--dark:not(.header--overlap) .header__section--main .header__nav-link:not(.btn):not(.textlink) {
    color: rgba(255, 255, 255, 1.00);
}
.header--dark:not(.header--overlap) .header__section--main a:not(.btn):not(.textlink):hover,
.header--dark:not(.header--overlap) .header__section--main .header__nav-link:not(.btn):not(.textlink):hover {
    color: #fff;
}

.header--light:not(.header--overlap) .header__section--main {
    background: #fff;
    color: #002B4E;
}
.header--light:not(.header--overlap) .header__section--main a:not(.btn):not(.textlink),
.header--light:not(.header--overlap) .header__section--main .header__nav-link:not(.btn):not(.textlink) {
    color: inherit;
}
.header--light:not(.header--overlap) .header__section--main a:not(.btn):not(.textlink):hover,
.header--light:not(.header--overlap) .header__section--main .header__nav-link:not(.btn):not(.textlink):hover {
    color: #002B4E;
}

/* Nav dark – underline/hover bar color */
.nav--dark .nav__list--level1 > li > a:before {
    background: #AD9FFF;
}

.header--overlap {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header--overlap.header--sticky-inactive {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Sticky header support - CSS fallback */
.header--sticky .header__sticky-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: inherit;
}

.header--sticky .header__sticky-element {
    position: relative;
}

/* Ensure sticky header works when JavaScript adds classes */
.header--sticky.is-sticky .header__sticky-element,
.header--sticky.header--is-sticky .header__sticky-element {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.nav__link{
    font-weight: 500;
}

/* Language switch */
#conveythis-wrapper{
    top: 1.9rem!important;
    right: 2.9rem!important;
}
.type-employer .conveythis-widget-main,
.type-employee .conveythis-widget-main{
    border-left: solid #fff 1px !important;
}
.type-employer .conveythis-widget-main,
.type-employee .conveythis-widget-main,
.type-employer .conveythis-widget-language,
.type-employee .conveythis-widget-language{
    background: none !important;
    border-bottom: none !important;
    border-top: none !important;
    border-right: none !important;
    font-family: "Mona Sans", sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    padding-left: 15px!important;
}
.type-employee .conveythis-widget-main .language_title{
   color: #fff !important;    
   font-family: "Mona Sans", sans-serif !important;
   font-weight: 500 !important;
   font-size: 16px !important;
}

/* Chevron down after language title */
.conveythis-widget-main .language_title::after,
.conveythis-widget-language .language_title::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 4px;
  vertical-align: middle;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.conveythis-language-arrow{
    display: none!important;
}
/* Vacancy detail page – extra styles */

/* Property icons: fixed glyph size, SVG auto-centered */
.main-vacancy-detail .properties__icon .icon__glyph {
  width: 16px;
  height: 100%;
  display: flex;
}
.main-vacancy-detail .properties__icon .icon__glyph svg {
  width: auto;
  height: auto;
  margin: auto;
}

/* Stack sidebar property items vertically */
.main-vacancy-detail .properties-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.main-vacancy-detail .properties-sidebar .properties__item {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  margin-top: 0;
}
.main-vacancy-detail .properties__text{
  font-weight: 500;
}

.main-vacancy-detail h4 {
  margin-top: 16px;
}

.main-vacancy-detail .rtext--box-accent{
  box-shadow: none !important;
}
.main-vacancy-detail .vacancy-desc {
  margin-bottom: 40px;
  font-weight: 400;
}

/* List markers: check-in-circle icon (same look as team-card icon) */
.main-vacancy-detail .vacancy-desc ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.main-vacancy-detail .vacancy-desc li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5em;
}
.main-vacancy-detail .vacancy-desc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  background-color: #CEFCFF;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%2300c1de' d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  color: #00c1de;
}
.main-vacancy-detail .vacancy-desc li:last-child {
  margin-bottom: 0;
}
.main-vacancy-detail .team-card__desc,
.main-vacancy-detail .team-card__title{
  font-size: 24px!important;
  color: #D9D5FF!important;
}
.main-vacancy-detail .team-card__desc{
  font-weight: 400!important;
}
.main-vacancy-detail .team-card__desc .contact-person{
  color: #fff!important;
}

.main-vacancy-detail .full-width-btn .form--btn-fill .hs-button {
  width: 100%;
}

.main-vacancy-detail .no-border.form--box,
.main-vacancy-detail .no-border .form--box {
  border: none !important;
}
/* Vacancy cards (HubDB) – no card background color, no image */


/* Editor-only label (shown only in HubSpot editor) */
.vacancy-cards__ui {
  display: block;
  padding: 7px 12px;
  position: relative;
  z-index: 99;
  background-color: #eaf0f6;
  border: 1px solid #cbd6e2;
  border-radius: 3px;
  color: #506e91;
  font-family: Avenir Next W02, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  text-align: center;
}
}

.vacancy-cards__grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

.vacancy-cards__grid .col {
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 24px;
}

.vacancy-cards__card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  border: 1px solid rgba(173, 159, 255, 1);
  overflow: hidden;
}

.vacancy-cards__card-body {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #fff;
}

.vacancy-cards__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
  justify-content: flex-end;
}

.vacancy-cards__tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.vacancy-cards__tag--1 {
  background-color: #e91e63;
  color: #fff;
}

.vacancy-cards__tag--2 {
  background-color: #03a9f4;
  color: #fff;
}

.vacancy-cards__tag:not(.vacancy-cards__tag--1):not(.vacancy-cards__tag--2) {
  background-color: #f5f5f5;
  color: #333;
}

.vacancy-cards__cta {
  margin-top: auto;
  margin-bottom: 8px;
}

.vacancy-cards__progress {
  max-width: 558px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 73px;
  height: 6px;
  background-color:#AD9FFF;
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
}
.vacancy-cards__progress:hover {
  opacity: 0.9;
}

.vacancy-cards__progress-bar {
  height: 100%;
  width: 0;
  background-color: #6F35F2;
  border-radius: 999px;
  transition: width 0.3s ease;
}
.vacancy-cards__meta-item svg{
  width: 18px;
  height: 14.67px;
  fill: #00C1DE;  
}
.vacancy-cards__meta-item {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}
.vacancy-cards__meta-label{
  font-weight: 400;
  font-size: 14px;
}
.vacancy-cards__desc{
  margin-top: 51px;
  margin-bottom: 18px;
  font-weight: 400;
  font-size: 14px;
}
.vacancy-cards__meta{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
}




/* Full picture layout: image as background with gradient overlay, text + icons at bottom */
.team-card--fullpicture {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.team-card--fullpicture.team-card--bg {

  background-position: center top;
  background-repeat: no-repeat;
  aspect-ratio: 2 / 3;
}

@media (max-width: 1139px) {
  .team-card--fullpicture {
    min-height: 280px;
    padding: 20px;
  }
  .team-card--fullpicture .team-card__title {
    font-size: 24px;
  }
  .team-card--fullpicture.team-card--bg {
    background-size: cover;
    aspect-ratio: 2 / 3;
  }
}

@media (max-width: 767px) { 
   .team-card--fullpicture.team-card--bg {
    background-size: cover;
    aspect-ratio: 2 / 2.5;
  }
}
.team-card--white.team-card--fullpicture {
  border: 1px solid rgba(203, 213, 225, 1);
}

/* Gradient overlay: end color by card color class (accent, dark, light, white, ghost) */
.team-card--fullpicture .team-card__gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.team-card--accent.team-card--fullpicture .team-card__gradient {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0) 15%, #002B4E 50%);
}

.team-card--dark.team-card--fullpicture .team-card__gradient {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0) 15%, #002B4E 50%);
}

.team-card--light.team-card--fullpicture .team-card__gradient {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0) 15%, #F8FAFC 50%);
}

.team-card--white.team-card--fullpicture .team-card__gradient {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0) 15%, #fff 50%);
}

.team-card--ghost.team-card--fullpicture .team-card__gradient {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0) 15%, #CEFCFF 50%);
}

.team-card--fullpicture .team-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.team-card--fullpicture .team-card__content.team-card__overlay {
  position: relative;
  z-index: 2;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-card--fullpicture .team-card__overlay--left {
  align-items: flex-start!important;
  text-align: left!important;
}

.team-card--fullpicture .team-card__overlay--right {
  align-items: flex-end!important;
  text-align: right!important;
}

.team-card--fullpicture .team-card__overlay--left .team-card__icons,
.team-card--fullpicture .team-card__overlay--right .team-card__icons {
  justify-content: inherit;
}

.team-card--fullpicture .team-card__txt.txt--light .team-card__title,
.team-card--fullpicture .team-card__txt.txt--light .team-card__desc {
  color: #fff;
}

.team-card--fullpicture .team-card__title {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 30px;
}

.team-card--fullpicture .team-card__desc {
  margin-bottom: 12px;
}

.team-card--fullpicture .team-card__icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.team-card--fullpicture .team-card__icon{
  box-shadow: none;
}
/* Card color Accent: icon background purple (#6F35F2), SVG white */
.team-card--accent  .icon--fill.icon--white-accent{
  background: #6F35F2;
  color: #fff;
}
.team-card--accent .team-card__icon.icon--white-accent .icon__glyph,
.team-card--accent .team-card__icon.icon--white-accent svg {
  color: #fff;
  fill: #fff;
}

/* Card color White + fullpicture: icon accent tint */
.team-card--white.team-card--fullpicture .icon--fill.icon--white-accent {
  color: rgba(0, 193, 222, 1);
  background: #CEFCFF;
}

.team-card--fullpicture  .txt--light{
  color:#002B4E;
}

/* White card: text uses accent color */
.team-card--white .team-card__txt,
.team-card--white .team-card__txt .team-card__title,
.team-card--white .team-card__txt .team-card__desc,
.team-card--white.team-card--fullpicture .team-card__txt.txt--light .team-card__title,
.team-card--white.team-card--fullpicture .team-card__txt.txt--light .team-card__desc {
  color: #002B4E;
}

.team-card--white.team-card--fullpicture .team-card__desc {
  color: #475569!important;
}
.team-card--fullpicture .team-card__desc p{
  margin-bottom: 0!important;
}


/* Numbers module */
.module--numbers .numbers__number {
  margin-bottom: 24px;
  font-size: 64px;
  font-weight: 700;
}
.module--numbers .numbers--dark .numbers__number {
    color: #1CDAF4;
}
/* Section intro title – break long words */
.section-intro__title {
  word-break: break-word;
}

/* Rich text box white – border like feature/contact card, no box-shadow */
.rtext--box-white {
  box-shadow: none!important;
  border: 1px solid #E2E8F0;
}

.badge {
  padding: 10px;
  display: inline-block;
  border-radius: 85px;
  font-size: 10px;
  font-weight: 600;
}
.badge--blue{
  color: #0A7894;
  background-color: #CEFCFF;
}
.badge--red{
  color: #A3335D;
  background-color: #F4D6E6;
}
/* Properties module */
.properties__item {
  border-color: transparent !important;
}

.properties__text {
  font-weight: 600;
}

/* Links: font-weight 600 everywhere */
a {
  font-weight: 600;
}

/* Links inside txt--light: also theme button color */
.txt--light a {
  color: #6F35F2;
}


.icon--medium .icon__glyph{
  font-size: 20px;
  height: 20px;
  line-height: 20px;
  width: 20px;
} 
.icon--medium.icon--disc, .icon--medium.icon--square {
  width: 40px;
  height: 40px;
}