/* Theme base styles */


/* Settings */




:root {
  --primary-color: 

  
  
    
  


  rgba(26, 61, 109, 1)

;
  --secondary-color: 

  
  
    
  


  rgba(240, 134, 2, 1)

;
  --dark-color: 

  
  
    
  


  rgba(26, 61, 109, 1)

;
  --light-color: 

  
  
    
  


  rgba(238, 238, 238, 1)

;
  --white-color: 

  
  
    
  


  rgba(255, 255, 255, 1)

;
  --black-color: 

  
  
    
  


  rgba(#null, 1)

;
}


:root {
  --button-background-color: 

  
  
    
  


  rgba(240, 134, 2, 1.0)

;
  --button-font-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
  --button-border: 0px solid 

  
  
    
  


  rgba(240, 134, 2, 1)

;
  --button-border-radius: 0px;
  --button-padding: 15px 25px;
  --button-max-width: 500px;
}

:root {
    /* Typography */
    --body-font: 'Raleway', sans-serif;
    --body-font-color: #231f20;
    --body-font-size: 1rem;
    --body-font-weight: 400;
    --heading-font: 'Raleway', sans-serif;
    --link-font-color: #425b76;
    --link-hover-font-color: #567699;
    --link-active-font-color: #33475c;
  
    /* Spacing - vertical rhythm */
    --standard-line-height: 1.5;
    --standard-margin: 1.5rem;
    --large-margin: 2rem;
  
    /* Buttons */
    --button-font: 'Raleway', sans-serif;
    --button-font-color: #fff;
    --button-font-weight: 500;
    --button-background-color: #425b76;
    --button-hover-background-color: #567699;
    --button-active-background-color: #33475c;
    --button-padding: 0.5rem;
    --button-width: 100%;
    --secondary-button-font-color: #425b76;
    --secondary-button-background-color: rgba(0, 0, 0, 0.0);
    --secondary-button-border: 3px solid #425b76;
    --secondary-button-hover-font-color: #567699;
    --secondary-button-hover-background-color: rgba(0, 0, 0, 0.0);
    --secondary-button-hover-border: 3px solid #567699;
    --secondary-button-active-font-color: #33475c;
    --secondary-button-active-background-color: rgba(0, 0, 0, 0.0);
    --secondary-button-active-border: 3px solid #33475c;
  
    /* Borders */
    --border: 3px solid #f5f8fa;
    --border-dark: 3px solid #cbd6e2;
  
    /* Forms */
    --form-background-color: #f5f8fa;
    --form-padding: 1.5rem;
    --form-padding-desktop: 3rem;
    --form-width: 100%;
  
    /* Form labels */
    --label-font-size: 1rem;
    --label-font-weight: 400;
    --label-margin-bottom: 0.5rem;
  
    /* Form inputs */
    --input-font-color: #231f20;
    --input-background-color: #fff;
    --input-border: 0;
    --input-padding: 0.5rem 0.75rem;
    --input-width: 100%;
    --input-placeholder-color: #516f90;
  }


/*  Objects
    Non-cosmetic design patterns including grid and layout classes)
*/
html {
  scroll-behavior: smooth;
}

.content-wrapper {
  margin: 0 auto;
  padding: 0 20px;
  max-width: ;
}

.dnd-section,
.content-wrapper--vertical-spacing {
  padding: ;
}

.dnd-section > .row-fluid {
  margin: 0 auto;
  max-width: ;
}

.dnd-section .dnd-column {
  padding: 0 20px;
}

.footer .dnd-section {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 768px) {
  .dnd-section,
  .content-wrapper--vertical-spacing {
    padding: ;
  }
}

@media (min-width: 992px) {
  .dnd-section,
  .content-wrapper--vertical-spacing {
    padding: ;
  }
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

@media (min-width: 1600px) {
  .content-wrapper {
    max-width: ;
  }

  .dnd-section > .row-fluid {
    max-width: ;
  }
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
} 
.l-flex {
  display: flex;
}

/*******************************************
  Direction
*******************************************/
.l-flex--direction-row {
  flex-direction: row;
}

.l-flex--direction-row-reverse {
  flex-direction: row-reverse;
}

.l-flex--direction-column {
  flex-direction: column;
}

.l-flex--direction-column-reverse {
  flex-direction: column-reverse;
}

/*******************************************
  Wrap
*******************************************/
.l-flex--nowrap {
  flex-wrap: nowrap;
}

.l-flex--wrap {
  flex-wrap: wrap;
}

.l-flex--wrap-reverse {
  flex-wrap: wrap-reverse;
}

/*******************************************
  Justify Content
*******************************************/
.l-flex--justify-content-flex-start {
  justify-content: flex-start;
}

.l-flex--justify-content-flex-end {
  justify-content: flex-end;
}

.l-flex--justify-content-center {
  justify-content: center;
}

.l-flex--justify-content-space-between {
  justify-content: space-between;
}

.l-flex--justify-content-space-around {
  justify-content: space-around;
}

.l-flex--justify-content-space-evenly {
  justify-content: space-evenly;
}

.l-flex--justify-content-start {
  justify-content: start;
}

.l-flex--justify-content-end {
  justify-content: end;
}

.l-flex--justify-content-left {
  justify-content: left;
}

.l-flex--justify-content-right {
  justify-content: right;
}

/*******************************************
  Align Items
*******************************************/
.l-flex--align-items-stretch {
  align-items: stretch;
}

.l-flex--align-items-flex-start {
  align-items: flex-start;
}

.l-flex--align-items-flex-end {
  align-items: flex-end;
}

.l-flex--align-items-center {
  align-items: center;
}

.l-flex--align-items-baseline {
  align-items: baseline;
}

.l-flex--align-items-first-baseline {
  align-items: first baseline;
}

.l-flex--align-items-last-baseline {
  align-items: last baseline;
}

.l-flex--align-items-start {
  align-items: start;
}

.l-flex--align-items-end {
  align-items: end;
}

.l-flex--align-items-self-start {
  align-items: self-start;
}

.l-flex--align-items-self-end {
  align-items: self-end;
}

/*******************************************
  Align Content
*******************************************/
.l-flex--align-content-flex-start {
  align-content: flex-start;
}

.l-flex--align-content-flex-end {
  align-content: flex-end;
}

.l-flex--align-content-center {
  align-content: center;
}

.l-flex--align-content-space-between {
  align-content: space-between;
}

.l-flex--align-content-space-around {
  align-content: space-around;
}

.l-flex--align-content-space-evenly {
  align-content: space-evenly;
}

.l-flex--align-content-stretch {
  align-content: start;
}

.l-flex--align-content-start {
  align-content: start;
}

.l-flex--align-content-end {
  align-content: end;
}

.l-flex--align-content-baseline {
  align-content: baseline;
}

.l-flex--align-content-first-baseline {
  align-content: first baseline;
}

.l-flex--align-content-last-baseline {
  align-content: last baseline;
}

/*******************************************
  Align Self
*******************************************/
.l-flex--align-self-auto {
  align-self: auto;
}

.l-flex--align-self-flex-start {
  align-self: flex-start;
}

.l-flex--align-self-flex-end {
  align-self: flex-end;
}

.l-flex--align-self-center {
  align-self: center;
}

.l-flex--align-self-baseline {
  align-self: baseline;
}

.l-flex--align-self-stretch {
  align-self: stretch;
}
/* Responsive Grid */
.body-wrapper {
    /* overflow: hidden; */
}

.row-fluid {
    width: 100%;
    *zoom: 1;
}

.row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
}

.row-fluid:after {
    clear: both;
}

.row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.127659574%;
    *margin-left: 2.0744680846382977%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
    margin-left: 0;
}

.row-fluid .span12 {
    width: 99.99999998999999%;
    *width: 99.94680850063828%;
}

.row-fluid .span11 {
    width: 91.489361693%;
    *width: 91.4361702036383%;
}

.row-fluid .span10 {
    width: 82.97872339599999%;
    *width: 82.92553190663828%;
}

.row-fluid .span9 {
    width: 74.468085099%;
    *width: 74.4148936096383%;
}

.row-fluid .span8 {
    width: 65.95744680199999%;
    *width: 65.90425531263828%;
}

.row-fluid .span7 {
    width: 57.446808505%;
    *width: 57.3936170156383%;
}

.row-fluid .span6 {
    width: 48.93617020799999%;
    *width: 48.88297871863829%;
}

.row-fluid .span5 {
    width: 40.425531911%;
    *width: 40.3723404216383%;
}

.row-fluid .span4 {
    width: 31.914893614%;
    *width: 31.8617021246383%;
}

.row-fluid .span3 {
    width: 23.404255317%;
    *width: 23.3510638276383%;
}

.row-fluid .span2 {
    width: 14.89361702%;
    *width: 14.8404255306383%;
}

.row-fluid .span1 {
    width: 6.382978723%;
    *width: 6.329787233638298%;
}

.container-fluid {
    *zoom: 1;
}

.container-fluid:before, .container-fluid:after {
    display: table;
    content: "";
}

.container-fluid:after {
    clear: both;
}

@media (max-width: 767px) {
    .row-fluid {
        width: 100%;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: none;
        width: auto;
        margin-left: 0;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.762430939%;
        *margin-left: 2.709239449638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 99.999999993%;
        *width: 99.9468085036383%;
    }

    .row-fluid .span11 {
        width: 91.436464082%;
        *width: 91.38327259263829%;
    }

    .row-fluid .span10 {
        width: 82.87292817100001%;
        *width: 82.8197366816383%;
    }

    .row-fluid .span9 {
        width: 74.30939226%;
        *width: 74.25620077063829%;
    }

    .row-fluid .span8 {
        width: 65.74585634900001%;
        *width: 65.6926648596383%;
    }

    .row-fluid .span7 {
        width: 57.182320438000005%;
        *width: 57.129128948638304%;
    }

    .row-fluid .span6 {
        width: 48.618784527%;
        *width: 48.5655930376383%;
    }

    .row-fluid .span5 {
        width: 40.055248616%;
        *width: 40.0020571266383%;
    }

    .row-fluid .span4 {
        width: 31.491712705%;
        *width: 31.4385212156383%;
    }

    .row-fluid .span3 {
        width: 22.928176794%;
        *width: 22.874985304638297%;
    }

    .row-fluid .span2 {
        width: 14.364640883%;
        *width: 14.311449393638298%;
    }

    .row-fluid .span1 {
        width: 5.801104972%;
        *width: 5.747913482638298%;
    }
}

@media (min-width: 1280px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.564102564%;
        *margin-left: 2.510911074638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 100%;
        *width: 99.94680851063829%;
    }

    .row-fluid .span11 {
        width: 91.45299145300001%;
        *width: 91.3997999636383%;
    }

    .row-fluid .span10 {
        width: 82.905982906%;
        *width: 82.8527914166383%;
    }

    .row-fluid .span9 {
        width: 74.358974359%;
        *width: 74.30578286963829%;
    }

    .row-fluid .span8 {
        width: 65.81196581200001%;
        *width: 65.7587743226383%;
    }

    .row-fluid .span7 {
        width: 57.264957265%;
        *width: 57.2117657756383%;
    }

    .row-fluid .span6 {
        width: 48.717948718%;
        *width: 48.6647572286383%;
    }

    .row-fluid .span5 {
        width: 40.170940171000005%;
        *width: 40.117748681638304%;
    }

    .row-fluid .span4 {
        width: 31.623931624%;
        *width: 31.5707401346383%;
    }

    .row-fluid .span3 {
        width: 23.076923077%;
        *width: 23.0237315876383%;
    }

    .row-fluid .span2 {
        width: 14.529914530000001%;
        *width: 14.4767230406383%;
    }

    .row-fluid .span1 {
        width: 5.982905983%;
        *width: 5.929714493638298%;
    }
}

/* Clearfix */

.clearfix {
    *zoom: 1;
}

.clearfix:before, .clearfix:after {
    display: table;
    content: "";
}

.clearfix:after {
    clear: both;
}

/* Visibilty Classes */

.hide {
    display: none;
}

.show {
    display: block;
}

.invisible {
    visibility: hidden;
}

.hidden {
    display: none;
    visibility: hidden;
}

/* Responsive Visibilty Classes */

.visible-phone {
    display: none !important;
}

.visible-tablet {
    display: none !important;
}

.hidden-desktop {
    display: none !important;
}

.s-border-radius .row-fluid-wrapper {
	border-radius: 10px;
}

@media (max-width: 767px) {
    .visible-phone {
        display: inherit !important;
    }

    .hidden-phone {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .visible-tablet {
        display: inherit !important;
    }

    .hidden-tablet {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important ;
    }
}


@media (max-width: 980px) {
  .reverse-row-order .row-fluid {
    display: flex;
    flex-direction: row-reverse !important;
  }
  
  .stack .row-fluid {
    align-items: flex-start !important;
    flex-direction: column !important;
    flex-wrap: wrap; 
  }

  .stack .row-fluid [class*="span"] {
    width: 100% !important;
  }

  .stack .row-fluid .dnd-column {
    margin: 1em 0 !important;
    width: 100% !important;
  }

  .stack .row-fluid .dnd-column:last-child {
    margin: 0 !important;
  }

  .reverse-row-order.stack .row-fluid .dnd-column:first-child {
    margin: 0 !important;
  }
  
  .reverse-row-order.stack .row-fluid {
    align-items: flex-start !important;
    display: flex;
    flex-direction: column-reverse !important;
  }
}


/*  Elements
    Base HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/
.l-button-group {
  gap: .5rem;
  margin-top: 1em;
  width: 100%;
}

button:not(.c-header-search__icon):not(.c-site-search-modal__close):not(.c-header-mobile-menu__icon--open):not(.c-header-mobile-menu__icon--close):not(.linkedin-feed button):not([class*="ToolbarIconButton"]):not([class*="PrivateButton"]:not([class*="uiButton"]),
.c-button {
  background-color: var(--button-background-color);
  border-radius: var(--button-border-radius);
  border: var(--button-border);
  color: var(--button-font-color);
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  font-family: 'Poppins';
  letter-spacing: 0.1em;
  max-width: var(--button-max-width);
  min-width: 150px;
  padding: var(--button-padding);
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.15s linear;
  white-space: normal;
  width: auto;
}

.c-button i {
  padding-right: 10px;
}

button:disabled,
.c-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

button:hover,
button:focus,
button:active,
.c-button:hover,
.c-button:focus,
.c-button:active {
  filter: brightness(90%);
}

/*
  Button size styles
*/
button.c-button--large,
.c-button--large {
  font-size: 1em;
  letter-spacing: 1px;
  font-weight: bold;
}

button.c-button--medium,
.c-button--medium {
  font-size: 0.7rem;
}

button.c-button--small,
.c-button--small {
  font-size: 0.75rem;
}

/*
  Button Styles
*/
button.c-button--primary-color,
.c-button--primary-color {
  background-color: var(--primary-color);
}

button.c-button--secondary-color,
.c-button--secondary-color {
  background-color: var(--secondary-color);
}

button.c-button--dark-color,
.c-button--dark-color {
  background-color: var(--dark-color);
  color: var(--light-color);
}

button.c-button--light-color,
.c-button--light-color {
  background-color: var(--light-color);
  color: var(--dark-color);
}

button.c-button--white-color,
.c-button--white-color {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.c-button--arrow {
  background-color: transparent;
  border: none;
  padding: 0;
}

.c-button--arrow span {
  transition: all 0.3s ease-in-out;
}

.c-button--arrow:hover span, .c-button--arrow:focus span, .c-button--arrow:active span {
  margin-left: 10px;
}

/*
  Icon Styles
*/
.c-close-icon--primary-color {
  fill: var(--primary-color);
}
.c-close-icon--secondary-color {
  fill: var(--secondary-color);
}
.c-close-icon--dark-color {
  fill: var(--dark-color);
}
.c-close-icon--light-color {
  fill: var(--light-color);
}
.c-close-icon--white-color {
  fill: var(--white-color);
}



/*
  Button icons
*/
.c-button::after {
  font-family: 'Material Symbols Outlined';
  margin-left: 10px;
  position: relative;
  right: 0;
  transition: right ease .35s;
  display: inline-block;
  vertical-align: middle;
}

.c-button:hover::after,
.c-button:focus::after,
.c-button:focus-within::after {
  right: -10px;
}

.c-button__icon--none::after {
  display: none;
}

.c-button__icon--arrow::after {
  content: '\e5e1';
}

.c-button__icon--phone::after {
  content: '\e0b0';
}

.c-button__icon--download::after {
  content: '\f090';
}
.c-button__icon--instagram::after {
  content: '';
  background: url('https://25206466.fs1.hubspotusercontent-eu1.net/hubfs/25206466/instagram-white.svg') no-repeat center;
  background-size: contain;
  width: 20px;
  height: 20px;
}

.c-button__icon--tiktok::after {
  content: '';
  background: url('https://25206466.fs1.hubspotusercontent-eu1.net/hubfs/25206466/tiktok-black-icon-symbol.svg') no-repeat center;
  background-size: contain;
  width: 20px;
  height: 20px;
}

/*
  Button burger
*/
.c-button-burger {
  display: block;
  width: 40px;
  height: 36px;
  position: relative;
  cursor: pointer;
  margin-bottom: 10px;
  margin-top: 10px;
}
.c-button-burger .line {
  fill: none;
  stroke: var(--white-color);
  stroke-width: 4;
  transition: stroke-dasharray .6s cubic-bezier(.4,0,.2,1),stroke-dashoffset .6s cubic-bezier(.4,0,.2,1)
}

.c-button-burger .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 4
}

.c-button-burger .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 4
}

.c-button-burger .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 4
}

.c-button-burger.open .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 4
}

.c-button-burger.open .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -40;
  stroke-width: 4
}

.c-button-burger.open .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 4
}


@media (min-width: 1600px) {

button.c-button--medium,
.c-button--medium {
  font-size: 0.8rem;
}
}