/* @import url('http://example.com/example_style.css'); */
/* Header */

.header {
    /* align-items: center; */
    background-color: var(--header-bg);
    border-bottom: var(--header-bottom-border);
    /* display: flex;
    flex-direction: column;
    justify-content: center; */
    /* padding: 1.5rem 0; */
    position: relative;
    width: 100%;
    max-height: 70px;
}

.header--fixed {
    left: 0;
    min-height: var(--main-content-offset);
    position: fixed;
    top: 0;
    z-index: 1000;
}

.header--landing {
    background-color: var(--light-primary);
}

/* Logo */
#hs_cos_wrapper_header_logo .logo {
  max-width: 100px !important;
}

.header__logo-effect a {
    position: relative;
}

.header__logo a::after {
    background: var(--header-logo-effect);
    background-position: -500%;
    background-repeat: no-repeat;
    background-size: 140px;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: background-position 0.8s ease-in-out;
}

.header__logo a:hover::after {
    background-position: 500%;
    opacity: 1;
}

.header__logo * {
    display: block;
}

.header__logo a:not([class])::before {
    display: none;
}

.header .inner-header.container {
  padding-top: 0.5rem;
}

/* Navigation skipper */

.header__skip {
    height: 1px;
    left: -1000px;
    overflow: hidden;
    position: absolute;
    text-align: left;
    top: -1000px;
    width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
    height: auto;
    left: 0;
    overflow: visible;
    top: 0;
    width: auto;
}

/* Navigation */

.header__main {
    align-items: center;
    display: flex;
}

.header__nav {
    align-items: start;
    flex-shrink: 0;
    flex-grow: 0;
    display: flex;
    flex-direction: column;
}

.header__nav .main-nav__item {
   padding: 0.8rem; 
}

.header__nav .main-nav__item.drop-link {
  margin-left: 1.8rem !important;
}

.header__cta.hide-on-mobile {
  display: none !important;
}

@media screen and (min-width:768px) {
  .header__nav {
    justify-content: flex-start !important;
  }
  
  .header__cta.hide-on-mobile {
    display: none;
  }
}

@media screen and (min-width: 1439px) {
    .header__nav {
        flex-grow: 1;
        justify-content: flex-start !important;
    }
  
  .header__cta.hide-on-desktop {
    display: none;
  }
  .header__cta.hide-on-mobile {
    display: flex !important;
  }
  
  
}

.inner-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    padding-top:    1.5rem;
    width: 100%;
}

.header__cta {
    margin-bottom: 2rem;
    padding-left: 1.8rem;
    padding-top: 2rem;
    display: flex;
}

.header__cta .btn-list {
    padding: 0;
}

.header__cta .btn-list__item {
    margin: 0;
}

.header__cta .button--secondary,
.header__cta .button--secondary:visited {
  border-radius: 5px;
  border: 1px solid #FFF !important;
  background-color: transparent;
  padding: 10px;
  font-weight: 700;
  font-size: 16px;
}

.header__cta .button--secondary:hover {
    background-color: #FFF !important;
    color: #000  !important;
    text-decoration: none;
  
}

@media screen and (min-width: 1439px) {
    .header__cta {
        display: flex;
        flex-shrink: 0;
        margin-bottom: 0;
        padding-left: 0;
        padding-top: 0;
    }
}

.header__block {
    background-color: var(--header-bg);
    display: none;
    padding: 0;
}

.header__block.is-active {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    margin: 0;
    left: 0;
    overflow: hidden;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
    position: absolute;
    right: 0;
    top: 70px;
    z-index: 20;
}

.header__block-toggle {
    align-items: flex-start;
    color: var(--header-nav-color);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 28px;
    justify-content: space-around;
    padding: 2px;
    transform: translateY(0) rotate(0deg);
    transition: all .3s ease-in-out;
    width: 28px;
}

.js-header__block-toggle--reverse {
    transform: rotate(90deg);
}

.header__block-toggle-item {
    background-color: var(--header-nav-color);
    height: 1px;
    transition: all .2s ease-in-out;
    transition-delay: .2s;
}

.header__block-toggle-item--s {
    transform: translateY(0) scale(1);
    width: 50%;
}

.header__block-toggle-item--l {
    width: 100%;
    transform: translateY(0) rotate(0deg);
}

.header__block-toggle-item--m {
    transform: translateY(0) rotate(0deg);
    width: 68%;
}

.js-header__block-toggle--reverse .header__block-toggle-item--s {
    transform: translateY(6px) scale(0);
}

.js-header__block-toggle--reverse .header__block-toggle-item--l {
    transform: translateY(0) rotate(45deg);
}

.js-header__block-toggle--reverse .header__block-toggle-item--m {
    transform: translateY(-6px) rotate(-45deg);
    width: 100%;
}


@media screen and (min-width: 1439px) {
    .header__block-toggle {
        display: none;
    }

    .header__block {
        background-color: transparent;
        display: flex;
        flex-direction: row;
        flex-grow: 1;
        justify-content: space-between;
    }

    .header__block.is-active {
        flex-direction: row;
        height: auto;
        min-height: auto;
        justify-content: initial;
        overflow: initial;
        padding: 0;
        position: static;
    }
}



/* Language switcher */

.header__lang {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-shrink: 0;
    margin-left: 1em;
    padding-right: 1em;
}

.header__lang-label {
    color: var(--header-nav-color);
    font-size: 0.89rem;
    margin-left: 0.35em;
    white-space: nowrap;
}

.header__lang:hover .lang_list_class {
    display: block;
}

.header__lang .lang_switcher_class {
    display: block;
}

.lang_switcher_class .globe_class {
    background-image: url("//23185209.fs1.hubspotusercontent-na1.net/hubfs/23185209/raw_assets/public/@marketplace/Kohorta/Adamant/images/lang-switcher/icon-lang.svg");
    background-color: var(--dark-tertiary);
    background-size: 14px;
    border-radius: 50%;
    height: 20px;
    width: 20px;
}

.lang_switcher_class .lang_list_class {
    width: 160px;
}

.lang_switcher_class .lang_list_class li:first-child {
    border: none;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    padding-top: 1.6em;
}

.lang_switcher_class .lang_list_class li:last-child {
    border: none;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    padding-bottom: 1.6em;
}

.lang_switcher_class .lang_list_class {
    top: 18px;
}
.lang_switcher_class .lang_list_class li {
    background-color: var(--light-tertiary);
    border: none;
    font-size: 0.84rem;
    padding: 0.6em;
}

.lang_switcher_class .lang_list_class::after {
    border-bottom-color: var(--light-tertiary);
}

.lang_switcher_class .lang_list_class::before {
    border-bottom-color: var(--light-tertiary);
}

.lang_switcher_class .lang_list_class li a {
    color: var(--dark-primary);
    font-style: normal;
}

.lang_switcher_class .lang_list_class li a:hover {
    color: var(--dark-tertiary);
}

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/* Video col: .cell_17294785421114-padding */
/* Modal overlay: #hs-interactives-modal-overlay.go2512015367 */
/* Play icon: #hs_cos_wrapper_widget_1732731697538_.icon */
/* CTA: #hs-button_widget_1732655086954 */
/* CTA wrapper: #hs-overlay-cta-183232195387 */
/* Video: hs_cos_wrapper_widget_1732637762419 */
/*****************************************/



.cell_17294785421114-padding:hover #hs_cos_wrapper_widget_1732731697538 .icon {
    opacity: 1;
}

.cell_17294785421114-padding {
    margin: -4px 0 -1px 0;
}

#hs-interactives-modal-overlay.go2512015367 {
    opacity: 0.9 !important;
    background-color: black !important;
}

#hs_cos_wrapper_widget_1732731697538_.icon {
    position: absolute;
    margin-top: 24vw;
    margin-left: 2rem;
    z-index: 10;
    opacity: 0.7;
}

#hs-button_widget_1732655086954 {
    position: absolute;
    width: 100vw;
    max-width: 100vw;
    max-height: 28vw;
    z-index: 20;
    height: 100%;
    margin-top: 3.5rem;

}


#hs-overlay-cta-183232195387 {
    width: 99vw !important;
    height: 80vh !important;
}

#hs_cos_wrapper_widget_1732637762419 {
    max-width: 50vw;
    width: 100vw;
}


.row-number-46 .widget-type-cell{
  padding: 3rem 0 0 2rem;
}

/*#embed_container > div > div {*/
/*    padding: 55% 0 0 0 !important;*/
/*}*/


/** Mobile **/
@media (max-width: 768px) {

    #hs_cos_wrapper_widget_1732731697538_.icon {
        position: absolute;
        margin-top: 46vw;
        margin-left: 2rem;
        z-index: 10;
    }

    #hs-button_widget_1732655086954 {

        margin-top: 4rem;
        max-height: 56vw;
        width: 100vw;
    }


    #hs-overlay-cta-183232195387 {
        width: 96vw !important;
        height: 80vh !important;
    }

    #hs_cos_wrapper_widget_1732637762419 {
        max-width: 100vw;
    }

}

@media (min-width: 360px) and (max-width: 768px) {
    #hs_cos_wrapper_widget_1732731697538_.icon {
        margin-top: 40vw;
    }
}


@media (min-width: 768px) and (max-width: 1024px) {
    #hs_cos_wrapper_module_172947854211110_ h1 {
        font-size: 46px !important;
    }

    #hs_cos_wrapper_module_172947854211112 {
        display: none;
    }

    #hs-button_widget_1732655086954 {
        max-width: 50vw;
        max-height: 48vw;
    }

    #hs_cos_wrapper_widget_1732637762419 {
        max-width: 100vh;
    }

    #hs_cos_wrapper_widget_1732731697538_.icon {
        margin-top: 46vw;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    #hs-button_widget_1732655086954 {
        max-width: 50vw;
        max-height: 54vw;
    }

    #hs_cos_wrapper_widget_1732637762419 {
        max-width: 95vw;
    }

    #hs_cos_wrapper_widget_1732731697538_.icon {
        margin-top: 46vw;
    }
}

@media (min-width: 1280px) and (max-width: 1440px) {
    #hs-button_widget_1732655086954 {
        max-height: 51vw;
        max-width: 50vw;
    }

    #hs_cos_wrapper_widget_1732637762419 {
        max-width: 90vw;
    }

    #hs_cos_wrapper_widget_1732731697538_.icon {
        margin-top: 44vw;
    }

}

@media (min-width: 1440px)  and (max-width: 1660px) {
    #hs-button_widget_1732655086954 {
        max-height: 41vw;
        max-width: 50vw;
    }

    #hs_cos_wrapper_widget_1732637762419 {
        max-width: 73vw;
    }

    #hs_cos_wrapper_widget_1732731697538_.icon {
        margin-top: 35vw;
    }
}


@media (min-width: 1660px) and (max-width: 2080px) {
    #hs-button_widget_1732655086954 {
        max-height: 35vw;
        max-width: 50vw;
    }

    #hs_cos_wrapper_widget_1732637762419 {
        max-width: 62vw;
    }

    #hs_cos_wrapper_widget_1732731697538_.icon {
        margin-top: 30vw;
    }
}








/*****************************************/
/* Start your style declarations here    */
/* Video col: .cell_17332683027954-padding */
/* Modal overlay: #hs-interactives-modal-overlay.go2512015367 */
/* Play icon: #hs_cos_wrapper_module_173326830279610_.icon */
/* CTA: #hs-button_module_17332683027969 */
/* CTA wrapper: #hs-overlay-cta-183232195387 */
/* Video: hs_cos_wrapper_module_173326830279611 */
/*****************************************/


.cell_17332683027954-padding:hover #hs_cos_wrapper_module_173326830279610 .icon {
    opacity: 1;
}

.cell_17332683027954-padding {
    margin: -4px 0 -1px 0;
}

#hs-interactives-modal-overlay.go2512015367 {
    background-color: #1F1715 !important;
    opacity: 1 !important;
}

#hs_cos_wrapper_module_173326830279610_.icon {
    position: absolute;
    margin-top: 24vw;
    margin-left: 2rem;
    z-index: 10;
    opacity: 0.7;
}

#hs-button_module_17332683027969 {
    position: absolute;
    width: 100vw;
    max-width: 100vw;
    max-height: 28vw;
    z-index: 20;
    height: 100%;
    margin-top: 3.5rem;

}


#hs-overlay-cta-183232195387 {
    width: 95vw !important;
    height: 95vh !important;
}

#hs_cos_wrapper_module_173326830279611 {
    max-width: 50vw;
    width: 100vw;
}


/** Mobile **/
@media (max-width: 768px) {

    #hs_cos_wrapper_module_173326830279610_.icon {
        position: absolute;
        margin-top: 46vw;
        margin-left: 2rem;
        z-index: 10;
    }

    #hs-button_module_17332683027969 {

        margin-top: 4rem;
        max-height: 56vw;
        width: 100vw;
    }


    #hs-overlay-cta-183232195387 {
        width: 96vw !important;
        height: 80vh !important;
    }

    #hs_cos_wrapper_module_173326830279611 {
        max-width: 100vw;
    }

}

@media (min-width: 360px) and (max-width: 768px) {
    #hs_cos_wrapper_module_173326830279610_.icon {
        margin-top: 40vw;
    }
    
    .row-number-46 .widget-type-cell{
        padding: 0 !important;
    }
  
  .shopify-buy-frame {
    margin: auto;
  }
}


@media (min-width: 768px) and (max-width: 1024px) {
    #hs_cos_wrapper_module_172947854211110_ h1 {
        font-size: 46px !important;
    }

    #hs_cos_wrapper_module_17332683027965 {
        display: none;
    }

    #hs-button_module_17332683027969 {
        max-width: 50vw;
        max-height: 48vw;
    }

    #hs_cos_wrapper_module_173326830279611 {
        max-width: 100vh;
    }

    #hs_cos_wrapper_module_173326830279610_.icon {
        margin-top: 46vw;
    }

    .row-number-46 .widget-type-cell{
        padding: 3rem 0 0 2rem;
    }
  
    .shopify-buy-frame {
    margin: auto;
  }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    #hs-button_module_17332683027969 {
        max-width: 50vw;
        max-height: 54vw;
    }

    #hs_cos_wrapper_module_173326830279611 {
        max-width: 95vw;
    }

    #hs_cos_wrapper_module_173326830279610_.icon {
        margin-top: 46vw;
    }

    .row-number-46 .widget-type-cell{
        padding: 3rem 0 0 2rem;
    }
}

@media (min-width: 1280px) and (max-width: 1440px) {
    #hs-button_module_17332683027969 {
        max-height: 51vw;
        max-width: 50vw;
    }

    #hs_cos_wrapper_module_173326830279611 {
        max-width: 90vw;
    }

    #hs_cos_wrapper_module_173326830279610_.icon {
        margin-top: 44vw;
    }

    .row-number-46 .widget-type-cell{
        padding: 3rem 0 0 2rem;
    }

}

@media (min-width: 1440px)  and (max-width: 1660px) {
    #hs-button_module_17332683027969 {
        max-height: 41vw;
        max-width: 50vw;
    }

    #hs_cos_wrapper_module_173326830279611 {
        max-width: 73vw;
    }

    #hs_cos_wrapper_module_173326830279610_.icon {
        margin-top: 35vw;
    }


    .row-number-46 .widget-type-cell{
        padding: 3rem 0 0 2rem;
    }
}


@media (min-width: 1660px) and (max-width: 2080px) {
    #hs-button_module_17332683027969 {
        max-height: 35vw;
        max-width: 50vw;
    }

    #hs_cos_wrapper_module_173326830279611 {
        max-width: 62vw;
    }

    #hs_cos_wrapper_module_173326830279610_.icon {
        margin-top: 30vw;
    }


    .row-number-46 .widget-type-cell{
        padding: 3rem 0 0 2rem;
    }
}



#hs_cos_wrapper_widget_1732638090248 .iframe_wrapper {
    padding: 0;
}

#hs_cos_wrapper_widget_1732638090248 .iframe_wrapper > div {
    padding: 55% 0 0 0 !important;
}

#hs_cos_wrapper_widget_1733340049862 {
  margin: 0 -2rem -1rem -2rem;
}

#hs_cos_wrapper_widget_1733439487888 {
max-width: 80%;
margin: 1rem auto;  
}

.vjs-big-play-button {
 display:none !important; 
}


/** BLOG POST **/

.blog-post h3 {
  font-size: 24pt !important;
  font-weight: 700;
  padding-bottom: 1rem;
}

.blog-post .blog-post__heading {
padding-right: 0.5em;
}

.blog-post .img-cover--portrait-lg, .blog-post .img-cover--portrait-lg img {
  aspect-ratio: 1.65/1 !important;
  flex-basis: 100% !important;
  max-width: 750px !important;
}

.blog-post  a.blog-post__author .img-cover--oval-sm {
  margin-top: 1rem;
  max-width: 82px !important;
}

.blog-post .blog-post__body {
   width: 66.666%;
}

.blog-post .blog-post__body p, .blog-post__body span, .blog-post__body div{
   line-height: 25px !important;
}



#hs_cos_wrapper_post_body img,
.blog-post .blog-post__body .hs_cos_wrapper_type_rich_text .hs-video-widget,
.blog-post .blog-post__body .hs_cos_wrapper_type_rich_text iframe,
.blog-post .blog-post__body .hs_cos_wrapper_type_rich_text img {
  margin: 0 -25% 0 -25%; 
  max-width: 1284px !important;
  width: 90vw!important;
}
.blog-post .blog-post__body .hs_cos_wrapper_type_rich_text .hs-video-widget{
 margin: 0 0 0 12.5% !important; 
}


@media (max-width:767px) {
  #hs_cos_wrapper_post_body img,
  .blog-post .blog-post__body .hs_cos_wrapper_type_rich_text .hs-video-widget,
  .blog-post .blog-post__body .hs_cos_wrapper_type_rich_text iframe,
  .blog-post .blog-post__body .hs_cos_wrapper_type_rich_text img {
     margin: 0 -25% 0 -25%; 
  }
  .blog-post .blog-post__body .hs_cos_wrapper_type_rich_text .hs-video-widget{
    margin: 0 0 0 12.5% !important; 
  }
}

@media (max-width:480px) {
  #hs_cos_wrapper_post_body img,
  .blog-post .blog-post__body .hs_cos_wrapper_type_rich_text .hs-video-widget,
  .blog-post .blog-post__body .hs_cos_wrapper_type_rich_text iframe,
  .blog-post .blog-post__body .hs_cos_wrapper_type_rich_text img {
     margin: 0 -25% 0 -25%; 
  }
  .blog-post .blog-post__body .hs_cos_wrapper_type_rich_text .hs-video-widget{
    margin: 0 0 0 12.5% !important; 
  }
}


.blog-post  .hs-embed-wrapper {
    margin: 0 -25% 0 -25% !important; 
  max-width: 1284px !important;
  width: 90vw!important;
}

.blog-post .icon--linkedin-fix a {
  display: flex;
  border: 1px solid #000;
  padding: 0.25rem 0 0.3rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  color: #000;
}

.blog-post .icon--linkedin-fix a:hover {
  background-color: #F2F2F2;
}

.blog-post .blog-post__social-list-item {
  
}

.blog-post .icon--linkedin-fix a .blog-post__social-title {
  display: flex;
  margin: .5rem 1rem .25rem 0;
  padding: 0 0 0 0.5rem;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.blog-post .blog-post__social-list-item svg {
  width: 1.0rem;
}

@media (max-width:767px) {
  .blog-post .container {
    padding 0 !important;
  }
}

.blog-post a.blog-post__author .img-cover--oval-sm {
  max-width: 42px !important;
}

.hs-blog-post__content-wrapper {
  padding: 0px !important;
}

.hs-blog-post__content-wrapper .button{
  padding-left: 0px !important;
}







.footer {
  background-color: ;
  
}

.footer .section-header h2 {
  font-family: Pangea !important;
}

.footer .hs-menu-wrapper.hs-menu-flow-horizontal ul li.hs-menu-depth-1 {
  margin-left: 2rem;
  margin-bottom: 1rem;
  width: fit-content;
} 

.footer .hs-menu-wrapper.hs-menu-flow-horizontal ul li.hs-menu-depth-1.hs-menu-depth-1.hs-item-has-children {
  margin: 0 2rem 2rem 2rem;
} 

.footer .hs-menu-wrapper.hs-menu-flow-horizontal ul li.hs-menu-depth-1:first-child {
  margin-left: 0;
} 

.footer .hs-menu-wrapper.hs-menu-flow-horizontal ul li a {
  text-decoration: none;
  color: #FFFFFF;
}

.footer .hs-menu-wrapper.hs-menu-flow-horizontal ul li.hs-menu-depth-1 a:hover,
.footer .hs-menu-wrapper.hs-menu-flow-horizontal ul li.hs-menu-depth-2 a:hover {
  text-decoration: underline;
}

.footer .hs-menu-wrapper.hs-menu-flow-horizontal > a:hover {
  text-decoration: none;
}

.footer #hs_menu_wrapper_widget_1745090022734_.hs-menu-wrapper ul {
  justify-content: end;

}

.footer .hs-menu-depth-1 {
  font-weight: 400  !important;;
  font-family: Pangea !important;
  font-size: 14px !important;
  line-height: 18px  !important;;
  letter-spacing: 15%  !important;;
  
}


.footer .hs-menu-depth-1 > a {
  color: #AC9D9A;
  cursor: default;
}

.footer .hs-menu-depth-2 {
  margin-top: 20px !important;
  font-family: Pangea !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 18px !important;
  letter-spacing: 5% !important;
  color: #FFF !important;
}

.footer .hs-social-follow {
  justify-content: end;
}

.footer .cell_17450910715633-background-layers,
.footer .cell_1745092353204-background-layers {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer .cell_17450910715633-background-layers .row-number-4 {
  flex: none;
}

.footer .cell_17450910715633-background-layers .row-number-5 {
  flex: 1;
}

@media (max-width:767px) {
  .footer .hs-menu-wrapper.hs-menu-flow-horizontal ul:has(li.hs-menu-depth-1.hs-item-has-children) {
    flex-direction: row;
    justify-content: start !important;
  }
  .footer .hs-menu-wrapper.hs-menu-flow-horizontal ul li.hs-menu-depth-1.hs-item-has-children:first {
    margin-left: 18px;
  }

  .footer .hs-menu-wrapper.hs-menu-flow-horizontal ul li.hs-menu-depth-1.hs-menu-depth-1.hs-item-has-children {
    margin-left: 1rem;
  }
  
  .footer .hs-menu-wrapper.hs-menu-flow-horizontal ul li.hs-menu-depth-1:first-child {
    margin-left: 2rem;
  } 
  
}


/* 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: ;
}


#hs_cos_wrapper_widget_1729292825776 img.splide__slide--image {
  padding: 0 5rem;
}

#hs_cos_wrapper_module_174533934525311 {
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: solid 2px #FEFBF7 !important;
}

#hs-link-header_logo_logo_widget img {
  border-radius: 0px !important;
}