/**
 * Variables
 */
:root {
    --ej-black: #000000;
    --ej-white: #ffffff;
    --ej-navy: #182C58;
    --ej-light-navy: #526182;
    --ej-lighter-navy: #8c96ac;
    /* --ej-gray: #c5cad5; */
    --ej-gray: rgba(24, 44, 88, 0.25);
    --ej-light-gray: #f3f4f6;
    --ej-off-white: #FFFAE9;
    --ej-red: #FF6347;
    --ej-light-red: #ffc0b6;
	--ej-lighter-red: #ffc0b6;
    --ej-yellow: #FF6347;
    --font-inter: 'Inter', sans-serif;
    --font-jet-brains-mono: 'JetBrains Mono', monospace;
}


/**
 * Layouts
 */

* {
    box-sizing: border-box;
}

body { 
    background-color: var(--ej-navy);
    padding: 0;
    margin: 0;
    color: var(--ej-white);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    font-family: var(--font-inter);
    letter-spacing: 0; 
}

section {
    position: relative;
}

.container {
    max-width: 1396px;
    padding: 0 22px;
    margin: 0 auto;
    position: relative;
}

a {
    text-decoration: none;
    transition: all 0.4s ease;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.flex-column {
    flex-direction: column;
}

ul, 
ol {
    margin: 1;
}

.pt-1 {
    padding-top: 2.5rem;
}

.pb-1 {
    padding-bottom: 2.5rem;
}

.pt-2 {
    padding-top: 2rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.pt-3 {
    padding-top: 2rem;
}

.pb-3 {
    padding-bottom: 3rem;
}

.pt-4 {
    padding-top: 4rem;
}

.pb-4 {
    padding-bottom: 4rem;
}

.pt-5 {
    padding-top: 5rem;
}

.pb-5 {
    padding-bottom: 5rem;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.px-1 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-2 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-3 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.px-4 {
    padding-left: 4rem;
    padding-right: 4rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}



/*
** Typography
*/

.font-inter {
    font-family: var(--ej-karla);
}

.font-jet-brains-mono {
    font-family: var(--font-jet-brains-mono);
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-inter);
    color: var(--ej-white);
    font-weight: 400;
    margin: 0;
    line-height: 120%;
}

h1, 
.h1 {
    font-size: 60px;
    line-height: 60px;
    letter-spacing: -2px;
}

h2, 
.h2 {
    font-size: 60px;
    line-height: 61.8px;
    letter-spacing: -3px;
}

h3, 
.h3 {
    font-size: 36px;
    line-height: 43.2px;
	
}

h4, 
.h4 {
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
}

h5,
.h5 {
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    font-family: var(--font-jet-brains-mono);
    line-height: 110%;
}

h5.small,
.h5.small {
    font-size: 12px;
    line-height: 16px;
    font-family: var(--font-jet-brains-mono);
}

p,
.paragraph {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
}

.big-paragraph, 
.big-paragraph p {
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0;
}

p {
    margin: 0;
}

p + p {
    margin-top: 1rem;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.strong {
    font-weight: 700;
}

.lh-1 {
    line-height: 1;
}

.font-medium {
    font-weight: 500;
}

.font-bold {
    font-weight: 700;
}

.font-strong {
    font-weight: 800;
}

.ele-has-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px !important;
}

.ele-has-tag::before {
    content: "<";
}

.ele-has-tag::after {
    content: ">";
}

.has-url {
    cursor: pointer;
}

.mobile-show {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}




/**
 * Buttons
 */
.ej-btn {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-jet-brains-mono);
    line-height: 1;
    padding: 8px 10px;
    border-radius: 2px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 2px solid var(--ej-red);
    background-color: var(--ej-red);
    color: var(--ej-off-white);
    text-align: center;
    cursor: pointer;
    width: auto;
}

.ej-btn:hover {
    border-color: var(--ej-red);
    background-color: var(--ej-off-white);
    color: var(--ej-red);
}

.ej-btn img {
    height: 18px;
    width: auto;
}

.ej-btn-default {
    background-color: var(--ej-red);
    color: var(--ej-navy);
    border-color: var(--ej-navy);
}

.ej-btn-medium {
    width: 357px;
    max-width: 100%;
    height: 40px;
}

.ej-btn-big {
    width: 456px;
    max-width: 100%;
    height: 40px;
}

.ej-btn-lighter-red {
    background-color: var(--ej-lighter-red);
    color: var(--ej-light-navy);
    border-color: var(--ej-lighter-red);
    border-color: transparent;
}

.ej-btn-lighter-red:hover {
    background-color: var(--ej-light-red);
    color: var(--ej-navy);
    border-color: var(--ej-light-red);
    border-color: transparent;
}

.ej-btn-navy {
    background-color: var(--ej-navy);
    border-color: var(--ej-navy);
}

.ej-btn-light-navy {
    background-color: var(--ej-light-navy);
    border-color: var(--ej-light-navy);
}

.ej-btn-light-navy:hover {
    background-color: var(--ej-navy);
    border-color: var(--ej-navy);
    color: var(--ej-off-white);
}

.ej-btn-gray {
    background-color: var(--ej-gray);
    color: var(--ej-navy);
    border-color: transparent;
}

.ej-btn-yellow {
    background-color: var(--ej-yellow);
    color: var(--ej-navy);
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.10);
    border-color: var(--ej-yellow);
}

.ej-btn-outline {
    background-color: transparent;
    border: 2px solid;
}



/**
 * Color / Backgrounds
 */

.color-black {
    color: var(--ej-black);
}

.color-white {
    color: var(--ej-white);
}

.color-navy {
    color: var(--ej-navy);
}

.color-light-navy {
    color: var(--ej-light-gray);
}

.color-lighter-navy {
    color: var(--ej-lighter-navy);
}

.color-gray {
    color: var(--ej-gray); 
}

.color-light-gray {
    color: var(--ej-light-gray); 
}

.color-off-white {
    color: var(--ej-off-white); 
}

.color-red {
    color: var(--ej-red); 
}

.color-light-red {
    color: var(--ej-light-red); 
}

.color-lighter-red {
    color: var(--ej-lighter-red);
}

.color-yellow {
    color: var(--ej-yellow);
}


.bg-black {
    background-color: var(--ej-white);
}

.bg-white {
    background-color: var(--ej-white);
}

.bg-transparent {
    background-color: transparent;
}

.bg-navy {
    background-color: var(--ej-navy);
}

.bg-light-navy {
    background-color: var(--ej-light-navy);
}

.bg-lighter-navy {
    background-color: var(--ej-lighter-navy);
}

.bg-gray {
    background-color: var(--ej-gray); 
}

.bg-light-gray {
    background-color: var(--ej-light-gray); 
}

.bg-off-white {
    background-color: var(--ej-off-white); 
}

.bg-red {
    background-color: var(--ej-red); 
}

.bg-light-red {
    background-color: var(--ej-light-red); 
}

.bg-lighter-red {
    background-color: var(--ej-lighter-red);
}

.bg-yellow {
    background-color: var(--ej-yellow);
}

.color-white svg,
.color-white svg path { 
    fill: var(--ej-white);
}










/**
* Header
*/
header#masthead {
    /* border-bottom: 1px solid rgba(24, 44, 88, 0.05); */
    position: relative;
}

body:not(.home) header#masthead .site-header-inner {
    border-bottom: 1px solid rgba(24, 44, 88, 0.05);
}

/* header#masthead::before {
    display: block;
    width: 20%;
    content: "";
    height: 64px;
    background-color: var(--ej-navy);
    position: absolute;
    right: 0;
    top: 0;
} */

header#masthead .site-branding img {
    max-width: 216px;
}

nav#site-navigation {
    padding-right: 30px;
}

ul#primary-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 36px;
}

ul#primary-menu li a {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-inter);
    color: var(--ej-white);
}

.home .header-right-block {
    padding-right: 20px;
}

.header-right-block {
    gap: 35px;
    padding-left: 20px;
    width: 425px;
}

.header-social {
    gap: 20px;
}

.bg-navy .header-social a img {
    filter: brightness(0) invert(1);
}

.header-social a img {
    min-width: 20px;
    max-height: 24px;
    transition: all 0.5s ease;
}

.header-social > a:hover img {
    filter: brightness(0) saturate(100%) invert(49%) sepia(43%) saturate(4110%) hue-rotate(334deg) brightness(114%) contrast(109%);
}

.header-right-block .header-cta {
    width: 150px;
}

#responsive-navigation {
    position: fixed;
    width: 100vw;
    height: 1000px;
    left: 0;
    right: 0;
    top: 53px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -99;
    background-color: var(--ej-off-white);
    padding: 10px 20px 50px;
}

@media screen and (max-width: 1024px){

    h1, 
    .h1 {
        font-size: 60px;
        line-height: 62px;
        letter-spacing: -4.75px;
    }
    h2, 
    .h2 {
        font-size: 48px;
        line-height: 46px;
        letter-spacing: -3px;
    }


}

@media screen and (max-width: 991px){

}

@media screen and (max-width: 768px){
    .mobile-hide {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    .mobile-show {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-show.ej-btn {
        display: inline-flex !important;
    }

    .mobile-show.flex {
        display: flex !important;
    }

    .site-header > .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    header#masthead .site-header-inner {
        padding: 16px 0;
    }

    header#masthead .site-branding a {
        display: block;
        line-height: 1;
    }

    header#masthead .site-branding img {
        max-width: 180px;
    }

    #btn-responsive-menu {
        width: 32px;
        height: 32px;
        cursor: pointer;
    }

    #btn-responsive-menu img {
        width: 100%;
        height: 100%;
    }

    #btn-responsive-menu img.icon-close {
        display: none;
    }

    #btn-responsive-menu.opened img.icon-close {
        display: block;
    }

    #btn-responsive-menu.opened img.icon-open {
        display: none;
    }

    html.responsive-menu-opened
    body.responsive-menu-opened {
        overflow: hidden;
    }

    body.responsive-menu-opened #responsive-navigation {
        opacity: 1;
        z-index: 999;
        visibility: visible;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        background: var(--Cream, #FFFAE9);
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
    }

    #responsive-navigation #primary-menu-mobile {
        display: flex;
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
        list-style: none;
        padding: 0;
    }

    #responsive-navigation #primary-menu-mobile li a {
        font-size: 30px;
        line-height: 160%;
        color: var(--ej-navy);
    }

    #responsive-navigation .mobile-header-social {
        align-items: flex-start;
        justify-content: flex-start;
    }

    #responsive-navigation .header-social {
        justify-content: flex-start;
    }

    #responsive-navigation .header-cta {
        width: 100%;
    }
}

@media screen and (max-width: 600px){

}





/**
* Homepage
*/
.home .site-main {
    position: relative;
}

/* .home .site-main::after {
    content: "";
    display: block;
    width: 25%;
    height: 100%;
    position: absolute;
    right: 0;
    top: -1px;
    background-color: var(--ej-navy);
    z-index: -1;
} */

.frontpage__content {
    align-items: flex-start;
    gap: 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.frontpage__content-left {
    width: calc(100% - 425px);
    border-top: 1px solid rgba(24, 44, 88, 0.05);
}

.frontpage__content-right {
    width: 425px;
    padding: 45px 20px 20px;
    /* margin-top: -1px; */
    position: relative;
}

.frontpage__hero-section h1 {
    position: relative;
}

/*
.tooltip-block {
    font-size: 16px;
    line-height: 100%;
}

.tooltip-block .tooltip-icon {
    position: absolute;
    right: 80px;
    bottom: 50px;
    line-height: 0.8;
    z-index: 5;
    cursor: pointer;
}

.tooltip-block .tooltip-icon:hover svg > g {
    opacity: 1 !important;
}

.tooltip-block .tooltip-icon:hover svg > g > path:nth-child(1) {
    fill: var(--ej-navy) !important;
}

.tooltip-block .tooltip-content {
    position: absolute;
    max-width: 340px;
    padding: 20px;
    box-shadow: -1px 4px 8px 1px #ddd;
    background-color: var(--ej-off-white);
    right: -28.5%;
    bottom: 90px;
    z-index: 2;
    font-family: var(--font-jet-brains-mono);
    display: none;
}

.tooltip-block .tooltip-content * {
    font-family: var(--font-jet-brains-mono);
}
*/

span.ej-tooltip-icon {
    display: inline-block;
    line-height: 0.5;
    z-index: 5;
    cursor: pointer;
    position: relative;
    vertical-align: top;
    width: 30px;
    height: 30px;
    background: url('assets/images/icon-question.svg') no-repeat center center;
    background-size: 100% auto;
}

span.ej-tooltip-icon:hover {
    background: url('assets/images/icon-question-small-black.svg') no-repeat center center;
    background-size: 100% auto;
}

.ej-tooltip-content {
    position: absolute;
    max-width: 340px;
    padding: 50px;
    box-shadow: -1px 4px 8px 1px #ddd;
    background-color: var(--ej-off-white);
    right: 17.5%;
    bottom: 270px;
    z-index: 99;
    font-family: var(--font-jet-brains-mono);
    display: none;
}

.ej-tooltip-content * {
    font-family: var(--font-jet-brains-mono);
}


.frontpage__hero-section .desc {
    max-width: 600px;
}

.frontpage__hero-section .desc a {
    font-size: 16px;
}

.front_page-what-we-do {
    padding: 25px 25px 50px;
}

.front_page-cta {
	color: var(--ej-navy);
    padding: 25px 25px 50px;
    display: block;
}

.front_page-cta:hover {
    opacity: 0.9;
    transition: all 0.3s ease-in-out;
}

.front_page-what-we-do-inner {
    gap: 10px;
}

.front_page-what-we-do h2 {
    color: var(--ej-white);
	font-size: 40px;
    line-height: 120%;
    max-width: 400px;
    margin: 5px 0 25px;
    letter-spacing: 0;
}

.front_page-what-we-do-left, 
.front_page-what-we-do-right {
	width: calc(50% - 5px);
}

.front_page-what-we-do-left .description {
	max-width: 400px;
}

.front_page-what-we-do-ctas {
	gap: 10px;
}

.front_page-what-we-do .video-caption a {
    color: var(--ej-red);
}


.frontpage__our-faqs {
    padding-left: 25px;
    padding-right: 30px;
}

.frontpage__our-faqs .subtitle {
    margin: 0 0 24px 0;
}

.frontpage__our-faqs h2 {
    font-size: 50px;
    letter-spacing: -1.5px;
    line-height: 110%;
}

.frontpage__our-faqs .desc {
    max-width: 420px;
}

.faqs-wrapper .ej-faq-item + .ej-faq-item {
    margin-top: 25px;
    border-top: 1px solid var(--ej-navy);
    padding-top: 20px;
}

.ej-faq-item .ej-faq-item-title {
    font-size: 24px;
    line-height: 125%;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    gap: 20px;
}

.ej-faq-item .ej-faq-item-title span {
    max-width: 475px;
}

.ej-faq-item .ej-faq-item-title::after {
    content: "";
    width: 20px;
    height: 20px;
    background: url('assets/images/icon-plus-small-gray.svg') no-repeat center center;
    display: block;
    min-width: 20px;
}

.ej-faq-item .ej-faq-item-title:hover::after {
    background: url('assets/images/icon-plus-blue.svg') no-repeat center center;
    background-size: 20px auto;
}

.ej-faq-item .ej-faq-item-content {
    max-width: 550px;
    height: 1px;
    transition: height 0.5s ease;
    overflow: hidden;
    visibility: hidden;
}

.ej-faq-item.expanded .ej-faq-item-content {
    height: auto;
    visibility: visible;
    overflow: unset;
    padding: 25px 0 0;
}

.ej-faq-item.expanded .ej-faq-item-title::after {
    background: url('assets/images/icon-minus-small-navy.svg') no-repeat center center;
    background-size: 20px auto;
}

.frontpage__our-faqs-cta .ej-btn-big {
    width: 100%;
}



.frontpage__our-chapters {
    padding: 40px 25px 80px;
}

.frontpage__our-chapters h2 {
    margin-top: 7px;
    font-size: 50px;
    line-height: 115%;
    letter-spacing: 0;
}

.frontpage__our-chapters .description {
    max-width: 590px;
}

.frontpage__our-chapters-cta a {
    width: 100%;
}

.frontpage__our-chapters  h3.featured-chapter-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    margin: 0 0 20px;
}

.oc-featured-chapter-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.oc-featured-chapter-wrapper > .oc-featured-chapter {
    width: 100%;
    max-width: calc(50% - 30px);
}

.oc-featured-chapter img {
    transition: all 0.5s ease;
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.oc-featured-chapter:hover img {
    -webkit-filter: none;
    filter: none;
}

.oc-featured-chapter h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0;
    margin-bottom: 5px;
}

.oc-featured-chapter .location {
    padding: 0 0 0 25px;
    background: url(assets/images/icon-marker-navy.svg) no-repeat left center;
    background-size: 15px 18px;
}

.oc-featured-chapter .excerpt {
    margin-bottom: 20px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.ej__featured-news-header {
    margin: 0 0 25px;
    justify-content: flex-start;
    gap: 20px;
}

.ej__featured-news-header h3 {
    color: var(--ej-navy);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.24px;
    cursor: pointer;
}

.ej__featured-news-header h3.highlighted {
    font-weight: 800;
    padding: 3px 10px;
    background-color: var(--ej-lighter-navy);
    color: var(--ej-navy);
}

.ej__featured-news-item + .ej__featured-news-item {
    color: var(--ej-navy);
	padding-top: 50px;
}

.ej__featured-news-item .ej__featured-news-thumbnail {
    display: block;
    position: relative;
    height: 235px;
    overflow: hidden;
}

.ej__featured-news-item .ej__featured-news-thumbnail img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.ej__featured-news-item:hover .ej__featured-news-thumbnail img {
    filter: none;
}

.ej__featured-news-item .ej__featured-news-title {
    font-size: 24px;
    line-height: 30px;
 	color: var(--ej-white);
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.ej__featured-news-item .excerpt {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 10px 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ej__featured-news-item .ej__featured-news-meta {
    align-items: center;
    justify-content: flex-start;
}

.ej__featured-news-item .category {
    font-size: 12px;
    color: var(--ej-navy);
    background-color: var(--ej-lighter-navy);
    padding: 3px 6px;
}

.ej__featured-news-item .category.category_long-read {
    background-color: var(--ej-off-white);
}

.ej__featured-news-item .category.category_op-ed {
    background-color: var(--ej-red);
    color: #ffffff;
}

.ej__featured-news-item .category.category_press-mention {
    background-color: #ffd8d1;
}

.ej__featured-news-item .date, 
.ej__featured-news-item .publisher {
    font-size: 12px;
}



.frontpage__content-full-width {
    padding: 120px 0 75px;
}


.ej__featured-news-tabs .ej__featured-podcasts {
    display: none;
}

.ej__featured-podcasts .podcast-item + .podcast-item {
    margin-top: 40px;
}


@media screen and (min-width: 992px){
    
}

@media screen and (max-width: 1024px){

    
}

@media screen and (max-width: 991px){
    
}

@media screen and (max-width: 768px){
    .home .site-main > .container {
        padding-left: 0;
        padding-right: 0;
    }

    .frontpage__content {
        flex-direction: column;
    }

    .frontpage__content-left {
        width: 100%;
    }

    .frontpage__hero-section {
        padding: 20px;
    }

    .frontpage__hero-section h1 {
        font-size: 36px;
        line-height: 120%;
        letter-spacing: 0;
    }

    span.ej-tooltip-icon {
        width: 15px;
        height: 15px;
    }

    .ej-tooltip-content {
        right: 6%;
        bottom: -10px;
    }

    .frontpage__hero-section .desc {
        max-width: 100%;
    }

    .front_page-what-we-do {
        padding: 20px 20px 40px;
    }

    .front_page-what-we-do-inner {
        gap: 40px;
        flex-direction: column-reverse;
    }

    .front_page-what-we-do-left, 
    .front_page-what-we-do-right {
        width:100%;
    }

    .front_page-what-we-do-right img {
        width: 100%;
        height: 325px;
        object-fit: cover;
    }

    .front_page-what-we-do h2 {
        font-size: 36px;
        margin: 5px 0 10px;
        max-width: 100%;
    }

    .front_page-what-we-do-left .description {
        max-width: 100%;
    }

    .front_page-what-we-do-ctas {
        gap: 10px;
        margin-top: 40px;
        flex-direction: column;
    }

    .front_page-what-we-do-ctas .ej-btn {
        width: 100%;
    }

    .frontpage__our-faqs {
        padding: 20px 20px 40px;
    }

    .frontpage__our-faqs .subtitle {
        margin: 0 0 12px 0;
    }

    .frontpage__our-faqs h2 {
        font-size: 36px;
        letter-spacing: 0;
        line-height: 120%;
    }

    .frontpage__our-faqs .desc {
        max-width: 100%;
    }

    .ej-faq-item .ej-faq-item-title span {
        max-width: 100%;
    }

    .ej-faq-item .ej-faq-item-content {
        max-width: 100%;
    }

    .frontpage__our-faqs-cta {
        margin: 40px 0 0;
    }

    .frontpage__our-chapters {
        padding: 20px 20px 80px;
    }

    .frontpage__our-chapters h2 {
        font-size: 36px;
        line-height: 120%;
    }

    .frontpage__our-chapters .description {
        max-width: 100%;
        font-size: 14px;
    }

    .frontpage__our-chapters .description p {
        font-size: 14px;
        line-height: 22px;
    }

    .frontpage__our-chapters-cta {
        margin-bottom: 40px;
    }



    .frontpage__content-full-width {
        padding: 0;
    }

    .frontpage__content-right {
        width: 100%;
        padding: 20px 20px 40px;
        max-height: unset !important;
    }

    .ej__featured-news-header h3 {
        line-height: 1;
    }

    .ej__featured-news-header h3.highlighted {
        padding: 4px 10px;
    }

    .frontpage__content-right .ej__featured-news {
        height: unset !important;
    }

    .ej__featured-news-item .ej__featured-news-title {
        margin-bottom: 15px;
    }

    .ej__featured-news-item + .ej__featured-news-item {
        padding-top: 40px;
    }

    .ej__featured-news-item .ej__featured-news-meta {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 600px){
    .ej-tooltip-content {
        right: 20px;
        bottom: 0;
    }
}












/**
* Who we are
*/
.about__hero-section-header {
    padding-top: 25px;
    padding-bottom: 25px;
}

.about__intro-header-ctas .ej-btn {
    background-color: #f3efe1;
}

.about__hero-section-inner {
    padding-bottom: 75px;
    align-items: flex-start;
    gap: 40px;
}

.about__hero-section-left {
    max-width: 580px;
}

.about__hero-section-right {
    max-width: 680px;
}



.about__chapter-network {
    padding: 40px 0 75px;
}

.about__chapter-network-header .titles {
    gap: 30px;
    padding-bottom: 10px;
}

.about__chapter-network-header .titles h3, 
.about__chapter-network-header .titles .desc {
    max-width: calc(50% - 15px);
    width: 100%;
}

.about__chapter-network-header .titles h3 {
    letter-spacing: 0;
}

.about__chapter-network-map {
    padding: 30px 0;
}

.about__chapter-network-map iframe {
    width: 100%;
}

.about__chapter-network-ctas {
    gap: 10px;
}

.about__chapter-network-ctas .ej-btn {
    max-width: calc(50% - 5px);
    width: 100%;
}




.about__our-team {
    padding: 30px 0 0;
}

.about__our-team-header h2 {
    font-size: 50px;
    letter-spacing: -1.5px;
    margin-top: 12px;
}

.about__our-team-members {
    padding: 36px 0 0;
}

.about__our-team-members-wrapper {
    flex-wrap: wrap;
    align-items: flex-start;
    column-gap: 42px;
    row-gap: 75px;
}

.about__our-team-members-wrapper .ej-team-member {
    max-width: calc(25% - 31.5px);
    width: 100%;
}

.ej-team-member a img {
    display: block;
    height: 235px;
    width: 100%;
    object-fit: cover;
    margin: 0 0 12px;
}

.ej-team-member .designation {
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
}

.ej-team-member .location {
    justify-content: flex-start;
    gap: 5px;
    margin: 5px 0 0;
}

.ej-team-member .location img {
    width: 15px;
    height: auto;
}

.ej-team-member .short-bio {
    margin-bottom: 25px;
}

.about__our-team-load-more-wrapper {
    padding-bottom: 75px;
}

#our-team .ej-team-member .location {
    align-items: flex-start;
}


.about__our-advisors h2 {
    font-size: 50px;
    letter-spacing: -1.5px;
    margin-top: 12px;
}

.about__our-advisors .desc {
    font-size: 18px;
    margin: 15px 0 30px;
}

.about__our-advisors-wrapper {
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 40px;
}

.about__our-advisors-wrapper .ej-advisor {
    width: 100%;
    max-width: calc(25% - 15px);
}

.about__our-advisors-wrapper .ej-advisor h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 7px 0;
}

.about__our-founders {
    padding: 75px 0;
}

.about__our-founders-inner h2, 
.about__our-founders-inner h2 * {
    font-size: 50px;
    line-height: 135%;
    letter-spacing: -2.5px;
    font-weight: 400;
}

.about__our-founders-inner h2 a {
    text-decoration: underline;
    text-underline-offset: 4px;
    color: var(--ej-navy);
}

.about__our-founders-list {
    max-width: 1190px;
    margin-left: auto;
    margin-right: auto;
    gap: 50px;
}

.about__our-founders-list .our-founder-item img {
    height: 185px;
    object-fit: cover;
    width: auto;
}

.about__our-founders-highlighted-article {
    margin: 0 0 50px;
    background-color: var(--ej-light-red);
    padding: 40px;
}

.about__our-founders-highlighted-article h3 a {
    color: var(--ej-navy);
    margin: 0 0 20px;
    display: block;
    line-height: 1.3;
    max-width: 1000px;
    text-decoration: underline;
    font-weight: 600;
}

.about__our-founders-highlighted-article p {
    font-size: 18px;
    line-height: 24px;
}

.about__our-founders-highlighted-article p a {
    color: var(--ej-navy);
    text-decoration: underline;
}

.about__our-founders-highlighted-article blockquote {
    margin: 40px 0 0 40px;
}

.about__our-founders-highlighted-article blockquote p {
    font-style: italic;
    font-size: 24px;
    line-height: 130%;
}

.about__our-founders-highlighted-article blockquote p span {
    font-weight: 600 !important;
}


@media screen and (min-width: 992px){
    
}

@media screen and (max-width: 1024px){

    
}

@media screen and (max-width: 991px){
    
}

@media screen and (max-width: 768px){
    .about__hero-section-header {
        padding-top: 20px;
        padding-bottom: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .about__hero-section-header h1 {
        font-size: 50px;
        letter-spacing: -1.5px;
        line-height: 110%;
    }

    .about__intro-header-ctas .ej-btn {
        font-size: 12px;
    }

    .about__hero-section-inner {
        padding-bottom: 60px;
        align-items: flex-start;
        flex-direction: column;
    }

    .about__hero-section-left {
        max-width: 100%;
    }

    .about__hero-section-left h3 {
        font-size: 24px;
        line-height: 125%;
    }

    .about__hero-section-right {
        max-width: 100%;
        width: 100%;
    }

    .about__hero-section-right img {
        width: 100%;
        height: 285px;
        object-fit: cover;
    }

    .about__chapter-network {
        padding: 0 0 40px 0;
    }

    .about__chapter-network > .container {
        padding: 0;
    }

    .about__chapter-network-map {
        padding: 0;
    }

    .about__chapter-network-map iframe {
        width: 100%;
        height: 340px;
    }

    .about__chapter-network-header {
        padding: 40px 20px;
    }

    .about__chapter-network-header .titles {
        gap: 25px;
        padding-bottom: 0px;
        flex-direction: column;
        align-items: flex-start;
    }

    .about__chapter-network-header .titles h3, 
    .about__chapter-network-header .titles .desc {
        max-width: 100%;
    }

    .about__chapter-network-ctas {
        padding: 0 20px;
        flex-direction: column;
    }

    .about__chapter-network-ctas .ej-btn {
        width: 100%;
        max-width: 100%;
    }

    .about__our-team {
        padding: 40px 0 0;
    }

    .about__our-team-header h2 {
        font-size: 36px;
        letter-spacing: 0;
        margin-top: 12px;
        line-height: 130%;
    }

    .about__our-team-members-wrapper {
        flex-wrap: wrap;
        align-items: flex-start;
        column-gap: 30px;
        row-gap: 30px;
    }

    .about__our-team-members-wrapper .ej-team-member {
        max-width: calc(50% - 15px);
        width: 100%;
    }


    .about__our-advisors h2 {
        font-size: 36px;
        letter-spacing: 0;
        margin-top: 12px;
        line-height: 130%;
    }

    .about__our-advisors-wrapper .ej-advisor {
        max-width: calc(50% - 10px);
    }




    .about__our-founders {
        padding: 60px 0 80px;
    }

    .about__our-founders-inner h2, 
    .about__our-founders-inner h2 * {
        font-size: 36px;
        line-height: 120%;
        letter-spacing: 0;
        font-weight: 400;
    }

    .about__our-founders-inner .ej-btn {
        width: 100%;
    }

    .about__our-founders-list {
        gap: 20px;
        margin: 40px 0 0;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .about__our-founders-list .our-founder-item {
        max-width: calc(33.333333% - 13.333333px);
    }
}

@media screen and (max-width: 600px){
    .about__our-team-members-wrapper .ej-team-member {
        max-width: 100%;
        width: 100%;
    }
}






/**
* Single member
*/
.single-team-member-wrapper {
    align-items: flex-start;
    padding: 54px 60px 0;
    gap: 65px;
}

.single-team-member-thumb {
    height: 560px;
    width: auto;
    object-fit: cover;
}

.team-member-socials {
    justify-content: flex-start;
}

.team-member-socials .ej-btn img {
    max-width: 18px;
    height: auto;
}

.single-team-member-content {
    width: 100%;
    max-width: 600px;
}

.single-team-member-content h1 {
    font-size: 36px;
    letter-spacing: 0;
    line-height: 120%;
}

.single-team-member-content .designation {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
}

.single-team-member-content .location {
    justify-content: flex-start;
    gap: 8px;
    margin-top: 6px;
}

.single-team-member-content .location img {
    width: 15px;
    height: auto;
}

.single-team-member-content .team-member-bio p + p {
    margin-top: 35px;
}


@media screen and (min-width: 992px){
    
}

@media screen and (max-width: 1024px){

    
}

@media screen and (max-width: 991px){
    
}

@media screen and (max-width: 768px){
    body.single-team-members .site-main > .container {
        padding: 0;
    }

    .single-team-member-wrapper {
        align-items: flex-start;
        padding: 20px 20px 0;
        gap: 40px;
        flex-direction: column;
    }

    .single-team-member-img-wrapper {
        width: 100%;
    }

    .single-team-member-thumb {
        height: 575px;
        width: 100%;
        object-fit: cover;
    }

    .single-team-member-content {
        width: 100%;
        max-width: 100%;
        padding: 0 0 60px;
    }
}

@media screen and (max-width: 600px){
    .single-team-member-thumb {
        height: 375px;
        width: 100%;
        object-fit: cover;
    }
}









/**
* What we do
*/

.what-we-do__hero-section-header {
	padding-top: 25px;
    padding-bottom: 25px;
}

.what-we-do__intro-header-ctas .ej-btn {
    background-color: #f3cbbb;
}

.what-we-do__intro-header-ctas .ej-btn:hover {
    background-color: var(--ej-navy);
    border-color: var(--ej-navy);
    color: #ffffff;
}

.what-we-do__hero-section-inner {
    padding-bottom: 50px;
    align-items: flex-start;
    gap: 80px;
}

.what-we-do__hero-section-left {
    max-width: 550px;
}



.what-we-do__featured-work {
    margin-top: 50px;
}

.what-we-do__featured-work .container {
    padding: 30px 50px;
    background: var(--ej-off-white);
    color: #0f0f0f;
	
}

.what-we-do__featured-work-inner {
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.what-we-do__featured-work h2 {
    font-size: 36px;
    line-height: 120%;
    max-width: 400px;
    margin: 24px 0 25px;
    letter-spacing: 0;
}

.what-we-do__featured-work .what-we-do__featured-work-item {
    width: 100%;
    max-width: calc(50% - 25px);
}

.what-we-do__featured-work .what-we-do__featured-work-item h2 {
    max-width: 100%;
}

.what-we-do__featured-work .ej__featured-news-meta {
    justify-content: flex-start;
}

.what-we-do__featured-work-left .description, 
.what-we-do__featured-work .what-we-do__featured-work-item .description {
    max-width: 500px;
    margin: 25px 0;
}

.what-we-do__featured-work-left .description, 
.what-we-do__featured-work-left .description p, 
.what-we-do__featured-work .what-we-do__featured-work-item .description, 
.what-we-do__featured-work .what-we-do__featured-work-item .description p {
    color: #182C58;
}

.what-we-do__featured-work-inner .ej-btn {
    background-color: var(--ej-red);
    border-color: var(--ej-red);
}

.what-we-do__featured-work-right {
    max-width: 745px;
    width: 100%;
}

.what-we-do__featured-work-right img {
    height: 530px;
    width: auto;
    object-fit: cover;
}



.what-we-do__our-blog {
    padding: 110px 0 50px;
}

.what-we-do__our-blog-header {
    padding-bottom: 50px;
}

.what-we-do__our-blog-header h2 {
    font-size: 36px;
    line-height: 120%;
    letter-spacing: 0;
}

.what-we-do__our-blog-header .ej-btn {
    max-width: 320px;
}

.what-we-do__our-blog-inner {
    overflow-x: scroll;
    overflow-y: hidden;
    padding-bottom: 50px;
}

.what-we-do__our-blog-inner::-webkit-scrollbar { 
    background-color: #f0caba;
    height: 10px;
    border-radius: 5px;
}

.what-we-do__our-blog-inner::-webkit-scrollbar-thumb { 
    background-color:#64647a;
    width: 100px;
    height: 8px;
    border-radius: 4px;
}

.what-we-do__our-blog-inner::-webkit-scrollbar-track {
    background-color:#f0caba;
    height: 8px;
    border-radius: 5px;
}

.what-we-do__our-blog-inner .ej__featured-news {
    align-items: flex-start;
    gap: 50px;
}

.what-we-do__our-blog-inner .ej__featured-news .ej__featured-news-item {
    min-width: 500px;
}

.what-we-do__our-blog-inner .ej__featured-news .ej__featured-news-item + .ej__featured-news-item {
    padding-top: 0;
}

.what-we-do__our-blog-inner .ej__featured-news-item .ej__featured-news-thumbnail {
    height: 290px;
}

.what-we-do__our-blog-inner .ej__featured-news-item .ej__featured-news-title {
    font-size: 36px;
    line-height: 120%;
}

.what-we-do__our-blog-cta {
    margin-top: 25px;
}

.what-we-do__our-blog-cta .ej-btn {
    width: 100%;
}



.what-we-do__our-faqs {
    padding-bottom: 75px;
}

.what-we-do__our-faqs .subtitle {
    margin: 0 0 24px 0;
}

.what-we-do__our-faqs h2 {
    font-size: 50px;
    letter-spacing: -2.5px;
    line-height: 110%;
    max-width: 800px;
    margin: 0 0 24px 0;
}

.what-we-do__our-faqs .desc {
    max-width: 600px;
}

.what-we-do__our-faqs .faqs-wrapper {
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
}

.what-we-do__our-faqs .faqs-wrapper .ej-faq-item .ej-faq-item-title span {
    max-width: 95%;
    display: block;
}

.what-we-do__our-faqs .faqs-wrapper .ej-faq-item .ej-faq-item-content {
    max-width: 700px;
}


@media screen and (min-width: 992px){
    
}

@media screen and (max-width: 1024px){

    
}

@media screen and (max-width: 991px){
    
}

@media screen and (max-width: 768px){
    .what-we-do__hero-section-header {
        padding-top: 20px;
        padding-bottom: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .what-we-do__hero-section-header h1 {
        font-size: 50px;
        letter-spacing: -1.5px;
        line-height: 110%;
    }

    .what-we-do__intro-header-ctas .ej-btn {
        font-size: 12px;
    }

    .what-we-do__hero-section-inner {
        padding-bottom: 60px;
        align-items: flex-start;
        gap: 40px;
        flex-direction: column;
    }

    .what-we-do__hero-section-left {
        max-width: 100%;
    }

    .what-we-do__hero-section-left h3 {
        font-size: 24px;
        line-height: 130%;
    }

    .what-we-do__hero-section-right {
        width: 100%;
    }

    .what-we-do__hero-section-right img {
        height: 245px;
        width: 100%;
        object-fit: cover;
    }

    .what-we-do__featured-work {
        margin-top: 0;
    }

    .what-we-do__featured-work > .container {
        padding: 20px 20px 40px;
    }

    .what-we-do__featured-work-inner {
        gap: 40px;
        /* flex-direction: column-reverse; */
    }

    .what-we-do__featured-work .what-we-do__featured-work-item {
        max-width: 100%;
    }

    .what-we-do__featured-work-right {
        max-width: 100%;
    }

    .what-we-do__featured-work-right img {
        height: 400px;
        width: 100%;
    }

    .what-we-do__featured-work-left {
        width: 100%;
    }

    .what-we-do__featured-work h2 {
        max-width: 100%;
        margin: 12px 0;
    }

    .what-we-do__featured-work-left .ej__featured-news-meta {
        justify-content: flex-start;
    }

    .what-we-do__featured-work-left .description {
        margin: 12px 0 40px;
        max-width: 100%;
    }

   
  
}

@media screen and (max-width: 600px){
    .what-we-do__featured-work-right img {
        height: 265px;
    }
}











/**
* Our chapters
*/
body.page-template-our-chapters {
    background-color: ej-navy;
}

.our-chapters__hero-section-header {
    padding-top: 25px;
    padding-bottom: 25px;
}

.our-chapters__intro-header-ctas .ej-btn {
    background-color: #f3f4f6;
    color: var(--ej-light-navy);
}

.our-chapters__hero-section-inner {
    align-items: flex-start;
    gap: 40px;
}

.our-chapters__hero-section-left {
    max-width: 580px;
}

.our-chapters__hero-section-right {
    max-width: 680px;
}

.our-chapters__hero-section-map .subtitle {
    padding-top: 30px;
}

.our-chapters__chapter-network-map {
    padding: 30px 0;
}

.our-chapters__chapter-network-map iframe {
    width: 100%;
}

.our-chapters__chapter-network-ctas {
    gap: 10px;
}

.our-chapters__chapter-network-ctas .ej-btn {
    max-width: calc(50% - 5px);
    width: 100%;
}


.our-chapters__featured-chapters-inner {
    padding: 50px 25px 80px;
}

.our-chapters__featured-chapters h2 {
    margin-top: 5px;
    max-width: 600px;
    font-size: 50px;
    line-height: 115%;
}

.our-chapters__featured-chapters .description {
    max-width: 600px;
}

.our-chapters__featured-chapters .oc-featured__chapter-wrapper {
    align-items: flex-start;
    gap: 60px;
    justify-content: flex-start;
}

.our-chapters__featured-chapters .oc-featured-chapter {
    width: calc(25% - 45px);
}




.our-chapters__our-faqs .subtitle {
    margin: 0 0 24px 0;
}

.our-chapters__our-faqs h2 {
    font-size: 50px;
    letter-spacing: -2.5px;
    line-height: 110%;
    max-width: 800px;
    margin: 0 0 24px 0;
}

.our-chapters__our-faqs .desc {
    max-width: 600px;
}

.our-chapters__our-faqs .faqs-wrapper {
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 45px;
    border-bottom: 1px solid var(--ej-navy);
}

.our-chapters__our-faqs .faqs-wrapper .ej-faq-item .ej-faq-item-title span {
    max-width: 95%;
    display: block;
}

.our-chapters__our-faqs .faqs-wrapper .ej-faq-item .ej-faq-item-content {
    max-width: 700px;
}


@media screen and (min-width: 992px){
    
}

@media screen and (max-width: 1024px){

    
}

@media screen and (max-width: 991px){
    
}

@media screen and (max-width: 768px){
    .our-chapters__hero-section > .container {
        padding: 0;
    }

    .our-chapters__hero-section-header {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .our-chapters__hero-section-header h1 {
        font-size: 50px;
        line-height: 110%;
        letter-spacing: -1.5px;
    }

    .our-chapters__intro-header-ctas .ej-btn {
        font-size: 12px;
        flex-wrap: wrap;
    }

    .our-chapters__hero-section-inner {
        align-items: flex-start;
        gap: 20px;
        flex-direction: column;
        padding: 0 20px;
    }

    .our-chapters__hero-section-left, 
    .our-chapters__hero-section-right {
        min-width: 100%;
    }

    .our-chapters__hero-section-left h3 {
        font-size: 24px;
        line-height: 125%;
    }

    .our-chapters__hero-section-map .subtitle {
        padding: 60px 20px 20px 20px;
    }

    .our-chapters__chapter-network-map {
        padding: 0 0 40px;
    }

    .our-chapters__chapter-network-map iframe {
        width: 100%;
        height: 650px;
    }

    .our-chapters__chapter-network-ctas {
        gap: 10px;
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .our-chapters__chapter-network-ctas .ej-btn {
        max-width: 100%;
    }

    .our-chapters__featured-chapters > .container {
        padding: 0;
    }

    .our-chapters__featured-chapters-inner {
        padding: 20px 20px 40px;
    }

    .our-chapters__featured-chapters h2 {
        max-width: 100%;
        font-size: 36px;
        line-height: 120%;
        letter-spacing: 0;
    }

    .our-chapters__featured-chapters .description {
        max-width: 100%;
    }

    .our-chapters__featured-chapters .description, 
    .our-chapters__featured-chapters .description p {
        font-size: 14px;
        line-height: 22px;
    }

    .our-chapters__featured-chapters .oc-featured__chapter-wrapper {
        gap: 20px;
        flex-wrap: wrap;
    }

    .our-chapters__featured-chapters .oc-featured-chapter {
        width: calc(50% - 10px);
    }

    .our-chapters__our-faqs > .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .our-chapters__our-faqs-inner {
        padding: 40px 0 80px;
    }

    .our-chapters__our-faqs h2 {
        font-size: 36px;
        letter-spacing: 0;
        line-height: 120%;
        max-width: 100%;
    }

    .our-chapters__our-faqs .desc {
        max-width: 100%;
    }

    .our-chapters__our-faqs .desc, 
    .our-chapters__our-faqs .desc p {
        font-size: 14px;
        line-height: 22px;
    }

    .our-chapters__our-faqs-inner .ej-btn {
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 600px){
    .our-chapters__featured-chapters .oc-featured-chapter {
        width: 100%;
    }
}









/**
* Single chapter
*/
body.single-chapters {
    background-color: #f3f4f6;
}

.single-chapter-wrapper {
    align-items: flex-start;
    padding: 54px 60px 0;
    gap: 65px;
}

.single-chapter-thumb {
    height: 560px;
    width: auto;
    object-fit: cover;
}

.single-chapter-socials {
    justify-content: flex-start;
}

.single-chapter-socials .ej-btn img {
    max-width: 18px;
    height: auto;
}

.single-chapter-content {
    width: 100%;
    max-width: 600px;
}

.single-chapter-content h1 {
    font-size: 36px;
    letter-spacing: 0;
    line-height: 120%;
}

.single-chapter-content .location {
    justify-content: flex-start;
    gap: 8px;
    margin-top: 6px;
}

.single-chapter-content .location img {
    width: 15px;
    height: auto;
}

.single-chapter-content .chapter-description p + p {
    margin-top: 35px;
}

@media screen and (min-width: 992px){
    
}

@media screen and (max-width: 1024px){

    
}

@media screen and (max-width: 991px){
    
}

@media screen and (max-width: 768px){
    body.single-chapters .site-main > .container {
        padding: 0;
    }

    .single-chapter-wrapper {
        padding: 20px 20px 60px;
        gap: 40px;
        flex-direction: column;
    }

    .single-chapter-img-wrapper {
        width: 100%;
    }

    .single-chapter-content {
        width: 100%;
        max-width: 100%;
    }


}

@media screen and (max-width: 600px){
    .single-chapter-thumb {
        height: 375px;
        width: 100%;
    }
}










/**
* Blog
*/
body.page-template-blog {
    background-color: ej-off-white;
}

body.page-template-blog header#masthead {
    background-color: ej-off-white;
}

.ej-blog__hero-section-header {
    padding-top: 50px;
    padding-bottom: 25px;
}

.ej-blog__hero-section-header h1 {
    font-size: 50px;
    letter-spacing: -1.5px;
    line-height: 110%;
    max-width: 720px;
	color: var(--ej-navy);
}

.ej-blog__intro-header-ctas .ej-btn {
    background-color: #c7ccd7;
    color: var(--ej-light-navy);
}

.ej-blog__featured-blogs .ej-blog__featured-blogs-inner {
    padding: 50px 25px;
    background-color: var(--ej-off-white);
	color: var(--ej-navy);
}

.ej-blog__featured-blogs .ej__featured-news {
    display: grid;
    grid-column-gap: 80px;
    grid-row-gap: 50px;
	color: var(--ej-navy);
}

.ej-blog__featured-blogs .ej__featured-news .ej__featured-news-item + .ej__featured-news-item {
    padding-top: 0;
}

.ej-blog__featured-blogs .ej__featured-news {
    display: grid;
    grid-column-gap: 60px;
    grid-row-gap: 50px;
}

.ej-blog__featured-blogs .ej__featured-news .ej__featured-news-item-0 {
    grid-column-start: 1;
    grid-column-end: 9;
    grid-row-start: 1;
    grid-row-end: 3;
}

.ej-blog__featured-blogs .ej__featured-news .ej__featured-news-item-1 {
    grid-column-start: 9;
    grid-column-end: 12;
    grid-row-start: 1;
    grid-row-end: 2;
}

.ej-blog__featured-blogs .ej__featured-news .ej__featured-news-item-2 {
    grid-column-start: 9;
    grid-column-end: 12;
    grid-row-start: 2;
    grid-row-end: 3;
}

.ej-blog__featured-blogs .ej__featured-news .ej__featured-news-item-0 .ej__featured-news-thumbnail {
    height: 425px;
}

.ej-blog__featured-blogs .ej__featured-news .ej__featured-news-item-0 .ej__featured-news-title {
    font-size: 50px;
    line-height: 115%;
    letter-spacing: -0.5px;
    max-width: 800px;
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    text-overflow: unset;
    overflow: unset;
	color: var(--ej-navy);
}

.ej-blog__featured-blogs .ej__featured-news .ej__featured-news-item-0 .ej__featured-news-excerpt {
    margin: 20px 0;
    font-size: 18px;
    max-width: 750px;
    line-height: 24px;
	color: var(--ej-navy);
}

.ej-blog__featured-blogs .ej__featured-news .ej__featured-news-item-1 .ej__featured-news-excerpt, 
.ej-blog__featured-blogs .ej__featured-news .ej__featured-news-item-2 .ej__featured-news-excerpt {
    margin: 10px 0;
    font-size: 14px;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
	color: var(--ej-navy);
}

.ej-blog__featured-blogs .ej__featured-news .ej__featured-news-item-1 .ej__featured-news-title, 
.ej-blog__featured-blogs .ej__featured-news .ej__featured-news-item-2 .ej__featured-news-title {
    margin-bottom: 12px;
	color: var(--ej-navy);
}



.ej-blog__latest-blog .ej-blog__latest-blog-inner {
    padding: 60px 100px
	color: var(--ej-navy);
}

.ej-blog__latest-blog h2 {
    font-size: 36px;
    line-height: 120%;
    letter-spacing: 0;
	color: var(--ej-navy);
}

.ej-blog__latest-blog-listing {
    padding: 50px 0 75px;
	color: var(--ej-navy);
}

.ej-blog__latest-blog-listing .ej__featured-news {
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
	color: var(--ej-navy);
}

.ej-blog__latest-blog-listing .ej__featured-news .ej__featured-news-item {
    max-width: calc(50% - 25px);
    width: 100%;
	color: var(--ej-navy);
}

.ej-blog__latest-blog-listing .ej__featured-news .ej__featured-news-item + .ej__featured-news-item {
    padding-top: 0;
}

.ej-blog__latest-blog-listing .ej__featured-news .ej__featured-news-item .ej__featured-news-title {
    font-size: 36px;
    letter-spacing: 0;
    line-height: 120%;
    color: var(--ej-navy);
}

.ej-blog__latest-blog-header-filter select {
    min-height: 32px;
    border: 0px solid var(--ej-navy) !important;
    border-radius: 2px !important;
    font-family: var(--font-jet-brains-mono) !important;
    font-size: 16px !important;
    color: var(--ej-navy) !important;
    padding: 8px 42px 8px 10px;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background: url('assets/images/select-arrow.svg') no-repeat 91% 50% #a3abbc !important;
    line-height: 1 !important;
}


@media screen and (min-width: 992px){
    
}

@media screen and (max-width: 1024px){

    
}

@media screen and (max-width: 991px){
    
}

@media screen and (max-width: 768px){
    .ej-blog__hero-section > .container, 
    .ej-blog__featured-blogs > .container {
        padding-left: 0;
        padding-right: 0;
    }

    .ej-blog__hero-section-header {
        padding: 20px 20px 40px;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .ej-blog__hero-section-header h1 {
        font-size: 24px;
        letter-spacing: -0.72px;
        line-height: 110%;
        max-width: 100%;
    }

    .ej-blog__featured-blogs .ej-blog__featured-blogs-inner {
        padding: 20px 20px 40px;
    }

    .ej-blog__featured-blogs .ej__featured-news {
        display: grid;
        grid-column-gap: 60px;
        grid-row-gap: 50px;
        grid-template-columns: repeat(1, fr);
		color: var(--ej-white);
    }

    .ej-blog__featured-blogs .ej__featured-news .ej__featured-news-item-0, 
    .ej-blog__featured-blogs .ej__featured-news .ej__featured-news-item-1, 
    .ej-blog__featured-blogs .ej__featured-news .ej__featured-news-item-2 {
        grid-column-start: unset;
        grid-column-end: unset;
        grid-row-start: unset;
        grid-row-end: unset;
		color: var(--ej-white);
    }

    .ej-blog__featured-blogs .ej__featured-news .ej__featured-news-item-0 .ej__featured-news-thumbnail {
        height: 235px;
    }

    .ej-blog__featured-blogs .ej__featured-news .ej__featured-news-item-0 .ej__featured-news-title {
        font-size: 24px;
        line-height: 125%;
        letter-spacing: 0px;
		color: var(--ej-white);
    }

    .ej-blog__latest-blog > .container {
        
		padding-left: 0;
        padding-right: 0;
    }

    .ej-blog__latest-blog .ej-blog__latest-blog-inner {
        padding: 60px 20px 80px;
    }

    .ej-blog__latest-blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .ej-blog__latest-blog h2 {
        font-size: 24px;
        line-height: 125%;
    }

    .ej-blog__latest-blog-header .ej-btn {
        margin: 25px 0;
        width: 100%;
        max-width: 100%;
    }

    .ej-blog__latest-blog-listing {
        padding: 0 0 60px;
    }

    .ej-blog__latest-blog-listing .ej__featured-news {
        gap: 40px;
    }

    .ej-blog__latest-blog-listing .ej__featured-news .ej__featured-news-item {
        max-width: calc(50% - 20px);
    }

    .ej-blog__latest-blog-listing .ej__featured-news .ej__featured-news-item .ej__featured-news-title {
        font-size: 24px;
        line-height: 125%;
    }

}

@media screen and (max-width: 600px){
    .ej-blog__latest-blog-listing .ej__featured-news .ej__featured-news-item {
        max-width: 100%;
        width: 100%;
    }
}









/**
* Single blog post
*/
body.single-post header#masthead > .container {
    background-color: var(--ej-navy);
    color: #182C58;
}


body.single-post header#masthead ul#primary-menu li a {
    color: #ffffff;
}

body.single-post header#masthead .header-social a img {
    filter: brightness(0) invert(1);
}

body.single-post {
    background-color: var(--ej-navy);
}

body.single-post .ej-single-post__header .ej__featured-news-item {
    padding: 50px 0 55px;
    max-width: 1025px;
}

body.single-post .ej-single-post__header .ej__featured-news-item .ej__featured-news-thumbnail {
    height: 388px;
}

body.single-post .ej-single-post__header .ej__featured-news-item .ej__featured-news-title {
    font-size: 50px;
    line-height: 125%;
    letter-spacing: -1.5px;
    color: #182C58;
    margin-bottom: 5px;
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    text-overflow: unset;
    overflow: auto;
}

.ej-single-post__content a {
  color: #182C58;
}

.ej-single-post__content a:hover {
  color: #182C58;
}

body.single-post .ej-single-post__content > .container {
    max-width: 644px;
	color: #182C58;
    padding: 60px 22px 150px 22px;
}

.ej-single-post__content .entry-content {
    margin: 0;
	color: #182C58;
}

.ej-single-post__content .entry-content .has-medium-font-size {
    color: #182C58;
	font-size: 24px !important;
    line-height: 125%;
    font-weight: 500;
    margin: 0 0 35px 0;
}

.ej-single-post__related-content h3 {
    color: #182C58;
}

.ej-single-post__related-content > .container {
    max-width: 1241px;
}

.ej-single-post__related-content-header .ej-btn {
    max-width: 320px;
}

.ej-single-post__related-posts .ej__featured-news-item .ej__featured-news-thumbnail {
    height: 290px;
}

@media screen and (min-width: 992px){
    
}

@media screen and (max-width: 1024px){

    
}

@media screen and (max-width: 991px){
    
}

@media screen and (max-width: 768px){
    body.single-post #btn-responsive-menu img {
        background-color: #182C58;
        border-radius: 10px;
    }

    .ej-single-post__header > .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    body.single-post .ej-single-post__header .ej__featured-news-item {
        padding: 20px 0 40px;
        max-width: 100%;
    }

    body.single-post .ej-single-post__header .ej__featured-news-item .ej__featured-news-title {
        font-size: 24px;
        line-height: 125%;
        letter-spacing: 0;
    }

    body.single-post .ej-single-post__content > .container {
        max-width: 100%;
        padding: 40px 20px;
    }

    body.single-post .ej-single-post__content ol li, 
    body.single-post .ej-single-post__content ul li {
        word-break: break-word;
    }

    .ej-single-post__related-content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .ej-single-post__related-content-header h3 {
        font-size: 24px;
        line-height: 120%;
    }

    .ej-single-post__related-content-header .ej-btn {
        margin: 0 0 25px;
    }

    .ej-blog__latest-blog-listing .ej__featured-news .ej__featured-news-item {
        max-width: calc(50% - 20px);
    }

    .ej-single-post__related-posts .ej__featured-news-item .ej__featured-news-thumbnail {
        height: 235px;
    }

}

@media screen and (max-width: 600px){
    body.single-post .ej-single-post__header .ej__featured-news-item .ej__featured-news-thumbnail {
        height: 235px;
    }

    .ej-single-post__related-content-header .ej-btn {
        width: 100%;
        max-width: 100%;
    }

    .ej-blog__latest-blog-listing .ej__featured-news .ej__featured-news-item {
        max-width: 100%;
    }
}








/**
* Contact
*/
.contact-us__hero-section-header {
    padding: 25px 0 50px;
}

.contact-us__hero-section-inner {
    align-items: flex-start;
    gap: 80px;
}

.contact-us__hero-section-left {
    max-width: 555px;
}

.contact-us__hero-section-left .desc {
    margin: 24px 0;
}

.contact-us__hero-section-right {
    max-width: 750px;
    width: 100%;
}

.contact-gallery-wrapper {
    flex-wrap: wrap;
}

.contact-gallery-wrapper > .gallery-item {
    position: relative;
}

.contact-gallery-wrapper > .gallery-item:nth-child(1) {
    width: calc(51% - 8px);
    height: 235px;
}

.contact-gallery-wrapper > .gallery-item:nth-child(2) {
    width: calc(49% - 8px);
    height: 235px;
}

.contact-gallery-wrapper > .gallery-item:nth-child(3) {
    width: calc(62% - 8px);
    height: 182px;
}

.contact-gallery-wrapper > .gallery-item:nth-child(4) {
    width: calc(38% - 8px);
    height: 182px;
}

.contact-gallery-wrapper > .gallery-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}


.contact-us__form .contact-us__form-inner {
    margin-top: 75px;
    max-width: 915px;
    margin-left: auto;
    margin-right: auto;
}

.contact-us__form .gform-theme--foundation .gform_fields {
    gap: 20px !important;
}

.contact-us__form .contact-us__form-inner input[type="text"], 
.contact-us__form .contact-us__form-inner input[type="email"], 
.contact-us__form .contact-us__form-inner select,
.contact-us__form .contact-us__form-inner textarea {
    min-height: 56px;
    border: 2px solid var(--ej-navy) !important;
    border-radius: 4px !important;
    background-color: transparent !important;
    font-family: var(--font-jet-brains-mono) !important;
    font-size: 16px !important;
    color: var(--ej-navy) !important;
    padding: 10px 20px;
}

.contact-us__form .contact-us__form-inner select {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background: url('assets/images/select-arrow.svg') no-repeat 97% 50% !important;
}

.contact-us__form .contact-us__form-inner textarea {
    height: 212px !important;
}

.contact-us__form input[type="submit"] {
    max-width: 675px !important;
    width: 100% !important;
    display: block !important;
    text-align: center !important;
    margin: 30px auto 0 !important;
    background-color: var(--ej-light-navy) !important;
    color: var(--ej-off-white) !important;
    font-family: var(--font-jet-brains-mono) !important;
}


.contact-us__events {
    margin-top: 50px;
}

.contact-us__events .contact-us__events-inner {
    align-items: stretch;
    gap:0;
    background-color: #ffbea8;
}

.contact-us__events .contact-us__events-image {
    position: relative;
    max-width: 645px;
    width: 100%;
    padding: 16px 25px;
}

.contact-us__events .contact-us__events-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
}

.contact-us__events .contact-us__events-image .ej-btn {
    position: absolute;
    width: calc(100% - 40px);
    object-fit: cover;
    left: 20px;
    bottom: 16px;
    right: 20px;
}

.contact-us__events .contact-us__events-image .ej-btn:hover {
    background-color: rgb(24, 44, 88, 0.75);
    color: #fff;
    border-color: transparent;
}

.contact-us__events .contact-us__events-content {
    padding: 40px 20px 75px 55px;
    max-width: 685px;
    width: 100%;
}

.contact-us__events .contact-us__events-content h3 {
    font-size: 36px;
    line-height: 120%;
    letter-spacing: 0;
}

@media screen and (min-width: 992px){
    
}

@media screen and (max-width: 1024px){

    
}

@media screen and (max-width: 991px){
    
}

@media screen and (max-width: 768px){
    .contact-us__hero-section > .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-us__hero-section-header {
        padding: 20px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .contact-us__hero-section-header h1 {
        font-size: 50px;
        line-height: 110%;
        letter-spacing: -1.5px;
    }

    .contact-us__intro-header-ctas {
        gap: 10px;
    }

    .contact-us__intro-header-ctas .ej-btn {
        font-size: 12px;
        gap: 5px;
    }

    .contact-us__intro-header-ctas .ej-btn img {
        height: 12px;
        width: auto;
    }

    .contact-us__hero-section-inner {
        gap: 20px;
        flex-direction: column;
    }

    .contact-us__hero-section-left {
        max-width: 100%;
    }

    .contact-us__hero-section-left h3 {
        font-size: 24px;
        line-height: 125%;
    }

    .contact-us__hero-section-right {
        max-width: 100%;
    }

    .contact-us__form > .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-us__form .contact-us__form-inner {
        margin-top: 36px;
        max-width: 100%;
    }

    .contact-us__form input[type="submit"] {
        max-width: 100% !important;
    }

    .contact-us__events {
        margin-top: 40px;
    }

    .contact-us__events > .container {
        padding: 0;
    }

    .contact-us__events .contact-us__events-inner {
        align-items: flex-start;
        gap: 0;
        background-color: #ffbea8;
        flex-direction: column;
    }

    .contact-us__events .contact-us__events-image {
        max-width: 100%;
        width: 100%;
        padding: 0;
        height: 400px;
    }

    .contact-us__events .contact-us__events-image img {
        margin: 0;
    }

    .contact-us__events .contact-us__events-content {
        padding: 40px 20px;
        max-width: 100%;
        width: 100%;
    }

    .contact-us__events .contact-us__events-content h3 {
        font-size: 24px;
        line-height: 125%;
        letter-spacing: 0;
    }

    .contact-us__events-content .ej-btn {
        font-size: 12px;
        align-items: center;
        display: inline-flex !important;
        width: 100%;
    }
}

@media screen and (max-width: 600px){
    
}








/**
* Footer
*/
footer.site-footer {
    /* border-top: 2px solid rgba(24, 44, 88, 0.05); */
}

body:not(.home) footer.site-footer {
    margin-top: 75px;
}

.footer-top {
    border-top: 2px solid rgba(24, 44, 88, 0.05);
    padding: 50px 0 50px;
}

.footer-intro {
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-intro .site-info img {
    max-width: 320px;
}

.footer-intro .site-info .site-desc {
    font-size: 24px;
    max-width: 350px;
    line-height: 126%;
    margin: 6px 0 0 0;
}

.footer-middle {
    padding: 0 0 80px;
    align-items: flex-start;
}

.footer-navigation {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 50px;
    width: calc(32.5% - 8px);
}

.footer-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-navigation ul li + li {
    margin-top: 7px;
}

.footer-navigation ul li a {
    font-family: var(--font-inter);
    font-size: 20px;
    line-height: 24px;
    color: var(--ej-white);
}


form#gform_1 #gform_fields_1 {
    position: relative;
}

form#gform_1 #gform_fields_1 #field_1_1 {
    grid-column: span 12;
}

form#gform_1 #gform_fields_1 #field_1_1 input#input_1_1 {
    padding: 8px 20px;
    height: 46px;
    border: 2px solid var(--ej-navy) !important;
    font-family: var(--font-jet-brains-mono);
    line-height: 100%;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0 !important;
    color: var(--ej-light-navy) !important;
    background-color: transparent !important;
}

form#gform_1 #gform_fields_1 #field_submit {
    position: absolute;
    right: 20px;
    top: 8px;
}

form#gform_1 #field_submit #gform_submit_button_1 {
    padding: 0;
    background: transparent;
    width: 30px !important;
    min-height: 30px !important;
    box-shadow: none;
    transition: unset !important;
}

form#gform_1 #field_submit #gform_submit_button_1:hover {
    filter: brightness(0) saturate(100%) invert(57%) sepia(17%) saturate(5551%) hue-rotate(327deg) brightness(96%) contrast(111%) !important;
}

.footer-bottom {
    padding: 0 0 50px 0;
    font-size: 10px;
    font-family: var(--font-jet-brains-mono);
    color: var(--ej-light-navy);
    font-weight: 800;
}

.footer-bottom a {
    color: var(--ej-light-navy);
    text-decoration: none;
}

.site-info-copyright {
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-navigation ul li a:hover,
.site-info-copyright a:hover, 
.site-dev-info a:hover {
    color: var(--ej-red);
}


@media screen and (min-width: 992px){
    
}

@media screen and (max-width: 1024px){

    
}

@media screen and (max-width: 991px){
    
}

@media screen and (max-width: 768px){
    body:not(.home) footer.site-footer {
        margin-top: 0;
    }

    .site-footer > .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-top {
        padding: 80px 0 40px;
        border-top: 0;
    }

    .footer-middle {
        padding: 0 0 30px;
        flex-direction: column;
        gap: 50px;
    }

    .footer-navigation {
        width: 100%;
    }

 

    .footer-bottom {
        padding: 0 0 30px 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
    }

    .site-info-copyright {
        gap: 8px;
    }
}

@media screen and (max-width: 600px){
    
}




/**
 * Media queries
 */

@media screen and (min-width: 992px){
    
}

@media screen and (max-width: 1024px){

    
}

@media screen and (max-width: 991px){
    
}

@media screen and (max-width: 768px){
    
}

@media screen and (max-width: 600px){
    
}