







/* Global Css color variables */
:root {
  --rencore-font-family: 'Ubuntu', sans-serif;
  --main-max-width: 1240px;
  --pricing-card-padding: 40px;
  --pricing-card-teaser: -40px;

  /* Primary brand color */ 
  --rencore-dark-blue: #00263d;

  --rencore-white: #fff;

  --rencore-lighter-blue: #1C4863;

  /* Primary accent color */
  --rencore-bright-blue: #039BE5;

  --rencore-light-blue: #00ACFF;

  /* Website and application page backgrounds */
  --rencore-background: #F2F4F5;

  /* Enhancing elements over the page backgroud and for body text on dark background */
  --rencore-enhancing-element: #CCD4D8;

  /* Used for enhancing elements, sub-headers, captions, lables and quotes */
  --rencore-enhancing-text: #667D8B;

  /* Contrast color for iconography, other graphics and CTAs */
  --rencore-deep-orange: #E84621;

  /* Background accent color for website and brochure stand-out sections */
  --rencore-bright-blue-accent: #CCEEFB;

  /* paragraph color */
  --rencore-paragraph-color: #667D8B;

  /* header and menu */
  --main-header-height: 101px;
  --main-header-height-scrollup: -101px;
  --main-menu-fadin-time: 2s;

  --rencore-logo-width-desktop: 151px;

  --form-control-disabled-color: #667D8B;

  --rencore-text-decoration-opacity: 0.5;
}

/* 1a. Containers */




/* 1b. Colors */




/* 1c. Typography */


























/* 1d. Buttons */








/* 1e. Forms */













/* 1f. Tables */













/* 1g. Website header */








/* 1h. Website footer */








.content-wrapper {
  max-width: 1240px;
}

.dnd-section,
.content-wrapper--vertical-spacing {
  padding: 60px 1rem;
}

.dnd-section > .row-fluid {
  max-width: 1240px;
}





html {
  font-size: 18px;
}

body {
  font-family: Ubuntu, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #00263d;
  font-size: 18px;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* html, body {
  overflow-x: hidden;
} */
.container_wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* for Chrome, Safari, and Opera 
body::-webkit-scrollbar {
display: none; 
}


body::-webkit-scrollbar {
width: 1em;
}

body::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
background-color: darkgrey;
outline: 1px solid slategrey;
}*/


input,
button,
textarea,
select {
  font: inherit;
}

div {
  font-family: Ubuntu, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
}

/* Paragraphs */

p {
  font-family: Ubuntu, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #667D8B;
}

/* Anchors */

a {
  font-weight: normal; text-decoration: none; font-family: Ubuntu, sans-serif; font-style: normal;
  color: #039be5;
}

a:hover,
a:focus {
  font-weight: normal; text-decoration: none; font-family: Ubuntu, sans-serif; font-style: normal;
  color: #0073bd;
}

a:active {
  font-weight: normal; text-decoration: none; font-family: Ubuntu, sans-serif; font-style: normal;
  color: #2bc3ff;
}

/* Headings */

/*
H1 as it is. H2 - 50, H3-40, H4-30. Is it smth still possible to do? H1-4 in the same thickness.
*/

h1,
.h1 {
  font-weight: 700; text-decoration: none; font-family: Ubuntu, sans-serif; font-style: normal;
  color: #335164;
  font-size: 55px;
  text-transform: none;
  line-height: 110%;
  font-weight: 700;
}

h2,
.h2 {
  font-weight: 700; text-decoration: none; font-family: Ubuntu, sans-serif; font-style: normal;
  color: #335164;
  text-transform: none;
  font-size: 50px;
  line-height: 110%;
  font-weight: 700;
}

h3,
.h3 {
  font-weight: 700; text-decoration: none; font-family: Ubuntu, sans-serif; font-style: normal;
  color: #335164;
  font-size: 40px;
  text-transform: none;
  font-weight: 700;
}

h4,
.h4 {
  font-weight: normal; text-decoration: none; font-family: Ubuntu, sans-serif; font-style: normal;
  color: #335164;
  font-size: 30px;
  text-transform: none;
  font-weight: 700;
}

h5,
.h5 {
  font-weight: normal; text-decoration: none; font-family: Ubuntu, sans-serif; font-style: normal;
  color: #335164;
  font-size: 21px;
  text-transform: none;
  font-weight: 500;
}

h6,
.h6 {
  font-weight: 500; font-family: Ubuntu, arial, sans-serif;
  color: #335164;
  font-size: 18px;
  text-transform: none;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  h1,
  .h1 {
    font-size: 36px !important;
    line-height: 110% !important;
  }

  h2,
  .h2 {
    font-size: 32px !important;
    line-height: 110% !important;
  }

  h3,
  .h3 {
    font-size: 30px !important;
    line-height: 110% !important;
  }

  h4,
  .h4 {
    font-size: 28px !important;
    line-height: 110% !important;
  }

  h5,
  .h5 {
    font-size: 26px;
    line-height: 110%;
  }

  h6,
  .h6 {
    font-size: 22px;
    line-height: 110%;
  }
}


/* Blockquote */

blockquote {
  border-left-color: #039BE5;
}




.btn-menu,
.btn-transparent,
.btn-secondary,
.button,
button,
.btn-tertiary,
.btn-dark-blue,
.module__menu-content-banner__button .button,
input[type=submit] {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 19px;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none !important;
  min-width: 150px;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  display: inline-block;
  min-height: 36px;
}

.btn-transparent {
  border: 2px solid var(--rencore-bright-blue);
  color: var(--rencore-bright-blue);
}

.btn-transparent:hover {
  border: 2px solid var(--rencore-bright-blue);
  background-color: var(--rencore-bright-blue);
  font-weight: inherit;
  color: #fff;
}

.btn-secondary {
  color: var(--rencore-dark-blue) !important;
  background-color: transparent;
  background: transparent;
  border: 1px solid var(--rencore-dark-blue);

  position: relative;
  z-index: 1;

  display: inline-block;
  white-space: normal;
  font-weight:500;

}

.btn-secondary:hover {
  color: #fff;
  background-color: #0690d6;
  border: 1px solid #00263D;
  font-weight:500;
}

.btn-menu {

  color: #fff;
  background-color: transparent;
  background: transparent;
  border: 1px solid #fff;
}

.btn-menu:hover {
  color: #fff;
  font-weight: inherit;
  border: 1px solid var(--grey-colours-white, #FFF);
  background: rgba(255, 255, 255, 0.14);
}

.btn-dark-blue {
  background-color: #00263D;
  color: #fff;
  font-weight: inherit;
}

/*
Third option button to select
*/

.btn-tertiary {
  color: #FFF !important;
  background-color: transparent;
  background: var(--rencore-dark-blue);
  border: 1px solid var(--rencore-dark-blue);

  position: relative;
  z-index: 1;

  display: inline-block;
  transition: all .15s linear;
}

.btn-tertiary span {
  color: #fff;
}

.btn-tertiary:hover{
  background-color: var(--rencore-lighter-blue);
  border: 1px solid var(--rencore-lighter-blue);
  color: #fff;  
  font-weight: inherit;
}

.btn-white {
  background-color: var(--rencore-white);
  border: 1px solid var(--rencore-white);
  border-radius: 4px;
  color: #00263d;
  padding: 11px 28px;
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
}
.btn-blue {
  background-color: var(--rencore-bright-blue);
  border: 1px solid var(--rencore-bright-blue);
  border-radius: 100px;
  color: #FFFFFF;
  padding: 10px 27px;
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  display: inline-block;
  transition: 0.3s;
}
.btn-blue:hover {
  background-color: #28a9e8;
  border: 1px solid #28a9e8;
  color: #FFFFFF;
}

.button, 
input[type="submit"].hs-button {
  border: 1px solid #00263d;

  background: var(--rencore-bright-blue);
  color: #fff;
  position: relative;
  border-width:0 !important;
  z-index: 1;
}

.button:hover, 
input[type="submit"].hs-button:hover {
  background: var(--rencore-light-blue);
  color: #fff;
}

.module__menu-content-banner__button .button,
.button span {
  color: #fff;
}

@media (max-width: 480px) {
  button,
  .button,
  .btn-secondary {
    width: fit-content;
  }
}

.splide__arrow.splide__arrow--prev,
.splide__arrow.splide__arrow--next {
  min-width: auto !important;
}

.splide__arrow.splide__arrow--next svg {
  margin-left: 3px !important;
}

.splide__arrow.splide__arrow--prev svg {
  margin-right: 3px !important;
}

button.splide__arrow--prev {
  left: 2rem !important;
}

button.splide__arrow--next {
  right: 2rem !important;
}

.splide__arrow svg {
  margin: 0 !important;
}

button.splide__arrow svg {
  fill: #fff !important;
}

button.splide__arrow {
  background-color: transparent !important;
  border: 1px solid #fff !important;
}





form,
.submitted-message {
  font-family: Ubuntu, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
}

/* Form title */

.form-title {
  /*color: #039BE5;*/
  text-align: center;
}

/* Labels */

form .hs-form-field > label {
  /*color: #00263d;*/
  display: none;
}

/* Help text */

form legend {
  /*color: #00263d;*/
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {

  background: #FFFFFF;  
  border: 1px solid #C7CFD3;
  border-radius: 20px;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height, or 150% */

  display: flex;
  align-items: center;

  /* Rencore DarkBlue/Rencore DarkBlue 60% */

  color: #667D8B;

}

/* Form placeholder text */

::-webkit-input-placeholder {
  color: #00263d;
}

::-moz-placeholder {
  color: #00263d;
}

:-ms-input-placeholder {
  color: #00263d;
}

::placeholder {
  color: #00263d;
}

/* Inputs - date picker */

.hs-fieldtype-date .input .hs-dateinput:before {
  color: #00263d;
}

.fn-date-picker td.is-selected .pika-button {
  background: #00263d;
}

.fn-date-picker td .pika-button:hover {
  background-color: #00263d !important;
}

.fn-date-picker td.is-today .pika-button {
  color: #00263d;
}

/* Submit button */
/*
form input[type=submit],
form .hs-button {
border: 1px solid #00263d;

padding-top: 15px;
padding-right: 53px;
padding-bottom: 15px;
padding-left: 53px;

font-family: Ubuntu, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
background-color: 

  
  
    
  


  rgba(0, 38, 61, 1.0)

;
border-radius: 6px;
color: #FFFFFF;
font-size: 18px;
text-transform: none;
}

form input[type=submit]:hover,
form input[type=submit]:focus,
form .hs-button:hover,
form .hs-button:focus {
background-color: rgba(0, 0, 21, 1.0);
border-color: #000015;
}

form input[type=submit]:active,
form .hs-button:active {
background-color: rgba(40, 78, 101, 1.0);
border-color: #284e65;
}
*/




/* Table */

table {
  border: 1px solid #00263d;

  background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
}

/* Table cells */

td,
th {
  border: 1px solid #00263d;

  padding: 18px;

  color: #00263d;
}

/* Table header */

thead th {
  background-color: 

  
  
    
  


  rgba(0, 38, 61, 1.0)

;
  color: #FFFFFF;
}

/* Table footer */

tfoot td {
  background-color: 

  
  
    
  


  rgba(0, 38, 61, 1.0)

;
  color: #00263d;
}





.header {
  background-color: 

  
  
    
  


  rgba(3, 155, 229, 1.0)

;
}

.menu__link,
.header__logo .logo-company-name,
.header__language-switcher-label-current,
.header__language-switcher .lang_list_class li a {
  color: #00263d;
  font-family: Ubuntu;
}

.menu__child-toggle-icon {
  border-top-color: #00263d;
}

.menu .menu__link:hover,
.menu .menu__link:focus,
.header__language-switcher-label-current:hover,
.header__language-switcher-label-current:focus,
.header__language-switcher .lang_list_class li:hover a,
.header__language-switcher .lang_list_class li a:focus {
  color: #000015;
}

.menu__child-toggle-icon:hover,
.menu__child-toggle-icon:focus {
  border-top-color: #000015;
}

.menu .menu__link:active,
.header__language-switcher-label-current:active,
.header__language-switcher .lang_list_class li a:active {
  color: #284e65;
}

.menu__child-toggle-icon:active {
  border-top-color: #284e65;
}

.menu .menu__item--depth-1 > .menu__link--active-link:after {
  background-color: #00263d;
}

@media (min-width: 767px) {
  .menu .menu__submenu,
  .header__language-switcher .lang_list_class {
    border: 2px solid #00263d;

    background-color: 

  
  
    
  


  rgba(3, 155, 229, 1.0)

;
  }

  .menu__submenu--level-2 > .menu__item:first-child:before {
    border: 2px solid #00263d;

    background-color: 

  
  
    
  


  rgba(3, 155, 229, 1.0)

;
  }
}

.menu__submenu .menu__link,
.menu__submenu .menu__link:hover,
.menu__submenu .menu__link:focus {
  color: #ffffff;
  background-color: 

  
  
    
  


  rgba(3, 155, 229, 1.0)

;
}

.header__language-switcher .lang_list_class:before {
  border-bottom-color: #00263d;
}

.menu__submenu .menu__link:hover,
.menu__submenu .menu__link:focus,
.header__language-switcher .lang_list_class li:hover,
.menu__submenu--level-2 > .menu__item:first-child:hover:before,
.menu__submenu--level-2 > .menu__item:first-child.focus:before {
  background-color: 

  
  
    
  


  rgba(3, 155, 229, 1.0)

;
}

.header__language-switcher .lang_list_class.first-active::after {
  border-bottom-color: 

  
  
    
  


  rgba(3, 155, 229, 1.0)

;
}

.header__language-switcher-label-current,
.header__language-switcher .lang_list_class li a {
  font-family: Ubuntu;
}

.header__language-switcher-label-current:after {
  border-top-color: #00263d;
}

@media(max-width: 767px) {
  .header__navigation {
    background-color: 

  
  
    
  


  rgba(3, 155, 229, 1.0)

;
  }

  .header__navigation-toggle svg,
  .menu-arrow svg {
    fill: #00263d;
  }
}





.footer {
  background: 

  
  
    
  


  rgba(3, 155, 229, 1.0)

;
}

/* Footer content */

.footer p,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer label,
.footer span,
.footer li,
.footer img {
  color: #00263d;
}





.blog-post,
.blog-header__inner,
.blog-related-posts {
  padding: 60px 0;
}

.blog-related-posts {
  padding: 50px 0 60px 0;
}

/* Blog post */

.blog-post__meta a {
  color: #00263d;
}

.blog-post__tag-link {
  color: #00263d;
}

.blog-post__tag-link:hover,
.blog-post__tag-link:focus {
  color: #000015;
}

.blog-post__tag-link:active {
  color: #284e65;
}

/* Blog related posts */

.blog-related-posts__title-link,
.blog-related-posts__title-link:hover,
.blog-related-posts__title-link:focus,
.blog-related-posts__title-link:active {
  font-weight: 700; text-decoration: none; font-family: Ubuntu, sans-serif; font-style: normal;
  text-transform: none;
}

.blog-related-posts__title-link {
  color: #00263d;
}

.blog-related-posts__title-link:hover,
.blog-related-posts__title-link:focus {
  color: #000015;
}

.blog-related-posts__title-link:active {
  color: #284e65;
}

/* Blog comments */

.blog-comments {
  margin-bottom: 60px;
}

#comments-listing .comment-reply-to {
  color: #039be5;
}

#comments-listing .comment-reply-to:hover,
#comments-listing .comment-reply-to:focus {
  color: #0073bd;
}

#comments-listing .comment-reply-to:active {
  color: #2bc3ff;
}





.hs-search-results__title {
  font-weight: 700; text-decoration: none; font-family: Ubuntu, sans-serif; font-style: normal;
  color: #00263d;
}





/* Blog listing */

.hs-blog-post-listing__post-title-link,
.hs-blog-post-listing__post-title-link:hover,
.hs-blog-post-listing__post-title-link:focus,
.hs-blog-post-listing__post-title-link:active {
  font-weight: 700; text-decoration: none; font-family: Ubuntu, sans-serif; font-style: normal;
  text-transform: none;
}

.hs-blog-post-listing__post-title-link {
  color: #00263d;
}

.hs-blog-post-listing__post-title-link:hover,
.hs-blog-post-listing__post-title-link:focus {
  color: #000015;
}

.hs-blog-post-listing__post-title-link:active {
  color: #284e65;
}


.hs-blog-post-listing__post-tag,
.hs-blog-post-listing__post-author-name {
  color: #00263d;
}

/* Blog pagination */

.hs-pagination__link-text,
.hs-pagination__link--number {
  color: #00263d;
}

.hs-pagination__link:hover .hs-pagination__link-text,
.hs-pagination__link:focus .hs-pagination__link-text,
.hs-pagination__link--number:hover,
.hs-pagination__link--number:focus {
  color: #000015;
}

.hs-pagination__link:active .hs-pagination__link-text,
.hs-pagination__link--number:active {
  color: #284e65;
}

.hs-pagination__link-icon svg {
  fill: #00263d;
}

/* Pricing card */

.card__price {
  font-weight: 700; text-decoration: none; font-family: Ubuntu, sans-serif; font-style: normal;
  color: #00263d;
  font-size: 30px;
}

.card__body svg {
  fill: #00263d;
}

/* Social follow */

.social-links__icon {
  background-color: #00263d;
}

.social-links__icon:hover,
.social-links__icon:focus {
  background-color: #000015;
}

.social-links__icon:active {
  background-color: #284e65;
  font-weight: 700; text-decoration: none; font-family: Ubuntu, sans-serif; font-style: normal;
  color: #00263d;
  font-size: 30px;
}


/**/

.splide__pagination__page {
  min-width: 8px;
  min-height: auto;
}


.widget-span.widget-type-custom_widget.dnd-module.span12 {
  width: 100%;
}

#personio-iframe {
  width: 100% !important;
}