/*
    GLOBAL
    ROWS
    HEADER
    OTB NAVIGATION
    MEGANAV
    FOOTER
    HERO BANNER
    SUB TEMPLATE
    SUB BANNER
    CARDS
    SPONSOR CAROUSEL
    CTA IMAGE RIGHT
    NEWS/EVENTS/BLOGS
    FORMS
    SEARCH RESULTS
    RESPONSIVE
    BACKEND OVERWRITES
*/


/* GLOBAL */

:root {
    --main-blue: #2472a4;
    --light-blue: #067bc5;
    --alt-blue: #97b9cb;
    --dark-blue: #001c2d;
    --main-green: #669900;
    --main-green-hover: #446600;
    --main-gray: #f6f6f6;
    --dark-gray: #e1e1e1;
}

/* html {
    height: 100%;
} */
body {
    font-family: 'PT Sans', sans-serif;
    line-height: 1.75;
    font-weight: 400;
    font-style: normal;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
.container {
    max-width: 1200px !important;
}
main {
    margin-top: 107px;
}
h1, h2, h3, h4, h5, p, ul, ol, img, blockquote, .card {
    margin-bottom: 2rem;
}
p>img {
    margin-bottom: 0;
}
h1, h2, h3, h4, h5 {
    font-weight: 900;
    color: var(--main-blue);
    line-height: 1;
}
h1 {
    font-size: 3.75rem;
}
h2 {
    font-size: 2.5rem;
}
.top-bar h2:before {
    content: '';
    display: block;
    width: 150px;
    height: .65rem;
    margin: 0 auto 2rem auto;
    background: var(--main-green);
}
.style3 .top-bar h2:before {
    background: #FFF;
}
h2.heading-lg, .heading-lg h2 {
    font-size: 3.75rem;
}
.side-bar h1, .side-bar h2,
h1.side-bar, h2.side-bar {
    padding-left: .9rem;
    border-left: .65rem solid var(--main-green);
}
.side-bar h3, .side-bar h4, .side-bar h5, .side-bar h6,
h3.side-bar, h4.side-bar, h5.side-bar, h6.side-bar {
    padding-left: .9rem;
    border-left: .33rem solid var(--main-green);
}
h3 {
    font-size: 1.875rem;
}
h3.heading-lg, .heading-lg h3 {
    font-size: 2.5rem;
}
h4 {
    color: #000;
    font-size: 1.5rem;
}
h5 {
    color: #000;
}
main ul li, main ol li {
    margin-bottom: 1rem;
}
main ul li:last-child, main ol li:last-child {
    margin-bottom: 0;
}
.lead {
    font-size: 1.5rem;
    font-style: italic;
}
.lead ul li {
    position: relative;
    font-size: 1.25rem;
    font-style: normal;
    list-style: none;
    margin: 0 0 2rem 2.5rem;
}
.lead ul li:before {
    content: '\f192';
    font-family: "Font Awesome 6 Free";
    color: var(--main-green);
    position: absolute;
    left: -2.5rem;
    top: .15rem;
}
blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: #FFF;
    padding: 1.5rem;
    background-color: var(--light-blue);
    clip-path: polygon(0 0, 0 100%, calc(100% - 3rem) 100%, 100% calc(100% - 3rem), 100% 0);
}
blockquote p:last-child, blockquote p:only-child {
    margin: 0;
}
a {
    color: var(--main-blue);
    text-decoration: underline;
    transition: color .3s ease-in-out;
    word-break: break-word;
}
a:hover {
    color: inherit;
    text-decoration: none;
}
a.absolute-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}
a.btn, .btn.primary, .btn.btn-primary, a.btn-link1, .btn-link1 a, a.btn-link2, .btn-link2 a, a.btn-link3, .btn-link3 a {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1;
    color: #FFF;
    text-align: center;
    text-decoration: none;
    word-break: normal;
    padding: .75rem 3rem;
    background-color: var(--main-green);
    border: 2px solid transparent;
    border-radius: 3rem;
    transition: all ease-in-out .3s;
}
a.btn.sm, .btn.primary.sm, .btn.btn-primary.sm, a.btn-link1.sm, .btn-link1.sm a, a.btn-link2.sm, .btn-link2.sm a, a.btn-link3.sm, .btn-link3.sm a {
    font-size: 1rem;
    padding: .75rem;
}
a.btn.primary:hover, .btn.btn-primary:hover, a.btn-link1:hover, .btn-link1 a:hover {
    color: #FFF;
    border-color: transparent;
    background-color: var(--main-green-hover);
    box-shadow: 0 15px 10px -10px rgba(0, 0, 0, .3);
}
a.btn.secondary, a.btn.btn-secondary, a.btn-link2, .btn-link2 a {
    color: #FFF;
    background-color: var(--main-blue);
    border-color: var(--main-blue);
}
a.btn-link3, .btn-link3 a, .rowwrap.style3 a.btn-link2 {
    color: #FFF;
    background-color: transparent;
    border-color: #FFF;
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle, .btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle {
    color: inherit !important;
    background-color: inherit !important;
    border-color: inherit !important;
}
a.btn.secondary:hover, a.btn.btn-secondary:hover, a.btn-link2:hover, .btn-link2 a:hover, a.btn-link3:hover, .btn-link3 a:hover{
    color: #FFF;
    border-color: var(--dark-blue);
    background-color: var(--dark-blue);
    box-shadow: 0 15px 10px -10px rgba(0, 0, 0, .3);
}
a.btn-link3:hover, .btn-link3 a:hover, .rowwrap.style3 a.btn-link2:hover {
    color: var(--main-blue);
    background-color: #FFF;
    border-color: #FFF;
}
p>.btn:not(:first-of-type), p>.btn-primary:not(:first-of-type), p>.btn-secondary:not(:first-of-type), p>.btn-link1:not(:first-of-type), p>.btn-link2:not(:first-of-type) {
    margin-left: 1rem;
}
a.btn[href=""] {
    display: none;
}
p.btn-group a {
    display: inline-block;
    font-size: 1.25rem;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    background: var(--main-green);
    padding: 0.75rem 1.5rem;
    margin-right: 1rem;
    border-radius: 3rem;
    transition: all ease-in-out .3s;
}
p.btn-group a:hover {
    color: #FFF;
    background-color: var(--main-green-hover);
    box-shadow: 0 15px 10px -10px rgba(0, 0, 0, .3);
}
p.btn-group a:last-child {
    margin-right: 0;
}
a.arrow-link, .arrow-link a {
    color: var(--main-blue);
    font-weight: 900;
}
a.arrow-link:after, .arrow-link a:after {
    display: inline-block;
    content: '\f054';
    font-family: "Font Awesome 5 Free";
    font-size: 1rem;
    font-weight: 900;
    color: var(--main-blue);
    margin-left: .25rem;
    position: relative;
    transition: transform .3s ease-in-out;
}
a.arrow-link:hover:after, .arrow-link a:hover:after {
    transform: translateX(5px);
}
a.back-to, .back-to a {
    display: inline-block;
}
a.back-to:before, .back-to a:before {
    content: '\f053';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--main-green);
    display: inline-block;
    margin-right: .5rem;
}
a.arrow:hover, .arrow a:hover {
    text-decoration: none;
}
a.arrow:hover:after, .arrow a:hover:after {
    transform: translateX(5px);
}

/* corner cuts */

.cut-right-sm  {
    clip-path: polygon(0 0, 0 100%, calc(100% - 2rem) 100%, 100% calc(100% - 2rem), 100% 0);
}
.cut-right-md  {
    clip-path: polygon(0 0, 0 100%, calc(100% - 3rem) 100%, 100% calc(100% - 3rem), 100% 0);
}
.cut-right-lg {
    clip-path: polygon(0 0, 0 100%, calc(100% - 5rem) 100%, 100% calc(100% - 5rem), 100% 0);
}
.cut-left-sm {
    clip-path: polygon(100% 0, 100% 100%, 1rem 100%, 0 calc(100% - 1rem), 0 0);
}
.cut-left-md  {
    clip-path: polygon(100% 0, 100% 100%, 3rem 100%, 0 calc(100% - 3rem), 0 0);
}
.cut-left-lg  {
    clip-path: polygon(100% 0, 100% 100%, 5rem 100%, 0 calc(100% - 5rem), 0 0);
}
.box-shadow-cut {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, .2));
}

/* aspect ratio */

.ratio {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.ratio._1x1 {
    padding-top: 100%;
}
.ratio * {
    position: absolute;
    inset: 0;
    top: 0;
}

/* breadcrumbs */

.breadcrumb {
    color: #666;
    padding: 0;
    margin-bottom: 0;
    background: none;
}
.breadcrumb a, .breadcrumb-item.active {
    color: #666;
}

/* pagination */

li.page-item .page-link {
    color: var(--main-blue);
}
li.active.page-item .page-link {
    color: #FFF;
    border-color: var(--main-green);
    background-color: var(--main-green);
}

/* back to top */

#back2top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    color: #FFF;
    width: 3rem;
    height: 3rem;
    padding: 0;
    font-size: 2rem;
    line-height: 1;
    text-align: center;
    background: var(--main-green);
    border: none;
    transition: background ease-in-out .3s;
    z-index: 998;
}
#back2top:hover {
    background: var(--main-green-hover);
}
a#back2site {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    display: inline-block;
    padding: 1rem;
    color: #FFF;
    text-decoration: none;
    background: var(--main-green);
    transition: background ease-in-out .3s;
    z-index: 9998;
}
a#back2site:before {
    content: '\f015';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: .5rem;
}
a#back2site:hover {
    background: var(--main-green-hover);
}

/* images / background-image */

img {
    max-width: 100%;
}
img.-align-right {
    margin-left: 2rem;
}
img.-align-left {
    margin-right: 2rem;
}
img.image-centered {
    display: block;
    width: 100%;
    margin: 0 auto 2rem auto;
}
img.image-centered.image-lg {
    max-width: 75vw;
}
img.image-centered.image-md {
    max-width: 50vw;
}
img.image-centered.image-sm {
    max-width: 25vw;
}
.img-bg {
    position: relative;
    background: var(--main-green);
    background-size: cover !important;
    background-position: center center !important;
}
.img-bg.alt {
    background: var(--main-blue);
}
.img-bg.color-burn {
    background-blend-mode: color-burn;
}
.img-bg > * {
    position: relative;
    z-index: 1;
}
.img-bg.overlay:after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(102,153,0,.8);
}
.img-bg.alt.overlay:after {
    background: rgba(36,114,164,.8);
}
.object-fit-cover {
    object-fit: cover;
}

/* ROWS */

.rowwrap {
    position: relative;
}
.rowwrap.style1 {
    background: #FFF;
}
.rowwrap.style2 {
    background: var(--main-gray);
    filter: drop-shadow(15px 0 10px rgba(0,0,0,.2));
    z-index: 2;
}
.rowwrap.style3 {
    color: #FFF;
    background: var(--main-blue);
    z-index: 3;
}
.rowwrap.style3 h1, .rowwrap.style3 h2, .rowwrap.style3 h3, .rowwrap.style3 h4, .rowwrap.style3 h5, .rowwrap.style3 a {
    color: #FFF;
}
.rowwrap.style3 .card a {
    color: var(--main-blue);
}
.rowwrap.style3 .card a.btn-primary{
    color: #FFF;
}
.rowwrap.style3 .text-muted {
    color: #FFF !important;
}
.sub-main .rowwrap {
    padding: 1.5rem !important;
    margin-bottom: 1.5rem;
}
#hero-banner  + .rowwrap:before {
    content: '';
    display: block;
    position: absolute;
    top: -5rem;
    left: 0;
    width: 5rem;
    height: 5rem;
    z-index: 1;
}
#hero-banner  + .rowwrap.style1:before {
    background: #FFF;
}
#hero-banner  + .rowwrap.style2:before {
    background: var(--main-gray);
}
#hero-banner  + .rowwrap.style2 {
    filter: none;
    z-index: 1;
    box-shadow: 0 0 15px 2px rgba(0, 0, 0, .2);
}
#hero-banner  + .rowwrap.style3:before {
    background: var(--main-blue);
}
#hero-banner  + .rowwrap.style2:after {
    content: '';
    display: block;
    width: 100%;
    height: 1rem;
    filter: drop-shadow(15px 0 10px rgba(0,0,0,.2));
}

/* HEADER */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #FFF;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .3);
    z-index: 999;
    min-height: 107px;
}
header>.container>.row {
    position: relative;
    height: 107px;
    /* Change this to the native height of the header */
}
header .col-auto img {
    margin: 0;
    max-width: 190px;
    max-height: 75px;
}
a.logo {
    display: block;
    width: 163px;
    height: 75px;
    background: url(images/logo.png) no-repeat;
    text-indent: -9999px;
}
.join-link {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    color: #000;
    padding: 0 1rem;
    text-decoration: none;
    border-left: .15rem solid var(--dark-gray);
    transition: color ease-in-out .3s;
}
.join-link:hover {
    color: var(--main-blue);
}
.login {
    display: inline-block;
}
.login-link {
    display: inline-block;
    padding: .25rem 1rem;
    text-decoration: none;
    font-size: 1.5rem;
    color: #FFF;
    background: var(--main-green);
    border-radius: 3rem;
    transition: background ease-in-out .3s;
}
.login-link:hover {
    text-decoration: none;
    color: #FFF;
    background: var(--main-green-hover);
}
.login i {
    color: #000;
    font-size: 1.5rem;
}
.login a:hover {
    text-decoration: none;
}
#login-dropdown {
    display: flex;
}
.login .dropdown-menu.show {
    transform: translate3d(0, 35px, 0px) !important;
    right: 0;
    left: unset !important;
    /* Hack for fixed positioning */
}
a.btn-search {
    display: flex;
    align-items: center;
    font-size: 0;
    margin-left: 1.5rem;
    text-decoration: none;
    color: #000
}
a.btn-search:before {
    content: '\f002';
    font-family: "Font Awesome 5 Free";
    font-size: 1.5rem;
    font-weight: 900;
    display: inline-block;
    min-width: 1.5rem;
}
a.btn-search.active:before {
    content: '\f00d';
}
a.btn-search:hover {
    color: #000;
}
.search {
    background: var(--main-blue);
    position: fixed;
    top: -13px;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 998;
    transition: transform ease-in-out .5s, opacity ease-out .5s;
}
.search.active {
    transform: translateY(120px);
}
.sf-search-input-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: #FFF;
}
.search .form-inline {
    width: 100%;
    max-width: 50rem;
}
main .form-group.sf-search-input-wrapper {
    width: 100%;
    border: 1px solid var(--main-gray);
    margin-bottom: 1.5rem;
}
.sf-search-input-wrapper .form-control {
    width: 100%;
    padding: 1.75rem;
    border: none;
}
.sf-search-input-wrapper .form-control:focus {
    box-shadow: none;
}
.sf-search-input-wrapper .btnSearch {
    font-size: 0;
    background: none !important;
    border: none;
    padding: 0;
    position: absolute;
    right: .5rem;
    top: 50%;
    transform: translateY(-50%);
}
.sf-search-input-wrapper .btnSearch:before {
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--main-blue);
}

/* OTB NAVIGATION */

.main-nav .nav .nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    line-height: 1;
    margin-top: 4px;
    padding: 0 1.5rem
}
.conference .main-nav .nav .nav-link {
    padding: 1.5rem
}
.main-nav .nav .nav-link:after {
    content: '';
    display: block;
    margin: auto;
    height: 4px;
    width: 0px;
    border: none;
    position: relative;
    top: .5rem;
    background: transparent;
    transition: width .5s ease, background-color .5s ease;
}
.main-nav .nav .nav-link:hover, .main-nav .nav .nav-link:focus {
    color: var(--main-blue);
}
.main-nav .nav .nav-item:hover .nav-link:after, .main-nav .nav .nav-item:focus .nav-link:after, .main-nav .nav .nav-item:focus-within .nav-link:after, .main-nav .nav .nav-item:active .nav-link:after {
    width: 100%;
    background: var(--main-green);
}
.main-nav .dropdown-menu {
    margin-left: 2rem;
    top: 4.25rem;
    padding: 0;
    border-radius: 0;
    border: none;
    border-bottom: 5px solid var(--light-blue);
    box-shadow: 1px 1px 5px rgba(0, 0, 0, .3);
    display: block;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transform: scaleY(0);
    transition: max-height ease-in-out 1s;
}
.main-nav .nav .nav-item:hover .dropdown-menu, .main-nav .nav .nav-item:focus .dropdown-menu {
    max-height: 800px;
    visibility: visible;
    transform: scaleY(1);
}
.main-nav .dropdown-item {
    text-decoration: none;
    padding: .5rem 1rem;
    transition: all ease-in-out .2s;
}
.main-nav .dropdown-item:hover {
    background: var(--main-gray);
}
.main-nav .dropdown-item.active, .main-nav .dropdown-item:active {
    color: #16181b;
    background: none;
}

/* MEGANAV */

ul.nav-menu {
    margin: 0;
    padding: 0;
}
.sub-nav {
    position: fixed;
    top: 106px;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    font-size: 1rem;
    text-align: left;
    z-index: 998;
    border-top: .25rem solid var(--alt-blue);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, .2));
}
.sub-nav-inner {
    background: var(--main-gray);
}
.sub-nav-inner .container {
    max-width: 1400px !important;
}
.sub-nav.open {
    visibility: visible;
    max-height: 800px;
    transition: all 1.5s;
    z-index: 999;
}
.sub-nav .main-heading h3 {
    margin: 0 0 1rem 1rem;
    border-width: .65rem;
}
.sub-nav .main-heading:before {
    content: '';
    position: absolute;
    width: .65rem;
    top: 0;
    left: 1.95rem;
    bottom: -1rem;
    background: var(--main-green);
}
.sub-nav .main-heading:after {
    content: '';
    position: absolute;
    z-index: -1;
    height: 15em;
    left: 1rem;
    right: 1rem;
    background: var(--dark-gray);
    clip-path: polygon(0 0, 0 100%, calc(100% - 2rem) 100%, 100% calc(100% - 2rem), 100% 0);
}
.sub-nav h4 {
    color: var(--main-blue);
    margin-bottom: 1rem;
}
.sub-nav h5 a {
    padding-left: .9rem;
    border-left: .33rem solid var(--main-green);
    text-decoration: none;
}
.sub-nav ul {
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
}
.sub-nav ul li {
    margin: 0;
}
.sub-nav ul li a {
    display: block;
    font-weight: 900;
    color: #000;
    text-decoration: none;
    padding: 1rem;
    padding-left: 2rem;
    border-top:1px solid var(--dark-gray);
    transition: all ease-in-out .3s;
}
.sub-nav ul li a strong, .sub-nav ul li strong a {
    color: var(--main-blue);
}
.sub-nav ul li a:hover {
    background-color: var(--dark-gray);
}

/* FOOTER */

footer {
    color: #FFF;
    margin-top: auto;
    background: var(--dark-blue);
    box-shadow: inset 1px 1px 10px rgba(0, 0, 0, .3);
}
footer h3, footer a {
    color: #FFFF;
}
footer h3 {
    margin-bottom: 2rem;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links ul li {
    line-height: 1;
    display: inline-block;
    padding-right: .5rem;
    margin-left: .5rem;
    border-right: .15rem solid #FFF;
}
.footer-links ul li:last-child {
    padding-right: 0;
    border: none;
}
.footer-links ul li a {
    font-weight: 900;
    text-decoration: none;
}
.footer-links ul li a:hover {
    text-decoration: underline;
}
.footer-social {
    margin-bottom: 1.5rem;
}
.footer-social a {
    display: inline-block;
    padding: 0 .5rem;
    font-size: 1.5rem;
    color: #FFF;
}
.footer-social a:hover {
    color: var(--light-blue);
}
.footer-tagline {
    font-size: 1.15rem;
    font-style: italic;
    margin: .5rem 0 3rem 0;
}

/* HERO BANNER */
#hero-banner {
    z-index: 2;
    margin-bottom: -.025rem;
}
#hero-banner .carousel-item {
    padding: 5rem;
}
#hero-banner .img-bg {
    position: absolute;
    inset: 0;
}
#hero-banner .banner-text {
    width: 100%;
    max-width: 40%;
    padding: 2rem;
    font-weight: 900;
    font-size: 1.75rem;
    line-height: 1.15;
    color: #FFF;
    background: rgba(0,87,142,.8);
}
#hero-banner .banner-text h1 {
    color: #FFF;
}
#hero-banner .banner-text p:last-of-type {
    margin-bottom: 0;
}
#hero-banner .banner-text a.btn.primary {
    color: #000;
    background-color: #FFF;
}
#hero-banner .banner-text a.btn.primary:hover {
    color: #FFF;
    background-color: var(--main-green);
}
.carousel-indicators li {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
}
/* SUB TEMPLATE */

.sub-content {
    padding-bottom: 5rem;
}
.sub-left {
    flex: 0 0 250px;
    margin-right: .5rem;
}
.left-nav {
    position: sticky;
    top: 150px;
    padding: 1rem;
    margin-bottom: 2rem;
    background: var(--main-gray);
    border: 1px solid var(--dark-gray)
}
.left-nav h2, .left-nav h3, .left-nav h4 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}
.leaderboard-advert {
    padding-bottom: 5em;
}
.leaderboard-advert img {
    margin: 0;
}
.sub-banner-wrap, .sub-rows {
    display: none;
}

/* SUB NAVIGATION */

ul.collapsibleNav {
    margin-bottom: 0;
}
ul.collapsibleNav, ul.nested {
    padding: 0 0 0 1rem;
    list-style: none;
}
main ul.collapsibleNav a {
    color: var(--main-blue);
    font-weight: 900;
    text-decoration: none;
    transition: none;
}
main ul.collapsibleNav a:hover {
    text-decoration: underline;
}
ul.nested {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    padding: 0 0 0 1rem;
    transition: max-height ease-in-out .3s;
}
ul.nested.active {
    margin-top: .5rem;
    visibility: visible;
    max-height: 800px;
}
ul.nested.active a {
    color: #464646;
    font-weight: normal;
    font-style: italic;
}
.collapsibleNav li {
    position: relative;
    margin-bottom: 1rem;
}
.collapsibleNav li:last-child {
    margin-bottom: 0;
}
span.toggleTree {
    position: absolute;
    margin-left: -1.25rem;
}
span.toggleTree:before {
    content: '\f054';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--main-green);
    display: inline-block;
    transition: all ease-in-out .3s;
}
span.toggleTree.tt-down:before {
    transform: rotate(90deg);
}

/* SUB BANNER */

.sub-banner {
    position: relative;
}
.sub-banner.conference * {
    color: #3f3a3a;
}
.sub-banner.conference img {
    max-height: 150px;
}
.sub-banner.conference .img-bg.overlay:after {
    background: rgba(255,255,255,.8);
}
.sub-banner h1, .sub-banner h2, .sub-banner h3, .sub-banner h4, .sub-banner h5 {
    color: inherit;
}
.sub-banner .img-bg {
    display: flex;
    align-items: flex-end;
    min-height: 50vh;
}
.sub-banner .img-bg:before {
    filter: grayscale(100%);
}
.sub-banner .banner-text {
    max-width: 50%;
    position: absolute;
    left: 0;
    bottom: 5rem;
    color: #FFF;
    padding: 2rem;
    z-index: 997;
    background: rgba(0,87,142,.8)
}

/* CARDS */

.card {
    color: #000;
    border-radius: 0;
    flex-grow: 1;
    border: none;
}
.card.alt {
    border: 1px solid var(--dark-gray);
}
.rowwrap .card h1, .rowwrap .card h2, .rowwrap .card h3, .rowwrap .card h4, .rowwrap .card h5 {
    color: var(--main-blue);
}
.rowwrap .card.hero h1, .rowwrap .card.hero h2, .rowwrap .card.hero h3, .rowwrap .card.hero h4, .rowwrap .card.hero h5,
.card-row h1, .card-row h2, .card-row h3, .card-row h4, .card-row h5 {
    color: #FFF;
}
.card-img-top {
    margin: 0;
    border-radius: 0;
    border-bottom: .5rem solid var(--light-blue);
}
.card.alt .card-img-top {
    border-bottom: 0;
}
.card.hero .img-bg {
    color: #FFF;
    background-color: var(--dark-blue);
}
.card-row {
    font-size: 1.5rem;
}
.card-row .img-bg {
    color: #FFF;
    display: flex;
    align-items: center;
    min-height: 50vh;
    background-attachment: fixed !important;
    box-shadow: inset 0 1px 25px 25px rgba(0, 0, 0, 1);
}
.card.hero .card-body {
    background: rgba(0,87,142,.8);
}
.card.hero .card-title {
    color: #FFF;
    margin-top: 0;
}
.card.testimonial {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .3);
}
.card.testimonial .card-text {
    position: relative;
}
.card.testimonial .card-text:before, .card.testimonial .card-text:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 2rem;
    color: var(--main-green);
    display: block;
    position: absolute;
}
.card.testimonial .card-text:before {
    content: '\f10d';
    top: -3rem;
}
.card.testimonial .card-text:after {
    content: '\f10e';
    right: 0;
    bottom: -3rem;
}
.card.membership {
    filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, .2));
}
.card.membership h2 {
    font-size: 4rem;
    color: var(--main-green);
}
.card.membership h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 5px;
    background: var(--main-blue);
    margin: 2rem auto;
}
.card.membership p {
    margin: 1rem;
}
.card.membership h4 {
    color: #666;
    margin: 0;
}
.membership-disclaimer {
    font-size: .75rem;
}
.membership-disclaimer p {
    margin: 0;
}

/* SPONSORS */

.rowwrap.style2 .sponsor-list img {
    padding: 1rem;
    background: #FFF;
    margin-bottom: 2rem !important;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .3);
}

/* CTA IMAGE RIGHT */

.cta-image-right {
    overflow-x: hidden;
    padding-bottom: 5rem !important;
}
.cta-image-right-date {
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
}
.cta-image-right .col-lg-6:last-of-type {
    margin-bottom: -2rem;
}
.cta-image-right-bg {
    position: relative;
    z-index: 2;
}
.cta-image-right-bg:before, .cta-image-right-bg:after {
    content: '';
    position: absolute;
    width: 300%;
    height: 100%;
    top: 0;
    background: var(--main-gray);
}
.cta-image-right-bg:before {
    right: -300%;
    z-index: 1;
}
.cta-image-right-bg:after {
    left: -300%;
}
.cta-image {
    position: relative;
    z-index: 2;
}
.cta-image div {
    height: 100%;
}
.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA STATS */

.cta-stats {
    margin-bottom: 3rem;
}
.static-img-bg img {
    position: absolute;
    z-index: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-stats .static-img-bg.overlay:after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,86,141,.6);
}
.cta-stats h2 {
    color: #FFF;
}
.stat-box {
    position: relative;
    margin-top: 5rem;
    margin-bottom: -2rem;
    color: #FFF;
    background-color: var(--main-blue);
    z-index: 1;
}
.stat-box h3, .stat-box a {
    color: #FFF;
}
.stat-box img {
    margin-bottom: 1rem;
}
.stat-box .stat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* NEWS/EVENTS/BLOGS */

.content-type h3 {
    font-size: 1.25rem;
    margin-bottom: .5rem;
}
ul.content-type li {
    margin-bottom: 1.5rem;
}
ul.content-type li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.content-type .media img {
    width: 250px;
    height: 250px;
    margin-right: 1.5rem;
    object-fit: cover;
}
.content-type.in-memoriam .media img {
    width: 150px;
    height: 150px;
}
.in-memoriam-img {
    max-width: 250px;
}
.in-memoriam-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.5rem;
    background: var(--main-blue);
}
.in-memoriam-categories li {
    padding: 0 .5rem 0 .5rem;
    margin: 0;
}
.in-memoriam-categories a {
    color: #FFF;
    text-decoration: none;
}
.in-memoriam-categories a:hover {
    text-decoration: underline;
}
.card.content-type {
    transition: all ease-in-out .3s;
}
.card.content-type:hover {
    filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, .2));
}
.card.content-type {
    min-height: 20em;
    border: 1px solid var(--light-blue);
}
.card-tax {
    color: #636363;
    padding: .75rem 1.25rem;
    border-bottom: 1px solid var(--dark-gray);
}
.card-date {
    color: #FFF;
    font-weight: 700;
    padding: .75rem 1.25rem;
    background-color: var(--main-blue);
    transition: all ease-in-out .3s;
}
.card.content-type:hover .card-date {
    background-color: var(--dark-blue);
}
.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 250px;
    margin: 0 1.5rem 1.5rem 0;
    background: var(--main-green);
}
.in-memoriam .placeholder {
    width: 150px;
    height: 150px;
}
.placeholder span:before {
    font-family: "Font Awesome 5 Free";
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFF;
    display: block;
}
.news.placeholder span:before {
    content: '\f1ea';
}
.events.placeholder span:before {
    content: '\f073';
}
.blogs.placeholder span:before {
    content: '\f1d8';
}
.blogs.placeholder span:before {
    content: '\f1d8';
}
.in-memoriam .blogs.placeholder span:before {
    content: '\f007';
}
.content-detail {
    max-width: 800px;
    margin: 0 auto;
}
.detail-info {
    border-left: 5px solid var(--light-blue);
    padding-left: 1rem;
}
.sf-icon-comment {
    fill: var(--main-green);
}
ul.taxonomy {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.taxonomy li {
    display: inline-block;
}
ul.taxonomy li:after {
    content: ',';
    display: inline-block;
}
ul.taxonomy li:last-of-type:after {
    content: '';
}
.k-scheduler-content .sf-event-link {
    color: inherit;
}
/* webinars */
.webinar-listing img, .webinar-speaker img {
    max-width: 250px;
    width: 100%;
    margin-right: 2rem;
}
.webinar-speaker h5 {
    color: var(--main-green);
}

/* ACCORDION */

.accordion .card {
    box-shadow: none;
    overflow: visible;
    margin-bottom: 1rem;
    border-bottom: 0;
    background-color: #FFF;
}
.accordion .card-header {
    position: relative;
    padding: 0;
    margin: 0;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .3);
}
.accordion .btn {
    display: block;
    width: 100%;
    color: #FFF;
    font-size: 1.25rem;
    white-space: normal;
    text-transform: none;
    text-align: left;
    text-decoration: none;
    padding: 1rem;
    padding-right: 3rem;
    background: var(--main-green);
    border-radius: 0;
}
.accordion .btn.collapsed {
    background: var(--main-blue);
    color: #FFF;
}
.accordion .btn:after {
    content: '\f078';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}
.accordion .btn.collapsed:after {
    content: '\f054';
    color: #FFF;
}

/* FORMS */

.form-control[type="text"], .form-control[type="email"] {
    padding: 1.75rem;
    border-radius: 0;
}

/* SEARCH RESULTS */

.sf-search-results .sf-media {
    padding: 1.5rem;
    margin-bottom: 3rem;
    border: 1px solid #CCC;
    border-left: .65rem solid var(--main-green);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .3);
}

/* RESPONSIVE */

/* Custom breakpoint to fit conference navigation */

@media (max-width: 1450px) {
    .conference .main-nav .nav .nav-link, .conference .join-link, .conference .login-link {
        font-size: 1rem;
    }
}

/* XXL */

@media (max-width: 1400px) {
    .main-nav .nav .nav-link, .join-link, .login-link {
        font-size: 1.25rem;
    }
}

@media (max-width: 1300px) {
    .main-nav .nav .nav-link {
        padding: 0 1rem;
    }
    #hero-banner .banner-text {
        max-width: 50%;
    }
}

/* XL */

@media (max-width: 1200px) {
    .main-nav .nav .nav-link, .join-link, .login-link {
        font-size: 1rem;
    }
    .conference .main-nav, .conference .eyebrow, .conference .join-link, .conference .login-link {
        display: none !important;
    }
    .conference .sso .dropleft {
        display: block !important;
    }
    .conference a.btn-search {
        margin: 0 1.5rem;
    }
}

@media (max-width: 1047px) {
    .main-nav .nav .nav-link, .join-link, .login-link {
        font-size: .85rem;
    }
}

/* LG */

@media(max-width: 992px) {
    .main-nav, .eyebrow, .join-link, .login-link {
        display: none;
    }
    a.btn-search {
        margin: 0 1.5rem;
    }
    .sub-main {
        width: 100% !important;
    }
    .sub-main {
        width: 100% !important;
    }
    .cta-image-right .col-lg-6:last-of-type {
        margin-bottom: 1rem;
    }
    .stat-box {
        margin: 0 0 5rem;
    }
    .cta-stats {
        margin-bottom: 0;
    }
    img.-align-left, img.-align-right {
        display: block;
        float: none !important;
        margin: 0 0 2rem;
    }
}

/* MD */

@media(max-width: 768px) {
    .login .dropdown-toggle::after {
        display: none;
    }
    .login .dropdown-menu.show {
        right: -1.5rem;
        /* width of the icon */
        left: auto !important;
    }
    .join-link {
        display: none;
    }
    .footer-links ul li {
        margin: 0 .5rem;
    }
    /* hero banner */
    #hero-banner .img-bg {
        height: auto;
    }
    #hero-banner .banner-text {
        max-width: 100%;
        position: relative;
        left: auto;
        transform: none;
        margin: 0 auto;
        padding: 1rem;
    }
    #hero-banner .carousel-item {
        padding: 5rem 1rem;
    }
    /* sub banner */
    .sub-banner .banner-text {
        max-width: 80%;
    }
}

/* SM */

@media (max-width: 576px) {
    /* Headers */
    h1 {
        font-size: 2.75rem;
    }
    h2, h2.heading-lg, .heading-lg h2 {
        font-size: 2rem;
    }
    h3, h3.heading-lg, .heading-lg h3 {
        font-size: 1.75rem;
    }
    h4 {
        font-size: 1.25rem;
    }
    blockquote {
        font-size: 1rem;
    }
    /* buttons */
    a.btn, .btn.primary, .btn.btn-primary, a.btn-link1, .btn-link1 a, a.btn-link2, .btn-link2 a {
        display: block;
        margin: 1.5rem auto;
        max-width: 60vw;
    }
    p>.btn:not(:first-of-type), p>.btn-primary:not(:first-of-type), p>.btn-secondary:not(:first-of-type), p>.btn-link1:not(:first-of-type), p>.btn-link2:not(:first-of-type) {
        margin-left: auto;
    }
    p.btn-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    p.btn-group a {
        font-size: 1.3rem;
        padding: .75rem 3rem;
        margin: .5rem 0;
        width: 100%;
        max-width: 60vw;
        border-radius: 3rem;
    }
    .lead {
        font-size: 1.25rem;
    }
}

/* BACKEND OVERWRITES */

.sfPageEditor header {
    position: relative;
}
.sfPageEditor header .row {
    height: auto;
}
.sfTemplateEditor .search {
    position: relative;
    opacity: 1;
    top: auto;
    display: block;
}
.sfPageEditor .search {
    display: none;
}
.sfPageEditor main {
    padding-top: 0;
}
.sfPageEditor div[data-aos] {
    opacity: 1 !important;
    transform: none;
    pointer-events: all;
}
.sfPageEditor .cta-image div {
    height: auto;
}
.sfPageEditor .static-img-bg img {
    position: relative;
    z-index: 1;
    inset: auto;
}
.sfPageEditor .cta-stats .static-img-bg.overlay:after {
   display: none;
}
.sfPageEditor .stat-box {
    margin: 0;
}
.sfPageEditor .ratio * {
    position: relative;
    inset: auto;
    top: auto;
}
.sfPageEditor .ratio._1x1 {
    padding-top: 0;
}