/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.5.4
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/
/* Add your custom styles here... */ 
:root {
  --primaryBlue: #0c28f6;
  --primaryBlueHover: #00b4eb;
  --primaryDarkBlue: #0A3F62;
  --DarkClr: #2D3958;
  --DarkerClr: #4C5A80;
  --textClr: #8B90AA;
  --accentClr: #D6DF23;
  
  --white: #fff;
  --black: #000000;
  
  --linkTransition: all 0.3s ease;
}

/* # The font stack */
h1 {
/*text-align: left;
font: normal normal bold 48px/61px Poppins;
letter-spacing: -0.96px;
color: #2D3958;*/
}
h2 {
/*text-align: left;
font: normal normal bold 48px/61px Poppins;
letter-spacing: -0.96px;*/
font-weight: 700;
color: #2D3958;
}
h3 {
/*text-align: left;
font: normal normal 600 31px/40px Poppins;
letter-spacing: -0.62px;
color: #4C5A80;*/
}
h4 {
/*text-align: left;
font: normal normal 600 16px/30px Poppins;
letter-spacing: -0.32px;
color: #4C5A80;*/
font-weight: 700;
}
h5 {}
h6 {}
p, li {
/*text-align: left;
font: normal normal medium 17px/27px DM Sans;
letter-spacing: -0.34px;
color: #8B90AA;*/
}
/*.fl-builder-content .fl-rich-text a,
.fl-builder-content .fl-post-content a {
  text-decoration:underline;
}
.fl-builder-content .fl-rich-text a:hover,
.fl-builder-content .fl-post-content a:hover {
  text-decoration:none;
}*/
.fl-page a {
  -webkit-transition: var(--linkTransition);
  -moz-transition: var(--linkTransition);
  -ms-transition: var(--linkTransition);
  -o-transition: var(--linkTransition);
  transition: var(--linkTransition);
}
.fl-page a:hover,
.fl-page a:focus {
  text-decoration: none;
}
.fl-button-has-icon a.fl-button .fl-button-icon {
  -webkit-transition: transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out;
  -ms-transition: transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.fl-button-has-icon a.fl-button:hover .fl-button-icon,
.fl-button-has-icon a.fl-button:focus .fl-button-icon {
  -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
    transform: translateX(4px);
}
.fl-button-has-icon a.fl-button:hover .fl-button-icon.fl-button-icon-before,
.fl-button-has-icon a.fl-button:focus .fl-button-icon.fl-button-icon-before {
  -webkit-transform: translateX(-4px);
    -moz-transform: translateX(-4px);
    -ms-transform: translateX(-4px);
    -o-transform: translateX(-4px);
    transform: translateX(-4px);
}
.fl-module-icon-group .fl-icon-group,
.fl-module-icon-group .fl-icon-group * {
  transition: var(--linkTransition);
}
.fl-builder-content .fl-rich-text strong {
    font-weight: 700 !important;
}

/* Header + Navigation */
.fl-page-header.fl-page-header-primary {
  box-shadow: 0px 40px 50px #9FABD730; /* set to fixed header */
}
@media (min-width: 1100px){/* full width header */
  .fl-full-width .fl-page-header-container.container {
    max-width: 98%;
  }
}
 /* top bar */
  .fl-page-bar {
    border:none;
  }
  .fl-page-bar .fl-page-bar-text {
    opacity:0.93;
  }
  .fl-page-bar .fl-page-bar-text .tel,
  .fl-page-bar .fl-page-bar-text .login {
    padding: 0 10px;
    white-space: nowrap;
  }
  .fl-page-bar .fl-page-bar-text .tel.canada-only {
    display:none;
  }
  .fl-page-bar .fl-page-bar-text .login {
    font-weight:700;
  }
  .fl-page-bar .fl-page-bar-text .login a {
    background: var(--primaryBlueHover);
    padding: 5px 15px;
    border-radius: 30px;
    color: white;
  }
  .fl-page-bar .fl-page-bar-text .login a i {
    color: white;
    margin-left:5px;
  }
  .fl-page-bar .fl-page-bar-text .login a:hover,
  .fl-page-bar .fl-page-bar-text .login a:hover i,
  .fl-page-bar .fl-page-bar-text .login a:focus,
  .fl-page-bar .fl-page-bar-text .login a:focus i {
    color: white;
  }
  .fl-page-bar .fl-page-bar-text a i {
    -webkit-transition: transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out;
    -ms-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
  }
  .fl-page-bar .fl-page-bar-text a:hover i,
  .fl-page-bar .fl-page-bar-text a:focus i {
    -webkit-transform: translateX(4px);
      -moz-transform: translateX(4px);
      -ms-transform: translateX(4px);
      -o-transform: translateX(4px);
      transform: translateX(4px);
  }
  @media (min-width: 992px) {
    .fl-page-bar .fl-page-bar-container .text-center {
      text-align:right !important;
    }
  }
  @media (max-width:670px) {
    .fl-page-bar .fl-page-bar-text .login a {
      margin-top: 10px;
      display: inline-block;
    }
  }

  .fl-page-bar.unsticky {
    -webkit-animation: smoothScroll 0.1s forwards;
      -moz-animation: smoothScroll 0.1s forwards;
      -ms-animation: smoothScroll 0.1s forwards;
      -o-animation: smoothScroll 0.1s forwards;
    animation: smoothScroll 0.1s forwards;
  }
  @keyframes smoothScroll {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-40px);
    }
  }
  header.fl-page-header {
    -webkit-transition: all 0.1s ease-out;
    -moz-transition: all 0.1s ease-out;
    -ms-transition: all 0.1s ease-out;
    -o-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
  }

.fl-page-nav-right .fl-page-header-wrap {
  border-bottom: none;
}
.fl-page-nav-right.fl-page-header-fixed, .fl-page-header-fixed {
  background-color: rgba(255,255,255,0.98);
}
.fl-page-header-wrap .fl-page-header-logo img {/* LOGO SIZE */
  width:235px;
}
.fl-page-nav-wrap .navbar-nav li>a {
  -webkit-transition: var(--linkTransition);
  -moz-transition: var(--linkTransition);
  -ms-transition: var(--linkTransition);
  -o-transition: var(--linkTransition);
  transition: var(--linkTransition);
}
.fl-page-nav-wrap .navbar-nav li>a:hover,
.fl-page-nav-wrap .navbar-nav li>a:focus{
  -webkit-transition: var(--linkTransition);
  -moz-transition: var(--linkTransition);
  -ms-transition: var(--linkTransition);
  -o-transition: var(--linkTransition);
  transition: var(--linkTransition);
}
:not(.sub-menu) > .nav-item:last-child .nav-link {
  background: var(--primaryBlue) 0% 0% no-repeat;
  border: none;
  border-radius: 26px;
  text-align: center;
  padding: 15px 36px;
  color: var(--white) !important;
  line-height: 1;
  margin: 0 0 0 10px;
  transition: var(--linkTransition);
  display: flex;
  align-items: center;
}
:not(.sub-menu) > .nav-item:last-child .nav-link:hover,
:not(.sub-menu) > .nav-item:last-child .nav-link:focus,
:not(.sub-menu) > .nav-item:last-child.fl-sub-menu-open .nav-link {
  background-color: var(--primaryBlueHover);
  border: none;
  color: var(--white);
}

.fl-page-nav-wrap .fl-page-nav ul.sub-menu {
  border-top:none;
  padding: 15px 5px;
  width:260px;
}
.fl-page-nav-wrap .fl-page-nav ul.sub-menu li a,
.fl-page-nav-wrap .fl-page-nav ul.sub-menu li.current-menu-item a {
  font-size:16px;
  line-height:1;
  color: var(--naturalDarkTeak);
  display: flex;
    align-items: center;
    transition: var(--linkTransition);
    -webkit-transition: transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out;
    -ms-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
.fl-page-nav-wrap .fl-page-nav ul.sub-menu li a:hover {
  color: var(--primaryBlueHover);
  -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
    transform: translateX(4px);
}
.fl-page-nav-wrap .fl-page-nav ul.sub-menu li.current-menu-item a {
  color: var(--primaryBlueHover);
}
.fl-page-nav .navbar-toggle .sr-only {
  display:none;
}
.fl-page-nav .navbar-toggle:focus {
  outline:none;
}
/*.fl-page-nav .navbar-toggle:after {
  content:"MENU";
  font-family: "DM Sans",sans-serif;
  font-size:14px;
  line-height:1;
  position: absolute;
  right: 34px;
  top: 9px;
  -webkit-animation: animatedTxt 2s 1; 
  -moz-animation:    animatedTxt 2s 1; 
  -o-animation:      animatedTxt 2s 1; 
  animation:         animatedTxt 2s 1; 
}
  @keyframes animatedTxt {
    0% {opacity: 0;}
    100% {opacity: 1;}
  }*/
.fl-page-nav .navbar-toggle i,
.fl-page-nav .navbar-toggle:before {
  transition: var(--linkTransition);
}
.fl-page-nav .fl-page-nav-collapse .fl-button-close {
  text-align: right !important;
}
.fl-page-nav .fl-page-nav-collapse .fl-button-close .fl-offcanvas-close {
  background: var(--primaryBlue);
  border-radius: 50%;
  margin:5px;
}
.fl-page-nav .fl-page-nav-collapse .fl-button-close .fl-offcanvas-close:hover,
.fl-page-nav .fl-page-nav-collapse .fl-button-close .fl-offcanvas-close:focus {
  background: var(--primaryBlueHover);
}
.fl-page-nav .fl-page-nav-collapse .fl-button-close .fl-offcanvas-close i {
  color: var(--white) !important;
}
.fl-page-nav-toggle-icon.fl-page-nav-toggle-visible-medium-mobile .fl-page-nav-collapse ul.navbar-nav>li,
.fl-page-nav-toggle-icon.fl-page-nav-toggle-visible-medium-mobile .fl-page-nav ul.sub-menu li {
  border:none;
}

@media (max-width: 1150px) and (min-width: 992px) {/* Fix for dropping Nav */
  .fl-page-header .fl-page-header-row {
    flex-direction: column;
  }
  .fl-page-header .fl-page-header-row .col-lg-8.fl-page-nav-col {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  .fl-page-header .fl-page-header-row .col-lg-8.fl-page-nav-col .fl-page-nav-collapse {
    justify-content: center;
  }
  .fl-page-bar .fl-page-bar-container .text-center {
    text-align:center !important;
  }
}

@media (min-width: 992px) {
  .fl-full-width .fl-page-header-container.container {
    padding-top:11px;
    padding-bottom:6px;
  }
  .fl-page-nav-right .fl-page-header-wrap .col-lg-4 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .fl-page-nav-right .fl-page-header-wrap .col-lg-8 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
}
@media (max-width: 991px){
  :not(.sub-menu) > .nav-item:last-child .nav-link {
    margin:15px;
    justify-content: center;
    color:var(--white) !important;
  }
  .fl-page-header-wrap .fl-page-header-logo img {
    width: 135px;
  }
  .fl-full-width .fl-page-header-container.container {
    padding-top:10px;
    padding-bottom:10px;
  }
  .fl-page-nav-toggle-icon.fl-page-nav-toggle-visible-medium-mobile.fl-page-nav-right .fl-page-header-row .fl-page-header-logo {
    padding-bottom: 10px;
  }
  .fl-page-nav-toggle-icon.fl-page-nav-toggle-visible-medium-mobile .fl-page-nav .navbar-toggle {
    top: 7px;
  }
}

/* footer */
.fl-page-footer {
  border-top:none;
}
#footer--footer .fl-list-item .fl-list-item-content-text a:hover,
#footer--footer .fl-list-item .fl-list-item-content-text a:focus {
  color: var(--primaryBlue);
}

/* background blob */
.fl-page-content {
  overflow: hidden;
}
section.bg-blob,
section.bg-blob_s {
  background-image: url();
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: auto;
}
section.bg-blob .fl-row-content-wrap {
  background-image:none;
  background: transparent linear-gradient(180deg, #FFFFFF00 70%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
}
 
  #section--hero.bg-blob {
    background-image: url(../svg/blob-blue-home-hero.svg);
    background-position: right top;
  }
  #section--why.bg-blob {
    background-image: url(../svg/blob-yellow.svg);
    background-position: -500px top;
  }
  #section--how.bg-blob {
    background-image: url(../svg/blob-blue-home-how.svg);
    background-position: right top;
  }
  #section--cta.bg-blob {
    background-image: url(../svg/blob-yellow-cta.svg);
    background-position: -192px top;
  }
  #section--comapny-hero.bg-blob {
    background-image: url(../svg/blob-blue-company-hero.svg);
    background-position: right top;
  }
  #section--company-resellers.bg-blob {
    background-image: url(../svg/blob-yellow-company-resellers.svg);
    background-position: -10px -66px;
  }
  #section--why-hero.bg-blob {
    background-image: url(../svg/blob-blue-why-hero.svg);
    background-position: right top;
  }
  #section--why-sec_yellow1.bg-blob {
    background-image: url(../svg/blob-yellow-why-sec1.svg);
    background-position: -85px -42px;
  } 
  #section--why-sec_yellow2.bg-blob {
    background-image: url(../svg/blob-yellow-why-sec2.svg);
    background-position: left 382px;
  }
  #section--why-sec_blue1.bg-blob {
    background-image: url(../svg/blob-blue-why-sec1.svg);
    background-position: right 120px;
  }
  #section--reseller-hero.bg-blob {
    background-image: url(../svg/blob-blue-reseller-hero.svg);
    background-position: -242px top;
  }
  #section--reseller-features.bg-blob {
    background-image: url(../svg/blob-yellow-reseller-features.svg);
    background-position: -100px 400px;
  }
  #section--cta-partner.bg-blob {
    background-image: url(../svg/blob-blue-cta-partner.svg);
    background-position: left 200px;
    background-size: cover;
  }
  #section--features-hero.bg-blob {
    background-image: url(../svg/blob-yellow-features-hero.svg);
    background-position: right top;
  }
  #section--features1.bg-blob {
    background-image: url(../svg/blob-blue-features1.svg);
    background-position: -150px 100px;
  }
  #section--features2.bg-blob {
    background-image: url(../svg/blob-yellow-features2.svg);
    background-position: -50px top;
  }
  #section--cta-features.bg-blob {
    background-image: url(../svg/blob-blue-features-cta.svg);
    background-position: left top;
  }
  #section--blogs.bg-blob {
    background-image: url(../svg/blob-blue-blog.svg);
    background-position: right 100px;
  }
  #section--resources.bg-blob,
  #section--faqs.bg-blob {
    background-image: url(../svg/blob-blue-blog.svg), url(../svg/blob-yellow-blog.svg), url(../svg/blob-blue2-blog.svg), url(../svg/blob-yellow2-blog.svg);
    background-position: right 100px, left 1500px, right 3000px, left 4700px;
  }
  #section--resources.bg-blob .fl-row-content-wrap,
  #section--leadership.bg-blob .fl-row-content-wrap,
  #section--getstarted-quote.bg-blob .fl-row-content-wrap,
  #section--banner-image.bg-blob .fl-row-content-wrap,
  #section--single-page.bg-blob .fl-row-content-wrap,
  #section--404.bg-blob .fl-row-content-wrap {
    background:none;
  }
  #section--leadership.bg-blob {
    background-image: url(../svg/blob-blue-leadership.svg), url(../svg/blob-yellow-leadership.svg);
    background-position: right top, left 1870px;
  }
  #section--getstarted-hero.bg-blob {
    background-image: url(../svg/blob-blue-gestarted-hero.svg);
    background-position: right top;
  }
  #section--getstarted-quote.bg-blob {
    background-image: url(../svg/blob-yellow-getstarted-quote.svg);
    background-position: left top;
  }
  #section--contact-hero.bg-blob {
    background-image: url(../svg/blob-blue-contact-hero.svg);
    background-position: right top;
  }
  #section--banner-image.bg-blob {
    background-image: url(../svg/blob-yellow-banner-image.svg);
    background-position: left top;
  }
  #section--single-page.bg-blob {
    background-image: url(../svg/blob-blue-blog.svg), url(../svg/blob-yellow-banner-image.svg);
    background-position: right 100px, left bottom;
  }
  #section--single-page.bg-blob_s {
    background-image: url(../svg/blob-yellow-banner-image.svg);
    background-position: left bottom;
  }
  #section--404.bg-blob {
    background-image: url(../svg/blob-yellow-cta.svg);
    background-position: -200px top;
  }
  #section--login.bg-blob {
    background-image: url(../svg/blob-blue-login-hero.svg);
    background-position: right top;
  }
  #section--why-university.bg-blob {
    background-image: url(../svg/blob-yellow-why-university.svg);
    background-position: right top;
  }
  #section--features.bg-blob {
    background-image: url(../svg/blob-yellow.svg);
    background-position: 20% top;
  }
  #section--guides-hero.bg-blob {
    background-image: url(../svg/blob-yellow-features-hero.svg);
    background-position: right top;
  }
  #section--guides1.bg-blob {
    background-image: url(../svg/blob-blue-features1.svg);
    background-position: -150px 100px;
  }
  #section--guides1.bg-blob .fl-row-content-wrap {
    background: transparent linear-gradient(180deg, #FFFFFF00 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  }
  #section--guides2.bg-blob {
    background-image: url(../svg/blob-yellow-guide_sec.svg);
    background-position: right top;
  }
  #section--guides3.bg-blob {
    background-image: url(../svg/blob-blue-guide.svg);
    background-position: left 300px;
  }
  #section--guides4.bg-blob {
    background-image: url(../svg/blob-yellow-guide_sec.svg);
    background-position: right top;
  }


/* BB Module with Custom class */
.fl-heading u {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-color: var(--accentClr);
  text-decoration-thickness: 10px;
  text-decoration-skip-ink: none;
}
.fl-rich-text u,
.tile-col .fl-rich-text strong {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-color: rgba(214, 223, 35, 0.44);
  text-decoration-thickness: 4px;
  text-decoration-skip-ink: none;
}
.fl-heading .skyblue {
  color: var(--primaryBlueHover);
}
.fl-col.flex-align-bottom .fl-col-content .fl-col-group {
  margin-top:auto;
}
.fl-module-list.list-icon-check ul.fl-list .fl-list-item {
  background: url(../svg/checkmark-icon.svg) no-repeat left top;
  padding-left: 48px;
    padding-top: 4px;
}
.fl-module-list.list-icon-check .fl-list-item-content ul {
  list-style:none;
  margin: 13px 0 0 13px;
  padding:0;
}
.fl-module-list.list-icon-check .fl-list-item-content ul li {
  background: url(../svg/list-2nd-level-icon.svg) no-repeat left 6px;
  padding-left: 27px;
  padding-bottom: 4px;
}
.fl-module-list.list-icon-check .fl-list-item-content ul li ul li {
  background: url(../svg/list-3rd-level-icon.svg) no-repeat left 6px;
  padding-left: 27px;
  padding-bottom: 4px;
}
.fl-module-list.list-icon-check ul.fl-list .fl-list-item .fl-list-item-heading-icon.fl-list-item-heading-left {
  display:none;
}
.fl-module.list-style-dot .fl-rich-text ul,
.fl-module.list-style-dotS .fl-rich-text ul {
  list-style:none;
  margin: 0;
  padding:0;
}
.fl-module.list-style-dot .fl-rich-text ul li {
  padding: 0 0 12px 24px;
    background: url(../svg/list-style-dot-icon.svg) no-repeat 0 5px;
}
.fl-module.list-style-dotS .fl-rich-text ul li {
  padding: 0 0 12px 18px;
    background: url(../svg/list-style-dot_s-icon.svg) no-repeat 0 10px;
}
.fl-module.img-dropshadow img,
.fl-module.img-dropshadow .fl-video.fl-embed-video {
  -webkit-filter: drop-shadow( 40px 80px 99px rgba(76, 90, 128, 0.31));
  -moz-filter: drop-shadow( 40px 80px 99px rgba(76, 90, 128, 0.31));
  -o-filter: drop-shadow( 40px 80px 99px rgba(76, 90, 128, 0.31));
  filter: drop-shadow( 40px 80px 99px rgba(76, 90, 128, 0.31));
    will-change: opacity;
}
.fl-post-grid-post .fl-post-grid-image {
  height:200px;
  overflow:hidden;
}
.fl-post-grid-post .fl-post-grid-image img {
  height: 200px !important;
  object-fit: cover;
  border-top-right-radius: 26px;
  border-top-left-radius: 26px;
}
.fl-module.data-sheets-tile .fl-post-grid-post .fl-post-grid-image {
  height:300px;
}
.fl-module.data-sheets-tile .fl-post-grid-post .fl-post-grid-image img {
  height: 300px !important;
}
.fl-module.thumb-fullwidth .fl-post-grid-post .fl-post-grid-image {
  display: flex;
    justify-content: center;
    align-items: center;
}
.fl-module.thumb-fullwidth .fl-post-grid-post .fl-post-grid-image img {
  height: auto !important;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.fl-post-grid-post {
  display: flex;
  flex-direction: column;
}
.fl-post-grid-post .fl-post-grid-text {
  -ms-flex: 1 1 auto!important;
    flex: 1 1 auto!important;
    margin-bottom: 45px;
    position: relative;
}
.fl-post-grid-post .fl-post-grid-content .fl-post-grid-more {
  position: absolute;
  bottom: -15px;
  font-weight:bold;
}
.fl-post-grid-post .fl-post-grid-content .fl-post-grid-more i,
.fl-post-carousel-post .fl-post-carousel-text .fl-post-carousel-more i,
.fl-module-content .fl-rich-text i {
  -webkit-transition: transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out;
  -ms-transition: transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.fl-post-grid-post .fl-post-grid-content .fl-post-grid-more:hover i,
.fl-post-grid-post .fl-post-grid-content .fl-post-grid-more:focus i,
.fl-post-carousel-post .fl-post-carousel-text .fl-post-carousel-more:hover i,
.fl-post-carousel-post .fl-post-carousel-text .fl-post-carousel-more:focus i,
.fl-module-content .fl-rich-text a:hover i,
.fl-module-content .fl-rich-text a:focus i {
  -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
    transform: translateX(4px);
}
.fl-post-grid-post {
  position: relative;
  top: 0;
  transition: 0.3s;
}
.fl-post-grid-post:hover {
  top: 5px;
  transition: 0.3s;
}
.fl-post-carousel-post {
  border-radius: 36px;
  display: flex;
  flex-direction: column;
}
.fl-post-carousel-post .fl-post-carousel-image {
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  overflow: hidden;
}
.fl-post-carousel-post .fl-post-carousel-text {
  display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.fl-post-carousel-post .fl-post-carousel-text .fl-post-carousel-content {
  margin-top: auto;
}
.fl-post-carousel .bx-wrapper .bx-pager.bx-default-pager a {
  background: var(--textClr);
}
.fl-post-carousel .bx-wrapper .bx-pager.bx-default-pager a:hover,
.fl-post-carousel .bx-wrapper .bx-pager.bx-default-pager a.active {
  background: var(--primaryBlueHover);
}
.news-posts .fl-post-grid-post:hover {
  top: 0;
}
.news-posts .fl-post-grid-post .fl-post-grid-text .fl-post-grid-meta {
  font-size: 16px;
}
.news-posts .fl-post-grid-post .fl-post-grid-text {
  display:flex;
  flex-direction: column;
}
.news-posts .fl-post-grid-post .fl-post-grid-text .fl-post-grid-title {
  order:2;
}
.news-posts .fl-post-grid-post .fl-post-grid-text .fl-post-grid-meta {
  order:1;
}

.fl-builder-pagination .page-numbers li .page-numbers {
  border:none;
  background: transparent;
  color: var(--textClr);
}
.fl-builder-pagination .page-numbers li .page-numbers:hover,
.fl-builder-pagination .page-numbers li .page-numbers:focus {
  background: transparent;
  color: var(--primaryBlueHover);
}
.fl-builder-pagination .page-numbers li .page-numbers.current {
  color: var(--DarkClr);
}
.fl-rich-text .badge-primary {
  font-size:24px;
  color: var(--primaryDarkBlue);
  font-family: "Poppins",sans-serif;
  font-weight: 600;
  background: var(--accentClr);
  border-radius: 25px;
  padding: 3px 15px;
  display: inline-block;
}
.step-col .fl-rich-text .badge-primary {
  border-radius: 6px;
}
.step-start-dott {
  background: var(--primaryBlueHover) 0% 0% no-repeat padding-box;
  border: 1px solid #707070;
  border-radius: 50%;
  width:13px;
  height:13px;
  margin: 0 auto;
  position: relative;
}
.tile-leadership .fl-rich-text h3 {
  font-size:22px;
  font-weight:500;
  line-height:34px;
  margin-bottom: 0;
}
.tile-leadership .fl-rich-text p > em {
  color: var(--DarkerClr);
  font-family: "Poppins",sans-serif;
  font-size:14px;
  line-height:20px;
  font-style: normal;
}
.quote-info .fl-rich-text p {
  margin-bottom:10px;
}
.quote-info .fl-rich-text p > em {
  font-size:14px !important;
  line-height:20px;
  font-style: normal;
}
.tile-quote .fl-col-content .fl-col-group {
  margin-top:auto;
}
#section--single-page .fl-rich-text li {
  padding-bottom:8px;
}
.fl-module.static-quote-tile .fl-rich-text p:last-child strong {
  font-size:90%;
  color: var(--DarkClr);
}
.fl-module.mt-auto {
  margin-top:auto;
}

@media (min-width: 768px){
  .two-col-list ul.fl-list {
    display:grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0 30px;
  }
  #section--login > .fl-row-content-wrap > .fl-row-content > .fl-col-group {
    align-items: center;
    display: flex;
  }
}
@media (max-width: 768px){
  
}

/* posts */
.fl-post-grid-meta:before {
    content:"Posted on: ";
}
.single article.type-post .fl-post-header {
    max-width:860px;
    margin:50px auto;
    text-align: center;
}
.single article.type-post .fl-post-thumb {
  text-align: center;
}
.single article.type-post .fl-post-content {
  max-width:860px;
  margin-left:auto;
  margin-right:auto; 
}
article.type-post .fl-post-meta.fl-post-meta-bottom {
  margin-top: 70px;
  border-top: none;
  display: flex;
  justify-content: center;
}
article.type-post .fl-post-meta.fl-post-meta-bottom .fl-post-cats-tags {
  padding: 12px 24px;
  background: rgba(139, 144, 170, 0.21);
} 
article.type-post .fl-post-nav {
  margin-top: 70px;
  padding-top: 30px;
  border-top: none;
  font-size: 16px;
}
article.type-post .fl-post-meta.fl-post-meta-bottom a,
article.type-post .fl-post-nav a {
  color: var(--DarkClr);
}
article.type-post .fl-post-nav .fl-post-nav-prev,
article.type-post .fl-post-nav .fl-post-nav-next {
  max-width:40%;
}
article.type-post .fl-post-meta.fl-post-meta-bottom a:hover,
article.type-post .fl-post-nav a:hover {
  text-decoration:none;
  color: var(--primaryBlueHover);
}
article.type-post .fl-post-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-top:1em;
}
article.type-post .fl-post-content p {
  font-weight: 400;
}
article.type-post .fl-post-content ul,
article.type-post .fl-post-content ol {
  font-weight: 400;
  margin-left:0;
}
article.type-post .fl-post-content .wp-block-button a {
  transition: var(--linkTransition);
  padding:15px 38px;
  font-weight: 400;
  font-size:21px;
}
article.type-post .fl-post-content .wp-block-button a:hover,
article.type-post .fl-post-content .wp-block-button a:focus {
  background: var(--primaryBlueHover) !important;
}
article.type-post .fl-post-content figure.wp-block-embed .twitter-tweet {
  margin-left: auto;
    margin-right: auto;
}

@media (min-width:992px) {
  .single article.type-post .fl-post-thumb {
    margin-bottom: 60px;
  }
  article.type-post .fl-post-meta.fl-post-meta-bottom {
    font-size: 20px;
  }
  article.type-post .fl-post-content div.wp-block-image,
  article.type-post .fl-post-content figure.wp-block-image,
  article.type-post .fl-post-content figure.wp-block-embed {
    margin: 3em -3em;
    text-align: center;
  }
}
@media (min-width:768px) {
  .single article.type-post .fl-post-header {
    margin:80px auto 50px auto;
  }
  article.type-post .fl-post-content h2 {
    font-size: 38px;
    font-weight: 600;
    margin-top:2em;
  }
}

/* archive page */
.fl-archive .fl-post {
  margin-bottom: 60px;
}
.fl-archive article.fl-post .fl-post-thumb {
    overflow: hidden;
}
.fl-archive article.fl-post .fl-post-content .fl-post-more-link {
    color: var(--primaryBlue) !important;
    transition: var(--linkTransition);
    margin-top: 2rem;
}
.fl-archive article.fl-post .fl-post-content .fl-post-more-link:hover,
.fl-archive article.fl-post .fl-post-content .fl-post-more-link:focus {
  color: var(--primaryBlueHover) !important;
  text-decoration:none;
}
.fl-archive article.fl-post .fl-post-content .fl-post-more-link i {
  -webkit-transition: transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out;
  -ms-transition: transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.fl-archive article.fl-post .fl-post-content .fl-post-more-link:hover i,
.fl-archive article.fl-post .fl-post-content .fl-post-more-link:focus i {
  -webkit-transform: translateX(4px);
-moz-transform: translateX(4px);
-ms-transform: translateX(4px);
-o-transform: translateX(4px);
transform: translateX(4px);
}
.fl-archive .fl-archive-header .fl-archive-title {
  border-bottom:none;
  font-size: 3rem;
  text-align: center;
}
.fl-archive article.fl-post .fl-post-header h2 {
  font-size: 30px;
  line-height: 1.25em;
  text-align:center;
  font-weight: 400;
}
.fl-archive article.fl-post .fl-post-meta.fl-post-meta-top {
  font-size: 16px;
  line-height: 1.5em;
  text-align: center;
}
.fl-archive article.fl-post .fl-post-content {
  padding:20px;
}

@media (min-width:992px) {
  .fl-archive article.fl-post .fl-post-header h2 {
    font-size: 40px;
    text-align:left;
  }
}
@media (min-width:768px) {
  .fl-archive article.fl-post .fl-post-header {
    grid-area: header;
  }
  .fl-archive article.fl-post .fl-post-thumb {
    grid-area: thumb;
  }
  .fl-archive article.fl-post .fl-post-content {
    grid-area: main; 
  }
  .fl-archive article.fl-post {
    display:grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto;
    grid-template-areas: 
    "header header"
    "thumb main";
  }
  .fl-archive .fl-archive-header .fl-archive-title {
    text-align: left;
  }
  .fl-archive article.fl-post .fl-post-thumb {
    margin: 20px 20px 20px 0;
  }
  .fl-archive article.fl-post .fl-post-header h2 {
    font-size: 38px;
    text-align:left;
  }
  .fl-archive article.fl-post .fl-post-meta.fl-post-meta-top {
    text-align: left;
  }
}

/* Articles */
#article-list .article-tile {
  padding: 10px 0;
  margin-bottom: 25px;
  border-bottom:1px solid rgba(76,90,128,0.31);
}
#article-list .article-tile h3 {
  font-size: 21px;
}
#article-list .article-tile p.date {
  font-size: 16px;
  padding-bottom: 0;
    margin-bottom: 10px;
}
#article-list .fl-row-content .fl-col {
  width:100%;
  padding:45px 20px 0 20px;
}
.col-press-releases .fl-builder-module-template  {
  padding:0;
}
.col-press-releases .fl-builder-module-template .fl-post-grid {
  margin-left: 0;
  margin-right: 0;
}
.col-press-releases .fl-builder-module-template .fl-post-grid .fl-post-column,
.col-press-releases .fl-builder-module-template .fl-post-grid .fl-post-column .fl-post-grid-text {
  padding-left:0;
  padding-right:0;
}
.col-press-releases .fl-post-column .fl-post-grid-post {
  height: auto !important;
}
@media (min-width:768px) {
  #article-list .fl-row-content .fl-col {
    width:50%;
    padding:0 45px;
  }
}

/* HS Form */
.hbspt-form .hs-form-field label span {
  color: #333333DE;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}
.hbspt-form .hs-form-field label span.hs-form-required {
  color: #333333DE;
}
.hbspt-form .hs-form-field .input .hs-input,
.hbspt-form .hs-form-field .input select {
  border:1px solid #DEDEDF;
  border-radius: 4px;
  font-size:14px;
  font-weight: 500;
  line-height: 18px;
  color:var(--primaryDarkBlue);
  padding:0 15px;
  background-color: var(--white);
  width: 100%;
}
.hbspt-form .hs-form-field .input select.is-placeholder {
  color: #B5B5B5;
}
.hbspt-form .hs-form-field .input .hs-input[type="text"],
.hbspt-form .hs-form-field .input .hs-input[type="email"],
.hbspt-form .hs-form-field .input .hs-input[type="tel"] {
  height:38px;
}
.hbspt-form .hs-form-field .input textarea.hs-input {
  min-height:76px;
  padding:15px;
}
  .hbspt-form .hs-form-field ::-webkit-input-placeholder {color:#B5B5B5; /* Webkit Browsers */}
  .hbspt-form .hs-form-field :-moz-placeholder {color:#B5B5B5; /* Firefox 18- */}
  .hbspt-form .hs-form-field ::-moz-placeholder {color:#B5B5B5; /* Firefox 19+ */}
  .hbspt-form .hs-form-field :-ms-input-placeholder {color:#B5B5B5; /* IE10 */}

.hbspt-form .hs-form-field .input .hs-input:hover,
.hbspt-form .hs-form-field .input .hs-input:focus {
  outline:none;
  border-color: var(--primaryBlueHover);
}
.hbspt-form .hs-form-field {
  margin-bottom: 24px;
}
.hbspt-form ul.no-list.hs-error-msgs {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hbspt-form ul.no-list.hs-error-msgs .hs-error-msg {
  color:red;
  font-size:14px;
  margin: 0;
}
.hbspt-form .hs_submit .hs-button {
  border: none;
    border-radius: 26px;
    text-align: center;
    padding: 15px 36px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    display: flex;
    align-items: center;
    margin: 0 auto;
    background-color: var(--primaryBlue);
}
.hbspt-form .hs_submit .hs-button:hover,
.hbspt-form .hs_submit .hs-button:focus {
  background-color: var(--primaryBlueHover);
  background-position: 178px center;
  outline:none;
}
.hbspt-form .hs-fieldtype-select .input {
  position: relative;
}
.hbspt-form .hs-fieldtype-select .input:before {
  font-family: "Font Awesome 5 Pro";
  font-weight:900;
  font-size:32px;
  content: "\f0d7";
  display:block;
  color: #4D4D4D;
  position: absolute;
  right: 17px;
    top: -4px;
}
.hbspt-form .hs-fieldtype-select .input select {
  height:38px;
  -webkit-appearance:none;
  -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
}

@media (min-width: 992px){
  .hbspt-form .hs_submit .hs-button {
    margin: 0 0 0 auto;
  }
}

/* Testimonial Slider */
/* Slider min */
.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}
/* Slick Arrows min */
.slick-next,.slick-prev{font-size:0;line-height:0;position:absolute;top:50%;display:block;width:20px;height:20px;padding:0;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%);cursor:pointer;color:transparent;border:none;outline:0;background:0 0}.slick-next:focus,.slick-next:hover,.slick-prev:focus,.slick-prev:hover{color:transparent;outline:0;background:0 0}.slick-next:focus:before,.slick-next:hover:before,.slick-prev:focus:before,.slick-prev:hover:before{opacity:1}.slick-next.slick-disabled:before,.slick-prev.slick-disabled:before{opacity:.25}.slick-next:before,.slick-prev:before{font-family:slick;font-size:20px;line-height:1;opacity:.75;color:#fff;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-prev{left:-25px}[dir=rtl] .slick-prev{right:-25px;left:auto}.slick-prev:before{content:'←'}[dir=rtl] .slick-prev:before{content:'→'}.slick-next{right:-25px}[dir=rtl] .slick-next{right:auto;left:-25px}.slick-next:before{content:'→'}[dir=rtl] .slick-next:before{content:'←'}
/* custom */
.slick-next:before, 
.slick-prev:before {
  display:none;
}
.slick-next,
.slick-next:hover,
.slick-next:focus,
.slick-prev,
.slick-next:hover,
.slick-next:focus {
  font-size:38px !important;
  color: var(--primaryBlueHover) !important;
  background: var(--white) !important;
  border-radius: 50% !important;
  border:none !important;
  width:78px !important;
  height:78px !important;
  top: 50% !important;
  display:flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  box-shadow: 0px 30px 60px #9FABD74D;
  padding-top: 2px;
}
.slick-prev {
  left: -46px !important;
}
.slick-next {
  right: -46px !important;
}
.slick-prev,
.slick-next {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.slick-prev:hover,
.slick-prev:focus {
  left: -53px !important;
}
.slick-next:focus,
.slick-next:hover {
  right: -53px !important;
}
@media (max-width: 1300px){
  .slick-list {
    margin:0 60px;
  }
  .slick-prev {
    left: 17px !important;
  }
  .slick-next {
    right: 17px !important;
  }
  .slick-prev:hover,
  .slick-prev:focus {
    left: 10px !important;
  }
  .slick-next:focus,
  .slick-next:hover {
    right: 10px !important;
  }
}
@media (max-width: 768px){
  
}

/* Login */
#login-form .form-field.input {
  margin-bottom: 24px;
}
#login-form .form-field label {
  color: #333333DE;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
#login-form .form-field input[type="text"],
#login-form .form-field input[type="email"],
#login-form .form-field input[type="password"] {
  height: 38px;
  border: 1px solid #DEDEDF;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: var(--primaryDarkBlue);
  padding: 0 15px;
  background-color: var(--white);
  width: 100%;
}
#login-form .form-field input:hover,
#login-form .form-field input:focus {
  outline:none;
  border-color: var(--primaryBlueHover);
}
#login-form .form-field input[type="checkbox"]:focus {
  outline:none;
  box-shadow:none;
}
#login-form .form-field.checkbox label {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 46px; 
  height: 30px;
}
#login-form .form-field input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  top: 13px;
  left: 5px;
  transform: translateY(-50%);
  background-color: var(--white);
  width: 30px;
  height: 30px;
  border: 1px solid #DEDEDF;
  border-radius: 4px;
  margin: 0px;
  outline: none;
  transition: background-color .5s;
}
#login-form .form-field input[type="checkbox"]:checked:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) translate(-4px,3px) rotate(45deg);
  background-color: var(--primaryBlueHover);
  width: 12px;
  height: 5px;
}
#login-form .form-field input[type="checkbox"]:checked:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) translate(4px,0px) rotate(-45deg);
  background-color: var(--primaryBlueHover);
  width: 20px;
  height: 5px;
}
#login-form .form-field.submit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#login-form .form-field.submit .underline {
  order: 2;
}
#login-form .form-field.submit button {
  order: 1;
}
#login-form .form-field .underline {
  font-size: 13px;
    font-weight: 400;
    text-decoration: underline;
    display:block;
    text-align: center;
    margin-top:32px;
    color: var(--textClr);
}
#login-form .form-field.submit button {
  border: none;
  border-radius: 26px;
  text-align: center;
  padding: 15px 36px;
  color: var(--white);
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background-color: var(--primaryBlueHover);
  width: 165px;
}
#login-form .form-field.submit button:hover,
#login-form .form-field.submit button:focus {
  background-color: var(--primaryBlue);
  outline:none;
}

/* BB table */
.bb-table table.table {
  color:var(--textClr);
}
.bb-table table.table tr.table-title th {
  background:var(--primaryDarkBlue);
  color:var(--white);
}
.bb-table table.table tr.table-col-title th {
  background:var(--primaryBlueHover);
  color:var(--white);
  text-align: center;
}

/* Thumb Gallery Slider */
body:not(.fl-builder-edit) #carousel-gallery .fl-gallery {
  height:150px !important;
}
body:not(.fl-builder-edit) #carousel-gallery .fl-gallery .fl-gallery-item.slick-slide {
  position: unset !important;
    top: unset !important;
    left: unset !important;
}

/* FAQ */
.fl-module.accordion-faq .fl-accordion-button-label:focus {
  outline: none;
}
.fl-module.accordion-faq .fl-accordion-button .fl-accordion-button-icon-left {
  opacity: 1;
    filter: alpha(opacity = 100);
    padding-right: 16px;
}
.faq-table.table tr td,
.faq-table.table tr th[scope="subtitle"]{text-align:center}
.faq-table.table tr td:last-child,
.faq-table.table tbody.text-left tr td {text-align:left}
.faq-table.table .thead-blue th {
  color: #fff;
  background-color: var(--primaryDarkBlue);
  border-color: #f8f9fa;
  } 

/* Resource Tile manual entry */
.fl-col.resource-tile>.fl-col-content {
  position: relative;
  top: 0;
  transition: 0.3s;
}
.fl-col.resource-tile>.fl-col-content:hover {
  top: 5px;
  transition: 0.3s;
  cursor: pointer;
}
.fl-col.resource-tile .fl-col-content h2 .fl-heading-text {
  -webkit-transition: var(--linkTransition);
    -moz-transition: var(--linkTransition);
    -ms-transition: var(--linkTransition);
    -o-transition: var(--linkTransition);
    transition: var(--linkTransition);
}
.fl-col.resource-tile .fl-col-content h2:hover .fl-heading-text {
  color: var(--primaryBlueHover);
}
.fl-col.resource-tile .fl-col-content .fl-button i {
  margin-left: 0;
  font-size: 1em;
}

/* Contact Center LP */
#section--contact-center-hero.bg-blob {
  background-image: url(../svg/blob-blue-company-hero.svg);
  background-position: right -100px;
}
#section--contact-center-features.bg-blob {
  background-image: url(../svg/blob-yellow-company-resellers.svg);
  background-position: -200px 67px;
}
.fl-module.text-list-style-check .fl-rich-text ul {
  list-style:none;
  padding:0;
  margin:0;
}
.fl-module.text-list-style-check .fl-rich-text ul li {
  background: url(../svg/text-list-style-check.svg) no-repeat left top;
  padding-left: 38px;
  padding-bottom:18px;
  text-align: left !important;
}

/* Resources Tile */
.fl-col.resource-tile.tile-guide .fl-photo-content {
  height: 200px;
    overflow: hidden;
}
.fl-col.resource-tile.tile-guide .fl-photo-content img {
  height: 200px !important;
    object-fit: cover;
}

/* FAQ */
.fl-accordion-button-label {
  outline:none !important;
}
@media (min-width: 992px){
  body:not(.fl-builder-edit) #section--faqs #faq-aside{
    position: -webkit-sticky;
    position: sticky;
    top: 150px;
  }
}
#section--faqs #faq-aside ul#sideNav {
  list-style:none;
  margin:0;
  padding:0;
}
#section--faqs #faq-aside ul#sideNav li {
  margin:8px 0;
}
#section--faqs #faq-aside ul#sideNav li a.scroll {
  padding:5px 0 5px 15px;
  border-left:4px solid var(--white);
  display: block;
}
#section--faqs #faq-aside ul#sideNav li a.scroll.active,
#section--faqs #faq-aside ul#sideNav li a.scroll:hover {
 border-left-color:var(--primaryBlueHover);
}
#section--faqs #faq-aside ul#sideNav li a {
  font-size:16px;
  color: var(--primaryDarkBlue);
}

/* Sidebar on Post */
@media (min-width: 768px) {
  .fl-sidebar {margin-top:120px;}
}
@media (max-width: 768px) {
  .fl-sidebar {padding: 30px;}
}
@media (min-width: 992px) {
	.fl-content.fl-content-left {
		border-right: none;
	}
}
aside.fl-widget.widget_block {
  border-radius: 36px;
  box-shadow: 30px 40px 99px 0 rgba(76,90,128,.31);
}
aside.fl-widget.widget_block .wp-block-image img {
  border-top-left-radius: 36px;
    border-top-right-radius: 36px;
}
aside.fl-widget.widget_block .wp-block-heading {
  font-weight: 400 !important;
  margin: 0 0 10px;
  padding: 0 30px;
}
aside.fl-widget.widget_block p {
  margin: 0 0 20px;
  padding: 0 30px 20px 30px;
}

/* Post Sidebar Sticky */
@media (min-width: 992px) {
  body.single-post.fl-has-sidebar #fl-main-content.fl-page-content {
    overflow: visible !important;
  }
  body.single-post.fl-has-sidebar .fl-sidebar.fl-sidebar-right {
      position: -webkit-sticky;
      position: sticky;
      top: 150px;
      height:1200px;
  }
}
/* Hubspot FC */
[data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content {
  padding:0 !important;
}
[data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content .hsfc-FieldLabel {
  color: #8b90aa;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  font-style: normal;
}
[data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content .hsfc-TextInput,
[data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content .hsfc-TextareaInput {
  background-color: var(--white);
  border:1px solid #DEDEDF;
  color:var(--primaryDarkBlue);
  font-size: 15px;
  padding: 7px 10px;
}
[data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content .hsfc-PhoneInput__FlagAndCaret,
[data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content .hsfc-DropdownOptions {
  border-color: #DEDEDF;
  background-color: var(--white);
}
[data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content .hsfc-PhoneInput:not(.hsfc-PhoneInput--rtl) .hsfc-PhoneInput__FlagAndCaret {
  border-color: #DEDEDF;
  padding: 7px 10px;
}
[data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content .hsfc-DropdownOptions__List__ListItem {
  background-color: var(--white);
  font-size: 14px;
  color:var(--primaryDarkBlue);
  padding: 5px 20px;
}
[data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content .hsfc-ErrorAlert,
[data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content .hsfc-RichText {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  line-height: 1.35;
  font-style: normal;
}
[data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content .hsfc-ErrorAlert {
  font-size: 12px;
}
[data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content .hsfc-RichText {
  color:var(--primaryDarkBlue);
  font-size: 14px;
}
[data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content .hsfc-Button {
    border: none;
    border-radius: 26px;
    text-align: center;
    padding: 15px 36px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    -webkit-transition: all 0.3 ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primaryBlue);
}
[data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content .hsfc-Button:hover, 
[data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content .hsfc-Button:focus {
    background-color: var(--primaryBlueHover);
    outline: none;
}

/* Hubspot Feedback */
#feedback-form .hbspt-form .hs-fieldtype-radio {
  text-align: center;
}
#feedback-form .hbspt-form .hs-fieldtype-radio label span {
  color: #2d3958;
  font-size: 30px;
}
#feedback-form .hbspt-form .hs-fieldtype-radio legend.hs-field-desc {
  font-size: 18px;
}
#feedback-form .hbspt-form .hs-fieldtype-radio .input ul.inputs-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
    padding: 0;
  list-style: none;
}
#feedback-form .hbspt-form .hs-fieldtype-radio .input ul.inputs-list li.hs-form-radio label {
  position: relative;
  cursor: pointer;
  user-select: none;
  margin-bottom: 0;
  background-color: var(--primaryBlueHover);
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
}
#feedback-form .hbspt-form .hs-fieldtype-radio .input ul.inputs-list li.hs-form-radio:first-child label,
#feedback-form .hbspt-form .hs-fieldtype-radio .input ul.inputs-list li.hs-form-radio:nth-child(2) label,
#feedback-form .hbspt-form .hs-fieldtype-radio .input ul.inputs-list li.hs-form-radio:nth-child(3) label {
  background-color: #e95d0c;
}
#feedback-form .hbspt-form .hs-fieldtype-radio .input ul.inputs-list li.hs-form-radio:nth-child(4) label,
#feedback-form .hbspt-form .hs-fieldtype-radio .input ul.inputs-list li.hs-form-radio:nth-child(5) label,
#feedback-form .hbspt-form .hs-fieldtype-radio .input ul.inputs-list li.hs-form-radio:nth-child(6) label {
  background-color: #e9c10c;
}
#feedback-form .hbspt-form .hs-fieldtype-radio .input ul.inputs-list li.hs-form-radio:nth-child(7) label,
#feedback-form .hbspt-form .hs-fieldtype-radio .input ul.inputs-list li.hs-form-radio:nth-child(8) label {
  background-color: #39db6f;
}
#feedback-form .hbspt-form .hs-fieldtype-radio .input ul.inputs-list li.hs-form-radio:nth-child(9) label,
#feedback-form .hbspt-form .hs-fieldtype-radio .input ul.inputs-list li.hs-form-radio:nth-child(10) label {
  background-color: #08cc4a;
}
#feedback-form .hbspt-form .hs-fieldtype-radio .input ul.inputs-list li.hs-form-radio label input {
  height: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 0;
}
#feedback-form .hbspt-form .hs-fieldtype-radio .input ul.inputs-list li.hs-form-radio label span {
  position: relative;
  display: flex;
  height: 58px;
  width: 58px;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: white;
}
#feedback-form .hbspt-form .hs-fieldtype-radio .input ul.inputs-list li.hs-form-radio label span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 58px;
  width: 58px;
}
#feedback-form .hbspt-form .hs-fieldtype-radio .input ul.inputs-list li.hs-form-radio label input:checked ~ span:before {
  /*background-color: var(--primaryBlue);*/
}
#feedback-form .hbspt-form .hs-fieldtype-radio .input ul.inputs-list li.hs-form-radio label span:after {
  content: "";
  position: absolute;
  display: none; 
}
#feedback-form .hbspt-form .hs-fieldtype-radio .input ul.inputs-list li.hs-form-radio label input:checked ~ span:after {
  display: block;
}
#feedback-form .hbspt-form .hs-fieldtype-radio .input ul.inputs-list li.hs-form-radio label span:after {
  width: 58px;
  height: 58px;
  border-radius: 4px;
  border: 4px solid #2d3958;
}
#feedback-form .hbspt-form .hs_recaptcha .input .grecaptcha-badge {
  margin-left: auto;
}
@media (max-width:992px) {
  #feedback-form .hbspt-form .hs_recaptcha .input .grecaptcha-badge {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width:600px) {
  #feedback-form .hbspt-form .hs-fieldtype-radio label span {
    font-size: 22px;
  }
}

[data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content .hsfc-RichText p {
	color: #4c5a80;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
	font-size:18px;
	margin-bottom:0;
}