{
        # {
            % set secondary_font=theme.global_fonts.additional_font %
        }

        #
    }


    /* Blog */
    /* Blog subscribe */
    .blog-subscribe {
        background-color: #F0F5FF;
        padding: 80px 0;
    }

    .blog-subscribe__wrapper {
        display: flex;
        justify-content: space-between;
    }

    @media screen and (max-width: 768px) {
        .blog-subscribe__wrapper {
            display: block;
        }
    }

    .blog-subscribe__header {
        flex-basis: 465px;
        flex-grow: 1;
        max-width: 680px;
    }

    .blog-subscribe__form {
        flex-basis: 450px;
        margin-left: 32px;
    }

    @media screen and (max-width: 768px) {
        .blog-subscribe__form {
            margin: 32px 0 0;
        }
    }

    /* Blog */

    /* Default Module */
    /***************************************************************************/
    /************************   Menu and simple menu   *************************/
    /***************************************************************************/
    .hs-menu-wrapper ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding-left: 0;
    }

    /* Horizontal menu */
    .hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    @media (max-width: 767px) {
        .hs-menu-wrapper.hs-menu-flow-horizontal ul {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
        }
    }

    /* Vertical menu */
    .hs-menu-wrapper.hs-menu-flow-vertical ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    /* Flyouts */
    .hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }

    @media (max-width: 767px) {
        .hs-menu-wrapper.hs-menu-flow-vertical ul {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }
    }

    .hs-menu-wrapper.flyouts .hs-item-has-children {
        position: relative;
    }

    .hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
        left: -9999px;
        opacity: 0;
        position: absolute;
    }

    .hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
        display: block;
        white-space: nowrap;
    }

    .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper {
        left: 0;
        opacity: 1;
        top: 100%;
    }

    .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper {
        left: 100%;
        opacity: 1;
        top: 0;
    }

    @media (max-width: 767px) {

        .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
        .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper,
        .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper {
            left: 0;
            opacity: 1;
            position: relative;
            top: auto;
        }
    }

    /* Default Module */

    /* Footer */
    .kl-footer {
        padding: 32px 0;
        display: flex;
        align-items: center;

        background-color: rgba({
                {
                theme.footer.background_color.color|convert_rgb
            }
        }

        , {
            {
            theme.footer.background_color.opacity !=null ? theme.footer.background_color.opacity / 100 : 1
        }
    });
}

.kl-footer h1,
.kl-footer h2,
.kl-footer h3,
.kl-footer h4,
.kl-footer h5,
.kl-footer h6,
.kl-footer p,
.kl-footer a,
.kl-footer div,
.kl-footer span {
    color: rgba({
            {
            theme.footer.text_color.color|convert_rgb
        }
    }

    , {
        {
        theme.footer.text_color.opacity !=null ? theme.footer.text_color.opacity / 100 : 1
    }
});
}

.kl-footer__wrapper {
    width: 100%;
}

.kl-footer__legal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.875rem;
    margin: -0.625rem -1.25rem;
}

.kl-footer__legal>span {
    margin: 0.625rem 1.25rem;

    color: rgba({
            {
            theme.footer.text_color.color|convert_rgb
        }
    }

    , {
        {
        theme.footer.text_color.opacity !=null ? theme.footer.text_color.opacity / 100 : 1
    }
});
}

.kl-footer__legal a {
    color: rgba({
            {
            theme.footer.text_color.color|convert_rgb
        }
    }

    , {
        {
        theme.footer.text_color.opacity !=null ? theme.footer.text_color.opacity / 100 : 1
    }
});
}

.kl-footer__legal a:hover,
.kl-footer__legal a:focus,
.kl-footer__legal a:active {
    color: {
            {
            theme.global_colors.primary_color.color
        }
    }

    ;
    text-decoration: none;
}

.kl-footer__content {
    display: flex;
    justify-content: space-between;
    padding: 120px 0;
}

@media screen and (max-width: 680px) {
    .kl-footer__content {
        display: block;
        padding: 120px 0 32px;
    }
}

@media screen and (max-width: 1024px) {
    .kl-footer__content {
        padding: 0 0 32px;
    }
}

.kl-footer__address {
    margin: 32px 0 16px;
}

.kl-footer__address p {
    color: rgba({
            {
            theme.footer.text_color.color|convert_rgb
        }
    }

    , {
        {
        theme.footer.text_color.opacity !=null ? theme.footer.text_color.opacity / 100 : 1
    }
});
}

.kl-footer__info {
    flex-basis: 250px;
}

.kl-footer__info img {
    display: block;
    height: 48px;
    max-width: 200px;
}

.kl-footer__info p {
    font-size: 0.875em;
}

.kl-footer__social {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 -16px;
}

.kl-footer__social span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    margin: 8px 16px;
}

.kl-footer__social svg {
    display: block;
    width: 25px;
    height: 25px;

    fill: rgba({
            {
            theme.footer.text_color.color|convert_rgb
        }
    }

    , {
        {
        theme.footer.text_color.opacity !=null ? theme.footer.text_color.opacity / 100 : 1
    }
});
transition: all .25s ease-in-out;
}

.kl-footer__social a:hover svg {
    fill: {
            {
            theme.global_colors.primary_color.color
        }
    }

    ;
}

.kl-footer__menu {
    display: flex;
    flex-wrap: wrap;
    margin: -16px 0;
}

.footerSection {
    font-family: "Montserrat", sans-serif;
    padding: 54px 0 20px 0;
    background-color: #F1F1EE;

    background-color: rgba({
            {
            theme.footer.background_color.color|convert_rgb
        }
    }

    , {
        {
        theme.footer.background_color.opacity !=null ? theme.footer.background_color.opacity / 100 : 1
    }
});
}

.footerNav {
    margin: 0 -20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    padding: 20px 0px;
}

.footer-logo {
    padding: 0 20px 0 0;
    width: 15%;
}

.footer__form {
    width: 35%;
    padding: 0 0 0 67px;
}

.footer__form form {
    padding-right: 10px;
}

.FooterBox {
    width: 25%;
}

.FooterBox.footerSitemap {
    /*     padding: 0 60px; */
}

.FooterBox.footerContact {
    /*     padding: 0 20px; */
}

.footerSection .Content h4,
.footerSection .Content ul>li,
.footerSection .Content p {
    width: 100%;
    font-weight: 400;
    color: #fff;
}

.footerSection .Content h4 {
    color: #DDB967;
    text-transform: uppercase;
    font-family: Anek Devanagari, sans-serif;
    line-height: 2.1;
    margin: 0;
    font-size: 21px;
    letter-spacing: 1px;
}

.footerSection .Content ul>li,
.footerSection .Content p {
    font-size: 16px;
    line-height: 2.3 !important;
    font-family: 'work sans';
}

.footer-menu-title {
    font-family: 'Produkt Web', Roboto Slab, Courier New;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #191412;
}

.footer-menu a {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    color: #191412 !important;
    text-decoration: none;
}

.footer-logo a.logo {
    display: inline-block;
    height: auto;
    margin: 10px 0 0 20px;
    max-width: 252px;
    vertical-align: top;
    width: 100%;
    z-index: 9;
}

.SubscribeForm {
    display: inline-block;
    width: 100%;
    font-size: 0;
    line-height: 0;
}

.SubscribeForm p {
    font-weight: 300;
    margin-bottom: 8px;
}

.SubscribeForm h3.form-title {
    display: none;
}

.SubscribeForm form .hs-input {
    border: none;
    display: block;
    font-family: 'Work Sans';
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    padding: 6px 0px;
    background: transparent;
    border-bottom: solid 2px #fff !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0;
    color: #fff;
}

.SubscribeForm form input.hs-button.primary.large:hover {
    background: #BB9C54;
}

.SubscribeForm form .hs_email {
    display: inline-block;
    width: 100%;
    font-size: 0;
    line-height: 0;
    padding: 0;
    vertical-align: top;
    margin: 0;
}

.SubscribeForm form .hs_recaptcha {
    display: none;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

.SubscribeForm form input.hs-button.primary.large {
    /*     background-color: #296C7B; */
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: 'Zilla Slab';
    font-size: 16px;
    font-weight: 600;
    outline: none;
    padding: 11px 33px;
    position: relative;
    text-align: center;
    text-decoration: none;
    width: auto;
    line-height: 1.4;
    text-transform: uppercase;
    margin: 25px 0;
}

.SubscribeForm form .hs_submit {
    max-width: max-content;
}

.SubscribeForm form .hs-form-required {
    color: #DDB967;
}

.SubscribeForm form label {
    color: #fff;
    display: block;
    font-size: 16px;
    font-weight: 500;
    padding-top: 0;
    text-align: left;
    width: auto;
    font-family: 'Work Sans';
    line-height: 1.4;
    margin: 0;
}

.SubscribeForm .hs-form-field {
    margin: 0 0 20px;
}

.SubscribeForm h4 {
    color: #ddb967;
    font-family: Anek Devanagari, sans-serif;
    line-height: 2.1;
    margin: 0;
    text-transform: uppercase;
    font-size: 21px;
    letter-spacing: 1px;
}

/* .SubscribeForm form .hs_email label, .SubscribeForm form .hs_error_rollup { display: none; } */
form label.hs-error-msg {
    display: block;
    font-size: 16px;
    line-height: 2;
    color: #ef6b51;
    margin: 0;
}

.hs_error_rollup {
    display: none;
}

.SubscribeForm form ul.no-list.hs-error-msgs.inputs-list li {
    margin: 0;
}

.FooterBox ul li a,
.FooterBox a {
    color: #ffffff;
}

.FooterBox.footerSitemap ul li {
    position: relative;
    /*     padding: 0 0 0 10px; */
}

/* .FooterBox.footerSitemap ul li:before { content: '';    display: inline-block;    position: absolute;    top: 14px;    left: 1px;    width: 3px;    height: 3px;    border-radius: 50%;    background-color: #fff; } */
.FooterBox p {
    margin: 0;
}

.FooterBox.footerContact ul {
    /*     display: inline-block;
margin: 23px 0 0 0 !important; */
    display: flex;
}

.FooterBox.footerContact ul li {
    display: inline-table;
    width: 26px;
    height: 26px;
    margin: 0 23px 0 0 !important;
    padding: 0;
    text-align: center;
    float: left;
}

.FooterBox.footerContact ul li a {
    font-size: 20px;
    text-align: center;
    background: #327280;
/*     width: 1.5rem;
    height: auto; */
    padding: 0.1rem;
    border-radius: 50%;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.FooterBox.footerContact ul li a:hover {
    opacity: 0.8;
}

.CopyrightSec {
    text-align: center;
    padding: 75px 0 2px 0;
}

.CopyrightSec .Content p {
    color: #191412;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

.CopyrightSec .Content p:last-child {
    margin: 0;
}

.CopyrightSec .Content a {
    padding: 2px 8px;
    color: #191412;
    text-decoration: none;
}

.footerSitemap h4 {
    padding: 0 0 0 8px;
}

@media(max-width:991px) {
    .footerNav {
        margin: 0;
    }

    .FooterBox.footerContact ul {
        /*     display: inline-block;
margin: 23px 0 0 0 !important; */
        flex-direction: column;
    }

    .footer-logo {
        width: 100%;
        padding: 0;
    }

    .footer-logo a.logo {
        margin: 6px 0 0 0;
    }

    .SubscribeForm {
        margin-top: 40px;
    }

    .FooterBox {
        width: 50%;
        padding: 0;
    }

    .FooterBox .Content {
        margin-top: 40px;
        padding: 0 0 0 2%;
    }

    .CopyrightSec {
        padding: 20px 0 2px 0px;
    }

    .footer__form {
        width: 100%;
        padding: 0 15px;
    }
}

@media(max-width:767px) {
    .footer-logo {
        text-align: center;
    }

    .SubscribeForm h4 {
        text-align: center;
    }

    .FooterBox {
        width: 100%;
        text-align: center;
    }

    .FooterBox .Content {
        width: 100%;
        padding: 0;
    }

    .FooterBox.footerSitemap ul li {
        padding: 0;
    }

    .FooterBox.footerSitemap ul li:before {
        display: none;
    }

    .SubscribeForm form {
        max-width: 100%;
        padding: 0;
    }

    .SubscribeForm form .hs_submit {
        max-width: 100%;
        position: relative;
        margin-top: 16px;
    }

    .footerSection {
        padding: 20px 0px;
    }

    .footerSection .Content h4 {
        margin-bottom: 10px;
    }


}
















@media screen and (max-width: 680px) {
    .kl-footer__menu {
        margin: 16px -16px 0;
    }
}

.kl-footer__menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kl-footer__menu h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin: 0 0 2rem;

    color: rgba({
            {
            theme.footer.text_color.color|convert_rgb
        }
    }

    , {
        {
        theme.footer.text_color.opacity !=null ? theme.footer.text_color.opacity / 100 : 1
    }
});
}

.kl-footer__menu a {
    display: block;
    font-size: 0.875em;
    font-weight: 500;
    line-height: 17px;

    color: rgba({
            {
            theme.footer.text_color.color|convert_rgb
        }
    }

    , {
        {
        theme.footer.text_color.opacity !=null ? theme.footer.text_color.opacity / 100 : 1
    }
});
margin: 0 0 1.375em;
}

.kl-footer__menu a:hover,
.kl-footer__menu a:focus,
.kl-footer__menu a:active {
    color: {
            {
            theme.global_colors.primary_color.color
        }
    }

    ;
    text-decoration: none;
}

.kl-footer__group {
    margin: 16px 42px;
}

@media screen and (max-width: 680px) {
    .kl-footer__group {
        margin: 16px;
    }
}

/* Footer */

/* Navbar Menu */
.kl-header {
    position: fixed;
    z-index: 12;
    width: 100%;
    box-shadow: 0px 5px 10px rgba(154, 161, 177, 0.1);

    background-color: rgba({
            {
            theme.header.background_color.color|convert_rgb
        }
    }

    , {
        {
        theme.header.background_color.opacity !=null ? theme.header.background_color.opacity / 100 : 1
    }
});
}

.kl-header-placeholder {
    height: 82px;
}

.kl-navbar {
    height: 82px;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 920px) {
    .kl-navbar {
        justify-content: space-between;
    }

    .kl-navbar--active .kl-navbar__content {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
}

.kl-navbar__logo {
    width: auto;
    display: block;
    margin-right: 42px;
}

.kl-navbar__content {
    flex: 1 1 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 920px) {
    .kl-navbar__content {
        background-color: rgba({
                {
                theme.header.background_color.color|convert_rgb
            }
        }

        , {
            {
            theme.header.background_color.opacity !=null ? theme.header.background_color.opacity / 100 : 1
        }
    });
position: fixed;
width: 100%;
height: calc(100% - 82px);
left: 0;
bottom: 0;
padding: 45px 10%;
flex-direction: column;
justify-content: space-between;
overflow-y: auto;
visibility: hidden;
opacity: 0;
transform: translateY(8px);
transition: transform .25s ease-in-out,
opacity .25s ease-in-out;
}
}

.kl-navbar__menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 920px) {
    .kl-navbar__menu {
        display: block;
        margin: 0 0 24px;
        width: 100%;
    }
}

.kl-navbar__item {
    position: relative;
    margin: 0 32px;
}

.kl-navbar__item--active .kl-navbar__panel {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 920px) {
    .kl-navbar__item--active .kl-navbar__panel {
        max-height: 100vh;
    }
}

.kl-navbar__item--active .kl-navbar__button {
    color: {
            {
            theme.global_colors.primary_color.color
        }
    }

    ;
}

.kl-navbar__item--active .kl-navbar__button>span:after {
    visibility: visible;
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .kl-navbar__item {
        margin: 0 16px;
    }
}

.kl-navbar__button {
    font-weight: bold;
    font-size: .75rem;
    line-height: 2em;
    word-break: normal;

    color: rgba({
            {
            theme.header.menu_link_color.color|convert_rgb
        }
    }

    , {
        {
        theme.header.menu_link_color.opacity !=null ? theme.header.menu_link_color.opacity / 100 : 1
    }
});
display: inline-block;
}

@media screen and (max-width: 920px) {
    .kl-navbar__button {
        font-size: 1rem;
    }
}

.kl-navbar__button>span {
    position: relative;
    display: inline-block;
    padding: 8px 0;
}

.kl-navbar__button>span:after {
    content: '';
    width: 0px;
    height: 2px;

    background-color: {
            {
            theme.global_colors.primary_color.color
        }
    }

    ;
    position: absolute;
    left: 0;
    bottom: 2px;
    visibility: hidden;
    transition: width .2s ease-in-out;
}

.kl-navbar__button:hover,
.kl-navbar__button:focus,
.kl-navbar__button:active {
    text-decoration: none;

    color: {
            {
            theme.global_colors.primary_color.color
        }
    }

    ;
}

.kl-navbar__button:hover>span:after,
.kl-navbar__button:focus>span:after,
.kl-navbar__button:active>span:after {
    visibility: visible;
    width: 100%;
}

.kl-navbar__end {
    display: flex;
    align-items: center;
}

.kl-navbar__end a+a {
    margin-left: 25px;
}

.kl-navbar__panel {
    background-color: rgba({
            {
            theme.header.background_color.color|convert_rgb
        }
    }

    , {
        {
        theme.header.background_color.opacity !=null ? theme.header.background_color.opacity / 100 : 1
    }
});
visibility: hidden;
opacity: 0;
transform: translateY(8px);
transition: all .25s ease-in-out;
position: fixed;
top: 82px;
left: 0;
width: 100%;
}

@media screen and (max-width: 920px) {
    .kl-navbar__panel {
        position: static;
        max-height: 0;
        overflow: hidden;
    }
}

.kl-navbar__panel-wrapper {
    display: flex;
    flex-wrap: wrap;
    max-width: 960px;
    margin: 0 auto;
    padding: 32px 0;
    justify-content: space-between;
}

.kl-navbar__panel-wrapper>div {
    flex-basis: none;
}

.kl-navbar__categories {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-basis: 650px;
}

@media screen and (max-width: 920px) {
    .kl-navbar__categories p {
        display: none;
    }
}

.kl-navbar__description {
    flex-basis: 250px;
    margin: 0 16px;

    color: rgba({
            {
            theme.header.menu_link_color.color|convert_rgb
        }
    }

    , {
        {
        theme.header.menu_link_color.opacity !=null ? theme.header.menu_link_color.opacity / 100 : 1
    }
});
}

@media screen and (max-width: 920px) {
    .kl-navbar__description {
        margin: 0;
        flex-basis: 50%;
    }
}

@media screen and (max-width: 920px) {
    .kl-navbar__description--full {
        flex-basis: auto;
    }
}

.kl-navbar__description h1,
.kl-navbar__description h2,
.kl-navbar__description h3,
.kl-navbar__description h4,
.kl-navbar__description h5,
.kl-navbar__description h6 {
    color: inherit;
}

.kl-navbar__description h2 {
    font-size: 1.125rem;
    font-weight: bold;
    margin: 0 0 .5rem;
}

.kl-navbar__description h3 {
    font-size: 0.875rem;
    font-weight: bold;
    margin: 0 0 .5rem;
}

.kl-navbar__description p {
    font-size: 0.875rem;
    margin: 0 0 1.75rem;
}

.kl-navbar__description a {
    color: rgba({
            {
            theme.header.menu_link_color.color|convert_rgb
        }
    }

    , {
        {
        theme.header.menu_link_color.opacity !=null ? theme.header.menu_link_color.opacity / 100 : 1
    }
});
}

.kl-navbar__description a:hover,
.kl-navbar__description a:focus {
    text-decoration: none;

    color: {
            {
            theme.global_colors.primary_color.color
        }
    }

    ;
}

.kl-navbar .hamburger {
    display: none;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
    min-width: auto;
}

@media screen and (max-width: 920px) {
    .kl-navbar .hamburger {
        display: block;
    }
}

.kl-navbar .hamburger:focus {
    outline: none;
}

.kl-navbar .hamburger-box {
    width: 24px;
    height: 19px;
    display: inline-block;
    position: relative;
}

.kl-navbar .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1.5px;
}

.kl-navbar .hamburger-inner,
.kl-navbar .hamburger-inner::before,
.kl-navbar .hamburger-inner::after {
    width: 24px;
    height: 3px;
    background-color: #000000;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.kl-navbar .hamburger-inner::before,
.kl-navbar .hamburger-inner::after {
    content: "";
    display: block;
}

.kl-navbar .hamburger-inner::before {
    top: -8px;
}

.kl-navbar .hamburger-inner::after {
    bottom: -8px;
}

.kl-navbar .hamburger--squeeze .hamburger-inner {
    transition-duration: 0.075s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.kl-navbar .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.kl-navbar .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.kl-navbar .hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.kl-navbar .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.kl-navbar .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Navbar submenu */
.kl-navbar-submenu-wrapper {
    position: absolute;
    left: -24px;
    visibility: hidden;
}

@media screen and (max-width: 920px) {
    .kl-navbar-submenu-wrapper {
        position: static;
        visibility: visible;
        display: none;
    }
}

.kl-navbar__item:hover>.kl-navbar-submenu-wrapper {
    visibility: visible;
}

.kl-navbar-submenu {
    background-color: rgba({
            {
            theme.header.background_color.color|convert_rgb
        }
    }

    , {
        {
        theme.header.background_color.opacity !=null ? theme.header.background_color.opacity / 100 : 1
    }
});
box-shadow: 0px 5px 10px rgba(154, 161, 177, 0.1);
list-style: none;
padding: 0;
margin: 20px 0 0;
width: 160px;
}

@media screen and (max-width: 920px) {
    .kl-navbar-submenu {
        box-shadow: none;
        margin: 12px 0;
        width: auto;
    }
}

.kl-navbar-submenu .kl-navbar-submenu {
    position: absolute;
    top: 0px;
    left: 100%;
    transform: translateX(0);
    margin: 0;
    visibility: hidden;
}

@media screen and (max-width: 920px) {
    .kl-navbar-submenu .kl-navbar-submenu {
        position: static;
        visibility: visible;
        display: none;
        margin-left: 20px;
    }
}

.kl-navbar-submenu__item {
    position: relative;
}

.kl-navbar-submenu__item:hover>.kl-navbar-submenu {
    visibility: visible;
}

.kl-navbar-submenu__item a {
    display: block;
    padding: 12px 24px;
    font-weight: bold;
    font-size: .75rem;
    line-height: 1rem;
    word-break: normal;

    color: rgba({
            {
            theme.header.menu_link_color.color|convert_rgb
        }
    }

    , {
        {
        theme.header.menu_link_color.opacity !=null ? theme.header.menu_link_color.opacity / 100 : 1
    }
});
}

.kl-navbar-submenu__item a:hover,
.kl-navbar-submenu__item a:focus {
    color: {
            {
            theme.global_colors.primary_color.color
        }
    }

    ;
    text-decoration: none;
}

@media screen and (max-width: 920px) {
    .kl-navbar-submenu__item a {
        padding: 12px 0;
    }
}

.kl-navbar__parent {
    cursor: pointer;
}

@media screen and (min-width: 920px) {
    .kl-navbar__parent:hover>a:after {
        transform: rotate(225deg);
    }
}

.kl-navbar__parent>a {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 920px) {
    .kl-navbar__parent>a {
        pointer-events: none;
    }
}

.kl-navbar__parent>a:after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    margin-left: 16px;

    border-right: 1px solid rgba({
            {
            theme.header.menu_link_color.color|convert_rgb
        }
    }

    , {
        {
        theme.header.menu_link_color.opacity !=null ? theme.header.menu_link_color.opacity / 100 : 1
    }
});

border-bottom: 1px solid rgba({
        {
        theme.header.menu_link_color.color|convert_rgb
    }
}

, {
    {
    theme.header.menu_link_color.opacity !=null ? theme.header.menu_link_color.opacity / 100 : 1
}
});
transform: rotate(45deg);
transform-origin: 3px 3px;
transition: transform .25s ease-in-out;
}

.kl-navbar__parent--active>.kl-navbar-submenu-wrapper,
.kl-navbar__parent--active>.kl-navbar-submenu {
    display: block;
}

.kl-navbar__parent--active>a:after {
    transform: rotate(225deg);
}

.kl-navbar__parent--active>a {
    color: {
            {
            theme.global_colors.primary_color.color
        }
    }

    ;
}

.kl-navbar__parent--active>a>span:after {
    visibility: visible;
    width: 100%;
}


/* Navbar Menu */

/* Custom Rich Text */
.kl-rich-text__preheader {
    font-family: {
            {
            theme.typography.preheader.font
        }
    }

    ,
    sans-serif;

    font-size: {
            {
            theme.typography.preheader.size
        }
    }

        {
            {
            theme.typography.preheader.size_unit
        }
    }

    ;
    font-weight: bold;

    color: {
            {
            theme.typography.preheader.color
        }
    }

    ;
    display: block;
    margin: 0 0 .75rem;
}

.kl-rich-text h1 {
    color: {
            {
            theme.global_colors.text_color.color
        }
    }

    ;
}

.kl-rich-text p {
    margin: 0 0 1rem;
}

.kl-rich-text p:last-child {
    margin: 0 0 2rem;
}

.kl-rich-text__buttons {
    margin: -10px;
}

.kl-rich-text__buttons a {
    margin: 10px;
}

@media screen and (max-width: 480px) {
    .kl-rich-text__buttons a {
        display: block;
    }
}

.kl-rich-text__form {
    max-width: 600px;
}

.kl-rich-text--center {
    text-align: center;
    margin: 0 auto;
}

.kl-rich-text--center .kl-rich-text__form {
    max-width: 600px;
    margin: 0 auto;
}

.kl-rich-text--right {
    text-align: right;
    margin: 0 0 0 auto;
}

.kl-rich-text--right .kl-rich-text__form {
    margin: 0 0 0 auto;
}

/* Custom Rich Text */

/* Offer Bar */

.kl-offer-01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    padding: 32px 36px 0;
    border: 1px solid #DAE3F9;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0px 11px 30px rgba(154, 161, 177, 0.2);
}

.kl-offer-01__content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-basis: 320px;
    flex-grow: 1;
    margin-bottom: 32px;
}

.kl-offer-01__preheader {
    font-family: {
            {
            theme.typography.preheader.font
        }
    }

    ,
    sans-serif;

    font-size: {
            {
            theme.typography.preheader.size
        }
    }

        {
            {
            theme.typography.preheader.size_unit
        }
    }

    ;
    font-weight: bold;

    color: {
            {
            theme.typography.preheader.color
        }
    }

    ;
    display: block;
    margin: 0 0 1rem;
}

.kl-offer-01__text {
    flex-basis: 420px;
    flex-grow: 1;
    margin-right: 50px;
}

@media screen and (max-width: 480px) {
    .kl-offer-01__text {
        margin: 0;
    }
}

.kl-offer-01__text h1,
.kl-offer-01__text h2,
.kl-offer-01__text h3,
.kl-offer-01__text h4,
.kl-offer-01__text h5,
.kl-offer-01__text h6 {
    margin: 0 0 1.125rem;
}

.kl-offer-01__button {
    flex-shrink: 0;
}

.kl-offer-01__image {
    flex-basis: 260px;
    margin: 0 auto;
    padding-right: 20px;
}

@media screen and (max-width: 480px) {
    .kl-offer-01__image {
        padding: 0;
    }
}

.kl-offer-01__image img {
    display: block;
    width: 100%;
    max-width: 420px;
}

/* Offer Bar */

/* Typography */
html {
    font-size: {
            {
            theme.typography.body_text.size
        }
    }

        {
            {
            theme.typography.body_text.size_unit
        }
    }

    ;
}

body {
    font-family: {
            {
            theme.typography.body_text.font
        }
    }

    ,
    sans-serif;

    color: {
            {
            theme.typography.body_text.color
        }
    }

    ;
    margin: 0;
    line-height: 1.4;
    word-break: break-word;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
    line-break: strict;
    word-break: break-all;
}

/* Paragraphs */
p {
    font-size: {
            {
            theme.typography.body_text.size
        }
    }

        {
            {
            theme.typography.body_text.size_unit
        }
    }

    ;
    line-height: 1.3em !important;
    margin: 0 0 1.4rem;
    font-family: "Montserrat", sans-serif;
}

strong {
    font-weight: 700;
}

/* Anchors */
a {
    color: {
            {
            theme.typography.link_color.color
        }
    }

    ;
    cursor: pointer;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
}

a:hover,
a:focus {
    text-decoration: underline;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Produkt Web', Roboto Slab, Courier New;
    font-weight: 700;
    margin: 0 0 20px;
}

h1 {
    font-family: 'Produkt Web', Roboto Slab, Courier New;

    font-size: {
            {
            theme.typography.heading_one.size
        }
    }

        {
            {
            theme.typography.heading_one.size_unit
        }
    }

    ;

    color: {
            {
            theme.typography.heading_one.color
        }
    }

    ;

    font-style: {
            {
            theme.typography.heading_one.styles.get("font-style")
        }
    }

    ;

    font-weight: {
            {
            theme.typography.heading_one.styles.get("font-weight")
        }
    }

    ;

    text-decoration: {
            {
            theme.typography.heading_one.styles.get("text-decoration")
        }
    }

    ;
    line-height:1.2;
}

h2 {
    font-family: 'Produkt Web', Roboto Slab, Courier New;

    font-size: {
            {
            theme.typography.heading_two.size
        }
    }

        {
            {
            theme.typography.heading_two.size_unit
        }
    }

    ;

    color: {
            {
            theme.typography.heading_two.color
        }
    }

    ;

    font-style: {
            {
            theme.typography.heading_two.styles.get("font-style")
        }
    }

    ;

    font-weight: {
            {
            theme.typography.heading_two.styles.get("font-weight")
        }
    }

    ;

    text-decoration: {
            {
            theme.typography.heading_two.styles.get("text-decoration")
        }
    }

    ;
    line-height:1.18;
}

h3 {
    font-family: 'Produkt Web', Roboto Slab, Courier New;

    /*     font-size: 26px; */
    color: {
            {
            theme.typography.heading_three.color
        }
    }

    ;

    font-style: {
            {
            theme.typography.heading_three.styles.get("font-style")
        }
    }

    ;

    font-weight: {
            {
            theme.typography.heading_three.styles.get("font-weight")
        }
    }

    ;

    text-decoration: {
            {
            theme.typography.heading_three.styles.get("text-decoration")
        }
    }

    ;
}

h4 {
    font-family: 'Produkt Web', Roboto Slab, Courier New;

    font-size: {
            {
            theme.typography.heading_four.size
        }
    }

        {
            {
            theme.typography.heading_four.size_unit
        }
    }

    ;

    color: {
            {
            theme.typography.heading_four.color
        }
    }

    ;

    font-style: {
            {
            theme.typography.heading_four.styles.get("font-style")
        }
    }

    ;

    font-weight: {
            {
            theme.typography.heading_four.styles.get("font-weight")
        }
    }

    ;

    text-decoration: {
            {
            theme.typography.heading_four.styles.get("text-decoration")
        }
    }

    ;
}

h5 {
    font-family: 'Produkt Web', Roboto Slab, Courier New;

    font-size: {
            {
            theme.typography.heading_five.size
        }
    }

        {
            {
            theme.typography.heading_five.size_unit
        }
    }

    ;

    color: {
            {
            theme.typography.heading_five.color
        }
    }

    ;

    font-style: {
            {
            theme.typography.heading_five.styles.get("font-style")
        }
    }

    ;

    font-weight: {
            {
            theme.typography.heading_five.styles.get("font-weight")
        }
    }

    ;

    text-decoration: {
            {
            theme.typography.heading_five.styles.get("text-decoration")
        }
    }

    ;
}

h6 {
    font-family: 'Produkt Web', Roboto Slab, Courier New;

    font-size: {
            {
            theme.typography.heading_six.size
        }
    }

        {
            {
            theme.typography.heading_six.size_unit
        }
    }

    ;

    color: {
            {
            theme.typography.heading_six.color
        }
    }

    ;

    font-style: {
            {
            theme.typography.heading_six.styles.get("font-style")
        }
    }

    ;

    font-weight: {
            {
            theme.typography.heading_six.styles.get("font-weight")
        }
    }

    ;

    text-decoration: {
            {
            theme.typography.heading_six.styles.get("text-decoration")
        }
    }

    ;
}

/* Lists */
ul,
ol {
    margin: 0 0 1.5rem;
    padding: 0 0 0 1.1rem;
}

ul li {
    padding: 0 0 15px;
}

ul ul,
ol ul,
ul ol,
ol ol {
    margin: 4px 0;
}

ul.no-list {
    list-style: none;
}

/* Code blocks */
code {
    vertical-align: bottom;
}

/* Blockquotes */
blockquote {
    border-left: 2px solid {
            {
            theme.global_colors.secondary_color.color
        }
    }

    ;
    margin: 0 0 1.4rem;
    padding-left: 15px;
}

/* Horizontal rules */
hr {
    background-color: #CCC;
    border: none;
    color: #CCC;
    height: 1px;
}

/* Subscripts and superscripts */
sup,
sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* Focus styles */
:focus {
    outline: auto;

    outline-color: {
            {
            theme.global_colors.primary_color.color
        }
    }

    ;
}

.disable-focus-styles :focus {
    outline: none;
}


@media (max-width:767px) {
    h1 {
        font-size: 40px !important;
    }

    h3 {
        font-size: 22px !important;
    }
}

/* Typography */

/* Button */
button,
.button {
    background-color: rgba({
            {
            theme.buttons.background_color.color|convert_rgb
        }
    }

    , {
        {
        theme.buttons.background_color.opacity !=null ? theme.buttons.background_color.opacity / 100 : 1
    }
});

border: {
        {
        theme.buttons.border_width
    }
}

px solid {
        {
        theme.buttons.border_color.color
    }
}

;

border-radius: {
        {
        theme.buttons.border_radius
    }
}

px;

color: {
        {
        theme.buttons.text_color.color
    }
}

;

padding: {
        {
        theme.buttons.vertical_padding
    }
}

px {
        {
        theme.buttons.horizontal_padding
    }
}

px;

font-family: {
        {
        theme.global_fonts.primary_font.font
    }
}

,
sans-serif;
font-size: 0.75rem;
font-weight: bold;
display: inline-block;
width: auto;
height: auto;
margin: 0;
cursor: pointer;
line-height: 1.1;
letter-spacing: 0.03em;
white-space: normal;
word-break: break-word;
text-align: center;
text-decoration: none;
position: relative;
transition: background-color 0.15s linear,
border-color 0.15s linear,
color 0.15s linear;
}

button:hover,
button:focus,
button:active,
.button:hover,
.button:focus,
.button:active {
    background-color: #296C7B;
    border-color: #296C7B;
    color: #FFF;
    text-decoration: none;
}

button:disabled,
.button:disabled {
    background-color: #D0D0D0;
    border-color: #D0D0D0;
    color: #E6E6E6;
}

.widget-type-cta {
    background-color: rgba({
            {
            theme.buttons.background_color.color|convert_rgb
        }
    }

    , {
        {
        theme.buttons.background_color.opacity !=null ? theme.buttons.background_color.opacity / 100 : 1
    }
});

border: {
        {
        theme.buttons.border_width
    }
}

px solid {
        {
        theme.buttons.border_color.color
    }
}

;

border-radius: {
        {
        theme.buttons.border_radius
    }
}

px;

color: {
        {
        theme.buttons.text_color.color
    }
}

;

padding: {
        {
        theme.buttons.vertical_padding
    }
}

px {
        {
        theme.buttons.horizontal_padding
    }
}

px;

font-family: {
        {
        theme.global_fonts.primary_font.font
    }
}

,
sans-serif;
font-size: 0.75rem;
font-weight: 400;
display: inline-block;
width: auto;
height: auto;
margin: 0;
cursor: pointer;
line-height: 1.1;
letter-spacing: 0.03em;
white-space: normal;
word-break: break-word;
text-align: center;
text-decoration: none;
position: relative;
transition: background-color 0.15s linear,
border-color 0.15s linear,
color 0.15s linear;
}

.widget-type-cta:hover,
.widget-type-cta:focus,
.widget-type-cta:active {
    background-color: #3b66c9;
    border-color: #3b66c9;
    color: #FFF;
    text-decoration: none;
}

.widget-type-cta:disabled {
    background-color: #D0D0D0;
    border-color: #D0D0D0;
    color: #E6E6E6;
}

.widget-type-cta a {
    color: white;
}

.widget-type-cta a:hover,
.widget-type-cta a:focus,
.widget-type-cta a:active {
    color: white;
    text-decoration: none;
}

.button--outlined {
    background-color: transparent;

    color: {
            {
            theme.global_colors.primary_color.color
        }
    }

    ;

    border: 2px solid {
            {
            theme.global_colors.primary_color.color
        }
    }

    ;
    font-weight: bold;
}

.button--arrow {
    color: {
            {
            theme.global_colors.text_color.color
        }
    }

    ;
    background: none;
    border: none;
    padding: 0;
    transition: none;
}

.button--arrow:after {
    content: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 38 13'%3E%3Cpath d='M37.5303 7.0303a.75.75 0 000-1.0606l-4.7729-4.773a.75.75 0 00-1.0607 1.0607L35.9393 6.5l-4.2426 4.2426a.75.75 0 001.0607 1.0607l4.7729-4.773zM0 7.25h37v-1.5H0v1.5z' fill='%23191412'/%3E%3C/svg%3E");
    width: 36px;
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
}

.button--arrow:hover,
.button--arrow:focus,
.button--arrow:active {
    background: none;
    border: none;
    text-decoration: none;

    color: {
            {
            theme.global_colors.primary_color.color
        }
    }

    ;
}

.button--arrow:hover:after,
.button--arrow:focus:after,
.button--arrow:active:after {
    /* Really nasty way of chaning the color of the arrow */
    content: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 38 13'%3E%3Cpath d='M37.5303 7.0303a.75.75 0 000-1.0606l-4.7729-4.773a.75.75 0 00-1.0607 1.0607L35.9393 6.5l-4.2426 4.2426a.75.75 0 001.0607 1.0607l4.7729-4.773zM0 7.25h37v-1.5H0v1.5z' fill='%23602166'/%3E%3C/svg%3E");
}

.button--arrow:disabled {
    background: none;
    border: none;
    color: #aeaeae;
    cursor: auto;
}

/* Button */

/* Form */
/* Form */
form,
.submitted-message {
    font-family: {
            {
            theme.global_fonts.secondary_font.font
        }
    }

    ,
    sans-serif;
}

.hs-form-field {
    margin: 0 0 1rem;
}

/* Labels */
form label {
    color: {
            {
            theme.forms.label_color.color
        }
    }

    ;
    display: block;
    font-size: 0.875rem;
    font-weight: bold;
    padding-top: 0;
    margin-bottom: 0.35rem;
    text-align: left;
    width: auto;
}

/* Help text - legends */
form legend {
    color: {
            {
            theme.forms.help_text_color.color
        }
    }

    ;
    font-size: 0.875rem;
}

/* Inputs */
.input {
    position: relative;
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=number],
input[type=file],
select,
textarea {
    background-color: #EBEBEB;
    border: 1px solid #EBEBEB;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    padding: 12px 20px;
    width: 100% !important;

    color: {
            {
            theme.typography.body_text.color
        }
    }

    ;
    border-radius: 12px;
}

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 {
    outline: none;

    border: 1px solid {
            {
            theme.forms.field_focus_border_color.color
        }
    }

    ;
}

fieldset {
    max-width: 100% !important;
}

fieldset.form-columns-0,
fieldset.form-columns-1,
fieldset.form-columns-2,
fieldset.form-columns-3 {
    margin-left: -4px;
    margin-right: -4px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

fieldset.form-columns-0>div,
fieldset.form-columns-1>div,
fieldset.form-columns-2>div,
fieldset.form-columns-3>div {
    margin-left: 4px;
    margin-right: 4px;
}

fieldset.form-columns-0 .hs-form-field,
fieldset.form-columns-1 .hs-form-field,
fieldset.form-columns-2 .hs-form-field,
fieldset.form-columns-3 .hs-form-field {
    flex-grow: 1;
    flex-basis: 135px;
}

fieldset.form-columns-0 .hs-form-field .input,
fieldset.form-columns-1 .hs-form-field .input,
fieldset.form-columns-2 .hs-form-field .input,
fieldset.form-columns-3 .hs-form-field .input {
    margin-right: 0;
}

fieldset.form-columns-0 .hs-form-field .hs-input,
fieldset.form-columns-1 .hs-form-field .hs-input,
fieldset.form-columns-2 .hs-form-field .hs-input,
fieldset.form-columns-3 .hs-form-field .hs-input {
    width: 100% !important;
}

fieldset.form-columns-0 .hs-form-field input[type=checkbox],
fieldset.form-columns-0 .hs-form-field input[type=radio],
fieldset.form-columns-1 .hs-form-field input[type=checkbox],
fieldset.form-columns-1 .hs-form-field input[type=radio],
fieldset.form-columns-2 .hs-form-field input[type=checkbox],
fieldset.form-columns-2 .hs-form-field input[type=radio],
fieldset.form-columns-3 .hs-form-field input[type=checkbox],
fieldset.form-columns-3 .hs-form-field input[type=radio] {
    width: auto !important;
}

/* Form placeholder text */
::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder,
::placeholder,
.hs-fieldtype-date .input .hs-dateinput:before {
    color: #E4E4E4;
}

/* Inputs - checkbox/radio */
form .inputs-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.inputs-list>li {
    display: block;
    margin: 0.7rem 0;
    padding: 0;
    width: 100%;
}

.inputs-list input,
.inputs-list span {
    font-size: 0.875rem;
    vertical-align: middle;
}

.hs-input[type=checkbox],
.hs-input[type=radio] {
    border: none;
    cursor: pointer;
    height: auto;
    line-height: normal;
    margin-right: 0.35rem;
    padding: 0;
    width: auto;
}

.hs-input[type=checkbox]+label,
.hs-input[type=radio]+label {
    display: inline-block;
    vertical-align: top;
}

/* Inputs - datepicker */
.hs-fieldtype-date .input .hs-dateinput:before {
    color: #E4E4E4;
    content: '\01F4C5';
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.fn-date-picker button,
.fn-date-picker .button {
    min-width: auto;
}

.fn-date-picker .pika-table thead th {
    color: #FFF;

    background-color: {
            {
            theme.global_colors.primary_color.color
        }
    }

    ;
}

.fn-date-picker td.is-today .pika-button {
    color: {
            {
            theme.global_colors.primary_color.color
        }
    }

    ;
}

.fn-date-picker td.is-selected .pika-button {
    background: {
            {
            theme.global_colors.primary_color.color
        }
    }

    ;
    border-radius: 0;
    box-shadow: none;
}

.fn-date-picker td .pika-button:hover {
    background: {
            {
            theme.global_colors.primary_color.color
        }
    }

    !important;
    border-radius: 0 !important;
    color: #FFF;
}

/* Inputs - file picker */
input[type=file] {
    background-color: transparent;
    border: initial;
    box-shadow: none;
    line-height: initial;
    padding: initial;
}

/* Headings and text */
form .hs-richtext,
form .hs-richtext p {
    font-size: 0.875rem;
    margin: 0 0 1.4rem;
}

form .hs-richtext img {
    max-width: 100% !important;
}

form .header {
    background-color: transparent;
    border: none;
}

h3.form-title {
    color: {
            {
            theme.forms.header_text_color.color
        }
    }

    ;
}

/* GDPR */
.legal-consent-container {
    margin: 0 0 1rem;
}

.legal-consent-container .hs-form-booleancheckbox-display>span,
.legal-consent-container .hs-form-booleancheckbox-display>span p {
    font-size: 0.875rem;
}

/* Validation */
.hs-form-required {
    color: red;
}

.hs-input.invalid.error {
    border-color: #EF6B51;
}

.hs-error-msg,
ul.no-list.hs-error-msgs.inputs-list label.hs-main-font-element {
    color: #EF6B51;
    margin-top: 0.35rem;
    font-weight: normal;
}

/* Submit button */
form input[type=submit],
form .hs-button {
    /*     background-color: #327280; */
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: Zilla Slab;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 10px 0;
    outline: none;
    padding: 10px 26px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.15s linear, border-color 0.15s linear, color 0.15s linear;
}

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: #BB9C54;
}

form input[type=submit]:disabled,
form .hs-button:disabled {
    background-color: #D0D0D0;
    border-color: #D0D0D0;
    color: #E6E6E6;
}

/* Captcha */
.grecaptcha-badge {
    margin: 0;
    max-width: 100%;
}

.hsForm_2a7fcc30-d5a4-4000-afc5-95fb9139fb99 .hs-form-field label {
    color: #373338;
    font-family: "Work Sans";
    font-size: 18px;
    font-weight: 400;
}

.hsForm_2a7fcc30-d5a4-4000-afc5-95fb9139fb99 .hs-form-field label .hs-form-required {
    color: #A63D40;
}

.hsForm_2a7fcc30-d5a4-4000-afc5-95fb9139fb99 .hs-form-field input {
    color: #373338;
    font-family: "Work Sans";
    font-size: 18px;
    font-weight: 400;
}

.hsForm_2a7fcc30-d5a4-4000-afc5-95fb9139fb99 .hs-richtext {
    color: #373338;
    font-family: "Work Sans";
    font-size: 18px;
    font-weight: 400;
}

.hsForm_2a7fcc30-d5a4-4000-afc5-95fb9139fb99 .hs-form-booleancheckbox-display span {
    color: #373338;
    font-family: "Work Sans";
    font-size: 18px;
    font-weight: 400;
}

.hsForm_2a7fcc30-d5a4-4000-afc5-95fb9139fb99 .hs-richtext p {
    color: #373338;
    font-family: "Work Sans";
    font-size: 18px;
    font-weight: 400;
}

/* Form */

/* Table */
/* Table */
table {
    background-color: rgba({
            {
            theme.tables.body_background_color.color|convert_rgb
        }
    }

    , {
        {
        theme.tables.body_background_color.opacity !=null ? theme.tables.body_background_color.opacity / 100 : 1
    }
});

border: 1px solid {
        {
        theme.tables.border_color.color
    }
}

;
border-collapse: collapse;
margin-bottom: 1.4rem;
overflow-wrap: break-word;
}

tbody+tbody {
    border-top: 2px solid {
            {
            theme.tables.border_color.color
        }
    }

    ;
}

/* Table Cells */
th,
td {
    border: 1px solid {
            {
            theme.tables.border_color.color
        }
    }

    ;

    color: {
            {
            theme.tables.body_text_color.color
        }
    }

    ;
    padding: 0.75rem;
    vertical-align: top;
}

/* Table Header */
thead th,
thead td {
    background-color: rgba({
            {
            theme.tables.header_background_color.color|convert_rgb
        }
    }

    , {
        {
        theme.tables.header_background_color.opacity !=null ? theme.tables.header_background_color.opacity / 100 : 1
    }
});

color: {
        {
        theme.tables.header_text_color.color
    }
}

;
vertical-align: bottom;
}

/* Table footer */
tfoot td {
    background-color: rgba({
            {
            theme.tables.footer_background_color.color|convert_rgb
        }
    }

    , {
        {
        theme.tables.footer_background_color.opacity !=null ? theme.tables.footer_background_color.opacity / 100 : 1
    }
});

color: {
        {
        theme.tables.footer_text_color.color
    }
}

;
}

/* Table */

/* Container dnd */

.content-wrapper {
    margin: 0 auto;
    padding: 0 20px;

    max-width: {
            {
            theme.spacing.max_width
        }
    }

    px;
}

@media screen and (min-width: 1380px) {
    .content-wrapper {
        padding: 0;
    }
}

.dnd-section,
.content-wrapper--vertical-spacing {
    padding: {
            {
            theme.spacing.vertical_spacing
        }
    }

    px 20px;
}

.dnd-section>.row-fluid,
.page-center {
    margin: 0 auto;

    max-width: {
            {
            theme.spacing.max_width
        }
    }

    px;
}

.dnd-section .dnd-column {
    padding: 0 20px;
}

@media (max-width: 767px) {
    .dnd-section .dnd-column {
        padding: 0;
    }
}


/* Container Dnd */

/* Blog */
/* Blog header */

/* Blog */

/* System */
/* Error pages */
.kl-error-page {
    padding: 100px 0;
    text-align: center;
}

.kl-error-page__preheader {
    font-family: {
            {
            theme.typography.preheader.font
        }
    }

    ,
    sans-serif;

    font-size: {
            {
            theme.typography.preheader.size
        }
    }

        {
            {
            theme.typography.preheader.size_unit
        }
    }

    ;
    font-weight: bold;

    color: {
            {
            theme.typography.preheader.color
        }
    }

    ;
    display: block;
    margin: 0 0 0.5rem;
}

.kl-error-page__heading {
    margin: 0 0 1rem;
}

/* System pages */
.systems-page__content {
    margin: 0 auto;
    max-width: 620px;
    padding: 120px 20px;
}

.systems-page .success {
    color: #34A853;
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
}

.systems-page h1 {
    margin: 0 0 4rem;
    text-align: center;
}

@media screen and (max-width: 360px) {
    .systems-page h1 {
        margin: 0 0 2rem;
        font-size: 2rem;
    }
}

.systems-page--membership {
    background-image: url({{get_asset_url%28"../../images/Hero-Background-2.svg"%29%20}%20});
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.systems-page--membership h1 {
    margin: 0 0 1rem;
}

.systems-page--membership p {
    margin: 0 0 3rem;
    text-align: center;
}

.systems-page--membership form .hs-submit input,
.systems-page--membership form input[type="submit"] {
    width: 100%;
}

.systems-page--subscription-confirmation h1 {
    display: none;
    margin: 0 0 1.5rem;
}

.systems-page--subscription-confirmation h2 {
    color: #3A3A3A;
    font-size: 1rem;
    margin: 0;
}

.systems-page--subscription-confirmation .page-header {
    text-align: center;
    margin: 0 0 2rem;
}

.systems-page--subscription-preferences .page-header {
    text-align: center;
    margin: 0 0 2rem;
}

.systems-page--subscription-preferences h1 {
    margin: 0 0 1.5rem;
}

.systems-page--subscription-preferences h2 {
    color: #3A3A3A;
    font-size: 1rem;
    margin: 0;
}

.systems-page--subscription-preferences .email-prefs {
    padding: 32px;
    border: 1px solid #DAE3F9;
    box-shadow: 0px 11px 30px rgba(154, 161, 177, 0.1);
    border-radius: 10px;
}

.systems-page--subscription-preferences .email-prefs p,
.systems-page--subscription-preferences .email-prefs span,
.systems-page--subscription-preferences .email-prefs label {
    font-size: 0.875rem;
    line-height: 1rem;
    vertical-align: text-top;
    font-weight: normal;
}

@media screen and (max-width: 360px) {
    .systems-page--subscription-preferences .email-prefs {
        padding: 18px;
    }
}

.systems-page--subscription-preferences input[type="checkbox"] {
    margin-right: 12px;
}

.systems-page__preheader {
    font-family: {
            {
            theme.typography.preheader.font
        }
    }

    ,
    sans-serif;

    font-size: {
            {
            theme.typography.preheader.size
        }
    }

        {
            {
            theme.typography.preheader.size_unit
        }
    }

    ;
    font-weight: bold;

    color: {
            {
            theme.typography.preheader.color
        }
    }

    ;
    display: block;
    margin: 0 0 0.5rem;
    text-align: center;
}

.systems-page form {
    position: relative;
}

.systems-page form .hs-form-field {
    position: relative;
}

.systems-page form .form-input-validation-message ul {
    padding: 0;
}

.systems-page form .form-input-validation-message label {
    color: #929292;
    font-size: 0.875rem;
    font-weight: normal;
}

.systems-page form .hs-login-widget-show-password,
.systems-page form .hs-register-widget-show-password,
.systems-page form .hs-reset-widget-show-password {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.75rem;
    line-height: 1rem;
    text-transform: uppercase;
    font-weight: bold;

    color: {
            {
            theme.global_colors.primary_color.color
        }
    }

    ;
}

.systems-page form .hs-login-widget-show-password:hover,
.systems-page form .hs-login-widget-show-password:focus,
.systems-page form .hs-register-widget-show-password:hover,
.systems-page form .hs-register-widget-show-password:focus,
.systems-page form .hs-reset-widget-show-password:hover,
.systems-page form .hs-reset-widget-show-password:focus {
    color: {
            {
            theme.global_colors.primary_color.color
        }
    }

    ;
    text-decoration: none;
}

.systems-page form #hs_login_reset {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    margin: 1rem 0 0;
    z-index: 1;

    color: {
            {
            theme.global_colors.primary_color.color
        }
    }

    ;
    font-size: 0.875rem;
    font-weight: bold;
    width: 100%;
    text-align: center;
}

.systems-page form input {
    max-width: 100%;
}

.systems-page .form-container {
    max-width: 380px;
    margin: 0 auto 3rem;
}

.systems-page .form-container .label {
    display: block;
    font-size: 0.875rem;
    font-weight: bold;
    margin: 0 0 0.75rem;
}

#email-prefs-form .header {
    background-color: transparent;
}

/* Password prompt */
.password-prompt input[type=password] {
    display: block;
    height: auto !important;
    margin-bottom: 1.4rem;
}

/* Backup unsubscribe */
.backup-unsubscribe h3 {
    font-size: 0.875rem;
    font-weight: bold !important;
    line-height: 1rem;
    margin: 0 0 0.75rem;
}

.backup-unsubscribe #email-prefs-form {
    padding: 42px 32px;
    border: 1px solid #DAE3F9;
    box-shadow: 0px 11px 30px rgba(154, 161, 177, 0.1);
    border-radius: 10px;
}

.backup-unsubscribe #email-prefs-form div {
    padding-bottom: 0 !important;
}

@media screen and (max-width: 360px) {
    .backup-unsubscribe #email-prefs-form {
        padding: 32px 18px;
    }
}

.backup-unsubscribe input[type=email] {
    margin-bottom: 1.5rem;
    padding: 0.7rem !important;
    font-size: 0.875rem !important;
    border: 1px solid #DADADA;
}

/* Search pages */
.hs-search-field {
    max-width: 750px;
}

.hs-search-field input[type=text] {
    padding-right: 48px;
    border-radius: 6px;
}

select {
    font-family: "Montserrat", sans-serif !important;
}


#hs-pwd-widget-password,
.hs-input,
.hs-search-field__input,
form input[type=color],
form input[type=date],
form input[type=datetime-local],
form input[type=datetime],
form input[type=email],
form input[type=file],
form input[type=month],
form input[type=number],
form input[type=password],
form input[type=search],
form input[type=tel],
form input[type=text],
form input[type=time],
form input[type=url],
form input[type=week],
form select,
form textarea {
    font-family: "Montserrat", sans-serif !important;
}

.blog-tag-filter__drop-down {
    border-radius: 6px !important;
}

.hs-search-field__bar {
    position: relative;
}

.hs-search-field__bar:after {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11 19a8 8 0 100-16 8 8 0 000 16zM21 21l-4-4' stroke='%23C6C6C6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
}

.hs-search-field__suggestions {
    background-color: #FFF;
    max-width: 360px;
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateY(8px);
    border-radius: 9px;
    width: 100%;
}

.hs-search-field__suggestions a,
.hs-search-field__suggestions #results-for {
    padding: 8px 16px;
}

.hs-search-field--open .hs-search-field__suggestions {
    border: 1px solid #dedede !important;
}

.kl-search-results {
    padding: 80px 0;
}

.hs-search-results {
    margin-top: 3.5rem;
}

.hs-search-results__featured-image {
    margin-bottom: 1rem;
}

.hs-search-results__featured-image img {
    display: block;
    max-width: 100%;
    width: 100%;
}

.hs-search-results__title {
    color: {
            {
            theme.global_colors.text_color.color
        }
    }

    ;
    font-size: 1.5rem;
    font-weight: bold;

    font-family: {
            {
            theme.global_fonts.secondary_font.font
        }
    }

    ,
    sans-serif;
}

.hs-search-results__title:hover,
.hs-search-results__title:focus {
    color: {
            {
            theme.global_colors.primary_color.color
        }
    }

    ;
    text-decoration: none;
}

.hs-search-results__description {
    padding-top: 1.25rem;
    margin: 0 0 2.5rem;
}

.hs-search-results__pagination a {
    color: {
            {
            theme.global_colors.text_color.color
        }
    }

    ;

    font-family: {
            {
            theme.global_fonts.secondary_font.font
        }
    }

    ,
    sans-serif;
    font-weight: bold;
}

.hs-search-results__listing {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px !important;
}

.hs-search-results__listing li {
    flex-basis: calc(100% / 2);
    padding: 0 20px !important;
}

@media screen and (max-width: 620px) {
    .hs-search-results__listing li {
        flex-basis: 100%;
    }
}

.hs-search-highlight {
    font-weight: bold;
}

/* system */


/* TSC Updates 5/9/24 */

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    /*     --bs-gutter-x: none !important; */
}