html{
	scroll-padding-top: 8rem;
	scroll-behavior: smooth;
}
/*   hamburger   */
.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
	margin: 0;
	padding: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
	float: right;
}

.hamburger:hover {
    opacity: 1;
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 14px;
    float: right;
}

.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	border-radius: 2px;
    position: absolute;
    width: 20px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: #000;
}

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

.hamburger-inner:before {
    top: -5px;
}

.hamburger-inner:after {
    bottom: -5px;
}

.hamburger--squeeze .hamburger-inner {
    transition-timing-function: cubic-bezier(.55, .055, .675, .19);
    transition-duration: 75ms;
}

.hamburger--squeeze .hamburger-inner:before {
    transition: top 75ms ease .12s, opacity 75ms ease;
}

.hamburger--squeeze .hamburger-inner:after {
    transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
}

.hamburger--squeeze.is-active .hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: rotate(45deg);
}

.hamburger--squeeze.is-active .hamburger-inner:before {
    top: 0;
    transition: top 75ms ease, opacity 75ms ease .12s;
    opacity: 0;
}

.hamburger--squeeze.is-active .hamburger-inner:after {
    bottom: 0;
    transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    transform: rotate(-90deg);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 500;
    background: #fff;
    padding: 6px 0 15px;
    -webkit-box-shadow: 0px 2px 25px rgba(0,0,0,0.04);
    -moz-box-shadow: 0px 2px 25px rgba(0,0,0,0.04);
    box-shadow: 0px 2px 25px rgba(0,0,0,0.04);
}

.header-top {
    position: relative;
    z-index: 5;
    margin-bottom: 10px;
}

.header-top > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-top > ul > li {
    margin-right: 32px;
}

.header-top > ul > li:last-child {
    margin-right: 0px;
}

.header-top ul ul {
    margin: 0;
}

.header-top-nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-top-nav > ul > li {
    margin-right: 32px;
    position: relative;
}

.header-top-nav > ul > li > a {
    font-size: 14px;
    font-weight: 300;
    line-height: 19px;
    color: #000;
    display: inline-block;
    padding-top: 6px;
    padding-bottom: 6px;
    position: relative;
}
.header-top-nav > ul > li > a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    bottom: 0;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0f4fdb+0,00c27f+100 */
    background: rgb(15,79,219); /* Old browsers */
    background: -moz-linear-gradient(left,  rgba(15,79,219,1) 0%, rgba(0,194,127,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(15,79,219,1) 0%,rgba(0,194,127,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(15,79,219,1) 0%,rgba(0,194,127,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0f4fdb', endColorstr='#00c27f',GradientType=1 ); /* IE6-9 */
    opacity: 0;
    transition: 0.2s;
}
.header-top-nav > ul > li:hover > a:after {
    opacity: 1;
}

.header-top-nav > ul > li:last-child {
   
    margin-right: 0px;
}
.header-top-nav > ul > li ul {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    -webkit-box-shadow: 0px 2px 25px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 2px 25px rgba(0,0,0,0.1);
    box-shadow: 0px 2px 25px rgba(0,0,0,0.1);
    white-space: nowrap;
    padding: 30px 34px 30px 30px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}

.header-top-nav > ul > li:hover ul {
    opacity: 1;
    visibility: visible;
}

.header-top-nav > ul > li ul li {
    margin-bottom: 13px;
}

.header-top-nav > ul > li ul li:last-child {
    margin-bottom: 0px;
}

.header-top-nav > ul > li ul li a {
    display: block;
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    color: #000;
    transition: 0.2s;
}
.header-top-nav > ul > li ul li a:hover {
    color: #023cba;
}

.header-top-langs {
    font-size: 14px;
    font-weight: 300;
    line-height: 19px;
}
.header-top-langs a {
    color: #000;
}

.header-top-search {
    margin-left: -6px;
    position: relative;
}
.header-top-search a {
    display: block;
    width: 31px;
    height: 31px;
}
.header-top-search a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url(../img/icon-search.svg) no-repeat center center;
}
.header-top-search a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url(../img/icon-close-search.svg) no-repeat center center;
    opacity: 0;
}
.header-top-search a.search-open:before {
    opacity: 0;
}
.header-top-search a.search-open:after {
    opacity: 1;
}

.header-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.logo {
    width: 180px;
}

.logo img {
    max-width: 120px;
}

.nav {
    width: calc(100% - 180px - 350px)
}

.nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.nav > ul > li {
    margin-right: 40px;
}

.nav > ul > li:last-child {
    margin-right: 0px;
}

.nav > ul > li > a {
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    display: block;
    padding: 9px 0;
    position: relative;
    /* cursor: default; */
}
.nav > ul > li > a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 3px;
    bottom: 0;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0f4fdb+0,00c27f+100 */
    background: rgb(15,79,219); /* Old browsers */
    background: -moz-linear-gradient(left,  rgba(15,79,219,1) 0%, rgba(0,194,127,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(15,79,219,1) 0%,rgba(0,194,127,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(15,79,219,1) 0%,rgba(0,194,127,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0f4fdb', endColorstr='#00c27f',GradientType=1 ); /* IE6-9 */
    opacity: 0;
    transition: 0.2s;
}
.nav > ul > li:hover > a:after {
    opacity: 1;
}

.header-right {
    width: 350px
}

.header-right ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.header-right ul li {
    margin-right: 30px;
}

.header-right ul li:last-child {
    margin-right: 0px;
}

.header-right .btn-arrow, 
.header-right .btn-arrow:active, 
.header-right .btn-arrow:focus {
    font-size: 14px;
    letter-spacing: 1px;
}

.header-right .btn-blue, 
.header-right .btn-blue:active, 
.header-right .btn-blue:focus {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1px;
    padding: 9px 18px;
}

.subnav-hold {
    position: absolute;
    /* background: red; */
    padding-top: 17px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}

.nav > ul > li:hover .subnav-hold {
    opacity: 1;
    visibility: visible;
}

.subnav-hold-wide {
    left: 0;
    right: 0;
    width: 100%;
}

.subnav-hold-sm {
    width: 660px;
    left: 50%;
    transform: translateX(-50%);
}
.subnav-hold-md {
    width: 850px;
    left: 50%;
    transform: translateX(-50%);
}

.subnav {
    background: #fff;
    position: relative;
    -webkit-box-shadow: 0px 2px 25px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 2px 25px rgba(0,0,0,0.1);
    box-shadow: 0px 2px 25px rgba(0,0,0,0.1);
    padding: 30px 0px 40px;
}
.subnav:before {
    content: '';
    position: absolute;
    left: -0px;
    right: -0px;
    width: calc(100% + 0px);
    bottom: calc(100% - 1px);
    height: 15px;
    background: #fff;
}


.subnav-1 .subnav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.subnav-1 .subnav > ul > li {
    padding: 0px 40px;
    border-right: 1px solid #ccd0d7;
    width: 100%;
}
.subnav-1 .subnav > ul > li:last-child {
    border-right: none;
}

.subnav-2 .subnav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.subnav-2 .subnav > ul > li {
    padding: 0px 40px;
    border-right: 1px solid #ccd0d7;
    width: 44%;
}
.subnav-2 .subnav > ul > li:nth-child(2n) {
    width: 56%;
}
.subnav-2 .subnav > ul > li:last-child {
    border-right: none;
}

.subnav-3 .subnav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.subnav-3 .subnav > ul > li {
    padding: 0px 40px;
    border-right: 1px solid #ccd0d7;
    width: calc(100% - 370px);
}
.subnav-3 .subnav > ul > li:nth-child(2n) {
    width: 370px;
}
.subnav-3 .subnav > ul > li:last-child {
    border-right: none;
}

.subnav-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    opacity: 0.35;
}

.subnav ul {
    margin: 0;
}

.subnav-links-with-text ul li {
    margin-bottom: 20px;
}

.subnav-links-with-text ul li:last-child {
    margin-bottom: 0px;
}
.subnav-links-with-text ul li a {
    display: block;
    padding-left: 40px;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #000;
    transition: 0.2s;
}
.subnav-links-with-text ul li a:hover {
    color: #00c37f;
}
.subnav-links-with-text ul li a:hover img {
    -webkit-filter: invert(62%) sepia(17%) saturate(2836%) hue-rotate(113deg) brightness(88%) contrast(101%);
    filter: invert(62%) sepia(17%) saturate(2836%) hue-rotate(113deg) brightness(88%) contrast(101%);
}
.subnav-links-with-text ul li a span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding-top: 5px;
    color: #000;
}
.subnav-links-with-text ul li a img {
    position: absolute;
    top: 3px;
    top: 0px;
    left: 0;
    max-width: 25px;
    max-height: 25px;
}

.subnav-links-simple ul li {
    margin-bottom: 15px;
}

.subnav-links-simple ul li:last-child {
    margin-bottom: 0px;
}

.subnav-links-simple ul li a {
    display: block;
    padding-left: 40px;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #000;
    transition: 0.2s;
}

.subnav-links-simple ul li a:hover {
    color: #00c37f;
}
.subnav-links-simple ul li a:hover img {
    -webkit-filter: invert(62%) sepia(17%) saturate(2836%) hue-rotate(113deg) brightness(88%) contrast(101%);
    filter: invert(62%) sepia(17%) saturate(2836%) hue-rotate(113deg) brightness(88%) contrast(101%);
}

.subnav-links-simple ul li a img {
    position: absolute;
    /* top: 3px; */
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    max-width: 25px;
    max-height: 25px;
}

.subnav-links-simple.subnav-links-simple-two-columns ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}
.subnav-links-simple.subnav-links-simple-two-columns ul li {
    width: 52%;
    min-width: 52%;
    margin-right: 5%;
}
.subnav-links-simple.subnav-links-simple-two-columns ul li:nth-child(2n) {
    width: 43%;
    min-width: 43%;
    margin-right: 0%;
}

.subnav-links-simple.subnav-links-simple-two-columns ul li:nth-last-child(2) {
    margin-bottom: 0;
}

.slwi-image {
    padding-bottom: 66%;
    margin-bottom: 20px;
}

.slwi-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
    color: #000;
    margin-bottom: 10px;
    transition: 0.2s;
}

.subnav-link-with-image a {
    display: block;
}
.subnav-link-with-image a:hover .slwi-title {
    color: #00c37f;
}

.slwi-text {
    color: #000;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
}

.subnav-simple-end-link {
    margin-top: 15px;
}

.btn-arrow-first, 
.btn-arrow-first:active, 
.btn-arrow-first:focus {
    display: inline-block;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    transition: 0.2s;
    padding-left: 16px;
    position: relative;
    transition: 0.2s;
}
.btn-arrow-first:hover {
    color: #00c37f;
}

.btn-arrow-first:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    background: url(../img/btn-arrow-orange.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 9px;
    height: 15px;
    transition: 0.2s;
}

.sc-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.sc-image-hold {
    width: 100px;
}

.cs-image {
    padding-bottom: 74%;
}

.sc-content-hold {
    width: calc(100% - 100px);
    padding-left: 20px;
}

.sc-title {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    transition: 0.2s;
}

.sc-item a:hover .sc-title {
    color: #00c37f;
}


.subnav-carousel .owl-dots {
    padding-left: 20px;
    padding-top: 15px;
}


.subnav-carousel.owl-carousel button.owl-dot span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c1c1c1;
    margin: 5px 5px;
    transition: 0.2s;
}
.subnav-carousel.owl-carousel button.owl-dot.active span {
    background: #00c37f;
}

.subnav-carousel.owl-carousel .owl-nav button.owl-next, 
.subnav-carousel.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    width: 20px;
    height: 30px;
    bottom: 1px;
}
.subnav-carousel.owl-carousel .owl-nav button.owl-prev {
    left: -6px;
}
.subnav-carousel.owl-carousel .owl-nav button.owl-next {
    left: 125px;
}

.subnav-carousel.owl-carousel .owl-nav .owl-prev::after {
    content: '';
    background: url(../img/nav-arrow-prev.svg) no-repeat center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.subnav-carousel.owl-carousel .owl-nav .owl-next::after {
    content: '';
    background: url(../img/nav-arrow-next.svg) no-repeat center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.nav > ul > li.has-subnav-2 {
    position: relative;
}
.nav > ul > li.has-subnav-3 {
    position: relative;
}

.aup-wrapper {
    padding-top: 90px;
    padding-bottom: 150px;
    position: relative;
}
.aup-wrapper.has-update-text{
    padding-top: 135px;
}
.aup-wrapper .blue-dots-orn {
    position: absolute;
    left: 0;
    top: 35%;
    transform: translate(-45%, -50%);
}

.entry h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
}
.entry h2:not(:first-child) {
    margin-top: 50px;
}

.entry h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
}
.entry h3:not(:first-child) {
    margin-top: 40px;
}

.entry p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.625;
    margin-bottom: 26px;
}
.entry sup {
    font-size: 70%;
}
.entry p a {
    color: #00C37F;
    font-weight: 600;
    transition: 0.2s;
}
.entry p a:hover {
    color: #023cba;
}

.entry > *:last-child {
    margin-bottom: 0;
}

.aup-right .entry {
    margin-bottom: 50px;
}

.aup-right .entry:last-child {
    margin-bottom: 0px;
}

.aup-right {
    padding-left: 7px;
    position: relative;
}
.aup-right-info {
    position: absolute;
    right: 0;
    top: -43px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
}

.aup-left {
    padding-right: 9.5%;
}

.aup-links ul {
    background: #fff;
}

.aup-links ul li {
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 14px;
}
.aup-links ul li:last-child {
    margin-bottom: 0px;
}

.aup-links ul li a {
    display: block;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1.14px;
    padding: 7px 10% 8px 0;
    position: relative;
}
.aup-links ul li a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 5px;
    bottom: -3px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0f4fdb+0,00c27f+100 */
    background: rgb(15,79,219); /* Old browsers */
    background: -moz-linear-gradient(left,  rgba(15,79,219,1) 0%, rgba(0,194,127,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(15,79,219,1) 0%,rgba(0,194,127,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(15,79,219,1) 0%,rgba(0,194,127,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0f4fdb', endColorstr='#00c27f',GradientType=1 ); /* IE6-9 */
    opacity: 0;
    transition: 0.2s;
}
.aup-links ul li.current a:after {
    opacity: 1;
}

.home-intro-section.intro-correct {
    padding-top: 208px;
    margin-bottom: 60px;
}
.home-intro-section.intro-correct .intro-title:last-child {
    margin-bottom: 0;
}
.home-intro-section.intro-correct .hero-text-wrapper {
    padding-top: 52px;
    padding-bottom: 33px;
}

.tb-lg-w {
    padding: 88px 0 46px;
    position: relative;
}
.tb-lg-w .blue-dots-orn {
    position: absolute;
    left: 100%;
    top: 38px;
    transform: translateX(-82%);
}

.tb-lg-w .section-title {
    margin-bottom: 20px;
}

.logo-grid-section {
    padding: 54px 0 130px;
}

.logo-grid ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}

.logo-grid ul li {
    width: calc(25% - 30px);
    min-width: calc(25% - 30px);
    margin-right: 40px;
    margin-bottom: 40px;
    display: none;
}

.logo-grid ul li:nth-child(4n) {
    margin-right: 0;
}

.logo-grid ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 194px;
    -webkit-box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.15);
    -moz-box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.15);
    box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.15);
    position: relative;
    transition: 0.2s;
}

.logo-grid ul li a:hover {
    -webkit-box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.3);
    -moz-box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.3);
    box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.3);
}

.logo-grid ul li a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0f4fdb+0,00c27f+100 */
    background: rgb(15,79,219); /* Old browsers */
    background: -moz-linear-gradient(left,  rgba(15,79,219,1) 0%, rgba(0,194,127,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(15,79,219,1) 0%,rgba(0,194,127,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(15,79,219,1) 0%,rgba(0,194,127,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0f4fdb', endColorstr='#00c27f',GradientType=1 ); /* IE6-9 */
    opacity: 0;
    transition: 0.2s;
}

.logo-grid ul li a:hover:after {
    opacity: 1;
}

.logo-grid ul li a img {
    max-width: 84%;
    max-height: 80%;
}

.logo-grid-button {
    margin-top: 20px;
    margin-bottom: 20px;
}

.grid-of-three > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
    margin-left: -21px;
    width: calc(100% + 42px);
}
.grid-of-three > ul > li {
    width: calc(33.333% - 42px);
    min-width: calc(33.333% - 42px);
    margin-left: 21px;
    margin-right: 21px;
}

.resource-tiles-section {
    padding: 50px 0 110px;
    position: relative;
    min-height: 50vh;
}
.resource-tiles-section .blue-dots-orn {
    position: absolute;
    left: 0;
    top: -16px;
    transform: translateX(-65%);
}

.tb-ci-w {
    padding: 88px 0 80px;
    position: relative;
}
.tb-ci-w .blue-dots-orn {
    position: absolute;
    top: 60px;
    left: 0;
    transform: translateX(-34%);
}

.tb-ci-w-image {
    padding-bottom: 80%;
    min-height: 100%;
}

.tb-ci-w-image-width {
    min-width: 112.17%;
    margin-left: 20%;
    min-height: 100%;
    height: 100%;
}

.tb-ci-w-hold {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; */
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}

.tb-ci-w-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center

}

.tb-ci-w-right {
}

.tb-ci-w-hold .section-title {
    margin-bottom: 20px;
}

.tb-ci-w-left {
    padding: 60px 0;
}

main,
footer {
    position: relative;
    overflow: hidden;
}

.tb-ic-w {
    padding: 58px 0 145px;
}

.tb-ic-w-hold {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; */
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}

.tb-ic-w-hold .section-title {
    margin-bottom: 20px;
}

.tb-ic-w-image {
    padding-bottom: 87%;
    min-height: 100%;
}

.text-18 p {
    margin-bottom: 28px;
}

.text-18 p:last-child {
    margin-bottom: 0px;
}
.text-18 p + ul {
    margin-top: -10px;
}
.text-18 ul:not(:last-child) {
    margin-bottom: 20px;
}
.text-18 ul li {
    padding-left: 20px;
    position: relative;
    font-size: 16px;
}
.text-18 ul li:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #023cba;
    position: absolute;
    top: 8px;
    left: 0;
}
.bg-black-section .text-18 ul li:before {
    background-color: #00C27F;
}

.text-18 a {
    text-decoration: underline;
    color: #000;
}
.text-18 a:hover {
    text-decoration: none;
}

.bg-black-section .text-18 a {
    color: #fff;
}


.tb-ic-w-right {
    padding-left: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tb-ic-w-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 9.5%;
}

.tb-ol-ci-hold {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}

.tb-ol-ci-left {
    padding: 207px 8% 0px 0;
}

.tb-ol-ci-image {
    display: block;
    /* min-height: 100%; */
    padding-bottom: 89%;
    position: relative;
}

.tb-ol-ci {
    position: relative;
    padding-bottom: 150px;
    color: #fff;
}
.tb-ol-ci .row {
    position: relative;
    z-index: 5;
}
.tb-ol-ci:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    top: 80px;
    height: calc(100% - 80px);
    background: #000;
}

.tb-ol-ci-title {
    opacity: 0.5;
    color: #ffffff;
    /* font-size: 70px; */
    font-weight: 700;
    /* line-height: 1.36; */
    margin-bottom: 33px;
}
.tb-ol-ci-text {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.58;
    margin-bottom: 20px;
}

.tb-ol-ci-name {
    color: #00c37f;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
}

.tb-ol-ci-name span {
    display: block;
    color: #fff;
    font-size: 16px;
}
.tb-logo-white .tb-ol-ci-name span {
    color: #000;
}

.tb-ol-ci-right {
    padding-left: 30px;
}

.tb-ol-ci-image-width {
    min-height: 100%;
    height: 100%;
    width: 120.3%;
}

.video-black-button-hold {
    padding: 21px 31px;
    background-color: #000;
    position: absolute;
    left: -1px;
    bottom: -1px;
}

.btn-arrow.btn-arrow-white,
.btn-arrow.btn-arrow-white:focus,
.btn-arrow.btn-arrow-white:active {
    color: #fff !important;
}

.lg-tiles-two-section {
    padding: 150px 0 110px;
}

.lg-tiles-two-section .section-top {
    margin-bottom: 60px;
}
.logo-grid-section .section-top {
    margin-bottom: 50px;
}
.lg-tiles-two-section .section-title {
    margin-bottom: 20px;
}
.logo-grid-section .section-title {
    margin-bottom: 20px;
}

.lg-tiles-two-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}
.lg-tiles-two-list ul li {
    width: 45.5%;
    min-width: 45.5%;
    margin-right: 9%;
    margin-bottom: 40px;
}

.lg-tiles-two-list ul li:nth-child(2n) {
    margin-right: 0%;
}

.lg-tt-image {
    padding-bottom: 59%;
    margin-bottom: 20px;
}

.lg-tt-title {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.39;
    color: #000;
    margin-bottom: 20px;
}

.lg-tt-text {
    color: #000;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
    margin-bottom: 28px;
}

.tb-ol-ic {
    padding-top: 140px;
    position: relative;
    color: #fff;
}
.tb-ol-ic:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 100px;
    width: 100%;
    height: calc(100% - 100px);
    background: #000;
}
.tb-ol-ic .row {
    position: relative;
    z-index: 5;
}

.tb-ol-ic-hold {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}

.tb-ol-ic-right {
    padding-bottom: 255px;
}

.tb-ol-ic-image-width {
    height: 100%;
    min-height: 100%;
}

.tb-ol-ic-image {
    min-height: 100%;

}

.tb-ol-ic-right {
    padding-left: 10px;
}
.tb-ol-ic-right .section-title {
    margin-bottom: 20px;
}

.tb-ol-ic-left {
    padding-right: 10px;
}

.tb-ol-ic-image-width {
    margin-left: -16%;
}

.tb-ol-ic-text-link {
    margin-top: 20px;
}

.tb-ol-ic-text {
    margin-bottom: 28px;
}
.tb-ol-ic-text:last-child {
    margin-bottom: 0px;
}

.single-quote-section {
    padding: 150px 0 95px;
    position: relative;

    padding: 95px 0 95px;
}

.single-quote-text {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 20px;
}

.single-quote-author {
    color: #023cba;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
}
.single-quote-author span {
    display: block;
    font-size: 16px;
    color: #000;
    line-height: 1.6;
}

.single-quote-section .blue-dots-orn {
    position: absolute;
    left: 100%;
    bottom: 25px;
    transform: translateX(-70%);
}

.tb-ic-w-right-button {
    margin-top: 30px;
}

.tb-ic-w-content .socs-list {
    margin-top: 40px;
}

.socs-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.socs-list ul li:not(:last-child) {
    margin-right: 20px;
}

.full-image-tiles-two-section {
    padding: 66px 0 75px;
}
.full-image-tiles-two-section .section-title {
    margin-bottom: 60px;
}

.full-image-tiles-two-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}

.full-image-tiles-two-list ul li {
    width: calc(50% - 20px);
    min-width: calc(50% - 20px);
    margin-right: 40px;
    margin-bottom: 40px;
}

.full-image-tiles-two-list ul li:nth-child(2n) {
    margin-right: 0px;
}
.full-image-tiles-two-list ul li a {
    display: block;
    padding-bottom: 120.66%;
    position: relative;
    overflow: hidden;
}
.full-image-tiles-two-list ul li a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,1+100 */
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
}

.full-image-tiles-two-list ul li a:hover .btn-arrow:after {
    right: -7px;
}

.full-image-tiles-two-list ul li a > img {
    transition: 0.5s;
}
.full-image-tiles-two-list ul li a:hover > img {
    transform: scale(1.1);
}

.full-image-tiles-two-list-content {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 40px;
    z-index: 5;
}

.fittl-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.375;
    margin-bottom: 20px;
}

.fittl-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.625;
    margin-bottom: 20px;
}

.intro-event-logo {
    margin-bottom: 22px;
}
.intro-event-logo:last-child {
    margin-bottom: 0px;
}

.intro-event-button {
    padding-left: 135px;
}

.intro-event.mr-bt {
    margin-bottom: 80px;
}
.intro-event .hero-text-wrapper {
    padding-bottom: 0;
    padding-top: 86px;
}
.intro-event .hero-text-wrapper:before {
    /* content: '';
    position: absolute;
    bottom: -1px;
    left: -5000px;
    right: -5000px;
    width: calc(100% + 10000px);
    height: 170px;
    
    background-color: #fff;
     */
     top: 180px;
}

.intro-event .blue-dots-orn {
    position: absolute;
    bottom: 55px;
    left: 100%;
    transform: translateX(-76%);
    z-index: 10;
}

.resources-section.resources-edited-section {
    padding-top: 55px;
}

.tb-ol-ci-title img {
    max-width: 188px;
    max-height: 60px;
}

.tb-list-section {
    padding: 80px 0 90px;
    position: relative;
}
.tb-list-section .blue-dots-orn {
    position: absolute;
    top: 15px;
    left: 100%;
    transform: translateX(-49%);
}

.tb-list-section .section-title {
    margin-bottom: 20px;
}

.tb-list-section .text-24 {
    margin-bottom: 30px;
}

.tb-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}

.tb-list ul li {
    width: calc(50% - 10px);
    min-width: calc(50% - 10px);
    margin-right: 20px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
    padding-left: 21px;
    position: relative;
}
.tb-list ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00c37f;

}

.tb-list ul li:nth-child(2n) {
    margin-right: 0px;
}

.tb-tc-section {
    padding: 55px 0 150px;
    position: relative;
}

.grey-bg-text {
    background: #f5f5f5;
    padding: 30px 30px;
}
.grey-bg-text p {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.58;
    margin-bottom: 20px;
}

.grey-bg-text p:last-child {
    margin-bottom: 0px;
}

.grey-bg-text p a {
    color: #023cba;
    font-size: 18px;
    font-weight: 300;
    transition: 0.2s;
}

.grey-bg-text p a:hover {
    color: #00c37f;
}

.tb-tc-left {
    padding-right: 9.2%;
}

.tb-tc-left .grey-bg-text {
    margin-top: 36px;
}

.tb-tc-right {
    padding-left: 10px;
}
.tb-tc-right-button {
    margin-top: 30px;
}

.simple-list ul li {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.625;
    padding-left: 21px;
    position: relative;
    margin-bottom: 10px;
}
.simple-list ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00c37f;
}
.simple-list ul li:last-child {
    margin-bottom: 0px;
}

.tb-ol-ci-left .title-36 {
    margin-bottom: 30px;
}
.tb-ol-ci-left .title-36:not(:last-child) {
    margin-bottom: 30px;
}
.tb-ol-ci-left .text-18:not(:last-child) {
    margin-bottom: 54px;
}
.tb-ol-ci-left .title-24:not(:last-child) {
    margin-bottom: 10px;
}

.accordion-image-section {
    padding: 105px 0;
}

.ai-left {
    padding-right: 10px;
}

.ai-image {
    padding-bottom: 112.6%;
}
.ai-image img {
    opacity: 0;
    transition: 0.2s;
}
.ai-image img.active {
    opacity: 1;
}

.ai-hold {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ai-right {
    padding-left: 9%;
}

.ai-acc .accordion-title {
    padding: 25px 0px;
    padding-right: 50px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: #000;
    position: relative;
    border: none;
    border-bottom: 0;
}


.ai-acc :last-child:not(.is-active)>.accordion-title {
    border-bottom: none
}

.ai-acc .accordion-content {
    padding: 0;
    border: none;
    background-color: transparent;
    color: #000;
    font-weight: 300;
    padding-bottom: 30px;
}

.ai-acc .accordion-item:first-child {
    border-top: 1px solid #eaeaea;
}
.ai-acc .accordion-item {
    position: relative;
    border-bottom: 1px solid #eaeaea;
}
.ai-acc .accordion-item:before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    width: 100%;
    height: 3px;
    opacity: 0;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0f4fdb+0,00c27f+100 */
    background: rgb(15,79,219); /* Old browsers */
    background: -moz-linear-gradient(left,  rgba(15,79,219,1) 0%, rgba(0,194,127,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(15,79,219,1) 0%,rgba(0,194,127,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(15,79,219,1) 0%,rgba(0,194,127,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0f4fdb', endColorstr='#00c27f',GradientType=1 ); /* IE6-9 */
    transition: 0.2s;
}

.ai-acc .accordion-item.is-active:before {
    opacity: 1;
}

.ai-acc .accordion-title:focus, 
.ai-acc .accordion-title:hover {
    background-color: transparent;
    color: #000;
}

.ai-acc .accordion-title:before {
    content: '';
    position: absolute;
    right: 6px;
    top: 50%;
    margin-top: -4px;
    border: solid #000;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg) translateY(-50%);
    -webkit-transform: rotate(45deg) translateY(-50%);
}

.ai-acc .is-active>.accordion-title:before {
    content: '';
    margin-top: -6px;
    right: 0px;
    transform: rotate(-135deg) translateY(-50%);
    -webkit-transform: rotate(-135deg) translateY(-50%);
}

.fi-image {
    padding-bottom: 122.44%;
}

.form-block-fi-section {
    padding: 95px 0 150px;
}

.fi-right {
    padding-left: 10px;
}

.fi-left {
    padding-right: 10px;
}

.fi-image-hold {
    margin-left: 16%;
}

.fi-left .title-36 {
    line-height: 1.4;
    margin-bottom: 45px;
}

.intro-partner-detail .blue-dots-orn {
    position: absolute;
    bottom: 55px;
    left: 100%;
    transform: translateX(-76%);
    z-index: 10;
}

.intro-partner-detail {
    overflow: hidden;
}

.intro-partner-detail .hero-text-wrapper:before {
    content: '';
    position: absolute;
    top: 280px;
    left: -5000px;
    right: -5000px;
    height: 1000px;
    width: calc(100% + 10000px);
    background-color: #fff;
}

.text-24 p {
    margin-bottom: 38px;
}

.text-24 p:last-child {
    margin-bottom: 0px;
}

.tb-ci-w.tb-ci-w-large .blue-dots-orn {
    top: 6px;
}

.tb-ic-w.tb-ic-w-large {
    padding: 70px 0 120px;
    position: relative;
}

.tb-ic-w.tb-ic-w-large .blue-dots-orn {
    position: absolute;
    bottom: 100px;
    left: 100%;
    transform: translateX(-58%);
}

.tb-ic-w.tb-ic-w-large .tb-ic-w-left {
    padding-right: 7.68%;
}
.tb-ic-w.tb-ic-w-large .tb-ic-w-image {
    padding-bottom: 108%;
}
.tb-ci-w.tb-ci-w-large .tb-ci-w-image-width {
    min-width: 1%;
    margin-left: 18%;
    width: 98%;
}
.tb-ci-w.tb-ci-w-large .tb-ci-w-left {
    padding: 0px 0;
}
.tb-ci-w.tb-ci-w-large .tb-ci-w-image {
    padding-bottom: 108%;
}

.co-ev-section .blue-dots-orn.blue-dots-orn-2 {
    top: auto;
    bottom: 20px;
    transform: translateX(-60%);
}

.error404 .hero-text-wrapper .intro-title {
    max-width: 730px;
}

.home-intro-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.home-intro-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 110%;
    min-height: 110%;
}

.sfg-logos-section {
    padding: 60px 0 110px;
}

.grid-of-four > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -20px;
    width: calc(100% + 40px);
}
.grid-of-four > ul > li {
    width: calc(25% - 40px);
    min-width: calc(25% - 40px);
    margin: 0 20px 40px;
}

.grid-of-four > ul > li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 194px;
    -webkit-box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.15);
    -moz-box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.15);
    box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.15);
    position: relative;
    transition: 0.2s;
}

.grid-of-four > ul > li a:hover {
    -webkit-box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.3);
    -moz-box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.3);
    box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.3);
}

.grid-of-four ul li a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0f4fdb+0,00c27f+100 */
    background: rgb(15,79,219); /* Old browsers */
    background: -moz-linear-gradient(left,  rgba(15,79,219,1) 0%, rgba(0,194,127,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(15,79,219,1) 0%,rgba(0,194,127,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(15,79,219,1) 0%,rgba(0,194,127,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0f4fdb', endColorstr='#00c27f',GradientType=1 ); /* IE6-9 */
    opacity: 0;
    transition: 0.2s;
}

.grid-of-four ul li a:hover:after {
    opacity: 1;
}

.grid-of-four ul li a img {
    max-width: 84%;
    max-height: 80%;
}

.filter-box {
    position: relative;
}
.filter-box span {
    display: block;
    position: relative;
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    padding: 4px 0px;
    color: rgba(0,0,0,0.5);
    border-bottom: 2px solid #eaeaea;
    cursor: pointer;
}
.filter-box span:after {
    content: '';
    position: absolute;
    right: 6px;
    top: 50%;
    margin-top: -4px;
    border: solid #000;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg) translateY(-50%);
    -webkit-transform: rotate(45deg) translateY(-50%);
}
.filter-box.active span:after {
    right: -1px;
    margin-top: -6px;
    transform: rotate(-135deg) translateY(-50%);
    -webkit-transform: rotate(-135deg) translateY(-50%);
}

.filter-box-list {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    padding: 20px 20px;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    max-height: 400px;
    overflow: auto;
    -webkit-box-shadow: 0px 5px 10px 3px rgba(127,127,127,0.1);
    -moz-box-shadow: 0px 5px 10px 3px rgba(127,127,127,0.1);
    box-shadow: 0px 5px 10px 3px rgba(127,127,127,0.1);
}
.filter-box.active .filter-box-list {
    opacity: 1;
    visibility: visible;
}

.filter-box-list ul {
    margin: 0;
    padding: 0;
}

.filter-grid {
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
}

.filter-box-list ul li {
    margin-bottom: 10px;
}

.filter-box-list ul li.indent {
    padding-left: 15px;
}

.filter-box-list ul li:last-child {
    margin-bottom: 0px;
}

.filter-box-list ul li input {
    display: none;
}
.filter-box-list ul li label {
    display: block;
    margin: 0;
    position: relative;
    padding-left: 23px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: capitalize;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.filter-box-list ul li label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    border: 1px solid #000;
}
.filter-box-list ul li label:after {
    content: '';
    position: absolute;
    left: 2px;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: #000;
    opacity: 0;
}
.filter-box-list ul li input:checked + label:after {
    opacity: 1;
}

.filter-input {
    position: relative;
}
.filter-input:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    background: url(../img/icon-search2.svg) no-repeat center center;
}

.filter-input input,
.filter-input input:focus {
    border: none;
    outline: none;
    height: 38px;
    margin: 0;
    box-shadow: none;
    border-bottom: 2px solid #eaeaea;
    padding: 2px 10px 2px 28px;
    font-size: 18px;
    font-weight: 300;
    color: #000;
}

.filter-input input::-webkit-input-placeholder {
	color: #000;
	opacity: .5;
}
.filter-input input::-moz-placeholder {
	color: #000;
	opacity: .5;
}
.filter-input input:-ms-input-placeholder {
	color: #000;
	opacity: .5;
}
.filter-input input:-moz-placeholder {
	color: #000;
	opacity: .5;
}

.sfg-logos-grid ul li a span {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.rt-image {
    padding-bottom: 62.18%;
}

.rt-content {
    padding: 30px 30px 0;
}

.resource-tiles-list ul li a,
.resource-tiles-list-other ul li a {
    display: block;
    width: 100%;
    background: #fff;
    min-height: 100%;
    position: relative;
    padding-bottom: 80px;
    -webkit-box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.15);
    -moz-box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.15);
    box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.15);
    transition: 0.2s;
}

.resource-tiles-list ul li a:after,
.resource-tiles-list-other ul li a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0f4fdb+0,00c27f+100 */
    background: rgb(15,79,219); /* Old browsers */
    background: -moz-linear-gradient(left,  rgba(15,79,219,1) 0%, rgba(0,194,127,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(15,79,219,1) 0%,rgba(0,194,127,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(15,79,219,1) 0%,rgba(0,194,127,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0f4fdb', endColorstr='#00c27f',GradientType=1 ); /* IE6-9 */
    opacity: 0;
    transition: 0.2s;
}
.resource-tiles-list ul li a:hover:after,
.resource-tiles-list-other ul li a:hover:after {
    opacity: 1;
}
.resource-tiles-list ul li a:hover,
.resource-tiles-list-other ul li a:hover {
    -webkit-box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.5);
    -moz-box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.5);
    box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.5);
}

.rt-link {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 30px;
}

.rt-label {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75;
    margin-bottom: 10px;
}

.rt-title {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.375;
    color: #000;
    margin-bottom: 20px;
}

.rt-text {
    color: #000;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.625;

    max-height: 130px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.resource-tiles-list ul li {
    margin-bottom: 40px;
    display: none;
}
.resource-tiles-list-other ul li {
    margin-bottom: 40px;
}

.resource-tiles-list ul li.filtered-option,
.resource-tiles-list-other ul li.filtered-option {
    display: none;
}

.resource-tiles-more-button {
    padding-top: 20px;
    padding-bottom: 40px;
}

.search-results-filter ul li input {
    display: none;
}
.search-results-filter ul li label {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1.1428572px;
    padding-left: 22px;
    position: relative;
    cursor: pointer;
}
.search-results-filter ul li label:before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 2px;
    border: 1px solid #000;
    position: absolute;
    top: 6px;
    left: 0;
}
.search-results-filter ul li label:after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: #000;
    position: absolute;
    top: 8px;
    left: 2px;
    opacity: 0;
}
.search-results-filter ul li input:checked + label:after {
    opacity: 1;
}

.mob-nav-hold {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding:  100px 0 30px;
    z-index: 400;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.mob-nav-hold.close {
    opacity: 1;
    visibility: visible;
}

.mob-nav {
    
}
.mob-nav > ul > li {
    position: relative;
    margin-bottom: 30px;
}

.mob-nav > ul > li:last-child {
    margin-bottom: 0px;
}

.mob-nav > ul > li a {
    display: block;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.mob-nav > ul > li span {
    position: absolute;
    width: 40px;
    height: 40px;
    right: -9px;
    top: -11px;
}
.mob-nav > ul > li span:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border: solid #ff7f00;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 4px;
    transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
}

.mob-subnav-hold {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 300;
    background: #fff;
    padding: 100px 0 30px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.mob-subnav-hold.close {
    opacity: 1;
    visibility: visible;
}

.mob-nav-hold .subnav {
    background: transparent;
    box-shadow: none;
    padding: 0;
}
.mob-nav-hold .subnav:before {
    display: none;
}
.mob-nav-hold .subnav-link-with-image a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.mob-nav-hold .slwi-image {
    width: 106px;
    height: 70px;
    padding-bottom: 0;
    margin-bottom: 0;   
}
.mob-nav-hold .slwi-content {
    width: calc(100% - 106px); 
    padding-left: 10px;
    max-width: 200px;
}

.mob-trigger-back {
    margin-bottom: 30px;
    display: block;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 18px;
    position: relative;
}
.mob-trigger-back:before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    border: solid #ff7f00;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.mob-nav-bottom {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #ccd0d7;
}

.mob-nav-bottom ul li {
    margin-bottom: 20px;
}

.mob-nav-bottom ul li:last-child {
    margin-bottom: 0px;
}


.mob-nav-bottom .btn-blue, 
.mob-nav-bottom .btn-blue:active, 
.mob-nav-bottom .btn-blue:focus {
    font-size: 14px;
    letter-spacing: 1px;
    padding: 9px 18px;
}

.mob-nav-bottom .btn-arrow, 
.mob-nav-bottom .btn-arrow:active, 
.mob-nav-bottom .btn-arrow:focus {
    font-size: 14px;
    letter-spacing: 1px;
}

.mob-sec-nav-subnav-hold .subnav-links-simple ul li a {
    padding-left: 0px;
}

header.nav-active {
    box-shadow: none;
}

body.oh {
    overflow: hidden;
}

.featured-resource-section {
    padding: 80px 0 50px;
    position: relative;
}
.featured-resource-section .blue-dots-orn {
    position: absolute;
    left: 0;
    top: -16px;
    transform: translateX(-65%);
}

.frb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}

.frb-image {
    padding-bottom: 62%;
    min-height: 100%;
}

.post-type-archive-newsroom .frb-image {
    position: relative;
    -webkit-box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.15);
    -moz-box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.15);
    box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.15);
}
.post-type-archive-newsroom .frb-image img {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
}

.frb-content {
    background-color: #000;
    color: #fff;
    padding: 40px 40px 100px;
    min-height: 410px;
    position: relative;
    z-index: 5;
}
.frb-content .rt-title {
    color: #fff;
}
.frb-content .rt-text {
    color: #fff;
}

.frb-image-width {
    width: calc(100% + 100px);
    margin-left: -100px;
}

.frb-link {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    bottom: 28px;
    padding-left: inherit;
    padding-right: inherit;
}

.rt-image .rt-label {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 5;
    background: #fff;
    padding: 18px 30px 4px;
    margin-bottom: 0;
    min-width: 68%;
    color: #000;
}

.two-accross-h-tiles-section {
    padding: 50px 0 35px;
    position: relative;
}

.two-accross-h-tiles-section .blue-dots-orn {
    position: absolute;
    top: 0;
    left: 100%;
    transform: translateX(-54%);
}

.two-accross-h-tiles-section .text-24 {
    margin-bottom: 60px;
}

.two-accross-h-tiles ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}
.two-accross-h-tiles ul li {
    width: calc(50% - 20px);
    min-width: calc(50% - 20px);
    margin-right: 40px;
    margin-bottom: 40px;
}
.two-accross-h-tiles ul li:nth-child(2n) {
    margin-right: 0px;
}

.pr-box {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
    background-color: #fff;
    -webkit-box-shadow: 0px 20px 30px rgba(127,127,127,0.15);
    -moz-box-shadow: 0px 20px 30px rgba(127,127,127,0.15);
    box-shadow: 0px 20px 30px rgba(127,127,127,0.15);
}

.pr-box-left {
    width: 50%;
}

.pr-box-right {
    width: 50%;
    padding: 28px 28px 110px;
    min-height: 438px;
    position: relative;
}

.pr-box-button {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    bottom: 30px;
    padding-left: inherit;
    padding-right: inherit;
}

.pr-box-title {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.375;
    margin-bottom: 20px;
}

.pr-box-link {
    margin-bottom: 20px;
}

.pr-box-link:last-child {
    margin-bottom: 0px;
}

.pr-box-link span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.57;
}

.title-section {
    padding: 70px 0 150px;
}

.title-section-button {
    margin-top: 20px;
}

.grid-of-four.filter-grid > ul > li {
    margin-bottom: 0;
}

.blog-subscribe {
    margin-top: 55px;
}

.blog-single-author {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.55;
    margin-bottom: 13px;
}
.blog-single-author span {
    display: block;
    font-weight: 400;
}
.home-intro-section.intro-single {
    min-height: 275px;
    padding-bottom: 0;
}

.intro-single-bottom-hold {
    margin-top: -165px;
}
.intro-single-image {
    padding-right: 13.5%;
}

.intro-single-bottom {
    position: relative;
    z-index: 5;
    margin-bottom: 27px;
}

.intro-single-bottom .blue-dots-orn {
    position: absolute;
    top: 140px;
    transform: translate(-78%, -50%);
    left: 100%;

}

.intro-single-bottom .section-title  {
    margin-top: 35px;
}

.intro-single-image-hold {
    padding-bottom: 74.76%;
}

.home-section-filter.intro-single::before {
    display: none;
}
.home-section-filter.intro-single::after {
    content: '';
    width: 100%;
    height: 100%;
    background: url(../img/intro-blog-single.png) no-repeat left center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.related-section {
    padding: 70px 0 110px;
}
.related-section .title-36 {
    margin-bottom: 30px;
}

.n-d-section.single-blog-n-d-section {
    padding-bottom: 80px;
}

.sidebar-subscribe {
    margin-bottom: 40px;
}

.subscribe-form-style .gform_title,
.subscribe-form-style .gform_description {
    display: none !important;
}
.subscribe-form-style .gform_legacy_markup_wrapper ul.gform_fields li.gfield {
    padding: 0 !important;
    margin: 0 !important;
}
.subscribe-form-style .gform_legacy_markup_wrapper .top_label div.ginput_container {
    margin: 0 !important;
}
.subscribe-form-style .ginput_container input,
.subscribe-form-style .ginput_container input:focus,
.subscribe-form-style .ginput_container input:active {
    width: 100% !important;
    padding: .5rem 0 !important;
    margin: 0 0 20px !important;
    font-size: 18px !important;
    font-weight: 300 !important;
    line-height: 1.55px !important;
    color: #000 !important;
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
    border-bottom: 2px solid #D8D8D8 !important;
    height: 29px !important;
}
.subscribe-form-style .gform_legacy_markup_wrapper li.gfield.gfield_error .ginput_container input,
.subscribe-form-style .gform_legacy_markup_wrapper li.gfield.gfield_error .ginput_container input:focus,
.subscribe-form-style .gform_legacy_markup_wrapper li.gfield.gfield_error .ginput_container input:active {
    border-color: #790000 !important;
}

.subscribe-form-style .ginput_container input::placeholder {
    color: #000;
    opacity: 0.5;
}
.subscribe-form-style .ginput_container input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #000;
    opacity: 0.5;
}
.subscribe-form-style .ginput_container input::-moz-placeholder { /* Firefox 19+ */
    color: #000;
    opacity: 0.5;
}
.subscribe-form-style .ginput_container input:-ms-input-placeholder { /* IE 10+ */
    color: #000;
    opacity: 0.5;
}
.subscribe-form-style .ginput_container input:-moz-placeholder { /* Firefox 18- */
    color: #000;
    opacity: 0.5;
}

.subscribe-form-style .gform_button,
.subscribe-form-style .gform_button:focus,
.subscribe-form-style .gform_button:active {
    display: inline-block !important;
    color: #ffffff !important;   
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;    
    text-transform: uppercase !important;
    letter-spacing: 1.14px !important;
    padding: 11px 29px !important;
    background-color: #023cba !important;
    border-radius: 29px !important;
    transition: 0.2s !important;
}
.subscribe-form-style .gform_button:hover {
    background-color: #185df2 !important;
    color: #fff !important;
}
.subscribe-form-style .gform_legacy_markup_wrapper .gform_footer {
    padding: 0 !important;
    margin: 0 !important;
}
.subscribe-form-style .gform_legacy_markup_wrapper li.gfield.gfield_error, 
.subscribe-form-style .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
    background: transparent !important;
    border: none !important;
}
.subscribe-form-style .validation_message {
    display: none !important;
}
.subscribe-form-style .gform_legacy_markup_wrapper div.validation_error {
    padding: 16px !important;
}
.subscribe-form-style .gform_legacy_markup_wrapper {
    margin: 0 !important;
}
.subscribe-form-style  .gform_validation_errors {
    display: none !important
}
.blog-subscribe.subscribe-form-style form {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.blog-subscribe.subscribe-form-style .gform_footer {
    padding-left: 37px !important;
}
.blog-subscribe.subscribe-form-style  .ginput_container input,
.blog-subscribe.subscribe-form-style  .ginput_container input:focus,
.blog-subscribe.subscribe-form-style  .ginput_container input:active {
    margin: 0 !important;
}

.intro-podcast-video a {
    display: block;
    width: 100%;
    padding-bottom: 54.32%;
    position: relative;
}

.video-button-lb {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    z-index: 5;
    padding: 20px 30px;
}

.single-resource-section {
    padding: 35px 0 90px;
}

.intro-single-bottom.intro-single-resource-bottom {
    margin-bottom: 0;
}

.section-title.has-orn {
    padding-bottom: 40px;
    position: relative;
    margin-bottom: 40px;
}
.section-title.has-orn:after {
    content: '';
    width: 100%;
    max-width: 295px;
    height: 3px;
    background: -webkit-gradient(linear, right top, left top, from(#00c27f), to(#0f4fdb));
    background: -o-linear-gradient(right, #00c27f 0%, #0f4fdb 100%);
    background: linear-gradient(270deg, #00c27f 0%, #0f4fdb 100%);
    position: absolute;
    bottom: 0;
    left: 0;
}

.single-podcast-button {
    margin-top: 20px;
}

.podcast-embed {
    margin-bottom: 35px;
}

.podcast-headshot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 100px;
}

.podcast-headshot .entry h4 {
    margin-bottom: 10px;
}

.podcast-headshot .entry {
    margin-bottom: 20px;
}

.podcast-headshot .entry:last-child {
    margin-bottom: 0px;
}

.podcast-headshot-left {
    width: 165px;
}
.podcast-headshot-right {
    width: calc(100% - 165px);
    padding-left: 45px;
}

.podcast-headshot-image {
    padding-bottom: 100%;
}

.n-d-wrapper .section-title {
    margin-bottom: 88px;
}

.intro-event.intro-single-podcast .blue-dots-orn {
    bottom: auto;
    top: 310px;
}

.tb-ci-w-overlap .tb-ci-w-hold {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}
.tb-ci-w-overlap.tb-ci-w-overlap {
    padding-bottom: 0;
    position: relative;
}
.tb-ci-w-overlap.tb-ci-w-overlap:before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 115px;
    background: #000;
}
.tb-ci-w-overlap.tb-ci-w-overlap .tb-ci-w-left {
    padding-bottom: 200px;
}

.tb-logo {
    padding: 150px 0 200px;
    position: relative;
}
.tb-logo .blue-dots-orn {
    position: absolute;
    left: 0;
    top: 50px;
    transform: translateX(-65%);
}

.tb-logo.tb-logo-black {
    color: #fff;
    background: #000;
}

.tbl-image {
    padding-bottom: 85.574%;
}

.tbl-hold {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}

.tbl-left {
    padding-right: 9.179%;
}
.tbl-right {
    padding-left: 14px;
}

.accordion-image-section.accordion-image-reverse-section .ai-hold {
    /* -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; */
}
.accordion-image-section.accordion-image-reverse-section .ai-left {
    order: 2;
    padding-left: 10px;
    padding-right: 0;
}
.accordion-image-section.accordion-image-reverse-section .ai-right {
    padding-left: 0%;
    padding-right: 9%;
}

.ai-top {
    margin-bottom: 44px;
}
.ai-top .section-title {
    margin-bottom: 20px;
}

.ai-button {
    margin-top: 60px;
}

.industires-tiles-section {
    position: relative;
    padding: 80px 0 120px;
}
.industires-tiles-section .blue-dots-orn {
    position: absolute;
    top: -20px;
    left: 0;
    transform: translateX(-51%);
}

.industires-tiles-list ul li {
    margin-bottom: 40px;
}
.industires-tiles-list ul li a {
    display: block;
    width: 100%;
    background: #fff;
    min-height: 100%;
    position: relative;
    padding-bottom: 118px;
    -webkit-box-shadow: 0px 20px 30px 3px rgb(127 127 127 / 15%);
    -moz-box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.15);
    box-shadow: 0px 20px 30px 3px rgb(127 127 127 / 15%);
}
.industires-tiles-list ul li a.no-url {
    cursor: default;
    padding-bottom: 35px;
}

.three-across-tiles-section {
    padding: 150px 0 100px;
    position: relative;
}
.three-across-tiles-section .blue-dots-orn {
    position: absolute;
    left: 100%;
    top: 42px;
    transform: translateX(-50%);
}

.text-14 {
    color: #a5a5a5;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
}

.max-width-820 {
    max-width: 820px;
}
.text-center .max-width-820 {
    margin-left: auto;
    margin-right: auto;
}

.three-across-tiles-section .section-title {
    margin-bottom: 60px;
}

.related-section-list ul li a {
    display: block;
    width: 100%;
    background: #fff;
    min-height: 100%;
    position: relative;
    padding-bottom: 80px;
    -webkit-box-shadow: 0px 20px 30px 3px rgb(127 127 127 / 15%);
    -moz-box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.15);
    box-shadow: 0px 20px 30px 3px rgb(127 127 127 / 15%);
}

.tb-ol-ic2 {
    background: #000;
    color: #fff;
    padding-bottom: 130px;
    margin: 140px 0 86px;
}

.tb-ol-ic2-image {
    padding-bottom: 76.2%;
}

.tb-ol-ic2-hold {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.tb-ol-ic2-left {
    margin-top: -80px;
    padding-right: 8.8%;
}

.tb-ol-ic2-right {
    padding-top: 80px;
    padding-bottom: 20px;
    padding-left: 15px;
}

.tb-ol-ic2-image-width {
    width: 119.503%;
    margin-left: -19%;
}

.tb-ol-ic2-right .section-title {
    color: #a5a5a5;
    margin-bottom: 20px;
}
.tb-ol-ic2-right .text-18 {
    margin-bottom: 20px;
}

.ndt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75;
}

.ndt-date {
    color: #a5a5a5;
    margin-right: 10px;
}

.news-tiles-list .rt-image {
    padding-bottom: 40%;
}

.intro-faq-image {
    padding-bottom: 53%;
}

.intro-faq-button {
    margin-bottom: 60px;
}

.n-d-wrapper.faqs-wrapper .section-title {
    margin-bottom: 30px;
}

.headline {
    color: #023cba;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75;
    margin-bottom: 20px;
}

.content-form-section {
    padding: 64px 0 150px;
}

.cf-left {
    padding-right: 6%;
}

.cf-form-hold {
    padding: 80px 100px 80px 85px;
    background: #f5f5f5;
    width: 117%;
}

.cf-form-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.375;
    margin-bottom: 50px;
}

.search-trigger-content {
    position: absolute;
    width: 377px;
    right: calc(100% + 2px);
    top: -1px;
    opacity: 0;
    visibility: hidden;
}
.header-top-search a.search-open + .search-trigger-content {
    opacity: 1;
    visibility: visible;
}
.search-trigger-content input,
.search-trigger-content input:focus {
    height: 32px;
    border-radius: 18px;
    background: #eaeaea;
    padding: 2px 50px 2px 18px;
    box-shadow: none;
    border: none;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
}

.search-trigger-content button,
.search-trigger-content button:focus,
.search-trigger-content button:active {
    position: absolute;
    width: 32px;
    height: 32px;
    background: url(../img/icon-search.svg) no-repeat center center;
    top: 0;
    right: 10px;
}

.search-trigger-content input::-webkit-input-placeholder {
	color: #000;
	opacity: 0.53;
}
.search-trigger-content input::-moz-placeholder {
	color: #000;
	opacity: 0.53;
}
.search-trigger-content input:-ms-input-placeholder {
	color: #000;
	opacity: 0.53;
}
.search-trigger-content input:-moz-placeholder {
	color: #000;
	opacity: 0.53;
}

.three-ati ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}

.three-ati ul li {
    width: calc(33.333% - 26px);
    min-width: calc(33.333% - 26px);
    margin-right: 39px;
    margin-bottom: 40px;
    padding: 30px 30px 40px;
    background: #fff;
    z-index: 5;
    -webkit-box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.15);
    -moz-box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.15);
    box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.15);
}

.three-ati ul li:nth-child(3n) {
    margin-right: 0px;
}

.three-ati-icon {
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.three-ati-icon img {
    max-height: 100%;
}

.three-ati-text {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.375;
}

.three-ati-section {
    padding: 80px 0 40px;
}

.tb-lg-w.tb-lg-black {
    background-color: #000;
    color: #fff;
    padding-top: 150px;
    margin-top: 70px;
}
.tb-lg-w.tb-lg-black .blue-dots-orn {
    display: none;
}



.tabbed-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}

.tabbed-item-left {
    width: 49%;
}
.tabbed-item-left .title-36 {
    margin-bottom: 20px;
}

.tabbed-item-right {
    width: 51%;
    padding: 0 0% 0 6.681%;
}

.tabbed-image {
    padding-bottom: 104.91%;
}

.tabbed-tabs .tabs-content {
    background: transparent;
    border: none;
}

.tabbed-tabs .tabs-panel {
    padding: 0;
}

.tabbed-tabs .tabs {
    background: transparent;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 60px;
}

.tabbed-tabs .tabs-title {
    float: none;
    width: 100%;
} 

.tabbed-tabs .tabs-title>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    padding: 15px 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.1428572px;
    color: rgba(0,0,0,0.5);
    position: relative;
    bottom: -1px;
    z-index: 5;
    min-height: 100%;
    transition: 0.2s;
}
.tabbed-tabs .tabs-title>a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5px;
    opacity: 0;
    background: -webkit-gradient(linear, right top, left top, from(#00C27F), to(#0F4FDB));
    background: -o-linear-gradient(right, #00C27F, #0F4FDB);
    background: linear-gradient(270deg, #00C27F, #0F4FDB);
    transition: 0.2s;
}
.tabbed-tabs .tabs-title.is-active>a:after {
    opacity: 1;
}

.tabbed-tabs .tabs-title>a:hover {
    background: transparent;
    color: rgba(0,0,0,1);
}

.tabbed-tabs .tabs-title>a:focus, 
.tabbed-tabs .tabs-title>a[aria-selected=true] {
    background: transparent;
    color: #000;
}

.tabbed-section {
    padding: 100px 0;
}
.tabbed-section.tabbed-section-black {
    background: #000;
    color: #fff;
    padding: 120px 0 150px;
}
.tabbed-section.tabbed-section-black .tabs-title>a {
    color: rgba(255,255,255,0.5);
}
.tabbed-section.tabbed-section-black .tabs-title>a:hover {
    background: transparent;
    color: rgba(255,255,255,1);
}
.tabbed-section.tabbed-section-black .tabs-title>a:focus, 
.tabbed-section.tabbed-section-black .tabs-title>a[aria-selected=true] {
    color: #fff;
}

.tabbed-section.tabbed-section-black .tabbed-tabs .tabs {
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.tabbed-item-left .text-18:not(:last-child) {
    margin-bottom: 20px;
}

.intro-single-bottom.intro-single-ss-bottom {
    margin-bottom: 52px;
}

.intro-single-bottom.intro-single-ss-bottom .intro-single-image {
    padding-right: 0;
    /* width: calc(100% + 17px); */
}

.intro-single-bottom.intro-single-ss-bottom .intro-single-image-hold {
    padding-bottom: 63.38%;
} 

.n-d-section.n-d-ss-section .section-title {
    margin-bottom: 27px;
}

.ss-right {
    padding-left: 9.562%;
}



.sidebar-logo {
    margin-bottom: 30px;
}

.sidebar-logo img {
    max-height: 100px;
}

.sidebar-features {
    margin-bottom: 25px;
}

.sidebar-features ul li {
    margin-bottom: 10px;
    padding-left: 49px;
    position: relative;
    color: #a5a5a5;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.57;
}

.sidebar-features ul li:last-child {
    margin-bottom: 0px;
}

.sidebar-features ul li span {
    display: block;
    font-weight: 300;
    color: #000;
}
.sidebar-features ul li img {
    position: absolute;
    left: 0;
    top: -1px;
    max-width: 31px;
    max-height: 28px;
}

.ss-about {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.42;
    margin-bottom: 40px;
}

.downloads-list ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.downloads-list ul li:last-child {
    margin-bottom: 0px;
}

.downloads-list ul li span {
    width: 100%;
    max-width: 210px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
}

.tb-ol-ic2-right .title-36 {
    margin-bottom: 20px;
}

.tb-ol-ic2-hold.align-top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.two-at-contacts-section {
    padding: 75px 0 110px;
}

.two-at-contacts-section .section-title {
    margin-bottom: 20px;
}

.two-at-contacts-section .text-24 {
    margin-bottom: 38px;
}

.two-at-contacts ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}

.two-at-contacts ul li {
   width: calc(50% - 20px);
   min-width: calc(50% - 20px);
   margin-right: 40px;
   margin-bottom: 40px;
   padding: 40px 40px;
   -webkit-box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.15);
   -moz-box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.15);
   box-shadow: 0px 20px 30px 3px rgba(127,127,127,0.15);
}

.two-at-contacts ul li:nth-child(2n) {
   margin-right: 0;
}

.two-at-contacts ul li h3 {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 20px;
}

.two-at-contacts ul li p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
}

.two-at-contacts ul li p a {
    color: #023CBA;
}

.two-at-contacts ul li p a:hover {
    color: #023CBA;
    text-decoration: underline;
}

.home-intro-section .blue-dots-orn {
    position: absolute;
    bottom: 4px;
    left: 100%;
    transform: translateX(-60%);
    transform: translateX(-77%);
    /* z-index: 10; */
    /* opacity: 0; */
}

.intro-orn {
    display: none;
}
.intro-orn.show-orn {
    display: block;
}

.related-section .resource-tiles-list ul li {
    display: block;
}

.entry .small-btn,
.entry .small-btn:focus,
.entry .small-btn:active {
    display: inline-block;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 600 !important;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1.14px;
    padding: 12px 29px;
    background-color: #023cba;
    border-radius: 29px;
    transition: 0.2s;
}
.entry .small-btn:hover {
    background-color: #185df2;
    color: #fff !important;
}

.tb-lg-w-button {
    margin-top: 30px;
}

.sfg-logos-grid > ul > li > a {
    background: #fff;;
}

.single-quote-section:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 536px;
    height: 444px;
    background: url(../img/orn-dots-left-bottom.png) no-repeat center center / 100% 100%;
    opacity: 0.8;
}
.sfg-logos-section {
    position: relative;
}
.sfg-logos-section:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 536px;
    height: 444px;
    background: url(../img/orn-dots-left-bottom.png) no-repeat center center / 100% 100%;
    opacity: 0.8;
}

.tb-ol-ic2 {
    position: relative;
}
.tb-ol-ic2:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 536px;
    height: 444px;
    background: url(../img/orn-dots-left-bottom.png) no-repeat center center / 100% 100%;
    opacity: 0.8;
    z-index: -1;
}

.resources-section {
    position: relative;
}
.resources-section:before {
    content: '';
    position: absolute;
    left: 0;
    top: -40px;
    width: 566px;
    height: 679px;
    background: url(../img/orn-dots-left-bottom2.png) no-repeat center center / 100% 100%;
    opacity: 0.5;
}

.interactive-diagram-section:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 536px;
    height: 444px;
    background: url(../img/orn-dots-left-bottom.png) no-repeat center center / 100% 100%;
    opacity: 0.8;
}

.three-across-tiles-section {
    position: relative;
}
.three-across-tiles-section:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -50px; 
    width: 566px;
    height: 679px;
    background: url(../img/orn-dots-left-bottom2.png) no-repeat center center / 100% 100%;
    opacity: 0.8;
}

.form-block-fi-section {
    position: relative;
}
.form-block-fi-section:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 536px;
    height: 444px;
    background: url(../img/orn-dots-left-bottom.png) no-repeat center center / 100% 100%;
    opacity: 0.8;
}

.js-more-resource-tiles {
    /* opacity: 0; */
}

.gitcfw-form .gform_heading {
    display: none !important;
}
.gitcfw-form ul.gform_fields {
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;

    flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
}
.gitcfw-form .gform_fields li:not(.gfield-cond) {
    display: inline-block !important;
}

.gitcfw-form .gform_fields li {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 0 39px !important;
}
.gitcfw-form .gform_fields li .gfield_label {
    display: none !important;
}
.gitcfw-form .gform_fields li.gfield-half {
    width: 50% !important;
    padding: 0 9% 0 0 !important;
}
.gitcfw-form .gform_fields li.gfield-half:nth-child(2n) {
    padding: 0 0 0 9% !important;
}
.gitcfw-form .gform_legacy_markup_wrapper .top_label div.ginput_container {
    margin: 0 !important;
}
.gitcfw-form .gfield :not(.ginput_container_consent) input,
.gitcfw-form .gfield :not(.ginput_container_consent) input:focus,
.gitcfw-form .gfield :not(.ginput_container_consent) input:active,
.gitcfw-form .gfield select,
.gitcfw-form .gfield select:focus,
.gitcfw-form .gfield select:active,
.gitcfw-form .gfield textarea,
.gitcfw-form .gfield textarea:focus,
.gitcfw-form .gfield textarea:active {
    width: 100% !important;
    padding: 10px 0 !important;
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: 300 !important;
    line-height: 1.55 !important;
    color: #000 !important;
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
    border-bottom: 2px solid #D8D8D8 !important;
    height: 48px !important;
    background-color: transparent !important;
}

.gitcfw-form .gfield select,
.gitcfw-form .gfield select:focus,
.gitcfw-form .gfield select:active {
    background: url(../img/arrow-down.svg) no-repeat right center;
}

.gitcfw-form .gfield textarea,
.gitcfw-form .gfield textarea:focus,
.gitcfw-form .gfield textarea:active {
    resize: none !important;
}
.gitcfw-form li.gfield.gfield_error input,
.gitcfw-form li.gfield.gfield_error input:focus,
.gitcfw-form li.gfield.gfield_error input:active,
.gitcfw-form li.gfield.gfield_error select,
.gitcfw-form li.gfield.gfield_error select:focus,
.gitcfw-form li.gfield.gfield_error select:active,
.gitcfw-form li.gfield.gfield_error textarea,
.gitcfw-form li.gfield.gfield_error textarea:focus,
.gitcfw-form li.gfield.gfield_error textarea:active {
    border-color: #790000 !important;
}
.gitcfw-form .gfield input::placeholder {
    color: #000;
    opacity: 1;
}
.gitcfw-form .gfield input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #000;
    opacity: 1;
}
.gitcfw-form .gfield input::-moz-placeholder { /* Firefox 19+ */
    color: #000;
    opacity: 1;
}
.gitcfw-form .gfield input:-ms-input-placeholder { /* IE 10+ */
    color: #000;
    opacity: 1;
}
.gitcfw-form .gfield input:-moz-placeholder { /* Firefox 18- */
    color: #000;
    opacity: 1;
}
.gitcfw-form .gform_button,
.gitcfw-form .gform_button:focus,
.gitcfw-form .gform_button:active {
    display: inline-block !important;
    color: #ffffff !important;   
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;    
    text-transform: uppercase !important;
    letter-spacing: 1.14px !important;
    padding: 11px 29px !important;
    background-color: #023cba !important;
    border-radius: 29px !important;
    transition: 0.2s !important;
}
.gitcfw-form .gform_button:hover {
    background-color: #185df2 !important;
    color: #fff !important;
}
.gitcfw-form .gform_validation_errors {
    display: none !important;
}
.gitcfw-form .gform_legacy_markup_wrapper li.gfield.gfield_error, 
.gitcfw-form .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
    background: transparent !important;
    border: none !important;
}
.gitcfw-form .gform_legacy_markup_wrapper .field_description_below .gfield_description {
    padding-top: 5px !important;
    font-size: 10px !important;
}
.gitcfw-form .gform_legacy_markup_wrapper li.gfield.gfield_error, 
.gitcfw-form .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
    margin-bottom: 39px !important;
}
.gitcfw-form .gform_fields li p {
    color: #000 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.71 !important;
}
.gitcfw-form .gform_fields li p a {
    font-weight: 600 !important;
    transition: 0.2s ease-in-out !important;
    color: #00c37f !important;
}
.gitcfw-form .gform_fields li p a:hover {
    color: #023cba !important;
}
.gitcfw-form .gform_legacy_markup_wrapper .gform_footer {
    padding:0 !important;
    margin: 0 !important;
}
.gitcfw-form .gform_legacy_markup_wrapper {
    margin: 0 !important;
}
.gitcfw-form  .ginput_container_consent input {
    display: none !important;
}
.gitcfw-form  .ginput_container_consent label {
    font-size: 14px !important;
    line-height: 1.71 !important;
    color: #000 !important;
    margin: 0 !important;
    padding-left: 40px !important;
    position: relative !important;
}
.gitcfw-form  .ginput_container_consent label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    border: 1px solid #000;
}
.gitcfw-form  .ginput_container_consent label:after {
    content: '';
    position: absolute;
    left: 2px;
    left: 2px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 2px;
    background: #000;
    opacity: 0;
    transition: 0.2s ease-in-out;
}
.gitcfw-form  .ginput_container_consent input:checked + label:after {
    opacity: 1;
}
.gitcfw-form li.gfield.gfield_error .ginput_container_consent label:before  {
    border-color: #790000;
}


.CookieDeclarationTable thead {
    background: none !important;
    color: #fff !important;
    border:  none !important;
}

.CookieDeclarationTable tbody {
    background: none !important;
}

.CookieDeclarationTable tbody tr:nth-child(2n) {
  background-color: none !important;
}

#CybotCookiebotDialog div,
#CybotCookiebotDialog a {
    font-family: 'Open Sans' !important;
}

a#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll, a#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection, a#CybotCookiebotDialogBodyLevelButtonLevelOptinDeclineAll {
    color: #ffffff !important;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1.14px;
    text-align: center;
    padding: 4px 11px;
    background-color: #023cba;
    border-radius: 29px;
}

#CybotCookiebotDialog #CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonLevelOptinDeclineAll {
    color: #fff !important;
    text-transform: none;
    letter-spacing: 0;
}

#CybotCookiebotDialogBodyLevelDetailsWrapper {
    background: #333;
}

#CybotCookiebotDialogDetail,
.CybotCookiebotDialogDetailBodyContentTabsItem,
#CybotCookiebotDialogDetailBodyContent,
.CybotCookiebotDialogDetailBodyContentTabsItemSelected,
#CybotCookiebotDialogBodyLevelDetailsWrapper,
#CybotCookiebotDialogDetailFooter,
#CybotCookiebotDialogDetailBodyContentCookieContainerTypes, 
#CybotCookiebotDialogDetailBodyContentIABv2Tabs,
a.CybotCookiebotDialogDetailBodyContentCookieContainerTypes:focus, 
a.CybotCookiebotDialogDetailBodyContentCookieContainerTypes:hover, 
a.CybotCookiebotDialogDetailBodyContentIABv2Tab:focus, 
a.CybotCookiebotDialogDetailBodyContentIABv2Tab:hover,
.CybotCookiebotDialogDetailBodyContentCookieContainerTypesSelected, 
.CybotCookiebotDialogDetailBodyContentIABv2TabSelected {
    background: #000 !important;
}

#CybotCookiebotDialogDetailBodyContent table tbody,
#CybotCookiebotDialogDetailBodyContent table thead,
#CybotCookiebotDialogDetailBodyContent table tbody tr:nth-child(even),
#CybotCookiebotDialogDetail .CybotCookiebotDialogDetailBodyContentCookieTypeTable thead td, 
#CybotCookiebotDialogDetail .CybotCookiebotDialogDetailBodyContentCookieTypeTable thead th  {
    background: none !important;
}

#toc_container a 
{ margin-left:12px; }
.quote-line 
{ display: none; }
body.term-faqs .text-24 {
	width: 60%;
	float: left;
	font-size: 20px;
	line-height: 22px;
	font-weight: 400;
	margin-bottom: 0px;
}
body.term-faqs .faq-list ul li a 
{ padding: 18px 0; }
.floaters 
{  width: 32%;
   float:left;
}
.half-floaters 
{ width: 49%;
  float: left; }
body.jp .ramble-ew 
{ display: none; }
body.jp .header-right .btn-arrow { display: none; }
.entry ol li::before 
{ color: unset; }
a#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll,
a#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection{
    border: 1px solid #0c76c6 !important;
}
#CybotCookiebotDialogBodyLevelButtonLevelOptinDeclineAll {
	text-transform: uppercase !important;
	background-color: #023cba !important;
}
body.single-resource .large-6 
{ width: 70%; }
body.page-id-104509 #gform_fields_34  #field_34_20 .gfield_label,
body.page-id-104509 #gform_fields_34  #field_34_22 .gfield_label 
{ display: unset !important; }
body.page-id-104509 .text-24 
{   width: 90%;
    margin: 0 10px 0;
    padding: 0 20px 0;
}
ul.register-form { 
	font-size: 18px;
	list-style: unset;
	margin-left:40px; 
}
.eb-borders {
	width: 84%;
	height: 2px;
	border-bottom: 2px solid #1F3E92 !important;
	margin-left: auto;
	margin-right: auto;
	color: #1F3E92;
}
#cookie-display {
font-weight: 600;
margin: 1rem 0;
padding: 20px;
font-family: 'Open Sans', sans-serif !important;
color: #000;
font-size: 18px;
background-color: #f2f2f2;
}
.graphic-left {
 float: left;
 padding: 10px 20px 10px 0px;
}
#gform_wrapper_34 #field_34_18 .gfield_label,
#gform_wrapper_34 #field_34_20 .gfield_label 
{ display: unset !important; }
body.page-id-196 .aup-links ul li a { padding: 0; }
body.it .grid-of-three #fbr 
{ display: none; }
body.de .btn-blue 
{ letter-spacing: 0; }
body.de .btn-arrow 
{ padding-right: 10px; }
body.es .recognition-list .btn-blue { max-width: 230px; }
body.postid-100763 .related-section:first-child { display: none; }
body.page-id-100117 .blue-dots-orn { display: none; }
.ivp {
	font-size: 18px !important;
	text-align: left;
	margin: 0 0 30px;
}
body.page-id-99992 .intro-event-button { padding-left: 0px; }
body.fr .footer-nav-list-2 
{ display:none; }
body.fr .columns li:first-of-type + li .subnav-simple-end-link,
body.it .columns li:first-of-type + li .subnav-simple-end-link,
body.es .columns li:first-of-type + li .subnav-simple-end-link,
body.de .columns li:first-of-type + li .subnav-simple-end-link
{ display: none; }
body.fr .horizontal-btn-hold .btn-blue,
body.it .horizontal-btn-hold .btn-blue,
body.es .horizontal-btn-hold .btn-blue,
body.de .horizontal-btn-hold .btn-blue { margin-right:6px; }
body.fr .btn-play-hold,
body.it .btn-play-hold,
body.es .btn-play-hold,
body.de .btn-play-hold
{ padding: 21px 10px; }
body.fr .footer-nav-list-2 ul li,
body.it .footer-nav-list-2 ul li,
body.es .footer-nav-list-2 ul li,
body.de .footer-nav-list-2 ul li
{ width: 44%; }
body.fr .ramble-ew,
body.fr .header-right li:first-child,
body.it .ramble-ew,
body.it .header-right li:first-child,
body.es .ramble-ew,
body.es .header-right li:first-child,
body.de .ramble-ew,
body.de .header-right li:first-child { display: none; }
body.page-id-97520 .three-across-tiles-section,
body.page-id-100117 .three-across-tiles-section,
body.page-id-219 .three-across-tiles-section { padding: 60px 0 30px; }
body.page-id-100117 .three-across-tiles-section .blue-dots-orn { display: none; }
.blog-subscribe { display: none; }
.sidebar-subscribe { display: none; }
.source-t { font-size: 18px; }
.zui-table {
    border: solid 1px #DDEEEE;
    border-collapse: collapse;
    border-spacing: 0;
}
.zui-table thead th {
    background-color: #DDEFEF;
    border: solid 1px #DDEEEE;
    color: #336B6B;
    padding: 10px;
    text-align: left;
    /* text-shadow: 1px 1px 1px #fff; */
}
.zui-table tbody td {
    border: solid 1px #DDEEEE;
    color: #333;
    padding: 10px;
    /* text-shadow: 1px 1px 1px #fff; */
}
.pod-trans {
	font-size: 18px;
	font-weight: bold;
	color:#000;
}
.gg-chevron-double-right {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
	  top: 5px;
    transform: scale(var(--ggs,1));
    width: 22px;
    height: 22px
}
.gg-chevron-double-right::after,
.gg-chevron-double-right::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 8px;
    height: 8px;
    border-right: 2px solid;
    border-top: 2px solid;
	  color: #ff7f01;
    transform: rotate(45deg);
    top: 7px;
    right: 6px
}
.gg-chevron-double-right::after {
    right: 11px
}
.iv-blue:hover {
    background-color: #185df2;
    color: #fff;
}

.iv-blue, .iv-blue:active, .iv-blue:focus {
    display: inline-block;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 400 !important;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1.14px;
    text-align: center;
    padding: 12px 29px;
    background-color: #023cba;
    border-radius: 29px;
    transition: 0.2s;
}
.iv-featured ul li { margin-bottom: 0px !important; }
#CybotCookiebotDialog { background-color: #000 !important; }
/* a#CybotCookiebotDialogBodyLevelButtonLevelOptinDeclineAll {
    background-color: #000 !important;
    border: 1px solid #000 !important;
	  color: #000 !important;
} */
.CookieDeclarationTable tbody tr:nth-child(2n) {
    background-color: unset !important;
}
body.page-id-364 .stat-tiles-section { display:none; }
/* body.term-45 .grid-of-three li:nth-child(3) { display:none; } */
.intro-single-podcast .intro-event-logo img { 
	max-width: 600px;
  width: 100%;
}
.iv-featured .iv-speaker 
{ max-width: 180px;
	padding-right: 20px;

}
.resource-quote {
	width: 100%;
	padding: 20px;
	margin-bottom: 20px;
	background-color: #f2f2f2; 
	color: #000;
}
.resource-icon {
	max-width: 40px;
	padding: 0 6px 0 0;
	vertical-align: middle;
}
.fs-header {
	font-size:20px !important;
	color:#06b177;
	margin-top:20px;
}
.event-info {
	font-weight: 700;
	color:#023cba;
}
p.quote-text {
	margin-bottom:8px;
	color: #023cba;
	font-weight: 700;
}
p.quote-credit {
	font-size:14px;
	margin-bottom: 0;
}
.flex-horizontal {
  display: flex;
  align-items: center;
	gap:20px;
	margin:20px 0;
}
.flex-top {
	display: flex;
  align-items: top;
	gap:20px;
	margin:20px 0;
}


.long-img-crop {
width: 100%; 
height: 200px; 
object-fit: cover;
object-position: center; 
}

body.page-id-219 .rt-title
{ margin-bottom:10px }
body.page-id-341 .filter-box-list li:first-of-type + li { display:unset; }
body.page-id-341 .filter-box-list li { margin-bottom: 0px; }
.more-choices { display:none; }
body.industries .industires-tiles-list .rt-text,
body.page-id-456 .industires-tiles-list .rt-text,
body.page-id-5554 .industires-tiles-list .rt-text {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
	  line-height: 1.3;
}
body.page-id-43719 .aup-left { display: none; }
body.page-id-43719 .blue-dots-orn::after { display: none; }
body.page-id-43719 .aup-right-info { position: relative; }

ol { 
	list-style: decimal; 
	margin-left: 20px;
}


.entry ol li::before {
	left:-20px;
	width:2em;
}
body.postid-200148 .entry ol li::before { 
	left: unset !important;
  width: unset !important; 
}

ol li {
  position: relative;
	padding-left: 0px;
}

.zui-table {
	margin-bottom:28px;
}

ul.no-space li:not(:last-child),
ol.no-space li:not(:last-child) {
	margin-bottom:0px;
}

/** Japanese lang mod. */ 
body.jp {
	/** font-family: 'Open Sans', "SF Pro JP", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif; */	
}
body.jp .title-slide {
	white-space: nowrap !important;
}
body.jp .intro-title {    
    /** font-size: 50px; */
    /** font-size: 76px; */
}
body.jp .section-title {        
    /** font-size: 50px; */
	  /** font-size: 56px; */
}
body.jp .text-28 { 
    /** font-size: 24px; */
    /** font-size: 28px; */
}

/*** Media Queries ***/

@media (max-width: 1366px) {
    /* .tb-ci-w-image-width {
        width: 110%;
        margin-left: 10%;
    } */
    .tb-ol-ic2-image-width {
        width: 111%;
        margin-left: -11%;
    }
    .cf-form-hold {
        width: 109%;
    }
}

@media (max-width: 1199px) {
    .industires-tiles-list ul li a.no-url {
        padding-bottom: 25px;
    }
    .two-at-contacts-section {
        padding: 75px 0 80px;
    }
    .three-ati-text {
        font-size: 20px;
    }
    .three-ati ul li {
        width: calc(33.333% - 14px);
        min-width: calc(33.333% - 14px);
        margin-right: 21px;
    }
    .tb-lg-w.tb-lg-black {
        padding-top: 120px;
    }
    .tabbed-section.tabbed-section-black {
        padding: 100px 0 120px;
    }
    .tabbed-item-right {
        padding: 0 0% 0 6%;
    }
    .cf-form-title {
        font-size: 20px;
        margin-bottom: 40px;
    }
    .content-form-section {
        padding: 64px 0 100px;
    }
    .cf-form-hold {
        padding: 80px 60px;
        width: calc(100% + 25px);
    }
    .ndt {
        font-size: 14px;
    }
    .tb-ol-ic2-left {
        padding-right: 5%;
    }
    .tb-ol-ic2-right {
        padding-top: 60px;
        padding-bottom: 0px;
    }
    .tb-ol-ic2 {
        padding-bottom: 100px;
    }
    .three-across-tiles-section {
        padding: 120px 0 80px;
    }
    .bg-black-section + .related-section {
        padding-top: 100px;
    }
    .tbl-left {
        padding-right: 6%;
    }
    .tb-logo {
        padding: 100px 0 120px;
    }
    .related-section {
        padding: 60px 0 80px;
    }
    .title-section {
        padding: 70px 0 100px;
    }
    .pr-box-link .btn-arrow, 
    .pr-box-link .btn-arrow:active, 
    .pr-box-link .btn-arrow:focus {
        font-size: 14px;
        line-height: 17px;
    }
    .pr-box-right {
        padding: 28px 20px 110px;
    }
    .two-accross-h-tiles ul li {
        width: calc(50% - 10px);
        min-width: calc(50% - 10px);
        margin-right: 20px;
        margin-bottom: 20px;
    }
    .rt-image .rt-label {
        padding: 12px 20px 4px;
    }
    .frb-content {
        padding: 30px 30px 70px;
        min-height: 10px;
    }
    .resource-tiles-section {
        padding: 50px 0 90px;
    }
    .resource-tiles-list ul li a,
    .resource-tiles-list-other ul li a {
        padding-bottom: 70px;
    }
    .rt-link {
        bottom: 20px;
        padding: 0 20px;
    }
    .rt-content {
        padding: 20px 20px 0;
    }
    .sfg-logos-section {
        padding: 60px 0 80px;
    }
    .grid-of-four > ul {
        margin-left: -10px;
        width: calc(100% + 20px);
    }
    .grid-of-four > ul > li {
        width: calc(25% - 20px);
        min-width: calc(25% - 20px);
        margin: 0 10px 30px;
    }
    .grid-of-four ul li a {
        height: 160px;
    }
    .tb-ic-w.tb-ic-w-large {
        padding: 70px 0 80px;
    }
    .tb-ic-w.tb-ic-w-large .tb-ic-w-left {
        padding-right: 3%;
    }
    .form-block-fi-section {
        padding: 60px 0 120px;
    }
    .ai-right {
        padding-left: 6%;
    }
    .tb-tc-section {
        padding: 55px 0 120px;
    }
    .grey-bg-text p {
        font-size: 20px;
    }
    .tb-tc-left {
        padding-right: 5%;
    }
    .tb-list-hold {
        width: 85%;
    }
    .tb-list-section {
        padding: 60px 0 80px;
    }
    .intro-event.mr-bt {
        margin-bottom: 60px;
    }
    .tb-ci-w-left {
        padding: 30px 0;
    }    
    .tb-ci-w .blue-dots-orn {
        top: 40px;
    }
    .tb-ic-w {
        padding: 58px 0 120px;
    }
    .single-quote-section .blue-dots-orn {
        transform: translateX(-46%);
    }
    .single-quote-section {
        padding: 120px 0 95px;

        padding: 95px 0 95px;
    }
    .tb-ol-ic-image-width {
        margin-left: -10%;
    }
    .tb-ol-ic-right {
        padding-bottom: 180px;
    }
    .tb-ol-ic {
        padding-top: 120px;
    }
    .lg-tiles-two-section {
        padding: 120px 0 80px;
    }
    .tb-ol-ci-text {
        font-size: 20px;
    }
    .tb-ol-ci {
        padding-bottom: 120px;
    }
    .tb-ol-ci-title {
        /* font-size: 56px; */
        margin-bottom: 20px;
    }
    .tb-ol-ci-left {
        padding: 150px 5% 0px 0;
    }
    .tb-ic-w-left {
        padding-right: 3%;
        left: -25px;
        position: relative;
    }
    .tb-ci-w-image-width {
        margin-left: 10%;
    }
    .blue-dots-orn::after {
        top: -20px;
    }
    .tb-lg-w .blue-dots-orn {
        transform: translateX(-50%);
    }
    .logo-grid-section {
        padding: 54px 0 100px;
    }
    .logo-grid ul li a {
        height: 160px;
    }
    .logo-grid ul li {
        width: calc(25% - 15px);
        min-width: calc(25% - 15px);
        margin-right: 20px;
        margin-bottom: 30px;
    }
    .aup-wrapper .blue-dots-orn {
        display: none;
    }
    .aup-links ul li a {
        padding: 7px 0% 8px 0;
    }
    .aup-left {
        padding-right: 7%;
    }
    .aup-wrapper {
        padding-top: 80px;
        padding-bottom: 120px;
    }
    .aup-wrapper.has-update-text {
        padding-top: 100px;
    }
    .header-right ul li {
        margin-right: 20px;
    }
    .subnav-hold-md {
        width: 740px;
    }
    .subnav-2 .subnav > ul > li {
        padding: 0px 20px;
    }
    .subnav-3 .subnav > ul > li {
        padding: 0px 20px;
        width: calc(100% - 330px);
    }
    .subnav-3 .subnav > ul > li:nth-child(2n) {
        width: 330px;
    }
    .subnav-links-with-text ul li a span {
        font-size: 12px;
    }
    .subnav-1 .subnav > ul > li {
        padding: 0px 20px;
    }
    .nav {
        width: calc(100% - 150px - 350px);
    }
    .nav > ul > li {
        margin-right: 25px;
    }
    .logo {
        width: 150px;
    }
    .accordion-image-section {
        padding: 60px 0;
    }
    .single-resource-section {
        padding: 35px 0 70px;
    }
    .accordion-image-section.accordion-image-reverse-section .ai-right {
        padding-right: 6%;
    }
}

@media (max-width: 1100px) {
    .nav > ul > li {
        margin-right: 15px;
    }
    .header-right .btn-blue, 
    .header-right .btn-blue:active, 
    .header-right .btn-blue:focus {
        padding: 9px 15px;
    }
    .header-right ul li {
        margin-right: 15px;
    }
}

@media (min-width: 1024px) {
    .mob-nav-hold {
        display: none !important;
    }
}

@media (max-width: 1024px) {
body.single-resource .large-6 
{ width: 100%; }
body.term-faqs .faq-list ul li a 
{ padding: 10px 0 26px; }	
}


@media (max-width: 1023px) {
    .intro-orn {
        display: none !important;
    }
    .two-at-contacts ul li p {
        font-size: 16px;
    }
    .two-at-contacts ul li h3 {
        font-size: 30px;
    }
    .two-at-contacts ul li {
        width: calc(50% - 10px);
        min-width: calc(50% - 10px);
        margin-right: 20px;
        margin-bottom: 20px;
        padding: 30px 25px;
    }
    .downloads-list ul li span {
        max-width: 180px;
        font-size: 16px;
    }
    .downloads-list ul li {
        margin-bottom: 12px;
    }
    .three-ati-text {
        font-size: 18px;
    }
    .three-ati ul li {
        padding: 30px 25px 30px;
    }
    .tabbed-tabs .tabs-title>a {
        font-size: 14px;
        letter-spacing: 1px;
    }
    .tabbed-item-right {
        width: 100%;
        padding: 0 20%;
        margin-bottom: 40px;
    }
    
    .tabbed-item-left {
        width: 100%;
        order: 2;
    }
    .cf-form-hold {
        padding: 60px 60px;
    }
    .cf-form-hold {
        width: 100%;
    }
    .cf-left {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .tb-ol-ic2-image-width {
        width: calc(100% + 25px);
        margin-left: -25px;
    }
    .tb-ci-w-overlap.tb-ci-w-overlap {
        padding-bottom: 80px;
    }
    .tb-ci-w-overlap.tb-ci-w-overlap .tb-ci-w-left {
        padding-bottom: 0;
    }
    .tb-ci-w-overlap.tb-ci-w-overlap:before {
        display: none;
    }
    .intro-single-bottom .blue-dots-orn {
        top: 100px;
    }
    .single-blog-n-d-section .n-right {
        padding-left: 3%;
    }
    .entry h3 {
        font-size: 26px;
    }
    .grid-of-four.filter-grid {
        margin-bottom: 40px;
    }
    .grid-of-four.filter-grid > ul > li {
        width: calc(50% - 20px);
        min-width: calc(50% - 20px);
        margin: 0 10px 20px;
    }
    .pr-box-link .btn-arrow, 
    .pr-box-link .btn-arrow:active, 
    .pr-box-link .btn-arrow:focus {
        font-size: 16px;
        line-height: 19px;
    }
    .pr-box-right {
        padding: 28px 28px 110px;
    }
    .two-accross-h-tiles ul li {
        width: 100%;
        min-width: 100%;
        margin-right: 0px;
    }
    .rt-label {
        font-size: 14px;
    }
    .subnav-links-simple.subnav-links-simple-two-columns ul li:nth-last-child(2) {
        margin-bottom: 20px;
    }
    .subnav-links-simple.subnav-links-simple-two-columns ul li {
        width: 100%;
        min-width: 100%;
        margin-right: 0%;
    }
    .subnav-simple-end-link .btn-arrow-first, 
    .subnav-simple-end-link .btn-arrow-first:active, 
    .subnav-simple-end-link .btn-arrow-first:focus {
        font-size: 14px;
        padding-left: 0;
        padding-right: 16px;
    }
    .subnav-simple-end-link .btn-arrow-first:before {
        left: auto;
        right: 0;
    }
    .subnav-simple-end-link {
        margin-top: 20px;
        padding-left: 49px;
    }
    .subnav-links-simple ul li a img {
        /* top: 4px; */
        max-width: 18px;
        max-height: 18px;
    }
    .subnav-links-simple ul li a {
        padding-left: 30px;
        font-size: 14px;
        line-height: 19px;
    }
    .subnav-links-simple ul li {
        margin-bottom: 20px;
    }
    .subnav-links-simple > ul {
        padding-left: 19px;
    }
    .subnav-links-with-text ul li a img {
        top: 4px;
        top: 1px;
        max-width: 18px;
        max-height: 18px;
    }
    .subnav-links-with-text ul li a {
        font-size: 14px;
        line-height: 19px;
        padding-left: 30px;
    }
    .subnav > ul > li {
        margin-bottom: 30px;
    }
    .subnav > ul > li:last-child {
        margin-bottom: 0px;
    }
    .subnav-links-with-text ul {
        padding-left: 19px;
    }
    .subnav-link-with-image{
        margin-bottom: 33px;
    }
    .slwi-text {
        font-size: 10px;
        line-height: 16px;
    }
    .slwi-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    .rt-title {
        font-size: 20px;
    }
    .filter-input input, 
    .filter-input input:focus {
        font-size: 16px;
    }
    .filter-box-list ul li label:after {
        top: 7px;
    }
    .filter-box-list ul li label:before {
        top: 5px;
    }
    .filter-box-list ul li label {
        font-size: 14px;
    }
    .filter-box span:after {
        border-width: 0 2px 2px 0;
        padding: 3px;
    }
    .filter-box span {
        font-size: 16px;
    }
    .grid-of-three > ul {
        margin-left: -10px;
        width: calc(100% + 20px);
    }
    .grid-of-three > ul > li {
        width: calc(33.333% - 20px);
        min-width: calc(33.333% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }
    .grid-of-three.resource-tiles-list > ul > li,
    .grid-of-three.resource-tiles-list-other > ul > li {
        margin-bottom: 20px;
    }
    .grid-of-four ul li a {
        height: 110px;
    }
    .home-intro-video {
        display: none;
    }
    .tb-ci-w .blue-dots-orn {
        transform: translateX(-65%);
    }
    .tb-ol-ci-left .text-18:not(:last-child) {
        margin-bottom: 35px;
    }
    .tb-ol-ci-left .title-36:not(:last-child) {
        margin-bottom: 20px;
    }
    .intro-partner-detail .blue-dots-orn {
        transform: translateX(-49%);
    }
    .ai-acc .accordion-content {
        padding-bottom: 20px;
    }
    .ai-acc .accordion-title {
        padding: 20px 0px;
        padding-right: 30px;
        font-size: 20px;
    }
    .grey-bg-text {
        padding: 25px 25px;
    }
    .tb-list-hold {
        width: 100%;
    }
    .intro-event .blue-dots-orn {
        bottom: 0;
        transform: translateX(-35%);
    }
    .full-image-tiles-two-section {
        padding: 60px 0 60px;
    }
    .full-image-tiles-two-list-content {
        bottom: 25px;
        padding: 0 25px;
    }
    .full-image-tiles-two-list ul li {
        width: calc(50% - 10px);
        min-width: calc(50% - 10px);
        margin-right: 20px;
        margin-bottom: 20px;
    }
    .full-image-tiles-two-section .section-title {
        margin-bottom: 40px;
    }
    .single-quote-section .blue-dots-orn {
        transform: translateX(-24%);
        bottom: 10px;
    }
    .single-quote-text {
        font-size: 24px;
    }
    .tb-ol-ic-text .text-18 {
        font-size: 16px;
    }
    .tb-ol-ic:before {
        bottom: 50px;
        height: calc(100% - 50px);
    }
    .tb-ol-ic-right {
        padding-bottom: 100px;
        padding-left: 0;
    }
    .lg-tt-title {
        font-size: 30px;
    }
    .lg-tiles-two-list ul li {
        width: 48%;
        min-width: 48%;
        margin-right: 4%;
    }
    .tb-ol-ci-title {
        /* font-size: 48px; */
        line-height: 1.2;
    }
    .tb-ol-ci-text {
        font-size: 18px;
    }
    .tb-ol-ci-left {
        padding: 130px 0% 0px 0;
    }
    .tb-ci-w-left {
        padding: 0;
    }
    .tb-lg-w .blue-dots-orn {
        top: 20px;
        transform: translateX(-28%);
    }
    .logo-grid ul li a {
        height: 110px;
    }
    .aup-right .entry {
        margin-bottom: 30px;
    }
    .entry h2:not(:first-child) {
        margin-top: 30px;
    }
    .entry h2 {
        font-size: 26px;
    }
    .aup-right-info {
        font-size: 15px;
    }
    .aup-links ul li {
        margin-bottom: 7px;
    }
    .aup-links ul li a {
        font-size: 14px;
        letter-spacing: 0px;
    }
    .aup-left {
        padding-right: 4%;
    }
    .aup-right .entry {
        margin-bottom: 40px;
    }
    .entry h2:not(:first-child) {
        margin-top: 40px;
    }
    .entry p {
        font-size: 15px;
        margin-bottom: 24px;
    }
    .entry h2 {
        font-size: 30px;
    }
    header {
        padding: 15px 0;
    }
    .logo {
        width: 50%
    }
    .logo img {
        max-width: 100px;
    }
    .tb-ol-ci-name {
        font-size: 16px;
    }
    .single-quote-author {
        font-size: 16px;
    }
    .single-quote-author span {
        font-size: 14px;
    }
    .podcast-headshot-left {
        width: 150px;
    }
    .podcast-headshot-right {
        width: calc(100% - 150px);
        padding-left: 25px;
    }
    .gitcfw-form .gform_fields li.gfield-half {
        width: 100% !important;
        padding: 0 !important;
    }
    .gitcfw-form .gform_fields li.gfield-half:nth-child(2n) {
        padding: 0 !important;
    }
}

@media (max-width: 920px) { 
body.fr .btn-blue,
body.it .btn-blue
{ padding: 12px; }
}

@media (max-width: 800px) { 
.tiles-text-list ul li,
.floaters { width: 100%;  }
.half-floaters {
	width: 100%;
	max-width:340px;
	}	
}

@media (max-width: 639px) {

    .blue-dots-orn {
        display: none;
    }
    .three-across-tiles-section:before {
        bottom: 0;
    }
    .three-across-tiles-section:before,
    .resources-section:before {
        width: 283px;
        height: 340px;
    }
    .form-block-fi-section:before,
    .interactive-diagram-section:before,
    .tb-ol-ic2:before,
    .sfg-logos-section:before,
    .single-quote-section:before {
        width: 269px;
        height: 222px;
    }
    .post-type-archive-newsroom .frb-image img {
        left: 50%;
    }
    .tb-lg-w-button {
        margin-top: 20px;
    }
    .two-at-contacts-section .text-24 {
        margin-bottom: 24px;
    }
    .two-at-contacts ul li h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .two-at-contacts ul li {
        width: 100%;
        min-width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        padding: 30px 20px;
    }
    .two-at-contacts-section {
        padding: 40px 0 50px;
    }
    .resources-wrapper-right {
        padding-left: 0;
    }
    .three-ati-section {
        padding: 40px 0;
    }
    .three-ati-text {
        font-size: 20px;
    }
    .three-ati ul li {
        width: 100%;
        min-width: 100%;
        margin-right: 0;
    }
    .three-ati ul li:last-child {
        margin-bottom: 0;
    }
    .tb-lg-w.tb-lg-black {
        padding-top: 70px;
        margin-top: 40px;
    }
    .tabbed-section.tabbed-section-black {
        padding: 70px 0 70px;
    }
    .tabbed-tabs .tabs {
        overflow: auto;
        margin-left: -25px;
        padding-left: 25px;
        width: calc(100% + 50px);
        margin-bottom: 40px;
    }
    .tabbed-tabs .tabs-title {
        margin-right: 20px;
    }
    .tabbed-tabs .tabs-title:last-child {
        padding-right: 25px;
        margin-right: 0;
    }
    .tabbed-tabs .tabs-title>a {
        white-space: nowrap;
        padding: 15px 0;
    }
    .tabbed-item-right {
        padding: 0;
        margin-bottom: 30px;
    }
    .cf-form-title {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .content-form-section {
        padding: 40px 0 60px;
    }
    .cf-form-hold {
        padding: 40px 25px;
    }
    .tb-ol-ic2 {
        padding-bottom: 60px;
        margin: 100px 0 40px;
    }
    .tb-ol-ic2-right {
        padding-top: 30px;
        padding-left: 0;
    }
    .tb-ol-ic2-left {
        padding-right: 0;
        margin-top: -50px;
    }
    .tb-ol-ic2-hold {
        display: block;
    }
    .horizontal-scrolling-section.bg-black-section {
        padding-bottom: 60px;
    }
    .home .horizontal-scrolling-section.bg-black-section {
        padding-bottom: 120px;
    }
    .industires-tiles-list ul li a {
        padding-bottom: 80px;
    }
    .three-across-tiles-section .section-title {
        margin-bottom: 40px;
    }
    .three-across-tiles-section .industires-tiles-list {
        margin-bottom: 40px;
    }
    .three-across-tiles-section .blue-dots-orn {
        top: 30px;
        transform: translateX(-25%);
    }
    .three-across-tiles-section {
        padding: 60px 0 40px;
    }
    .scrolling-logo-section.bg-black-section {
        padding-bottom: 60px;
    }
    .bg-black-section + .related-section {
        padding-top: 60px;
    }
    .ai-button {
        margin-top: 40px;
    }
    .accordion-image-section.accordion-image-reverse-section .ai-right {
        padding-right: 0;
    }
    .accordion-image-section.accordion-image-reverse-section .ai-left {
        padding-left: 0;
    }
    .tbl-left {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .tb-logo {
        padding: 70px 0;
    }
    .tb-ci-w-overlap.tb-ci-w-overlap {
        padding-bottom: 60px;
    }
    .podcast-headshot-right {
        width: 100%;
        padding-left: 0px;
    }
    .podcast-headshot-left {
        margin-bottom: 20px;
    }
    .podcast-headshot {
        display: block;
        margin-bottom: 60px;
    }
    .n-d-wrapper .section-title {
        margin-bottom: 40px;
    }
    .intro-event.intro-single-podcast .blue-dots-orn {
        display: none;
    }
    .single-resource-section {
        padding: 35px 0 40px;
    }
    .n-right {
        height: auto !important;
    }
    .n-right .sticky {
        position: relative !important;
    }
    .intro-single-bottom .blue-dots-orn {
        top: 60px;
    }
    .blog-single-author {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .sidebar-subscribe {
        margin-bottom: 30px;
    }
    .n-d-section.single-blog-n-d-section {
        padding-bottom: 60px;
    }
    .related-section {
        padding: 40px 0 60px;
    }
    .single-blog-n-d-section .n-right {
        padding-left: 0;
    }
    .entry h3 {
        font-size: 24px;
    }
    .entry h3:not(:first-child) {
        margin-top: 30px;
    }
    .entry h4:not(:first-child) {
        margin-top: 30px;
    }
    .home-intro-section.intro-single {
        min-height: 200px;
    }
    .intro-single-bottom-hold {
        margin-top: -80px;
    }
    .intro-single-image {
        padding-right: 0;
    }
    .grid-of-four.filter-grid > ul {
        margin-left: 0;
        width: 100%;
    }
    .grid-of-four.filter-grid > ul > li {
        width: 100%;
        min-width: 100%;
        margin: 0 0px 20px;
    }
    .grid-of-four.filter-grid > ul > li:last-child {
        margin-bottom: 0;
    }
    .two-accross-h-tiles-section .blue-dots-orn {
        top: 10px;
    }
    .two-accross-h-tiles-section .blue-dots-orn {
        transform: translateX(-20%);
    }
    .pr-box-title {
        font-size: 22px;
    }
    .two-accross-h-tiles-section {
        padding: 40px 0 20px;
    }
    .title-section {
        padding: 40px 0 60px;
    }
    .pr-box-right {
        width: 100%;
        padding: 28px 25px 110px;
        min-height: 1px;
    }
    .pr-box-left {
        width: 100%;
        padding-bottom: 50%;
    }
    .featured-resource-section .blue-dots-orn {
        top: 45px;
    }
    .featured-resource-section {
        padding: 40px 0;
    }
    .frb-content {
        padding: 30px 25px 70px;
    }
    .frb-image-width {
        width: 100%;
        margin-left: 0px;
    }
    .frb-left {
        order: 2;
    }
    .mob-nav-hold {
        padding: 80px 0 30px;
    }
    .mob-subnav-hold {
        padding: 80px 0 30px;
    }
    .rt-title {
        font-size: 22px;
    }
    .resource-tiles-section .blue-dots-orn {
        transform: translateX(-84%);
    }
    .resource-tiles-section {
        padding: 40px 0 70px;
    }
    .sfg-logos-section {
        padding: 40px 0 50px;
    }
    .filter-grid {
        margin-bottom: 40px;
    }
    .grid-of-three > ul > li {
        width: 100%;
        min-width: 100%;
        margin: 0;
        margin-bottom: 10px;
    }
    .grid-of-three > ul > li:last-child {
        margin-bottom: 0px;
    }
    .grid-of-three > ul {
        margin-left: 0;
        width: 100%;
    }
    .grid-of-four > ul > li {
        width: calc(50% - 20px);
        min-width: calc(50% - 20px);
        margin: 0 10px 20px;
    }
    .tb-ic-w.tb-ic-w-large {
        padding: 40px 0 40px;
    }
    .tb-ci-w.tb-ci-w-large .tb-ci-w-image-width {
        margin-left: 0%;
        width: 100%;
    }
    .fi-right {
        padding-left: 0;
    }
    .fi-image-hold {
        margin-left: 0;
    }
    .fi-left {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .form-block-fi-section {
        padding: 40px 0 70px;
    }
    .accordion-image-section {
        padding: 40px 0;
    }
    .ai-acc .accordion-title {
        font-size: 18px;
    }
    .ai-right {
        padding-left: 0;
    }
    .ai-left {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .ai-hold {
        display: block;
    }
    .grey-bg-text p a {
        font-size: 16px;
    }
    .grey-bg-text p {
        font-size: 18px;
    }
    .tb-tc-left {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .intro-partner-detail .blue-dots-orn {
        transform: translateX(-13%);
    }
    .tb-tc-section {
        padding: 40px 0 70px;
    }
    .simple-list ul li {
        font-size: 15px;
    }
    .resources-section.resources-edited-section {
        padding-top: 40px;
    }
    .tb-list-section .blue-dots-orn {
        top: 0px;
        transform: translateX(-25%);
    }
    .tb-list-section .text-24 {
        margin-bottom: 20px;
    }
    .tb-list-section {
        padding: 40px 0 60px;
    }
    .tb-list ul li:before {
        top: 9px;
    }
    .tb-list ul li {
        width: 100%;
        min-width: 100%;
        margin-right: 0px;
        margin-bottom: 10px;
        font-size: 16px;
        padding-left: 20px;
    }
    .intro-event .hero-text-wrapper {
        padding-bottom: 0;
        padding-top: 40px;
    }
    .intro-event .blue-dots-orn {
        bottom: 0;
        transform: translateX(-15%);
    }
    .fittl-title {
        font-size: 20px;
    }
    .intro-event.mr-bt {
        margin-bottom: 40px;
    }
    .full-image-tiles-two-section {
        padding: 40px 0 40px;
    }
    .tb-ic-w-content .socs-list {
        margin-top: 30px;
    }
    .socs-list ul li:not(:last-child) {
        margin-right: 12px;
    }
    .full-image-tiles-two-list ul li {
        width: 100%;
        min-width: 100%;
        margin-right: 0px;
    }
    .full-image-tiles-two-list ul li:last-child {
        margin-bottom: 0;
    }
    .intro-event-button {
        padding-left: 0;
    }
    .single-quote-section .blue-dots-orn {
        transform: translateX(-13%);
        bottom: -10px;
    }
    .single-quote-text {
        font-size: 20px;
    }
    .single-quote-section {
        padding: 80px 0 60px;

        padding: 60px 0 60px;
    }
    .tb-ol-ic:before {
        bottom: 0px;
        top: 80px;
        height: calc(100% - 80px);
    }
    .tb-ol-ic {
        padding-top: 0px;
        padding-bottom: 80px;
    }
    .tb-ol-ic-right {
        padding: 0;
    }
    .tb-ol-ic-left {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .tb-ol-ic-image-width {
        margin-left: 0;
    }
    .tb-ol-ic-image {
        padding-bottom: 89%;
    }
    .lg-tt-text {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .lg-tt-title {
        font-size: 24px;
    }
    .lg-tiles-two-list ul li {
        width: 100%;
        min-width: 100%;
        margin-right: 0;
    }
    .lg-tiles-two-list ul li:last-child {
        margin-bottom: 0;
    }
    .lg-tiles-two-section .section-top {
        margin-bottom: 40px;
    }
    .logo-grid-section .section-top {
        margin-bottom: 40px;
    }
    .lg-tiles-two-section {
        padding: 80px 0;
    }
    .tb-ol-ci {
        padding-bottom: 80px;
    }
    .tb-ol-ci-name span {
        font-size: 14px;
    }
    .tb-ol-ci-title {
        /* font-size: 36px; */
    }
    .tb-ol-ci-left {
        padding: 0;
    }
    .tb-ol-ci-left {
        order: 2;
    }
    .tb-ol-ci-right {
        padding-left: 0;
        margin-bottom: 20px;
    }
    .tb-ol-ci-image-width {
        width: 100%;
    }
    .tb-ol-ci-image {
        /* padding-bottom: 100%; */
    }
    .tb-ic-w {
        padding: 40px 0 70px;
    }
    .tb-ic-w-right {
        padding-left: 0;
    }
    .tb-ic-w-left {
        padding-right: 0;
        left: 0px;
        margin-bottom: 20px;
    }
    .tb-ci-w-right {
        margin-bottom: 20px;
    }
    .tb-ci-w {
        padding: 32px 0 40px;
    }
    .tb-ci-w-left {
        order: 2;
    }
    .tb-ci-w-image-width {
        margin-left: 0;
        min-width: 100%;
    }
    .tb-lg-w .blue-dots-orn {
        top: -5px;
        transform: translateX(-22%);
    }
    .tb-lg-w {
        padding: 40px 0 40px;
    }
    .logo-grid-section {
        padding: 40px 0 60px;
    }
    .logo-grid ul li {
        width: calc(50% - 10px);
        min-width: calc(50% - 10px);
        margin-bottom: 20px;
    }
    .logo-grid ul li:nth-child(2n) {
        margin-right: 0;
    }
    .aup-wrapper {
        padding-top: 40px;
        padding-bottom: 80px;
    }
    .aup-wrapper.has-update-text {
        padding-top: 70px;
    }
    .aup-left .sticky {
        width: 100% !important;
    }
    .aup-left {
        padding-right: 0;
    }
    .logo img {
        max-width: 62px;
    }
    .aup-left {
        margin-bottom: 40px;
    }
    .aup-right {
        padding-left: 0px;
    }
    .aup-right-info {
        position: relative;
        right: auto;
        top: auto;
        margin-bottom: 20px;
    }
    .blog-subscribe.subscribe-form-style form {
       display: block;
    }
    .blog-subscribe.subscribe-form-style .gform_footer {
        padding: 20px 0 0 !important;
    }
    .gitcfw-form .gform_fields li {
        margin: 0 0 30px !important;
    }
    .gitcfw-form .gform_legacy_markup_wrapper li.gfield.gfield_error, 
    .gitcfw-form .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
        margin-bottom: 30px !important;
    }
    .home-intro-section .blue-dots-orn {
        display: none;
    }
    .tb-ic-w.tb-ic-w-large .blue-dots-orn {
        display: none;
    }
    .ss-right {
        padding: 30px 0 0;
    }
}

@media (max-width: 550px) { 
	.flex-wrap { flex-wrap: wrap; gap: 8px; }
	.mobile-max-width {width: 100%;}
}