/* General */

body * {
    font-family: sans-serif;
}
html.withfont body * {
    font-family: "Lato", sans-serif;
}

ul {
    list-style-type: none;
}

a:hover {
    text-decoration: none;
}

.text-gray {
    color: #9c9c9c;
}

#header ~ #be-content,
#header ~ #content-container {
    padding-top: 70px;
}

@media (min-width: 768px) {
    #header ~ #be-content,
    #header ~ #content-container {
        padding-top: 80px;
    }
}

#page-overlay {
    background: rgba(255, 255, 255, 0.5); 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    backdrop-filter: blur(5px); /* Add blur effect */
    display: none;
}

body.menu-active #page-overlay {
    display: block;
}



/* ~General~ */

/* Header */

body > header {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    height: 70px;
}

body > header > .container {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: space-between;
}

.header-navigation {
    height: 100%;
}

body > header #logo a {
    display: block;
}

body > header #logo img {
    width: 180px;
    height: 39px;
    max-width: none;
}
@media only screen and (min-width: 768px) {
    body > header #logo img {
        width: 40px;
        min-width: 40px;
    }
}
@media only screen and (min-width: 992px) {
    body > header #logo img {
        width: 180px;
    }
    #main-menu {
        max-width: 450px;
    }
}
@media only screen and (min-width: 1200px) {
    #main-menu {
        max-width: initial;
    }
}

body > header .profile {
    font-size: 26px;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    color: #000;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAACqElEQVRYR82XS6hOURTHf3cgYwPXYySZIm8DA8LEvURiwIQJIeURAyVJGSiuEmLChAGJvCaIgYG3MJWMcBkYy0T/096129/eZ61zP8WqU1/fWWvt/1nP/x6gu0wEFgCDgH5LfgDfgZfht9vrgFNzErAeWAUMGTb3gPvADWDU8m8BGAfsDs80y1n2/jNwJjy/a7ZtANYCh4G5HQ/O1d8Ax4BbJT81AHuAkT4Pzs33AqfzP0sAhoE7f/nw6G41cDf1nQNYCDx3Hv4a0COZFx6P6SLgRVRMAajgnjlyLuNDwKPstOXAcUAf0SaqicVAU5gpgH3AScP4OrDR0LkGbDB09gOnUgDqc3291WqzgA+G85nAe0NHLaoojMYIqEIbRC0ip7M9SQbeAQLbJor4SATwGFhqGFwGtjoBXAK2GLpPgGUCMAX44nB8Edju0JPKBWCbQ3eqAGi+a35bopabbymF96+cbTkkAAqVQuaRFYX2y+3Ujg89zpRSATgAnHAaaAZokLSJBpk1C6L9wa4AZKhZoOWSt6PaT8vLmgEp+AZAlxSkxmpLTTWJNqbVdqWoNSnwFqEzS53UmiIUrRKd+hcyGAeRVmQb1VK+rwIPgE/Az2wDxs04AZgOrAQ2AaqLmqj1hyOAncDZimYzscYYnrYJuws4FwHUllE/h0fMJRA9y0jK+Tp+Glbv1zF+fTTTqNeKXpL46VnHelciJOKFAtaPaMtq20apEhIpiAnfzE5T8R0BPnZEMQM4GooxNV2XMuQSKS0x4m+Bbmkj/jKAjA+bULRtcqbbw4xrtLzGjFUPitCVcOuJNx8VsZ7NgL5Qec+lhxFLoe1iooVy3kFSrcwo5ztSJpwa/NdXsxSowqvJtsZB3TQ7bofJ2ffltBRe5XdO5Xr+Fug0N/4AI3WCje+1LGMAAAAASUVORK5CYII=")
        center center no-repeat;
    width: 24px;
    height: 24px;
    background-size: 24px;
}

body > header #menu-btn {
    border: none;
    background-color: transparent;
    outline: none;
    padding: 10px;
    float: right;
}

body > header #menu-btn .box {
    position: relative;
    display: inline-block;
    height: 34px;
    width: 34px;
}

body > header #menu-btn .inner,
body > header #menu-btn .inner:before,
body > header #menu-btn .inner:after {
    position: absolute;
    width: 34px;
    height: 2px;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition-duration: 75ms;
    transition-property: transform;
    border-radius: 4px;
    background-color: #000;
}

body > header #menu-btn .inner {
    top: 50%;
}

body > header #menu-btn .inner:before,
body > header #menu-btn .inner:after {
    display: block;
    content: "";
}

body > header #menu-btn .inner:before {
    top: -10px;
    transition: top 75ms ease 0.12s, opacity 75ms ease;
}

body > header #menu-btn .inner:after {
    bottom: -10px;
    transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

body.menu-active > header #menu-btn {
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: rotate(45deg);
}

body.menu-active > header #menu-btn .inner:before {
    top: 0;
    transition: top 75ms ease, opacity 75ms ease 0.12s;
    opacity: 0;
}

body.menu-active > header #menu-btn .inner:after {
    bottom: 0;
    transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
    transform: rotate(-90deg);
}

body.menu-active #main-menu {
    display: block;
}

body.admin-bar > header {
    top: 46px;
}

#main-menu {
    display: none;
    background-color: #fff;
    position: fixed;
    top: 70px;
    left: 0;
    height: calc(100% - 70px);
    width: 100%;
    margin: 0 auto !important;
}

#main-menu .tab > a {
    display: block;
    font-size: 1.25rem;
    padding: 21px 20px 21px 20px;
    color: #414042;
    background: #fbfbfb;
}

#main-menu .tab > a:after {
    content: "";
    border: solid #000;
    border-width: 0 1px 1px 0;
    padding: 6px;
    transform: rotate(-45deg);
    float: right;
    margin-top: 8px;
    margin-right: 8px;
}

#main-menu .tab .submenu {
    display: none;
}

#main-menu .submenu h3 {
    font-weight: 600;
}

#main-menu .tab .submenu .back {
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 50px;
    background: #f8f8f8;
    padding: 0 11px;
    display: flex;
    align-items: center;
}

#main-menu .tab .submenu .back span {
    margin-left: 10px;
}

#main-menu .tab .submenu .back:before {
    content: "";
    display: inline-block;
    border: solid #000;
    border-width: 0 1px 1px 0;
    padding: 6px;
    transform: rotate(135deg);
}

#main-menu .tab .submenu .inner {
    height: calc(100% - 50px);
    padding-bottom: 20px;
    overflow-x: auto;
}

/* #main-menu .tab .submenu .inner ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#main-menu .tab .submenu .inner li {
    margin-bottom: 20px;
} */

/* #main-menu .tab .submenu a:not(.btn) {
    color: #000;
    font-weight: bold;
    display: block;
    border-bottom: 2px solid transparent;
} */

/*#main-menu .tab .submenu a:not(.btn):hover {
    border-color: #1ea0da;
}*/

#main-menu .tab .submenu a:not(.btn) i {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}

#main-menu .tab .submenu .third a:not(.btn) {
    font-weight: normal;
}

#main-menu .tab.active .submenu {
    display: block;
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
}

#main-menu.submenu-active {
    margin-left: -100%;
}

body > header .btn {
    border-radius: 4px;
    height: 40px;
    line-height: 40px;
    padding: 0 30px;
    white-space: nowrap;
}

@media only screen and (min-width: 768px) {
    body > header .btn {
        height: 32px;
        line-height: 32px;
        float: right;
    }
    .btn-signin {
        margin-top: 5px;
    }
}
@media only screen and (min-width: 1200px) {
    body > header .btn {
        height: 40px;
        line-height: 40px;
        float: none;
    }
    .btn-signin {
        margin-top: 0;
    }
}
body > header .btn-primary,
body > header .btn-primary:hover {
    background-color: #00a1e4;
    border-color: #00a1e4;
}

body > header .btn-secondary {
    color: #414042;
    background-color: transparent;
    border-color: #00a1e4;
}

body > header .btn-secondary:hover {
    color: #414042 !important;
    background-color: transparent !important;
    border-color: #00a1e4;
}

.menu-block-type-1,
.menu-block-type-2,
.menu-block-type-3,
.menu-block-type-4,
.menu-block-type-5,
.menu-block-type-6,
.menu-block-type-7 {
    padding-top: 20px;
}

.menu-block-type-1 > .featured h3 {
    font-size: 1.7rem;
    line-height: 2.1rem;
    color: #414042;
    margin-bottom: 12px;
}

.menu-block-type-1 > .featured p {
    font-size: 1.375rem;
    line-height: 1.81rem;
    color: #414042;
    margin-bottom: 14px;
}

.menu-block-type-1 > ul {
    list-style-type: none;
    padding: 0;
    margin: 25px 0 0 0;
}

.menu-block-type-1 > ul li {
    margin: 0;
}

.menu-block-type-1 > ul li a {
    display: block;
    font-size: 1.125rem;
    line-height: 1.8125rem;
    color: #00a1e4;
    font-weight: 500;
    padding: 10px 0;
}

.menu-block-type-1 > ul li a:hover {
    background: #f1f1f1;
}

.menu-block-type-2 > h3 {
    font-size: 1.125rem;
    line-height: 1.8125rem;
    color: #414042;
    margin-top: 14px;
    margin-bottom: 4px;
    padding: 10px 0;
}

.menu-block-type-2 > p {
    font-size: 1rem;
    line-height: 1.8125rem;
    color: #414042;
    margin-bottom: 14px;
}

.menu-block-type-3-content {
    padding: 16px 18px 34px 18px;
    background: #f4f4f4;
    border-radius: 4px;
}

.menu-block-type-3-content > h4 {
    font-size: 1.375rem;
    line-height: 1.8125rem;
    color: #414042;
    margin: 0;
    padding: 10px 0;
}

.menu-block-type-3-content > ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-block-type-3-content > ul li {
    margin-bottom: 10px;
}

.menu-block-type-3-content > ul li:last-of-type {
    margin-bottom: 0;
}

.menu-block-type-3-content > ul li a {
    display: block;
    padding: 10px 14px;
}

.menu-block-type-3-content > ul li a:hover {
    background: #fff;
}

.menu-block-type-3-content a .menu-block-type-3-title {
    display: block;
    font-size: 1.125rem;
    line-height: 1.375rem;
    padding: 6px 0 0;
    margin-bottom: 6px;
    color: #00a1e4;
}

.menu-block-type-3-content p {
    color: #414042;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.3125rem;
    margin: 0 0 4px 0;
}

.menu-block-type-3-content .menu-block-type-3-more {
    color: #414042;
    font-size: 1rem;
    line-height: 1.3125rem;
}

.menu-block-type-3-content .menu-block-type-3-more i {
    color: #00a1e4;
}

.menu-block-type-4 > ul {
    list-style: none;
    margin: 16px 0 0 0;
    padding: 0;
}

.menu-block-type-4 > ul li {
    margin-bottom: 10px;
}

.menu-block-type-4 > ul li:last-of-type {
    margin-bottom: 0;
}

.menu-block-type-4 a {
    display: block;
    padding: 0 20px 10px;
}

.menu-block-type-4 a:hover {
    background: #f1f1f1;
}

.menu-block-type-4 a .menu-block-type-4-title {
    display: block;
    font-size: 1.125rem;
    line-height: 1.8125rem;
    padding: 10px 0 0;
    color: #00a1e4;
    margin-bottom: 14px;
}

.menu-block-type-4 p {
    color: #414042;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4375rem;
    margin: 0;
}

.menu-block-type-4 .menu-block-type-4-more {
    color: #414042;
    font-size: 1rem;
    line-height: 1.3125rem;
}

.menu-block-type-4 .menu-block-type-4-more i {
    color: #00a1e4;
}

.menu-block-type-4 .img-cont {
    padding: 0 20px;
}

.menu-block-type-5 > h3 {
    font-size: 1.375rem;
    line-height: 1.8125rem;
    color: #414042;
    margin-top: 16px;
    margin-bottom: 0;
    padding: 10px 0;
}

.menu-block-type-5 > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}

.menu-block-type-5 > ul li {
    margin: 0;
}

.menu-block-type-5 > ul li a {
    display: block;
    font-size: 1.125rem;
    line-height: 1.375rem;
    color: #00a1e4;
    padding: 10px 20px;
}

.menu-block-type-5 > ul li a:hover {
    background: #f1f1f1;
}

.menu-block-type-5 > *:not(ul) {
    padding: 0 20px !important;
}

.menu-block-type-5-more {
    display: block;
    color: #414042;
    font-size: 1rem;
    line-height: 1.1875rem;
    padding: 10px 20px;
    margin-bottom: 16px;
}

.menu-block-type-5-more:hover {
    color: #0056b3;
}

.btn.menu-block-type-5-more {
    display: inline-block;
    padding: 0 2px;
    margin-bottom: 0;
}

.menu-block-type-5-more i {
    color: #00a1e4;
    margin-left: 10px;
}

.menu-block-type-6 > ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu-block-type-6 > ul li {
    margin: 0;
}

.menu-block-type-6 > ul li a {
    display: inline-block;
    font-size: 1.125rem;
    line-height: 1.8125rem;
    color: #000;
    font-weight: 500;
    padding: 10px 0;
}

.menu-block-type-7 > h3 {
    font-size: 1.375rem;
    line-height: 1.8125rem;
    color: #414042;
    margin-top: 14px;
    margin-bottom: 4px;
    padding: 10px 0;
}

.menu-block-type-7 > p {
    font-size: 1.375rem;
    line-height: 1.8125rem;
    color: #414042;
    margin: 0;
}

.menu-block-type-7-more {
    display: block;
    color: #414042;
    font-size: 1rem;
    line-height: 1.1875rem;
    padding: 10px 0;
    margin-bottom: 16px;
}

.menu-block-type-7-more i {
    color: #00a1e4;
}

.menu-block-type-8 > h3 {
    font-size: 1.125rem;
    line-height: 1.8125rem;
    color: #414042;
    margin-top: 14px;
    margin-bottom: 4px;
    padding: 10px 0;
}

.menu-block-type-8 > p {
    font-size: 1rem;
    line-height: 1.8125rem;
    color: #414042;
    margin-bottom: 14px;
}

#menu-btn {
    display: flex;
    align-items: center;
}

.desktop-extra-menu-buttons {
    display: none;
}
@media only screen and (min-width: 992px) {
    .desktop-extra-menu-buttons {
        width: 220px;
    }
}
@media only screen and (min-width: 1200px) {
    .desktop-extra-menu-buttons {
        width: 320px/*auto*/;
    }
}
.mobile-extra-menu-buttons {
    display: block;
}

.block-button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    font-size: 1.25rem;
    color: #fff;
}

.block-button-gray {
    background: #414042;
}

.block-button-blue {
    background: #00a1e4;
}

/* ~Close menu button~ */
@media (min-width: 768px) and (max-width: 991px) {
    #main-menu {
        max-width: 420px;
    }
}
@media  (min-width: 768px) {
    body > header {
        height: 80px;
    }
    body > header > .container {
        justify-content: flex-start;
    }
    body > header #menu-btn {
        display: none;
    }
    body.admin-bar > header {
        top: 32px;
    }
    #main-menu {
        background-color: transparent;
        position: static;
        height: 100%;
        width: auto;
        display: flex;
        margin-left: 16px;
        flex-wrap: wrap;
        /* minus 12 because of the first item padding left */
    }
    body.menu-active #main-menu {
        display: flex;
    }
    #main-menu .tab {
        display: flex;
        align-items: center;
    }
    #main-menu .tab > a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        /*font-size: 14.4px;*/
        font-size: 15px;
        line-height: 20px !important;
        padding: 0 12px;
        color: #000;
        background: #fff;
        /* border-bottom: 4px solid transparent; */
    }
    #main-menu .tab > a:after {
        display: none;
    }
    #main-menu .tab .submenu {
        box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.5);
    }
    #main-menu .tab .submenu .back {
        display: none;
    }
    #main-menu .tab .submenu .inner {
        height: auto;
        /* padding: 56px; */
        padding: 0 0 50px 0;
    }
    #main-menu .tab .submenu .inner .featured {
        margin-bottom: 20px;
        padding: 0 20px 0 20px;
    }
    #main-menu .tab .submenu .inner > .container > .row {
        position: relative;
    }
    #main-menu .tab.active > a {
        /* border-color: #1ea0da; */
        -webkit-box-shadow: inset 0px -4px 0px 0px rgba(30, 160, 218, 1);
        -moz-box-shadow: inset 0px -4px 0px 0px rgba(30, 160, 218, 1);
        box-shadow: inset 0px -4px 0px 0px rgba(30, 160, 218, 1);
    }
    #main-menu .tab.active .submenu {
        top: 80px;
        left: 0;
        height: auto;
    }
    #main-menu.submenu-active {
        margin-left: 16px;
    }
    .menu-block-type-1 {
        padding-top: 50px;
    }
    .menu-block-type-2 {
        padding-top: 50px;
    }
    .menu-block-type-3 {
        padding-top: 15px;
    }
    .menu-block-type-4 {
        padding-top: 50px;
    }
    .menu-block-type-5 {
        padding-top: 50px;
    }
    .menu-block-type-6 {
        padding-top: 63px;
    }
    .menu-block-type-7 {
        padding-top: 50px;
    }
    .menu-block-type-1 > ul li a {
        padding-right: 20px;
        padding-left: 20px;
    }
    .header-navigation {
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .desktop-extra-menu-buttons {
        display: flex;
        /*width: 314px;
        flex: 0 0 314px;*/
    }
    header .desktop-extra-menu-buttons > div > a.btn {
        padding: 0 10px;
    }
    .desktop-extra-menu-buttons div {
        /*margin-right: 15px;*/
        width: 100%;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            margin-right: 0;
            gap: 5px;
    }
    .desktop-extra-menu-buttons div:last-of-type {
        margin-right: 0 !important;
    }
    .mobile-extra-menu-buttons {
        display: none;
    }
    /* Close menu button */
    .menu-close {
        position: absolute;
        right: -40px;
        top: 15px;
        width: 32px;
        height: 32px;
    }
    .menu-close:before,
    .menu-close:after {
        position: absolute;
        left: 15px;
        content: " ";
        height: 33px;
        width: 2px;
        background-color: #333;
    }
    .menu-close:before {
        transform: rotate(45deg);
    }
    .menu-close:after {
        transform: rotate(-45deg);
    }
}

/* ~Header~ */

/* Footer */

#footer {
    background: #1a1a1a;
    text-align: left !important;

    font-size: 18px;
    line-height: 2rem;
}

#footer a {
    color: #fff;
    text-align: center;
}

#footer .divider {
    border-bottom: 1px solid #fff;
}

#footer .top {
    padding-top: 60px;
    padding-bottom: 60px;
}

#footer .bottom {
    padding-top: 30px;
    padding-bottom: 30px;
}

#footer .title {
    color: #fff;
}

#footer .hbspt-form label[id^="label-email"] {
    display: none;
}
#footer .hubspot-link__container {
    display: none !important;
}
.subscribe-form .submitted-message {
    /*Hubspot thank you message*/
    float: left;
}

.form-inner {
    clear: both;
}

#footer .stay-informed-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
}

@media only screen and (max-width: 767px) {
    #footer .stay-informed-form {
        display: block;
    }
}
#footer .stay-informed-form .hs-error-msgs {
    color: #ff5555;
    list-style-type: none;
    padding-left: 0;
}
#footer .stay-informed-form .hs-button {
    border-radius: 4px;
    border: #d3d3d3 solid 1px;
    background-color: #1a1a1a;
    color: #d3d3d3;
    text-transform: capitalize;
    font-size: 16px;
    float: left;
    padding: 14px 18px;
    line-height: 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-left: 15px;
}

#footer .stay-informed-form .hs-input {
    border: solid 1px #ccc;
    border-radius: 4px;
    padding: 8px !important;
    float: left;

    line-height: 1.7em;
    background: transparent;
    font-size: 14px;
    color: #fff;
}
#footer .stay-informed-form .hs_email {
    width: calc(100% - 123px);
}

#footer .social-links {
    margin-top: 20px;
    float: left;
    width: 100%;
}

#footer .about img {
    width: 200px;
    margin-bottom: 20px;
}

#footer .bottom-links a {
    font-size: 12px;

    display: block;
}

#footer .bottom-links ul {
    margin: 0;
}
@media only screen and (min-width: 992px) {
    #footer .bottom-links ul {
        position: absolute;
        right: 15px;
        bottom: 0;
        line-height: 0;
    }
}

#footer .bottom-links li {
    margin: 0;
}

#footer .bottom-links li:last-child {
    font-size: 12px;
    padding: 10px 0;
    margin-left: 20px;
}

#footer .bottom-links li:first-child a {
    padding-left: 0;
}

.footer-nav-widget {
    margin-top: 20px;
}

.footer-nav-widget ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.social-links ul {
    margin: 0;
}

.social-links li {
    margin: 0 !important;
    width: 35px;
}

.social-links li:not(:first-child) {
    margin-left: 30px !important;
}

.social-links li a {
    border: 1px solid #fff;
    font-size: 24px;
    display: block;
    border-radius: 50%;
    width: 35px;
    height: 35px;
}

.social-links li a svg {
    width: 22px;
    height: 22px;
    margin-bottom: 3px;
}

.social-links li a i {
    min-width: 24px;
    text-align: center;
}

@media (max-width: 1024px) {
    /*keeping the menu on two lines in footer*/
    li.list-inline-item a {
        font-size: 14px;
    }
}

/* ~Footer~ */

/* All homepage */

#posts-container {
    padding: 40px 0;
}

#posts-container .post {
    margin-bottom: 60px;
}

#posts-container .post .image {
    height: 200px;
    background-position: center;
    background-size: cover;
    margin-bottom: 16px;
}

#posts-container .post .category {
    color: #000;
    font-size: 14px;
}

#posts-container .post .title {
    color: #000;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
}
.exp-post-title {
    font-weight: 700;
}

#posts-container .post .excerpt {
    color: #000;
}

#posts-container .page-numbers {
    font-weight: bold;
    padding: 4px 10px;
}

/* ~All homepage~ */

/* Profile overlay */

body.profile-active {
    overflow: hidden;
}

body.profile-active #page-overlay {
    display: block;
    z-index: 10001;
}

body.profile-active #profile-overlay {
    display: block;
}
body.profile-active #profile-overlay > div {
    height: 100% !important;
    align-items: center;
    display: flex;
}
#profile-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    z-index: 100000;
    background: #fff;
}

#profile-overlay .inner {
    padding: 0 100px;
}

/* ~Profile overlay~ */

/* Fixed CTA */

#fixed-cta {
    display: none;
}

@media (min-width: 768px) {
    #fixed-cta {
        display: block;
        position: fixed;
        left: 0;
        bottom: 20%;
        z-index: 9999;
    }
    #fixed-cta a {
        display: block;
    }
    #fixed-cta a.contact-us {
        background: linear-gradient(90deg, #00a1e4 19.87%, #2ab5ef 98.21%);
        box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.05);
        border-radius: 0px 100px 100px 0px;
        color: #fff;
        padding: 11px 40px 11px 20px;
        display: none;
    }
    #fixed-cta a.imp {
        color: #fff;
        background: linear-gradient(90deg, #00a1e4 19.87%, #2ab5ef 98.21%);
        box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.2);
        padding: 11px 55px 11px 20px;
        margin-right: 20px;
        border-radius: 0px 100px 100px 0px;
        line-height: 32px;
        font-size: 17px;
        position: relative;
    }
    #fixed-cta a.imp span {
        background-image: url("./images/arrow-right2-w.svg");
        background-repeat: no-repeat;
        display: inline-block;
        width: 28px;
        height: 24px;
        margin-left: 16px;
        margin-top: 4px;
        position: absolute;
        background-size: 65%;
        top: calc(50% - 12px);
    }
}

/* ~Fixed CTA~ */

/* Subscribe error message color */

.hs-error-msgs,
.submitted-message {
    color: #77797d;
}

/* ~Subscribe error message color~ */

/*blog */

.exp-post-title a {
    word-wrap: normal !important;
}

@media only screen and (max-width: 767px) {
    .opt-align-left {
        float: left;
    }
}

.opt-line-break {
    display: none;
}

@media only screen and (max-width: 767px) {
    .opt-line-break {
        display: block;
    }
}

.hs-error-msgs {
    font-size: 13px;
    line-height: 1.1;
    color: #ff5555;
    margin-bottom: 5px !important;
}
.hs-error-msg {
    margin-top: 5px !important;
}

/* User Profile Icon &  Overlay */

@media only screen and (max-width: 767px) {
    .header-navigation {
        height: unset !important;
        flex-grow: 2;
        margin-right: 10px;
    }
    .desktop-extra-menu-buttons {
        display: block !important;
        text-align: right;
    }
    .desktop-extra-menu-buttons .btn.btn-primary,
    .desktop-extra-menu-buttons .btn.btn-secondary,
    .desktop-extra-menu-buttons .btn-product-tours,
    .desktop-extra-menu-buttons .hdr-btn {
        display: none;
    }
    #profile-overlay {
        width: 80%;
    }
    #profile-overlay .inner {
        padding: 0 20px;
    }
}

/* Blog */

.blog-box,
.blog-cta {
    border-left: 4px solid rgba(34, 147, 215, 1) !important;
    background-color: rgba(34, 147, 215, 0.1);
    padding: 50px;
    margin-top: 2em;
    font-size: 19px;
}

.blog-cta a {
    color: white;
    background-color: #00a1e4;
    padding: 10px 20px;
    border-radius: 4px;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
}

/* search page */
#search-results-template h1 {
    margin-bottom: 2rem;
}
#search-results-template .search-section {
    margin-bottom: 4rem;
}
#search-results-template .search-section h4 {
    margin-bottom: 10px;
    line-height: 1;
}
#search-results-template .search-section .search-result-category {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1;
    padding-bottom: 5px;
    color: gray;
}
#search-results-template .search-section p {
    font-size: 1rem;
    line-height: 1.35;
    margin-bottom: 2rem;
}
#search-results-template ul {
    padding-left: 0;
}
#search-results-template ul li {
    font-size: 1rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    list-style-type: none;
}
#search-results-template ul li.current_blog a {
    text-decoration: underline;
}
/*  search panel */
#search-panel {
    z-index: 9999;
    background: white;
    border-bottom: 1px solid #d9d9d9;
    top: -80px;
    position: fixed;
    width: 100%;
    padding: 20px 0;
    transition-duration: 0.3s;
}
#search-panel.opened {
    top: 70px;
}
.admin-bar #search-panel.opened {
    top: 116px;
}
@media only screen and (min-width: 768px) {
    #search-panel.opened {
        top: 80px;
    }
    .admin-bar #search-panel.opened {
        top: 112px;
    }
}
#search-panel form {
    margin: 0 auto;
    display: flex;
    max-width: 310px;
}

#search-panel input[type="text"] {
    border: none;
    background-color: #f9f9f9;
    color: #333;
    height: 38px;
    font-size: 1rem;
    padding: 0 10px;
    max-width: 600px;
    border-radius: 4px;
    vertical-align: bottom;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none;
    border: 1px solid #d9d9d9;
    outline:none;
    width: 100%;
}
#search-panel button {
    background-color: #00a1e4;
    border-color: #00a1e4;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    font-size: 14px;
    max-height: 38px;
}
#search-panel .search-closer {
    transform: rotate(45deg);
    font-size: 35px;
    margin-left: 10px;
    color: gray;
    cursor: pointer;
    line-height: 40px;
}
@media only screen and (min-width: 768px) {
    #search-panel form {
        max-width: 700px;
    }
    #search-panel input[type="text"] {
        height: 38px;
    }
    #search-panel button {
        height: 40px;
        padding-left: 30px;
        padding-right: 30px;
    }
}
.search-magnifier {
    fill: rgb(129, 129, 129);
    display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 24px;
        line-height: 0;
        vertical-align: middle;
}
a.search-magnifier svg {
    display: block;
        width: 20px;
        height: 24px;
        max-width: none;
}
@media only screen and (min-width: 1200px) {
    .search-magnifier {
        margin-right: 5px;
    }
}
span.pahtwl--bvmrw--laqwqswa {
    background: #ffff9b;
}

.exp-posts-nav-post-title,
.post_nav_title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
        sans-serif !important;
    font-style: normal;
    font-size: 17px !important;
    text-transform: none;
    line-height: 30px;
    color: #343638;
}
.exp-posts-nav-post-location,
.exp-read-more-underlined,
.pages_list a,
.h9 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
        sans-serif !important;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    line-height: 14px;
    color: rgba(0, 0, 0, 0.45);
}
.exp-posts-nav {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}
#btn-use-free {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    height: 40px;
    font-size: 16px;
    z-index: 9999;
    background: #01a0e4;
    box-shadow: 0 4px 10px 2px rgb(0 0 0 / 40%);
}
@media only screen and (min-width: 768px) {
    #btn-use-free {
        display: none;
    }
}

strong {
    font-weight: 700 !important;
}
.wp-embedded-content {
    max-width: 100%;
}

/** FONT **/
@font-face {
    font-family: "Lato";
    src: url("assets/fonts/lato-v17-latin/lato-v17-latin-regular.eot");
    src: url("assets/fonts/lato-v17-latin/lato-v17-latin-regular.eot?#iefix") format("eot"),
        url("assets/fonts/lato-v17-latin/lato-v17-latin-regular.woff") format("woff"),
        url("assets/fonts/lato-v17-latin/lato-v17-latin-regular.woff2") format("woff2"),
        url("assets/fonts/lato-v17-latin/lato-v17-latin-regular.ttf") format("truetype"),
        url("assets/fonts/lato-v17-latin/lato-v17-latin-regular.svg") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Lato";
    src: url("assets/fonts/lato-v17-latin/lato-v17-latin-italic.eot");
    src: url("assets/fonts/lato-v17-latin/lato-v17-latin-italic.eot?#iefix") format("eot"),
        url("assets/fonts/lato-v17-latin/lato-v17-latin-italic.woff") format("woff"),
        url("assets/fonts/lato-v17-latin/lato-v17-latin-italic.woff2") format("woff2"),
        url("assets/fonts/lato-v17-latin/lato-v17-latin-italic.ttf") format("truetype"),
        url("assets/fonts/lato-v17-latin/lato-v17-latin-italic.svg") format("svg");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "Lato";
    src: url("assets/fonts/lato-v17-latin/lato-v17-latin-700.eot");
    src: url("assets/fonts/lato-v17-latin/lato-v17-latin-700.eot?#iefix") format("eot"),
        url("assets/fonts/lato-v17-latin/lato-v17-latin-700.woff") format("woff"),
        url("assets/fonts/lato-v17-latin/lato-v17-latin-700.woff2") format("woff2"),
        url("assets/fonts/lato-v17-latin/lato-v17-latin-700.ttf") format("truetype"),
        url("assets/fonts/lato-v17-latin/lato-v17-latin-700.svg") format("svg");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Lato";
    src: url("assets/fonts/lato-v17-latin/lato-v17-latin-700italic.eot");
    src: url("assets/fonts/lato-v17-latin/lato-v17-latin-700italic.eot?#iefix") format("eot"),
        url("assets/fonts/lato-v17-latin/lato-v17-latin-700italic.woff") format("woff"),
        url("assets/fonts/lato-v17-latin/lato-v17-latin-700italic.woff2") format("woff2"),
        url("assets/fonts/lato-v17-latin/lato-v17-latin-700italic.ttf") format("truetype"),
        url("assets/fonts/lato-v17-latin/lato-v17-latin-700italic.svg") format("svg");
    font-weight: 700;
    font-style: italic;
}

/* 404 not found */
.error-404 {
    padding: 70px 20px;
    background: white;
}
body.error404 .error-404 p {
    font-size: 22px;
    margin-bottom: 0;
    color: #000;
    text-align: center;
}

body.error404 .error-404 ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    margin-top: 30px;
    text-align: center;
}
body.error404 .error-404 ul li a {
    color: #2293d7;
    text-decoration: none;
    background-color: transparent;
}

/* ~404 not found~ */
@media (min-width: 768px) {
    /* 404 not found */
    body.error404 .error-404 ul {
        text-align: center;
    }
    body.error404 .error-404 ul li {
        margin: 0;
        display: inline-block;
    }
    body.error404 .error-404 ul li a {
        padding: 3px 12px;
        border-right: 1px solid #000;
    }
    body.error404 .error-404 ul li:last-child a {
        border-right: none;
    }
    /* ~404 not found~ */
}
.btn-cookies,
.btn-cookies:hover {
    background-color: #ffffff !important;
    color: #00a1e4 !important;
    border-color: #00a1e4 !important;
}
#opt-cookie-notice p {
    max-width: 530px;
    margin-left: auto;
    margin-right: auto;
}

.footer-menu-container {
    width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .col-footer {
        flex: 50%;
        flex-grow: 1;
    }
    .footer-menu-container {
        display: flex;
        flex-wrap: wrap;
    }
}
@media only screen and (min-width: 992px) {
    .col-footer {
        flex: 20%;
        flex-grow: 1;
    }
    .footer-menu-container {
        display: flex;
    }
}
.footer-menu-single {
    text-align: left;
}
.footer-menu-single ul {
    list-style-type: none;
    padding-left: 0;
}
.footer-menu-single ul li {
    font-size: 15px;
    margin-bottom: 0;
}
.footer-menu-single ul li:first-child {
    font-size: 20px;
    font-weight: 700;
}
.privacy-list {
    text-align: center;
    color: #ffffff;
}
.social-links-title {
    color: #ffffff;
}
.social-links-subtitle {
    font-size: 15px;
}
.about p {
    font-size: 15px;
    line-height: 1.4;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.about {
    text-align: center;
}

#footer .about img {
    margin-bottom: 10px;
    margin-left:-7px;
}
#footer .title {
    font-size: 18px;
    line-height: 56px;
    margin-bottom: 10px;
    text-align: center;
}
.footer-container-right {
    column-gap: 40px;
}
.bottom-social-links {
    text-align: center;
    margin-top: 20px;
}
#footer {
    padding: 0 0 30px 0 !important;
}
@media only screen and (min-width: 992px) {
    .about {
        text-align: left;
    }
    .about p {
        margin-left: 0;
        max-width: 330px;
    }
    #footer .title {
        text-align: left;
    }
    .bottom-social-links {
        text-align: left;
    }
    #footer .stay-informed-form {
        max-width: 100%;
        margin-left: 0;
        padding-right: 40px;
    }

    .privacy-list {
        text-align: right;
    }
    #footer .stay-informed-form .hs-button {
        padding: 14px 50px;
    }
    #footer .stay-informed-form .hs_email {
        width: calc(100% - 187px);
    }
    .col-lg-40 {
        flex: 0 0 40%;
    }
    .col-lg-60 {
        flex: 0 0 60%;
    }
    #footer .col-lg-60 {
        overflow: hidden;
    }
}

.menu-block-smalltitle {
    text-transform: uppercase;
    color: #9c9c9c;
    font-size: 12px;
    font-weight: 700;
}
.learning-right-menu .menu-block-type-3-content {
    padding: 10px 18px 14px 18px;
}
.learning-right-menu .menu-block-type-3-content > ul li a {
    padding: 5px 14px;
}
.learning-right-menu .menu-block-type-3-content > ul li {
    margin-bottom: 0;
}
.learning-right-menu .menu-block-type-3-content a .menu-block-type-3-title {
    padding: 0;
}
.footer-menu-single ul li {
    line-height: 1.2;
    margin-bottom: 12px;
}
#footer-email-form .form-content {
    display: flex;
    justify-content: center;
    position: relative;
    width: 307px;
    margin-left: auto;
    margin-right: auto;
}
#footer-email-form .form-content input[type="email"] {
    width: 200px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 7px;
    height: 44px;
    background: transparent;
    color:#ffffff;
}
#footer-email-form .form-content input[type="submit"] {
    width: 100px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    padding: 5px 14px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    height: 44px;
    text-transform: capitalize;
    background: transparent;
    cursor: pointer;
}
#footer-email-form .form-content input[type="email"]::placeholder {
    color: rgb(117, 117, 117);
}
#footer-email-form .form-content .wpcf7-spinner {
    position: absolute;
    left: 150px;
    top: 10px;
}
#footer-email-form .form-response .wpcf7-response-output{
    color:#ffffff;
  
    text-align: center;
    margin:2em 0;
    font-size: 14px;   
    max-width: 307px;
    margin-left: auto;
    margin-right: auto;
}
.subscribe-form .form-response .wpcf7-response-output{
    border: 2px solid #46b450;
}
@media only screen and (min-width: 768px) {
    #footer-email-form .form-response .wpcf7-response-output{
        max-width: 615px;
    }
    #footer-email-form .form-content {
        width: 615px;
    }
    #footer-email-form .form-content input[type="email"] {
        width: 400px;
        margin-right: 15px;
    }
    #footer-email-form .form-content input[type="submit"] {
        width: 200px;
        padding: 5px;
        
    }
    #footer-email-form .form-content .wpcf7-spinner {
        left: 345px;
    }
}
@media only screen and (min-width: 992px) {
    #footer-email-form .form-response .wpcf7-response-output{
       width:560px;
    }
    #footer-email-form .form-content {
        justify-content: left;
        margin-left: 0;
    }
    #footer-email-form .form-content input[type="submit"] {
        width: 145px;
    }
}
@media only screen and (min-width: 1200px) {  
    #footer-email-form .form-content input[type="submit"] {
        width: 200px;
    }
    #footer-email-form .form-response .wpcf7-response-output{
        width:auto;
        margin-left: 0;
     }
}
.blog-form-title,
.blog-form-footer {
    display: none;
}
.blog-contact-form .blog-form-title {
    display: block;
}
.blog-contact-form .blog-form-footer {
    display: block;
}
.form-content .wpcf7-not-valid-tip{
    font-size: 12px;
}

/* edits 2025 */
/*
.menu-why-opt > ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 40px;
}

.menu-why-opt > ul li a {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-decoration: none;
}

.menu-why-opt .menu-icon {
  min-width: 24px;
  height: 24px;
  margin-top: 3px;
  background-size: contain;
  background-repeat: no-repeat;
}

.menu-why-opt .menu-title {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #000;
}

.menu-why-opt .menu-desc {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  color: #666;
  font-weight: normal;
}
*/

/* Menu grid layout */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 40px;
    list-style: none;
    margin: 0 auto !important;
    width:60%;
}

/* Menu item styling */
.menu-grid li a {
    display: grid !important;
    grid-template-columns: 24px 1fr !important;
    gap: 15px;
    padding: 20px;
    text-decoration: none;
    align-items: flex-start;
}

.menu-grid li a:hover {
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
}

/* Icon styling */
.menu-grid .menu-icon {
    width: 24px;
    height: 24px;
    margin-top: 0;
    flex: none;
}

.menu-grid .menu-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display:block;
}

/* Content wrapper */

.menu-grid .menu-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: none;
}

/* Title styling */
.menu-grid .menu-title {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    line-height: 1.2;
}

/* Description styling */

.menu-grid .menu-desc {
    font-size: 14px;
    line-height: 1.4;
    color: #666;
    opacity:.5;
}

/* Responsive adjustments */
@media screen and (max-width: 767px) {
    .menu-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 15px;
    }
    
    .menu-grid li a {
        padding: 10px;
    }
}

/* Force first 3 items into column 1, next 2 into column 2 */
.solutions-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 40px;
  list-style: none;
  margin: 0;
}

/* Place each item in the correct row/column */
.solutions-menu-grid li:nth-child(1) { grid-row: 1; grid-column: 1; }
.solutions-menu-grid li:nth-child(2) { grid-row: 1; grid-column: 2; }
.solutions-menu-grid li:nth-child(3) { grid-row: 2; grid-column: 1; }
.solutions-menu-grid li:nth-child(4) { grid-row: 2; grid-column: 2; }
.solutions-menu-grid li:nth-child(5) { grid-row: 3; grid-column: 1; }


.resources-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 40px;
  list-style: none;
  margin: 0;
}
.resources-menu-grid li:nth-child(1) { grid-row: 1; grid-column: 1; }
.resources-menu-grid li:nth-child(2) { grid-row: 2; grid-column: 1; }
.resources-menu-grid li:nth-child(3) { grid-row: 3; grid-column: 1; }
.resources-menu-grid li:nth-child(4) { grid-row: 1; grid-column: 2; }
.resources-menu-grid li:nth-child(5) { grid-row: 2; grid-column: 2; }


/* SVG Sprite Icon CSS for navigation icons */
svg.icon-menu-nav {
  display: inline-block;
  width: 24px;
  height: 24px;
  min-width: 0;
  min-height: 0;
  max-width: none;
  max-height: none;
  vertical-align: middle;
  background: none;
  fill: currentColor;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
}

/* Size modifiers */
.icon-menu-nav-sm { width: 20px !important; height: 20px !important; }
.icon-menu-nav-md { width: 24px !important; height: 24px !important; }
.icon-menu-nav-lg { width: 32px !important; height: 32px !important; }




