/* Start Header Compact */
#axero-header-compact,
            .navbar #axero-header,
#axero-header-social {
        background: #ffffff;}
/* End Header Compact */

/* ==========================================================================
   Intranet App — platform auth pages restyle (login / forgot / reset password)
   Paste into Control Panel → System → CSS Overrides on the TEMPLATE site.
   Scoped strictly to the auth pages: body.page-login (Page Builder login page)
   and body:has(form[action*=...]) for the WebForms password pages.
   ========================================================================== */

/* ---- shared canvas: hide platform chrome, split-screen brand panel ---- */
body.page-login,
body:has(form#aspnetForm[action*="forgotpassword"]),
body:has(form#aspnetForm[action*="resetpassword"]) {
  background: #FAFBFB;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  margin-top: 0 !important;
}

body.page-login .navbar-fixed-top,
body.page-login #axero-header,
body.page-login .container-fluid.axero-footer,
body:has(form#aspnetForm[action*="forgotpassword"]) .navbar-fixed-top,
body:has(form#aspnetForm[action*="forgotpassword"]) #axero-header,
body:has(form#aspnetForm[action*="forgotpassword"]) #axero-top-bar,
body:has(form#aspnetForm[action*="forgotpassword"]) .container-fluid.axero-footer,
body:has(form#aspnetForm[action*="resetpassword"]) .navbar-fixed-top,
body:has(form#aspnetForm[action*="resetpassword"]) #axero-header,
body:has(form#aspnetForm[action*="resetpassword"]) #axero-top-bar,
body:has(form#aspnetForm[action*="resetpassword"]) .container-fluid.axero-footer {
  display: none !important;
}

/* Left brand panel (pseudo-element; the wordmark is its text content) */
body.page-login::before,
body:has(form#aspnetForm[action*="forgotpassword"])::before,
body:has(form#aspnetForm[action*="resetpassword"])::before {
  /* Wordmark text: the header script sets --ix-brand-name to the intranet's
     configured name (cached in localStorage, refreshed from the app's public
     branding endpoint). Blank until known — never a wrong-brand flash. */
  content: var(--ix-brand-name, "");
  text-transform: uppercase;
  position: fixed;
  inset: 0 auto 0 0;
  width: 44%;
  background: #29513F;
  z-index: 1;
  padding: 48px 56px;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.35em;
}

/* Brand statement on the panel */
body.page-login::after,
body:has(form#aspnetForm[action*="forgotpassword"])::after,
body:has(form#aspnetForm[action*="resetpassword"])::after {
  content: "Everything your team needs.\A In one simple place.";
  white-space: pre-line;
  position: fixed;
  left: 56px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(44% - 128px);
  z-index: 2;
  color: #FFFFFF;
  font-size: 38px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Right side: center the form region */
body.page-login [id$="divCommunityWrapper"],
body:has(form#aspnetForm[action*="forgotpassword"]) [id$="divCommunityWrapper"],
body:has(form#aspnetForm[action*="resetpassword"]) [id$="divCommunityWrapper"] {
  margin: 0 0 0 44% !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAFBFB;
  padding: 40px 24px;
  box-sizing: border-box;
}

/* Neutralize the bootstrap grid so the card can size itself */
body.page-login [id$="divCommunityWrapper"] .container,
body.page-login [id$="divCommunityWrapper"] .row-fluid,
body.page-login [id$="divCommunityWrapper"] [class*="span"],
body:has(form#aspnetForm[action*="forgotpassword"]) [id$="divCommunityWrapper"] .container,
body:has(form#aspnetForm[action*="forgotpassword"]) [id$="divCommunityWrapper"] .row-fluid,
body:has(form#aspnetForm[action*="forgotpassword"]) [id$="divCommunityWrapper"] [class*="span"],
body:has(form#aspnetForm[action*="resetpassword"]) [id$="divCommunityWrapper"] .container,
body:has(form#aspnetForm[action*="resetpassword"]) [id$="divCommunityWrapper"] .row-fluid,
body:has(form#aspnetForm[action*="resetpassword"]) [id$="divCommunityWrapper"] [class*="span"] {
  width: auto !important;
  margin: 0 auto !important;
  float: none !important;
}

body.page-login .container-fluid.pb-row {
  padding: 0 !important;
}

/* ---- the card ---- */
body.page-login .ax-form-section.blocked,
body:has(form#aspnetForm[action*="forgotpassword"]) .ax-form-section.blocked,
body:has(form#aspnetForm[action*="resetpassword"]) .well {
  background: #FFFFFF;
  border: 1px solid #E8EAEE;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.10);
  padding: 40px;
  width: 400px;
  max-width: 92vw;
  box-sizing: border-box;
}

/* The legacy WebForms grid fights flex centering — pin the card into the
   middle of the right-hand region instead. */
body:has(form#aspnetForm[action*="forgotpassword"]) .ax-form-section.blocked,
body:has(form#aspnetForm[action*="resetpassword"]) .well {
  position: fixed;
  left: calc(44% + 28% - 200px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

body.page-login .axero-profile-section-header-row h4,
body:has(form#aspnetForm[action*="forgotpassword"]) .ax-form-section h4 {
  font-size: 24px;
  font-weight: 700;
  color: #191C21;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  border: 0;
}

/* ---- fields ---- */
body.page-login .ax-form-field label,
body:has(form#aspnetForm[action*="forgotpassword"]) .ax-form-field label {
  font-size: 13px;
  font-weight: 600;
  color: #191C21;
  margin: 14px 0 6px;
}

body.page-login .ax-form-field input[type="text"],
body.page-login .ax-form-field input[type="password"],
body:has(form#aspnetForm[action*="forgotpassword"]) input[type="text"],
body:has(form#aspnetForm[action*="resetpassword"]) input[type="password"] {
  height: 44px;
  background: #FFFFFF !important;
  border: 1px solid #E8EAEE !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding: 0 14px !important;
  font-size: 14px;
  color: #191C21;
  box-sizing: border-box;
  width: 100% !important;
  transition: border-color 0.15s, box-shadow 0.15s;
}

body.page-login .ax-form-field input[type="text"]:focus,
body.page-login .ax-form-field input[type="password"]:focus,
body:has(form#aspnetForm[action*="forgotpassword"]) input[type="text"]:focus,
body:has(form#aspnetForm[action*="resetpassword"]) input[type="password"]:focus {
  border-color: #29513F !important;
  box-shadow: 0 0 0 3px rgba(41, 81, 63, 0.14) !important;
  outline: none;
}

body.page-login .ax-field-checkbox span {
  font-size: 13px;
  color: #6B7280;
}

/* ---- buttons ---- */
body.page-login .btn.btn-success,
body.page-login .btn.btn-block,
body:has(form#aspnetForm[action*="forgotpassword"]) .btn-success,
body:has(form#aspnetForm[action*="resetpassword"]) .btn {
  background: #29513F !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 10px !important;
  height: 44px;
  line-height: 44px;
  padding: 0 18px !important;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF !important;
  text-shadow: none !important;
  box-shadow: none !important;
  transition: background 0.15s;
}

body.page-login .btn.btn-success:hover,
body.page-login .btn.btn-block:hover,
body:has(form#aspnetForm[action*="forgotpassword"]) .btn-success:hover,
body:has(form#aspnetForm[action*="resetpassword"]) .btn:hover {
  background: #1F3E30 !important;
}

/* ---- links & extras ---- */
body.page-login .login-section a[title="Forgot password"] {
  color: #6B7280;
  font-size: 13px;
}
body.page-login .login-section a[title="Forgot password"]:hover {
  color: #29513F;
}

/* Trial sites have no self-registration — hide "Not a member?" */
body.page-login .login-section .row-fluid .row-fluid {
  display: none !important;
}

/* Every login field is required by definition — no asterisks */
body.page-login .loud.red,
body:has(form#aspnetForm[action*="forgotpassword"]) .loud.red {
  display: none;
}

/* Brand the remember-me checkbox; give the forgot link breathing room */
body.page-login input[type="checkbox"] { accent-color: #29513F; }
body.page-login .login-section .row-fluid.margintop20 { margin-top: 30px; }

/* Divider under the forgot-password intro reads as admin chrome — drop it */
body:has(form#aspnetForm[action*="forgotpassword"]) .ax-form-section hr,
body:has(form#aspnetForm[action*="forgotpassword"]) .axero-profile-section-header-row + hr {
  display: none;
}

/* Back-to-sign-in link (added by the header script) */
#ix-back-login {
  display: block;
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: #6B7280;
}
#ix-back-login:hover { color: #29513F; }

/* ---- small screens: drop the panel ---- */
@media (max-width: 900px) {
  body.page-login::before,
  body.page-login::after,
  body:has(form#aspnetForm[action*="forgotpassword"])::before,
  body:has(form#aspnetForm[action*="forgotpassword"])::after,
  body:has(form#aspnetForm[action*="resetpassword"])::before,
  body:has(form#aspnetForm[action*="resetpassword"])::after {
    display: none;
  }
  body.page-login [id$="divCommunityWrapper"],
  body:has(form#aspnetForm[action*="forgotpassword"]) [id$="divCommunityWrapper"],
  body:has(form#aspnetForm[action*="resetpassword"]) [id$="divCommunityWrapper"] {
    margin-left: 0 !important;
  }
  body:has(form#aspnetForm[action*="forgotpassword"]) .ax-form-section.blocked,
  body:has(form#aspnetForm[action*="resetpassword"]) .well {
    position: static;
    transform: none;
    margin: 40px auto !important;
  }
}





/* Default styles for the header */

/* Start Branding */

/*CSS Classes for Header Colors */

.axero-widget .axero-widget-header {
    color: #2F2F2F;
    background: #E8E1D9;
    padding-bottom: 15px;
}

.secondary-color .axero-widget-header {
    background: #D2D2D2;
}

.gradient-header .axero-widget-header {
    background: linear-gradient(90deg, #5F1F77, #6a308e);
}

/* End CSS Classes for Header Colors


/*changes color for New & Announcements header text*/
.xs-newsroom .xs-content ul li a .tile-content .tile-content-text .tile-head .category-eyebrow {
    color: #6a308e;
}

/*Changes color for list items in navigation pills widget*/
.axero-pills.axero-lightning-navigation-list .axero-widget-body ul li a .x-icon i {
    color: #6a308e;
}

/* End Branding */

/*Custom Widgets*/

/*Style for Stacked 3 Across Call to Action template*/
.axero-widget-card-article ul.thumbnails {
    margin: 0;
}

.axero-widget-card-article ul.thumbnails li.span6:nth-child(2n+1) {
    margin-left: 0;
}

.axero-widget-card-article ul.thumbnails li.span6 {
    margin-bottom: 0;
}

.cfx-post {
    box-shadow: 0 0 0 1px rgba(63, 63, 68, 0.05), 0 1px 3px 0 rgba(63, 63, 68, 0.15);
    height: 300px;
    background: #fff;
    position: relative;
    border-radius: 4px;
}

.cfx-post .cfx-post-inner {
    padding: 30px;
}

.cfx-post .cfx-post-inner .cfx-post-inner-ellipsis {
    height: 188px;
    max-height: 188px;
    overflow: hidden;
}

.cfx-post .cfx-post-inner .cfx-post-inner-ellipsis .entry-category {
    margin-bottom: 8px;
}

.cfx-post .cfx-post-inner .cfx-post-inner-ellipsis .entry-category a {
    font-size: 10px;
    border-radius: 20px;
    margin-right: 5px;
    pointer-events: auto;
    -webkit-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    text-transform: uppercase;
    display: inline-block;
    height: auto;
    line-height: 10px;
    padding: 7px 11px 6px;
    vertical-align: top;
    background: #f99500;
    color: #fff;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.cfx-post .cfx-post-inner .cfx-post-inner-ellipsis .entry-title {
    font-size: 1.6em;
    font-weight: 600;
    line-height: 1.3em;
}

.cfx-post .cfx-post-inner .cfx-post-inner-ellipsis .entry-title a {
    color: inherit;
}

.cfx-post .cfx-post-inner .cfx-post-inner-ellipsis .entry-content {}

.cfx-post .cfx-post-inner .cfx-post-inner-ellipsis .entry-content p {
    font-size: 1.1em;
    line-height: 1.4em;
    margin: 5px 0 0;
}

.cfx-post .cfx-post-inner .entry-meta {
    margin-top: 8px;
}

.cfx-post.has-image {
    background-position: 25% 50% !important;
    background-origin: border-box !important;
    background-size: cover !important;
}

.cfx-post.has-image .cfx-post-inner {
    position: absolute;
    z-index: 1;
}

.cfx-post.has-image .cfx-post-inner .cfx-post-inner-ellipsis .entry-title a,
.cfx-post.has-image .cfx-post-inner .entry-meta .p-user .p-user-info .p-user-name a,
.cfx-post.has-image .cfx-post-inner .entry-meta .p-user .p-user-info .p-publish-date {
    color: #fff;
}

.cfx-post.has-image .cfx-post-inner .cfx-post-inner-ellipsis .entry-content {
    display: none;
}

strong {
    font-weight: bold;
}

@media (max-width: 767px) {
    .axero-widget-card-article ul.thumbnails li.span6 {
        margin-bottom: 15px;
    }

    .axero-widget-card-article ul.thumbnails li.span6:last-child {
        margin-bottom: 0;
    }
}

.axero-widget-card-article .span4:nth-child(3n+1) {
    margin-left: 0;
}

/*Style for Content Grid template*/
.bdaia-feature-posts {
    margin-bottom: 30px;
    border-radius: 4px;
    overflow: hidden;
}

.flex-direction-nav {
    *height: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
    list-style: none !important;
}

.flex-direction-nav li {
    *height: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
    list-style: none !important;
}

.flex-direction-nav a {
    text-decoration: none;
    display: block;
    width: 40px;
    height: 40px;
    margin: -20px 0 0;
    position: absolute;
    top: 50%;
    z-index: 10;
    overflow: hidden;
    opacity: 0;
    cursor: pointer;
    color: rgba(0, 0, 0, .8);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, .3);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.flex-direction-nav a.flex-next:before {
    content: "\e95d";
}

.flex-direction-nav .flex-prev {
    left: -50px;
}

.flex-direction-nav .flex-next {
    right: -50px;
    text-align: right;
}

.flex-direction-nav .flex-disabled {
    opacity: 0 !important;
    filter: alpha(opacity=0);
    cursor: default;
}

.bdaia-lazyload .big-grids {
    opacity: 0;
}

.bdaia-lazyload .big-grids.bdaia-img-show {
    opacity: 1;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.bdaia-img-show {
    position: relative;
}

* {
    zoom: 1;
}

.bd-cat-link {
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    padding: 3px 7px;
    margin: 0 2px 2px 0;
    white-space: nowrap;
    display: inline-block;
    position: relative;
    background-color: #000;
    background-color: rgba(0, 0, 0, .7);
    color: #fff !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
    text-transform: uppercase;
    -webkit-text-shadow: none !important;
    -moz-text-shadow: none !important;
    text-shadow: none !important;
}

*:before,
*:after {
    box-sizing: border-box;
}

.cfix {
    clear: both;
    zoom: 1;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    width: 100%;
    position: relative;
    display: block;
    height: 0;
}

.cfix:before,
.cfix:after {
    display: table;
    content: "";
    clear: both;
}

.big-grids {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.big-grids:after,
.big-grids:before {
    content: '';
    display: table;
    clear: both;
}

.big-grids .big-grid.fea-1,
.big-grids .big-grid.fea-2,
.big-grids .big-grid.fea-3 {
    display: block;
}

.big-grids .big-grids-single-slide {
    display: none;
    opacity: 0;
    padding: 0;
    position: relative;
}

.big-grids .big-grids-single-slide .big-grid {
    display: block;
}

.big-grids .big-grids-single-slide:first-child {
    display: block !important;
}

.big-grids .big-grid {
    float: left;
    position: relative;
    overflow: hidden;
}

.big-grids .big-grid-inner {
    position: relative;
    line-height: 0;
    color: #FFF;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow: hidden;
    -webkit-transition: 0.15s;
    -moz-transition: 0.15s;
    -o-transition: 0.15s;
    transition: 0.15s;
    box-sizing: border-box;
    outline: none;
    zoom: 1;
}

.big-grids .big-grid-inner:before,
.big-grids .big-grid-inner:after {
    content: "";
    display: table;
    clear: both;
}

.big-grids .big-grid-inner .img {
    background-color: #eee;
    background-position: center center;
    background-size: cover;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    visibility: visible;
    -webkit-transition: 0.15s;
    -moz-transition: 0.15s;
    -o-transition: 0.15s;
    transition: 0.15s;
    max-width: none;
}

.big-grids .big-grid-inner:hover .img {
    transform: scale3d(1.1, 1.1, 1);
    -webkit-transform: scale3d(1.1, 1.1, 1);
    -moz-transform: scale3d(1.1, 1.1, 1) rotate(0.02deg);
}

.big-grids .big-grid-inner .img:before {
    bottom: 0;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    background: -moz-linear-gradient(top, transparent 40%, rgba(0, 0, 0, .7) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(100%, rgba(0, 0, 0, .7)));
    background: -webkit-linear-gradient(top, transparent 40%, rgba(0, 0, 0, .7) 100%);
    background: -o-linear-gradient(top, transparent 40%, rgba(0, 0, 0, .7) 100%);
    background: -ms-linear-gradient(top, transparent 40%, rgba(0, 0, 0, .7) 100%);
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, .7) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#b3000000', GradientType=0);
}

div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-1 {
    width: 50%;
}

div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-1 .big-grid-inner {
    height: 490px;
}

div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-2,
div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-3,
div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-4,
div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-5 {
    width: 25%;
}

div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-2 .big-grid-inner,
div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-3 .big-grid-inner,
div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-4 .big-grid-inner,
div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-5 .big-grid-inner {
    height: 244px;
}

div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-1 {
    padding: 0 2px 0 0;
}

div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-2 {
    padding: 0 2px 2px 0;
}

div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-4 {
    padding: 0 2px 0 0;
}

div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-3 {
    padding: 0 0 2px 0;
}

@media only screen and (max-width:919px) {
    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid {
        width: 100%;
    }

    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid .big-grid-inner {
        height: 360px;
    }

    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-1,
    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-2,
    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-3,
    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-4 {
        padding: 0 0 2px 0;
    }

    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .bdayh-date {
        display: none;
    }
}

@media only screen and (max-width:630px) {
    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid .big-grid-inner {
        height: 220px;
    }

    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-2 .big-grid-inner,
    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-3 .big-grid-inner,
    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-4 .big-grid-inner,
    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-5 .big-grid-inner {
        height: 180px;
    }
}

.big-grids .featured-title {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 20px;
    -webkit-text-shadow: 1px 1px 1px rgba(0, 0, 0, .3);
    -moz-text-shadow: 1px 1px 1px rgba(0, 0, 0, .3);
    -ms-text-shadow: 1px 1px 1px rgba(0, 0, 0, .3);
    -o-text-shadow: 1px 1px 1px rgba(0, 0, 0, .3);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .3);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.big-grids .featured-title h2 {
    padding: 0;
    margin: 5px 0 10px;
    text-shadow: rgba(0, 0, 0, .5) 0 1px 1px;
    font-size: 21px;
    line-height: 26px;
    font-weight: 400;
}

div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-1 .featured-title h2 {
    max-width: 98%;
}

div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .featured-title h2 {
    font-size: 16px;
    line-height: 21px;
}

div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-1 .featured-title h2 {
    font-size: 37px;
    line-height: 46px;
}

.big-grids .featured-title a {
    color: #FFF;
}

.big-grids .featured-title .bdayh-date {
    font-size: 12px;
    line-height: 12px;
}

@media only screen and (max-width:1024px) {
    .big-grids .featured-title {
        max-width: 100%;
        padding: 14px;
    }

    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid-1 .featured-title h2 {
        font-size: 22px;
        line-height: 29px;
        margin-bottom: 9px;
    }
}

.big-grids .flex-direction-nav a {
    width: 25px;
    height: 44px;
    margin: -22px 0 0 0;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    background: #FFF;
    color: inherit;
}

.big-grids .flex-direction-nav a::before {
    color: inherit;
}

.big-grids .flex-direction-nav a:hover {
    color: #FFF !important;
}

.big-grids.big-grids-disable-nav .flex-direction-nav {
    display: none !important;
}

.big-grids .flex-direction-nav .flex-next {
    right: -1px !important;
    left: auto !important;
}

.big-grids .flex-direction-nav .flex-prev {
    left: -1px !important;
    right: auto !important;
}

.big-grids .flex-direction-nav .flex-next:before,
.big-grids .flex-direction-nav .flex-prev:before {
    display: block;
    text-align: center;
    text-rendering: auto;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    transform: translate(0, 0);
}

.big-grids .flex-direction-nav .flex-next:before,
.big-grids .flex-direction-nav .flex-prev:before {
    width: 25px;
    height: 44px;
    font-size: 18px;
    line-height: 44px;
    display: block;
    text-align: center;
    text-shadow: none !important;
}

.big-grids:hover .flex-next,
.big-grids:hover .flex-prev {
    opacity: 1;
}

.big-grids .flex-next:hover,
.big-grids .flex-prev:hover {
    background: #EA0253;
}

.big-grids .big-grid-inner:hover .featured-title {
    bottom: 0;
}

@media only screen and (max-width:985px) {
    .big-grids .big-grid-2 .featured-title .featured-cat {
        display: none;
    }

    .big-grids .big-grid-3 .featured-title .featured-cat {
        display: none;
    }

    div.bdaia-feature-posts.bdaia-fp-grid3 div.featured-title div.featured-cat {
        display: block;
    }

    .big-grids .flex-direction-nav a {
        width: 40px;
        height: 40px;
        margin: 0 0 0 0;
        color: #FFF;
        top: 5px;
        left: 0;
        background: #222;
    }

    .big-grids .flex-direction-nav .flex-next {
        left: 50px !important;
        right: auto !important;
    }

    .big-grids .flex-direction-nav .flex-prev {
        left: 5px !important;
        right: auto !important;
    }

    .big-grids .flex-direction-nav .flex-next:before,
    .big-grids .flex-direction-nav .flex-prev:before {
        height: 40px;
        line-height: 40px;
        font-size: 20pt;
    }

    .big-grids .flex-next:hover,
    .big-grids .flex-prev:hover {
        background: #222 !important;
        opacity: .8;
    }
}

@media only screen and (max-width:767px) {
    .big-grids .big-grid .featured-title h2 {
        font-size: 16px;
        line-height: 20px;
    }

    .big-grids .big-grid-2 .featured-title .featured-cat {
        display: none;
    }

    .big-grids .big-grid-3 .featured-title .featured-cat {
        display: none;
    }

    .big-grids .big-grid-4 .featured-title .featured-cat,
    .big-grids .big-grid-5 .featured-title .featured-cat {
        display: none;
    }

    .big-grids .flex-direction-nav a {
        width: 40px;
        height: 40px;
        margin: 0 0 0 0;
        color: #FFF;
        top: 5px;
        left: 0;
        background: #222;
    }

    .big-grids .flex-direction-nav .flex-next {
        left: 50px !important;
        right: auto !important;
    }

    .big-grids .flex-direction-nav .flex-prev {
        left: 5px !important;
        right: auto !important;
    }

    .big-grids .flex-direction-nav .flex-next:before,
    .big-grids .flex-direction-nav .flex-prev:before {
        height: 40px;
        line-height: 40px;
        font-size: 20pt;
    }

    .big-grids .flex-next:hover,
    .big-grids .flex-prev:hover {
        background: #222 !important;
        opacity: .8;
    }
}

@media only screen and (max-width:479px) {
    .big-grids .big-grid .featured-title h2 {
        font-size: 14px;
        line-height: 18px;
    }

    .big-grids .flex-direction-nav a {
        width: 40px;
        height: 40px;
        margin: 0 0 0 0;
        color: #FFF;
        top: 5px;
        left: 0;
        background: #222;
    }

    .big-grids .flex-direction-nav .flex-next {
        left: 50px !important;
        right: auto !important;
    }

    .big-grids .flex-direction-nav .flex-prev {
        left: 5px !important;
        right: auto !important;
    }

    .big-grids .flex-direction-nav .flex-next:before,
    .big-grids .flex-direction-nav .flex-prev:before {
        height: 40px;
        line-height: 40px;
        font-size: 20pt;
    }

    .big-grids .flex-next:hover,
    .big-grids .flex-prev:hover {
        background: #222 !important;
        opacity: .8;
    }
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.featured-title:hover .featured-cat a {
    color: #FFF !important;
}

@media (max-width:919px) {
    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid {
        padding: 1px !important;
    }

    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid.big-grid-1 {
        width: 100%;
    }

    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid.big-grid-2,
    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid.big-grid-3,
    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid.big-grid-4,
    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid.big-grid-5 {
        width: 50%;
    }

    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid.big-grid-1 .big-grid-inner {
        height: 420px;
    }

    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid.big-grid-2 .big-grid-inner,
    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid.big-grid-3 .big-grid-inner,
    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid.big-grid-4 .big-grid-inner,
    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid.big-grid-5 .big-grid-inner {
        height: 160px;
    }

    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid.big-grid-1 .bdayh-date {
        display: block !important;
    }
}

@media (max-width:414px) {

    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid.big-grid-1,
    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid.big-grid-2,
    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid.big-grid-3,
    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid.big-grid-4,
    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid.big-grid-5 {
        width: 100%;
    }

    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid.big-grid-1 .big-grid-inner {
        height: 312px;
    }

    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid.big-grid-2 .big-grid-inner,
    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid.big-grid-3 .big-grid-inner,
    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid.big-grid-4 .big-grid-inner,
    div.bdaia-feature-posts.bdaia-fp-grids.bdaia-fp-grid3 .big-grid.big-grid-5 .big-grid-inner {
        height: 126px;
    }
}
}

/*! CSS Used from: Embedded */
.bd-cat-3 {
    background: #7E69EF !important;
}

.bd-cat-3:before {
    border-top-color: #7E69EF !important;
}

.bd-cat-5 {
    background: #E29C04 !important;
}

.bd-cat-5:before {
    border-top-color: #E29C04 !important;
}

.bd-cat-8 {
    background: #45ACE4 !important;
}

.bd-cat-8:before {
    border-top-color: #45ACE4 !important;
}

/*! CSS Used fontfaces */
/*End style for Content Grid template*/

/*Styles for launch pad: 2-12 items per row*/
.axero-widget-launchpad.launchpad-row-2 .axero-widget-content .lp-content ul li {
    width: 50%
}

.axero-widget-launchpad.launchpad-row-3 .axero-widget-content .lp-content ul li {
    width: calc(100%/3)
}

.axero-widget-launchpad.launchpad-row-4 .axero-widget-content .lp-content ul li {
    width: 25%
}

.axero-widget-launchpad.launchpad-row-5 .axero-widget-content .lp-content ul li {
    width: 20%
}

.axero-widget-launchpad.launchpad-row-6 .axero-widget-content .lp-content ul li {
    width: calc(100%/6)
}

.axero-widget-launchpad.launchpad-row-7 .axero-widget-content .lp-content ul li {
    width: calc(100%/7)
}

.axero-widget-launchpad.launchpad-row-8 .axero-widget-content .lp-content ul li {
    width: 12.5%
}

.axero-widget-launchpad.launchpad-row-9 .axero-widget-content .lp-content ul li {
    width: calc(100%/9)
}

.axero-widget-launchpad.launchpad-row-10 .axero-widget-content .lp-content ul li {
    width: 10%
}

.axero-widget-launchpad.launchpad-row-11 .axero-widget-content .lp-content ul li {
    width: calc(100%/11)
}

.axero-widget-launchpad.launchpad-row-12 .axero-widget-content .lp-content ul li {
    width: calc(100%/12)
}

/*Search Hero Template Styles*/
.axero-community-wrapper {
    padding: 0;
}

.cfx-hero {
    padding: 100px 0 40px;
    background: #000;
    margin-top: -30px;
    margin-bottom: 30px;
    background: linear-gradient(180deg, #14232E, #458C99);
    background-position: 25% 50% !important;
    background-origin: border-box !important;
    background-size: cover !important;
    position: relative;
}

/*old gradient linear-gradient(90deg, #14232e, #19273a, #252a44, #362c4c, #492c4f, #5d2a4e, #6f2848, #7e293d)*/

.cfx-hero:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .1);
    content: "";
    height: 100%;
    display: block;
}

.axero-search-block {
    position: relative;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    box-sizing: border-box;
}

.axero-search-block h3 {
    font-size: 1.9em;
    font-weight: normal;
    margin: 60px 0 15px 0
}

.axero-search-block .axero-search-block-inner {
    max-width: 900px;
    margin: auto;
}

.axero-search-block .axero-search-block-inner .search-container a {
    color: #212b35;
}

.axero-search-block .axero-search-block-inner .search-container a.btn.input-button {
    top: 5px;
}

.axero-search-block .axero-search-block-inner .search-container .search-textbox {
    height: 45px;
}

.axero-search-block .axero-search-block-inner .search-container .search-textbox input[type="text"] {
    font-size: 1.2em;
    padding: 5px 33px 5px 15px;
    height: 45px;
    line-height: 45px;
}

.axero-search-block .axero-search-block-sub {
    margin-top: 30px;
}

.axero-search-block .axero-search-block-sub h4 {
    font-size: inherit;
    margin: 0;
}

.axero-search-block .axero-search-block-sub .axero-search-block-links {
    max-width: 700px;
    margin: 15px auto;
}

.axero-search-block .axero-search-block-sub .axero-search-block-links a {
    border: 0px solid #444;
    display: block;
    color: #fff;
    line-height: 35px;
    padding: 0;
    border-radius: 4px;
    background: rgba(20, 35, 46, 0.7);
    font-size: .95em;
}


.axero-search-block .axero-search-block-sub .axero-search-block-links a:hover {
    background: rgba(0, 0, 0, .9);
    text-decoration: none;
}

.axero-search-block .axero-search-block-sub .footer-link {
    margin-top: 25px;
    font-size: 1.2em;
}

.axero-search-block .axero-search-block-sub .footer-link a {
    color: #fff;
}

@media (max-width: 979px) {
    .cfx-hero {
        margin-top: 0px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .axero-search-block .axero-search-block-sub .axero-search-block-links .span4 {
        margin-bottom: 5px;
    }
}

/*Style for Stacked 3 Across Call to Action template*/
.axero-widget-card-article ul.thumbnails {
    margin: 0;
}

.axero-widget-card-article ul.thumbnails li.span6:nth-child(2n+1) {
    margin-left: 0;
}

.axero-widget-card-article ul.thumbnails li.span6 {
    margin-bottom: 0;
}

.cfx-post {
    box-shadow: 0 0 0 1px rgba(63, 63, 68, 0.05), 0 1px 3px 0 rgba(63, 63, 68, 0.15);
    height: 300px;
    background: #fff;
    position: relative;
    border-radius: 4px;
}

.cfx-post .cfx-post-inner {
    padding: 30px;
}

.cfx-post .cfx-post-inner .cfx-post-inner-ellipsis {
    height: 188px;
    max-height: 188px;
    overflow: hidden;
}

.cfx-post .cfx-post-inner .cfx-post-inner-ellipsis .entry-category {
    margin-bottom: 8px;
}

.cfx-post .cfx-post-inner .cfx-post-inner-ellipsis .entry-category a {
    font-size: 10px;
    border-radius: 20px;
    margin-right: 5px;
    pointer-events: auto;
    -webkit-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    text-transform: uppercase;
    display: inline-block;
    height: auto;
    line-height: 10px;
    padding: 7px 11px 6px;
    vertical-align: top;
    background: #f99500;
    color: #fff;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.cfx-post .cfx-post-inner .cfx-post-inner-ellipsis .entry-title {
    font-size: 1.6em;
    font-weight: 600;
    line-height: 1.3em;
}

.cfx-post .cfx-post-inner .cfx-post-inner-ellipsis .entry-title a {
    color: inherit;
}

.cfx-post .cfx-post-inner .cfx-post-inner-ellipsis .entry-content {}

.cfx-post .cfx-post-inner .cfx-post-inner-ellipsis .entry-content p {
    font-size: 1.1em;
    line-height: 1.4em;
    margin: 5px 0 0;
}

.cfx-post .cfx-post-inner .entry-meta {
    margin-top: 8px;
}

.cfx-post.has-image {
    background-position: 25% 50% !important;
    background-origin: border-box !important;
    background-size: cover !important;
}

.cfx-post.has-image::after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .5);
    content: "";
    height: 100%;
    display: block;
    border-radius: 4px;
}

.cfx-post.has-image:hover::after {
    background: rgba(0, 0, 0, .7);
}

.cfx-post.has-image .cfx-post-inner {
    position: absolute;
    z-index: 1;
}

.cfx-post.has-image .cfx-post-inner .cfx-post-inner-ellipsis .entry-title a,
.cfx-post.has-image .cfx-post-inner .entry-meta .p-user .p-user-info .p-user-name a,
.cfx-post.has-image .cfx-post-inner .entry-meta .p-user .p-user-info .p-publish-date {
    color: #fff;
}

.cfx-post.has-image .cfx-post-inner .cfx-post-inner-ellipsis .entry-content {
    display: none;
}

@media (max-width: 767px) {
    .axero-widget-card-article ul.thumbnails li.span6 {
        margin-bottom: 15px;
    }

    .axero-widget-card-article ul.thumbnails li.span6:last-child {
        margin-bottom: 0;
    }
}

.axero-widget-card-article .span4:nth-child(3n+1) {
    margin-left: 0;
}

/* Media query for smaller screens */
@media (max-width: 768px) {

    .my-container .navbar-fixed-top,
    .my-container .navbar-fixed-bottom {
        position: relative;
        /* Change to relative for smaller screens */
    }
}

.btn-color-block {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
    background: #2359E6;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn-color-block:hover {
    background: #2359E6;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.7);
}

.btn-color-block:focus {
    outline: none;
    box-shadow: 0px 0px 0px 2px #fff, 0px 0px 0px 4px #2359E6;
}

.btn-color-block:active {
    transform: translateY(1px);
    background: #2359E6;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}