









/*********** 1b. Colors ***********/

/*** Primary Colors ***/



.bg-primary-color-1, .text-primary-color-1 {
  background-color: #6E56CF;
}


/*** Neutral Colors ***/










.bg-neutral-color-800, .text-neutral-color-800 {
  background-color: #141A2B;
}

.bg-neutral-color-700, .text-neutral-color-700 {
  background-color: #4B5266;
}

.bg-neutral-color-600, .text-neutral-color-600 {
  background-color: #6E7791;
}

.bg-neutral-color-500, .text-neutral-color-500 {
  background-color: #A0A8BD;
}

.bg-neutral-color-400, .text-neutral-color-400 {
  background-color: #DCE0EB;
}

.bg-neutral-color-300, .text-neutral-color-300 {
  background-color: #EFF1F6;
}

.bg-neutral-color-200, .text-neutral-color-200 {
  background-color: #f7f7f8;
}

.bg-neutral-color-100, .text-neutral-color-100 {
  background-color: #FFFFFF;
}


/*** Status Colors ***/






.bg-status-color-default, .text-status-color-default {
  background-color: #3E3E44;
}

.bg-status-color-success, .text-status-color-success {
  background-color: #99D52A;
}

.bg-status-color-warning, .text-status-color-warning {
  background-color: #F76808;
}

.bg-status-color-error, .text-status-color-error {
  background-color: #E5484D;
}

/*********** 1c. Typography *********/


/*** Desktop Typography ***/























/*** Mobile Typography ***/























/*********** 1d. Shadows **********/



/******* General Shadow 1 *******/






.general-shadow-1 {
  -webkit-filter: drop-shadow(0px 2px 6px rgba(20, 20, 43, 0.06));
  filter:         drop-shadow(0px 2px 6px rgba(20, 20, 43, 0.06)); 
}

/******* General Shadow 2 *******/






.general-shadow-2 {
  -webkit-filter: drop-shadow(0px 2px 12px rgba(20, 26, 43, 0.08));
  filter:         drop-shadow(0px 2px 12px rgba(20, 26, 43, 0.08)); 
}

/******* General Shadow 3 *******/






.general-shadow-3 {
  -webkit-filter: drop-shadow(0px 8px 28px rgba(20, 20, 43, 0.06));
  filter:         drop-shadow(0px 8px 28px rgba(20, 20, 43, 0.06)); 
}

/******* General Shadow 4 *******/






.general-shadow-4 {
  -webkit-filter: drop-shadow(0px 14px 42px rgba(20, 20, 43, 0.08));
  filter:         drop-shadow(0px 14px 42px rgba(20, 20, 43, 0.08)); 
}


/******* General Shadow 5 *******/






.general-shadow-5 {
  -webkit-filter: drop-shadow(0px 24px 65px rgba(20, 26, 43, 0.12));
  filter:         drop-shadow(0px 24px 65px rgba(20, 26, 43, 0.12)); 
}


/******* General Shadow 6 *******/






.general-shadow-6 {
  -webkit-filter: drop-shadow(0px 32px 72px rgba(20, 20, 43, 0.24));
  filter:         drop-shadow(0px 32px 72px rgba(20, 20, 43, 0.24)); 
}



/******* Button Shadow 1 *******/








/******* Button Shadow 2 *******/








/******* Button Shadow 3 *******/








/******* Button Shadow 4 *******/







/******* Button Shadow 5 *******/







/******* Button Shadow 6 *******/










/*********** 1e. Buttons **********/

/*** Primary Buttons ***/



























/*** Secondary Buttons ***/

























/*********** 1f. Cards ************/


















/*********** 1g. Forms ************/






















/*********** 1h. Tables ************/
















/************ 1i. Site header ************/




/************ 1j. Site footer ************/




/************ 1k. Shadows ************/
   

/* Dynamic CSS asigns */

.horizontal_spacer_1 {  
  margin-left: 5px;
  margin-right: 5px;
}

.vertical_spacer_1 {  
  margin-top: 5px;
  margin-bottom: 5px;
}


.buttons_container {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}


.box_container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-bottom: 20px;
}

.box_light {
  width: 100%;
  max-width: 140px;
  height: auto;
  text-align: center;
  padding: 15px 15px;
  border-radius: 16px;
  color: #FFF;
  margin-top: 10px;
  margin-right: 10px;
  border: 1px solid #eee;
  box-shadow: 0px 15px 44px rgba(8, 15, 52, 0.06);
  transition: 0.2s ease-in-out;
}

.box_dark {
  width: 100%;
  max-width: 140px;
  height: auto;
  text-align: center;
  padding: 15px 15px;
  border-radius: 16px;
  color: #000;
  margin-top: 10px;
  margin-right: 10px;
  border: 1px solid #eee;
  box-shadow: 0px 15px 44px rgba(8, 15, 52, 0.06);
  transition: 0.2s ease-in-out;
}

.box_light:hover, .box_dark:hover {
  transform: scale(1.05);
}

blockquote {
  border-left: 2px solid #6E56CF;
}



:focus {
  outline: none; 
}








html {
  font-size: 18px;
}

body {
  
  font-weight: 300;
  text-decoration: none;
  font-style: normal;
  
  font-size: 18px;
  color: #6e7791;
  line-height: 30px;
  text-transform: none;
  letter-spacing: -0.1px;
}

/*** Paragraphs ***/

p, li {
  
  font-weight: 300;
  text-decoration: none;
  font-style: normal;
  
  font-size: 18px;
  color: #6e7791;
  line-height: 30px;
  text-transform: none;
  letter-spacing: -0.1px;
}

/*** Anchors ***/

a {
  transition: 0.2s ease-in-out;
  color: unset;
  text-decoration: unset !important;
}

a:hover,
a:focus {
  color: #6E56CF !important;
}

/* Anchor styles for blogpost */
.elements--post2--blog--body a {
  color: #6E56CF;
}

.elements--post2--blog--body a:hover,
.elements--post2--blog--body a:focus {
  color: #6E56CF !important;
  text-decoration: underline !important;
}


.submenu .level-2 .menu-item a:hover {
   color: #6E56CF !important;
}


.blog-pagination__number-link:hover,
.blog-pagination__number-link:focus {
  color: #6E56CF !important;
}

strong {
  transition: 0.2s ease-in-out;
}

/*** Headings ***/

h1 {
  
  font-weight: 400;
  text-decoration: none;
  font-style: normal;
  color: #333366;
  font-size: 64px;
  line-height: 64px;
  text-transform: none;
  letter-spacing: -0.075rem;
}

h2 {
  
  font-weight: 400;
  text-decoration: none;
  font-style: normal;
  color: #333366;
  font-size: 44px;
  line-height: 48px;
  text-transform: none;
  letter-spacing: -0.075rem;
}

h3 {
  
  font-weight: 500;
  text-decoration: none;
  font-style: normal;
  color: #6758c1;
  font-size: 18px;
  line-height: 21.6px;
  text-transform: none;
  letter-spacing: -0.036rem;
}

h4 {
  
  font-weight: 400;
  text-decoration: none;
  font-style: italic;
  color: #7C66CC;
  font-size: 48px;
  line-height: 62px;
  text-transform: none;
  letter-spacing: 0rem;
}

h5 {
  
  font-weight: 400;
  text-decoration: none;
  font-style: normal;
  color: #6e7791;
  font-size: 44px;
  line-height: 52.8px;
  text-transform: none;
  letter-spacing: 0rem;
}

h6 {
  
  font-weight: 800;
  text-decoration: none;
  font-style: normal;
  color: #333366;
  font-size: 16px;
  line-height: 22px;
  text-transform: none;
  letter-spacing: 0rem;
}

/*** Blockquote ***/

blockquote {
  border-left-color: ;
}






/*** Primary Buttons ***/

.btn-primary-dark {
  background-color: 

  
  
    
  


  rgba(110, 86, 207, 1.0)

;
  border: 1px solid #5746AF;
  border-radius: 8px;
  color: #FFFFFF;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 500;
  
  
    -webkit-filter: drop-shadow(0px 4px 10px rgba(20, 20, 43, 0.06));
    filter:         drop-shadow(0px 4px 10px rgba(20, 20, 43, 0.06)); 
  
  
  
  transition: 0.2s ease-in-out;
  
}

    

	.btn-primary-dark:hover,
  .btn-primary-dark:focus,
  .btn-primary-dark:active {
    background-color: 

  
  
    
  


  rgba(100, 79, 193, 1.0)

;
    color: #f3f1fa;
    border: 1px solid #5746AF;
  }


    



.btn-primary-white {
  background-color: 

  
  
    
  


  rgba(253, 252, 253, 0.0)

;
  border: 1px solid #6E56CF;
  border-radius: 8px;
  color: #1a1523;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  
    
  
  
  transition: 0.1s ease-in-out;
  
}

    

	.btn-primary-white:hover,
  .btn-primary-white:focus,
  .btn-primary-white:active {
    background-color: 

  
  
    
  


  rgba(103, 88, 193, 1.0)

;
    color: #FFFFFF;
    border: 1px solid #6E56CF;
  }


    




/*** Secondary Buttons ***/


.btn-secondary-white {
  background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
  border: 1px solid #DCE0EB;
  border-radius: 8px;
  color: #141A2B;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 400;
  
  
  
    -webkit-filter: drop-shadow(0px 6px 20px rgba(20, 26, 43, 0.08));
    filter:         drop-shadow(0px 6px 20px rgba(20, 26, 43, 0.08)); 
  
  
  transition: 0.1s ease-in-out;
  
  
}

    

	.btn-secondary-white:hover,
  .btn-secondary-white:focus,
  .btn-secondary-white:active {
    background-color: 

  
  
    
  


  rgba(238, 237, 239, 1.0)

;
    color: #1A1523;
    border: 1px solid #DCDBDD;
  }


    



.btn-secondary-dark {
  background-color: 

  
  
    
  


  rgba(255, 255, 255, 0.0)

;
  border: 1px solid #A0A8BD;
  border-radius: 8px;
  color: #FFFFFF;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 500;
  
  
  
  
  
  
  transition: 0.2s ease-in-out;
  
}

    

	.btn-secondary-dark:hover,
  .btn-secondary-dark:focus,
  .btn-secondary-dark:active {
    background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
    color: #141A2B;
    border: 1px solid #FFFFFF;
  }


    








.cards {
  justify-content: ;
}
.card__image {
  max-width: px;
}

.card__title {
  color: ;
}

.card__text p {
  color: ;
}

.cards__card {
  background-color: #FDFCFD;
  border: 1px solid #E4E2E4;
  border-radius: 20px;
  transition: 0.2s ease-in-out;
  
  
  
  
    -webkit-filter: drop-shadow(0px 2px 6px rgba(20, 20, 43, 0.06));
    filter:         drop-shadow(0px 2px 6px rgba(20, 20, 43, 0.06)); 
  
  
}




	.cards__card:hover {
    transform: scale(1.03) !important;
  }












form,
.submitted-message {
  ;
}

.inputs-list input, .inputs-list span {
  color: #6e7791;
  font-weight: normal;
}


/*** Form label ***/

form label {
  color: #141A2B;
  font-weight: 400;
}

/*** Form help text ***/

form legend {
  color: #6E7791;
}

/*** Form inputs ***/

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=number],
input[type=file],
select,
textarea {
  border: 1px solid #DCE0EB;
  color: #333366;
  border-radius: 8px;
  height: 62px;
/*   box-shadow: 0px 4px 10px rgba(74, 58, 255, 0.06); */
}

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=file]:focus,
select:focus,
textarea:focus {
  border: 2px solid #C4B8F3; 
}




/*** Form placeholder text ***/

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder,
::placeholder,
.hs-fieldtype-date .input .hs-dateinput:before {
  color: #6e7791;
}

::-webkit-input-placeholder {
  color: #A0A8BD;
}

/*** Date picker ***/

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

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

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

/*** Submit button ***/


form input[type=submit],
form .hs-button {
  background-color: 

  
  
    
  


  rgba(110, 86, 207, 1.0)

;
  border: 1px solid #5746AF;
  border-radius: 8px;
  color: #FFFFFF;
  padding: 12px 20px;
  
    
  
}


    

    form input[type=submit]:hover,
    form input[type=submit]:focus,
    form input[type=submit]:active,
    form .hs-button:hover,
    form .hs-button:focus,
    form .hs-button:active {
    background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
    color: #ffffff;
    border: 1px solid #5746AF;
  }


    












table {
  background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
  border: none;
  border-spacing: 0px;
  border-collapse: separate;
	border-right: 1px solid #333366;
	
}

th,
td {
  border: none;
  color: #6e7791;
  border-left: 1px solid #333366;
	border-bottom: 1px solid #333366;
}



thead th,
thead td {
  border: none;
  background-color: 

  
  
    
  


  rgba(110, 86, 207, 1.0)

;
  color: #FFFFFF;
	
	
	
}

tfoot td {
  border: none;
  background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
  color: #6e7791;
	border-bottom: 1px solid #333366;
	border-left: 1px solid #333366;
}

tbody + tbody {
  border: none;
  border-top-color: ;

}






.header .logo-company-name {
  line-height: 30px;
}

.header {
  background-color: rgba(255, 255, 255,0.9) ;

}

body .navigation-primary a,
.header__logo .logo-company-name,
.header__language-switcher-label-current,
.header__language-switcher .lang_list_class li a,
.container-header-nav-2 p, .top-level-link span {
  
  font-weight: 400;
  text-decoration: none;
  font-style: normal;
  
  font-size: 16px;
  color: #6e7791;
  line-height: 16.8px;
  text-transform: none;
  letter-spacing: -0.1px;
  transition: .2s ease-in-out;
}

.submenu.level-2 .menu-item .menu-link, .header__language-switcher .lang_list_class li a {
  
  font-weight: 400;
  text-decoration: none;
  font-style: normal;
  
  font-size: 16px;
  color: #6e7791;
  line-height: 40px;
  text-transform: none;
  letter-spacing: -0.1px;
  
}

.navigation-primary a:hover,
.navigation-primary a:focus,
.lang_list_class a:hover,
.lang_list_class a:focus,
.top-level-link span:hover {
  color: #141A2B !important;
}

.submenu.level-2 .menu-item .menu-link:hover,
.submenu.level-2 .menu-item .menu-link:focus {
  color: #6E56CF;
}

  

@media(min-width: 857px) {

  .submenu.level-2 {
    border: none !important;
    border-radius: 15px !important;
    visibility: hidden !important;
    opacity: 0 !important;
    -prefixes-transition-property: opacity, visibility !important;
    -prefixes-transition-duration: .4s, 0s !important;
    -prefixes-transition-delay: 0s, .4s !important;
    left: unset !important;
    transition: 0.2s ease-in-out !important;
  }

  .submenu.level-1 > li.has-submenu:hover .submenu.level-2 {
      left: unset !important;
      visibility: visible !important;
      opacity: 1 !important;
      -prefixes-transition-delay: 0s, 0s !important;
  }

  .submenu.level-1 > li.has-submenu.focus .submenu.level-2 {
    left: unset !important;
  }


  .submenu.level-2 > li {
    border: none !important;
  }
  .submenu.level-2 > li:first-child:before {
    border: none !important;
    top: -6px !important;
    width: 0px !important;
    height: 0px !important;
    display: none !important;
    border-radius: none !important;

  }

  .submenu.level-2 .menu-item:last-of-type, .submenu.level-2 .menu-item:last-of-type .menu-link {
    border-radius: 15px !important;
  }

  .submenu.level-2 .menu-item:first-of-type, .submenu.level-2 .menu-item:first-of-type .menu-link {
    border-radius: 15px !important;
  }
}

@media(max-width: 857px) {
	
	a:hover,
	a:focus {
		color: #6E56CF !important;
	}

  .header__navigation--toggle.open:after, .header__search--toggle.open:after, .header__language-switcher--toggle.open:after {
    color: #333366 !important;
    top: -2px;
    text-transform: capitalize !important;
  }
  
  
  body .submenu.level-2, body .header__language-switcher .lang_list_class {
    padding-left: 20px;
}
  
  body .navigation-primary .submenu.level-1 > .has-submenu > .menu-arrow {
    margin-top: 0px !important;
    border: none !important;
    background-color: #FFFFFF;
  }
  
 
}


@media(max-width: 857px) {
  
  .submenu .level-2 .menu-item a:hover {
     color: #6E56CF !important;
  }
  
  body .navigation-primary a,
  .header__logo .logo-company-name,
  .header__language-switcher-label-current,
  .header__language-switcher .lang_list_class li a {
    
    font-weight: 400;
    text-decoration: none;
    font-style: normal;

    font-size: 14px;
    color: #6e7791;
    line-height: 40px;
    text-transform: none;
    letter-spacing: -0.1px;
  }
  
  .submenu.level-2 .menu-item .menu-link {
    
    font-weight: 400;
    text-decoration: none;
    font-style: normal;

    font-size: 16px;
    color: #6e7791;
    line-height: 40px;
    text-transform: none;
    letter-spacing: -0.1px;
  }
  
  .navigation-primary a:hover,
  .navigation-primary a:focus,
  .lang_list_class a:hover,
  .lang_list_class a:focus,
  .top-level-link:hover {
    color: #141A2B !important;
  }

  .submenu.level-2 .menu-item .menu-link:hover,
  .submenu.level-2 .menu-item .menu-link:focus {
    color: #6E56CF;
  }
  
}

body .header__search .hs-search-field__input {
  
  font-weight: 300;
  text-decoration: none;
  font-style: normal;
  font-size: 18px;
}



body .navigation-primary a:active,
body .header__language-switcher-label-current:active,
body .header__language-switcher .lang_list_class li a:active {
  color: ;
}

body .navigation-primary .submenu.level-1 > li > a.active-item:after {
  background-color: ;
}



body .submenu.level-2,
body .header__language-switcher .lang_list_class {
  background-color: rgba(255, 255, 255,1.1);
  border-color: ;
}

body .submenu.level-2 > li:first-child:before {
  border-color: ;
}

body .header__language-switcher .lang_list_class:before {
  border-bottom-color: ;
}

body .submenu.level-2 .menu-item .menu-link:hover,
body .submenu.level-2 .menu-item .menu-link:focus,
body .header__language-switcher .lang_list_class li:hover,
body .submenu.level-2 > li:first-child:hover:before,
body .submenu.level-2 > li:first-child.focus:before {
  background-color: 

  
  
    
  


  rgba(255, 255, 255, 0.9)

;
}

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

  
  
    
  


  rgba(255, 255, 255, 0.9)

;
}

.header__language-switcher-label-current,
.header__language-switcher .lang_list_class li a {
  
  font-weight: 300;
  text-decoration: none;
  font-style: normal;
  font-size: 18px;
}

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

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

  
  
    
  


  rgba(255, 255, 255, 0.9)

;
  }

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





.footer {
  background-color: 

  
  
    
  


  rgba(247, 247, 248, 1.0)

 !important;
}

/* Footer Content */

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5 {
  
  
  color: #333366;

}

.footer__columns h6 {
  
  
  font-weight: 700;
  text-decoration: none;
  font-style: normal;

  font-size: 18px;
  color: #333366;
  line-height: 32px;
  text-transform: none;
  letter-spacing: -0.1px;
  
}

.footer__columns a {
  
  
  font-weight: 400;
  text-decoration: none;
  font-style: normal;

  font-size: 16px;
  color: #6e7791;
  line-height: 27px;
  text-transform: none;
  letter-spacing: -0.1px;
  
}

.footer__columns a:hover {
  color: #6E56CF !important;
}

.footer__copyright a:hover {
  color: #6E56CF !important;
}




.footer p {
  
  
  font-weight: 400;
  text-decoration: none;
  font-style: normal;

  font-size: 16px;
  color: #6e7791;
  line-height: 27px;
  text-transform: none;
  letter-spacing: -0.1px;
  
}

.footer__copyright {
  
  
  font-weight: 400;
  text-decoration: none;
  font-style: normal;

  font-size: 16px;
  color: #6e7791;
  line-height: 27px;
  text-transform: none;
  letter-spacing: -0.1px;
  
}






.blog-post__date {
  border-color: #6e7791;
}

.blog-tag-filter__menu-link,
.blog-post__tag-link,
.blog-card__tag-link,
.blog-post__author-name,
.blog-card__title a {
  color: #6e7791;
}

.blog-card__tag-link:hover,
.blog-card__title a:hover,
.blog-tag-filter__menu-link:hover,
.blog-post__tag-link:hover,
.blog-post__author-name:hover,
.blog-card__tag-link:focus,
.blog-card__title a:focus,
.blog-tag-filter__menu-link:focus,
.blog-post__tag-link:focus,
.blog-post__author-name:focus {
  color: #464f69;
}

.blog-card__tag-link:active,
.blog-card__title a:active,
.blog-tag-filter__menu-link:active,
.blog-post__tag-link:active,
.blog-post__author-name:active {
  color: #969fb9;
}

.blog-tag-filter__menu-link--active-item:after {
  background-color: #6E56CF;
}

.blog-pagination__link {
  color: ;
}

.blog-pagination__link--active:after,
.blog-pagination__prev-link:after,
.blog-pagination__next-link:after {
  background-color: #6E56CF;
}

.blog-post__title {

  
  font-weight: 400;
  text-decoration: none;
  font-style: normal;
  
  color: #333366;
  font-size: 44px;
  line-height: 48px;
  text-transform: none;
  letter-spacing: -0.075px;
}

#comments-listing .comment-reply-to {
  color: #6e7791;
}

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

#comments-listing .comment-reply-to:active {
  color: #969fb9;
}






body .icon svg {
  fill: #6E56CF;
}

body .tns-nav button.tns-nav-active {
  background-color: #6E56CF;
}

body .tns-nav button:hover,
body .tns-nav button:focus {
  background-color: #6E56CF;
}

body .social-links__icon {
  background-color: #6E56CF;
}


body .social-links__icon svg {
  fill: #6E56CF;
}







@media(max-width: 767px) {

  
  .buttons_container {
    flex-direction: column;
  }
  




  html {
    font-size: 16px;
  }

  body {
    
    font-weight: 400;
    text-decoration: none;
		font-size: 16px;
    font-style: normal;
    color: #6e7791;
    line-height: 26px;
    text-transform: none;
    letter-spacing: -0.1px;
  }

  /*** Paragraphs ***/

  p {
    
    font-weight: 400;
    text-decoration: none;
		font-size: 16px;
    font-style: normal;
    color: #6e7791;
    line-height: 30px;
    text-transform: none;
    letter-spacing: -0.1px;
  }

  /*** Anchors ***/
  
  
  strong {
    transition: 1s all ease-in-out;
  }


  /*** Headings ***/

  h1 {
    
    font-weight: 400;
    text-decoration: none;
    font-style: normal;
    color: #333366;
    font-size: 48px;
    line-height: 48px;
    text-transform: none;
    letter-spacing: -0.075rem;
  }

  h2 {
    
    font-weight: 300;
    text-decoration: none;
    font-style: normal;
    color: #333366;
    font-size: 36px;
    line-height: 36px;
    text-transform: none;
    letter-spacing: -0.075rem;
  }

  h3 {
    
    font-weight: 500;
    text-decoration: none;
    font-style: normal;
    color: #7C66CC;
    font-size: 18px;
    line-height: 28px;
    text-transform: none;
    letter-spacing: 0rem;
  }
  
  h4 {
    
    font-weight: 400;
    text-decoration: none;
    font-style: italic;
    color: #333366;
    font-size: 36px;
    line-height: 28px;
    text-transform: none;
    letter-spacing: 0rem;
  }
  
  h5 {
    
    font-weight: 700;
    text-decoration: none;
    font-style: normal;
    color: #333366;
    font-size: 18px;
    line-height: 24px;
    text-transform: none;
    letter-spacing: 0rem;
  }
  
  h6 {
    
    font-weight: 700;
    text-decoration: none;
    font-style: normal;
    color: #333366;
    font-size: 16px;
    line-height: 22px;
    text-transform: none;
    letter-spacing: 0rem;
  }

  
  
  
  /* Footer Content */

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5 {
  
  
  color: #333366;

}

  .footer__columns h6 {

    
    font-weight: 400;
    text-decoration: none;
    font-style: normal;

    font-size: 18px;
    color: #333366;
    line-height: 32px;
    text-transform: none;
    letter-spacing: -0.1px;

  }

  .footer__columns a {

    
    font-weight: 400;
    text-decoration: none;
    font-style: normal;

    font-size: 16px;
    color: #6e7791;
    line-height: 27px;
    text-transform: none;
    letter-spacing: -0.1px;

  }

  .footer__columns a:hover {
    color: #6E56CF;
  }

  .footer__copyright a:hover {
    color: #6E56CF;
  }




  .footer p {

    
    font-weight: 400;
    text-decoration: none;
    font-style: normal;

    font-size: 16px;
    color: #6e7791;
    line-height: 27px;
    text-transform: none;
    letter-spacing: -0.1px;

  }

  .footer__copyright {

    
    font-weight: 400;
    text-decoration: none;
    font-style: normal;

    font-size: 16px;
    color: #6e7791;
    line-height: 27px;
    text-transform: none;
    letter-spacing: -0.1px;

  }


  
}


[data-aos^=fade][data-aos^=fade].aos-animate {
  -webkit-transform: none;
  transform: none;
}


/******************************************************************/
/*                        - Custom CSS -                          */
/*  Activate this CSS ile from the Theme Settings before using it */
/*  Find it on: Global Settings > Settings > Enable Custom CSS    */
/******************************************************************/
parentElement {
  transform: none; /* or ensure proper stacking context management */
}
  

/******************************************************************/
/*              Please add your Custom CSS below                  */
/******************************************************************/

 .dark__theme .cards__card{
 background-color: #28272B;
 border: 1px solid rgba(255, 255, 255, 0.16);
}
  

.logo__testimonial img{
border-radius:0px !important;
} 


.full-image-card .cards__card{
 padding:0;
 line-height:0;
  overflow:hidden;
}

  .full-image-card img{
  object-fit:cover;
  height:fit-content;
/*     width:auto; */
  width:100%;
  }
}

a.anchor{
    display: block;
    position: relative;
    top: -250px;
    visibility: hidden;
}




/* little pill header thingy that usually goes on top of H1 or H2 headers */
.subheader-pill-light{
  max-width:max-content;
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid #AA99EC;
}

.subheader-pill-light span{
  color: var(--Primary-Colors-Primary-Purple, #6758C1);
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* global class for making a cute inline pill to highlight states */
.pill-highlight{
  display: inline-flex;
  min-width: 24px;
  padding: var(--spacing-1, 4px);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-1, 4px);

  border-radius: var(--radius-1, 4px);

  overflow: hidden;

  font-variant-numeric: lining-nums tabular-nums;
  text-overflow: ellipsis;

  /* Label 3/Bold */
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px; /* 133.333% */  
}

.pill-highlight.on-demand{
  background: var(--bg-brand-default, #F5F2FF);
  color: var(--text-brand-default, #5746AF);
}

.pill-highlight.upcoming{
  background: var(--bg-success-default, #EEFADC);
  color: var(--text-success-default, #5D770D);
}

.pill-highlight.coming-soon{
  background: var(--bg-success-default, #EEFADC);
  color: var(--text-success-default, #5D770D);
  border: 1px solid #B1D16A;
}




/* styles specifically for case study blogposts */

.casestudy-card{
border-radius: 16px;
border: 1px solid #FFF;
background: rgba(244, 242, 244, 0.80);
/* General/Shadow 01 */
box-shadow: 0px 2px 6px 0px rgba(20, 20, 43, 0.06);
backdrop-filter: blur(50px);
}

.casestudy-profile{
max-height:280px;
display: flex;
flex-wrap:wrap;
padding: var(--spacing-5, 20px) var(--spacing-5, 20px) 10px var(--spacing-5, 20px);
flex-direction: column;
justify-content: left;
gap: 12px;
}

.casestudy-profile.summary{
max-height:fit-content;
flex-wrap:nowrap;
padding: var(--spacing-5, 20px) var(--spacing-5, 20px) 10px var(--spacing-5, 20px);
}

@media (max-width: 767px) {
  .casestudy-profile{
  max-height: unset;
  flex-wrap: nowrap;
  padding: 40px 40px 0 40px;
  }
}


.casestudy-profile div{
 flex-basis: 25%;
}

.casestudy-keyresults{
padding: 16px;
margin:16px;
gap: 10px;
  
border-radius: 8px;
border: 1px solid rgba(196, 196, 196, 0.35);
background: #6758C1;
}

.casestudy-keyresults div.title-pill{
  max-width:fit-content;
  padding: 6px;
  margin-bottom:12px;
  border-radius: 6px;
  border: 1px solid #FFF;
  
  color: #FFF;

font-family: Inter;
font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
@media (max-width: 767px) {
  .casestudy-keyresults div.title-pill{
  margin:auto;
  }
}

.casestudy-keyresults ul{
padding: 20px;
}

.casestudy-keyresults li{
  list-style-type: "✔";
 list-style-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><polygon fill="%23FFFFFF" points="16.4,45.06 0.54,29.2 7.61,22.13 16.4,30.92 42.39,4.94 49.46,12.01 "/></svg>');  
  padding-left:12px;
}

.casestudy-keyresults li::marker{
  font-size: 1em;
  line-height: 0.1;
  margin-right: 0.5ch;
}

/* endcard for casestudies */
.casestudy-endcard-wrap {
margin: 0 -75% -20px -75%;
background: #6758C1;
}

.casestudy-endcard{
max-width:748px;
  width:100%;
padding: 16px;
margin:auto;
background: #6758C1;
}

.casestudy-endcard div.title-pill{
  max-width:fit-content;
  padding: 6px;
  margin-bottom:12px;
  border-radius: 6px;
  border: 1px solid #FFF;
  
  color: #FFF;

font-family: Inter;
font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
@media (max-width: 767px) {
  .casestudy-endcard div.title-pill{
  margin:auto;
  }
  .casestudy-endcard-wrap {
      margin: 0 -21px;
  }
  
  .casestudy-endcard{
  padding:48px;
  width:100%;
  }
}


/* dark theme for team cards, mainly remove the card styling */

.team-dark .cards__card {
  background-color: unset;
  border: none;
  border-radius: 0px;
  transition: 0.2s ease-in-out;
  -webkit-filter: unset;
  filter: unset;
}

@media(max-width: 767px) {
  .business-template__disable-bg-mobile .row-fluid-wrapper{
    background-image: initial !important;
  }
}

/* careers page divers and inclusive community stats */

.careers-stats-wrapper{
 display:flex;
  flex-wrap:wrap;
}

.careers-stats-wrapper div{
  width:25%;
  text-align:center;
  border-right: 1px solid var(--gray-200, #E5E7EB);
}

@media (max-width: 767px){
  .careers-stats-wrapper div{
    width:50%;
  }
}

.careers-stats-wrapper div:last-child{
  /* remove the last border line */
  border-right: unset;
}

@media (max-width: 767px){
.careers-stats-wrapper div{
  /* remove even border line :nth-child(even) */
  border-right: unset;
}
  
  .careers-stats-wrapper h2{
  font-size:38px;
  }
  
  .careers-stats-wrapper p{
  font-size:12px
  }
  
  .careers-stats-wrapper{
  gap:16px 0;
  }
}

.careers-stats-wrapper h2{
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 62px; /* 129.167% */
  
  margin-bottom:0;
}

.careers-stats-wrapper p{
  color: rgba(255, 255, 255, 0.60);
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  
  margin-bottom:0;
}


.careers-map h3{margin-bottom: 0px;}

.careers-map cards__card{padding: 0px;}

@media(max-width: 767px) {
  .pcf-starter-pack{
    padding: 40px 40px 100px 40px !important;
  }
}

/* newsroom  */

.newsroom-logo-showcase{
  text-align: center; 
  width: 100%; 
  height: auto; 
  background-color: #f7f7f8; 
  padding: 56px; 
  border-radius: 8px; 
  margin-bottom: 8px;
}

@media (max-width: 767px){
  .newsroom-logo-showcase{
  width:88vw;
  }
}



/* HEADER LANGUAGE DROPDOWN loading in stylings from module as we are not directly using lang module anymore */

.lang_switcher_class {
	position: relative;
	display: inline-block
}

.globe_class {
	background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.11/img/globe.png);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	cursor: pointer
}

.lang_list_class {
	display: none;
	position: absolute;
	top: 17px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	text-align: center;
	z-index: 100;
	list-style-type: none;
	padding: 15px 0 0;
	margin: 0
}

/* footer version of language switcher */
.lang_list_class_footer {
	display: block;
}

.lang_list_class_footer .lang_switcher_link{
  font-size:16px;
}
.lang_list_class_footer .lang_switcher_link.active{
  color:#6758C1;
}


/* end footer version styling */

.globe_class:hover .lang_list_class {
	display: block
}

.lang_list_class:before {
	top: -8px;
	border: 12px solid transparent;
	border-bottom-color: #000
}

.lang_list_class:after,
.lang_list_class:before {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	width: 0;
	height: 0;
	margin-left: -12px
}

.lang_list_class:after {
	top: -7px;
	border: 12px solid transparent;
	border-bottom-color: #fff;
	margin-bottom: -1px
}

.lang_list_class li {
	position: relative;
	line-height: 1;
	font-size: 13px;
	padding: 0 15px 10px;
	background-color: #fff;
	border-left: 1px solid #000;
	border-right: 1px solid #000
}

.lang_list_class li:first-child {
	padding-top: 15px;
	border-top: 1px solid #000
}

.lang_list_class li:last-child {
	padding-bottom: 15px;
	border-bottom: 1px solid #000
}

.lang_list_class li a {
	text-decoration: none;
	color: #000;
	cursor: pointer
}

.lang_list_class li a:hover {
	color: #02f
}


/* header language dropdown custom stylings */
.header__language-switcher--label::before{
 position: absolute;
        width: 54px;
        height: 54px;
        top: -6px;
        content: '';
}

.header__language-switcher .lang_list_class{
  min-width:120px;
/*   left: calc(100% + 67px); */
  left:100%;
  top: 120%;
}

body .header__language-switcher .lang_list_class::before{
  border-bottom-color:white;
}

/* liveblog */
.liveblog-anchor-links .btn-primary-white{
    background-color: rgba(253, 252, 253, 0.0);
    border: 1px solid #AA99EC;
    border-radius: 8px;
    color: #5746AF;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.1s ease-in-out;
}

.liveblog-anchor-links .btn-primary-white:hover{
    background-color: #6E56CF;
    color:#fff;
}

.liveblog.elements--post--blog--header__date{
    font-size:16px;
    font-weight:500;
}

.liveblog.elements--post--blog--tag__badge{
    background-color: rgba(253, 252, 253, 0.0);
    border: 1px solid #AA99EC;
    border-radius: 8px;
    color: #5746AF;
    padding: 4px 10px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.1s ease-in-out;
 }

.liveblog.elements--post--blog--tag__badge:hover{
    background-color: #6E56CF;
    color:#fff;
}

.quick-links{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.quick-links div{
  border-radius: var(--radius-1, 4px);
  border: 1px solid var(--border-default-default, #DCDBDD);
  background: var(--bg-default-default, #FDFCFD);
  padding: 10px 16px;

  color: var(--text-default-default, #1A1523);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  /* Elevation/elevation1 */
  box-shadow: 0px 1px 0px 1px rgba(255, 255, 255, 0.06) inset, 0px 0px 1px 0px rgba(0, 0, 0, 0.22), 0px 2px 1px 0px rgba(0, 0, 0, 0.05);

}

.quick-links div:hover{
  background: #EEEDEF;
  color: #1A1523; 
}

.quick-links div a:hover{
  color: #1A1523; 
}

.quick-links span{
  margin-right:8px;
}

.mobile-break { 
  display: none; 
}

@media only screen and (max-width: 600px) {
  .quick-links div{
    padding:8px;
    
  }
  .mobile-break{
  display:block;
  }
}


/* Mobile specific styling for linkedin*/
@media only screen and (max-width: 900px) {
  .linkedin-container iframe {
      width: 100%;
    max-width: 800px;
  }
  
  .quick-links div a{
  font-size:14px;
  }
  
}

.section-callout-wrapper{
  display:flex;
  flex-wrap:wrap;
}

.section-callout-logo{
  float:none;
}

/* this bit is for the new 2025 article + case study cards */

  .card-flex{
    display: flex;
    gap: 32px;
      flex-wrap:wrap;
    align-items:center;
  }
  
  .card-flex > div {
  flex: 1;
  min-width: 250px; /* Ensures wrapping on smaller screens */
}
  
  
  
  .outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 2px solid black;
    border-radius: 8px;
    background-color: transparent;
    color: black;
    font-size: 16px;
    cursor: pointer;
  }

  .outline-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: black;
    position: relative;
  }
  

  .outline-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: black;
    transition: width 0.3s ease;
  }

  .outline-link:hover::before {
    width: 80%;
  }

  .outline-icon {
    margin-left: 8px;
  }
  
  .outline-link:hover{
    color: #000 !important;
  }
  
  /* White version */
  .outline-white {
    border-color: white;
    color: white;
  }

  .outline-white .outline-link {
    color: white;
  }

  .outline-white .outline-link::before {
    background-color: white;
  }

  .outline-white .outline-link:hover::before {
    width: 80%;
  }

  .outline-white .outline-icon {
    stroke: white;
  }
  
    .outline-white .outline-link:hover{
    color: #fff !important;
  }
  
  .outline-article{
    color: #FFF;
    font-family: Inter;
    font-size: 34px;
    font-style: normal;
    font-weight: 300;
    line-height: 110%;
    letter-spacing: -2px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.85);
  }
  .outline-article strong{
    font-weight: 700;
  }

/* purple button */

.purple-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  background-color: #6E56CF;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.purple-button:hover {
  background-color: #7E66DF;
}



.purple-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: white;
  position: relative;
}

.purple-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease;
}

.purple-button .purple-link:hover{
  color: #fff !important;
}

.purple-link:hover::before {
  width: 80%;
}

.purple-icon {
  margin-left: 8px;
  stroke: white;
}



.toc {
  display: flex;
  flex-direction: column;
  padding: 16px;
  background: #ffffff;
}

.toc-title {
  color: #5746AF;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 12px;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  padding: 8px 0;
  border-bottom: 1px solid #ddd; /* Divider between items */
}

.toc-list li:last-child {
  border-bottom: none; /* Remove divider from last item */
}

.toc-list a {
  text-decoration: none;
  color: #000;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 150% */
  font-feature-settings: 'liga' off, 'clig' off;
  transition: font-weight 0.2s ease-in-out;
}

.toc-list a:hover,
.toc-list a:active {
  font-weight: 700;
}

html {
  scroll-padding-top: 90px; /* Adjust this value to match the height of your header */
  scroll-behavior: smooth; /* Enables smooth scrolling */
}
