*,
*:after,
*:before {
  box-sizing: border-box;
}

:root {
    --1280: 1280px;
    --1400: 1400px;
    --mobile-viewport-spacing: 16px;
    --font-family: "Lato", sans-serif;
    --gb-white: #ffffff;
    --gb-light-blue-border: #fcfeff;
    --gb-blue-text: #009cde;
    --gb-blue-one: #f8fefe;
    --gb-blue-two: #F5FDFF;
    --gb-blue-three: #417590;
    --gb-dark-blue-text-one: #00455C;
    --gb-dark-blue-text: #184659;
    --gb-orange-text: #FD6A3C;
    --gb-orange-two: #c6461d;
    --gb-orange-three: #fe8900;
    --gb-orange-four: #F35C2C;
    --gb-orange-five: #FFF7ED;
    --gb-orange-six: #ffc6b5;
    --gb-yellow-one: #fffde7;
    --gb-dark-grey-text: #0f1112;
    --gb-light-grey-text: #606e75;
    --gb-grey-one: #dfdfdf;
    --animate-transition: all .2s ease-in-out;
    --animate-transition-transform: transform ease 300ms;
    --animate-transform: translate(2px);
    /* add variable for other fonts so that they can be replaced easier for testing */

    /* Font sizes based on major third */
    --gb-text-h1: 68.66px;
    --gb-text-h2: 54.93px;
    --gb-text-h3: 43.95px;
    --gb-text-h4: 35.16px;
    --gb-text-h5: 28.13px;
    --gb-text-h6: 22.5px;
    --gb-text-p: 18px;
    --gb-text-sm: 14.4px;
    --gb-text-xs: 11.52px;

    /* Line heights based on major third */
    --gb-text-h1-lh: 75.526px; /* font size x 1.1 */
    --gb-text-h2-lh: 60.423px;
    --gb-text-p-lh: 120%; /* 27px to 120%, font size x 1.5 */

    /* Colors from color study figma file */
    --gb-blue-900: #004D72;
    --gb-blue-700: #0070A6;
    --gb-blue-600: #007DBA;

    --gb-gray-900: #273F4A;
    --gb-gray-600: #59717C;
    --gb-gray-300: #778D97;

    --gb-purple-700: #8342ae;
}

html {
    margin: 0px;
    padding: 0px;
    scroll-behavior: smooth;
}

body {
    margin: 0px;
    padding: 0px;
    padding-top: 125px;
    background-color: var(--gb-blue-one);
    transition: font-size 0.3s ease;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#preload-img {
    display: none;
}

/* ==========================================================================
   Hiring Notification Bar
   ========================================================================== */
.hiring-notification-bar {
    background: rgba(225, 247, 254, 0.5);
    border: 1px solid #d5eef6;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: rgba(1, 62, 89, 0.8);
    text-align: center;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hiring-notification-bar a {
    font-weight: 900;
    color: var(--gb-blue-text);
    text-decoration: none;
    margin-left: 3px;
    transition: var(--animate-transition);
}

.hiring-notification-bar a:hover {
    color: var(--gb-dark-blue-text);
}

.hiring-notification-bar a::before {
    position: absolute;
    width: 0;
    height: 0;
    background: url(../img/hiring-notification-bar-arrow.svg);
    content: '';
}

.hiring-notification-bar a::after {
    content: url(../img/hiring-notification-bar-arrow.svg);
    display: inline-flex;
    margin-left: 3px;
    transition: var(--animate-transition-transform);
}

.hiring-notification-bar a:hover::after {
    transform: var(--animate-transform);
}

/**
 * Responsive code for Hiring Notification Bar
 */
@media only screen and (max-width: 834px) {
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

/**
 * Contains all necessary code for the header navigation and two buttons.
 */

header {
    background: linear-gradient(0deg, var(--gb-blue-two) 0%, var(--gb-white) 46.5%);
    /* added to make header sticky */
    position: fixed;
    top: 0px;
    z-index: 99;
    width: 100%;
    transition: padding .3s;
    padding: 32px 0px;
    z-index: 9999;
}

header nav {
    font-family: var(--font-family);
    max-width: var(--1280);
    margin: 0px auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

header nav ul {
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

header nav ul li {
    font-weight: 700;
    font-size: 16px;
    list-style-type: none;
    position: relative;
}

header nav ul li a {
    text-decoration: none;
    color: var(--gb-dark-blue-text);
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    position: relative;
    transition: var(--animate-transition);
}

header nav ul li:first-child a {
    padding: 0px;
}

header nav ul li:first-child a:hover {
    transform: rotate(-8deg);
}

header nav ul li a::after {
    content: url(../img/header-nav-circle-divider.svg);
    width: 4px;
    height: 4px;
    position: absolute;
    right: 0;
    line-height: 0px;
}

header nav ul li:first-child a::after {
    content: none;
}

header nav ul li:last-child a::after {
    content: none;
}

header nav ul li a:hover {
    color: var(--gb-blue-text);
    text-decoration: none;
}

header nav div {
    display: flex;
}

/* header nav a.request-quote {
    background: #009cde;
    border: 1px solid #00769f;
    border-radius: 6px;
    width: 172px;
    height: 45px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    transition: var(--animate-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
} 

header nav a.request-quote:hover {
    background-color: var(--gb-dark-blue-text);
}*/

header nav a.request-quote {
    border: 1px solid var(--gb-grey-one);
    border-radius: 6px;
    width: 172px;
    height: 45px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    color: var(--gb-dark-blue-text);
    transition: var(--animate-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

header nav a.request-quote:hover {
    border: 1px solid var(--gb-dark-blue-text);
}

header nav a.toolkit-signin {
    background: var(--gb-orange-text);
    border: 1px solid var(--gb-orange-two);
    box-shadow: 0 0 10px 0 var(--gb-orange-six);
    border-radius: 6px;
    width: 121px;
    height: 45px;    
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    color: var(--gb-white);
    margin-left: 12px;
    transition: var(--animate-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

header nav a.toolkit-signin:hover {
    box-shadow: 0 0 10px 0 var(--gb-orange-text), inset 0 0 20px 0 var(--gb-orange-three);
    background-color: var(--gb-orange-four);
}

header nav a.toolkit-signin::after {
    content: url(../img/signin-arrow.svg);
    display: inline-flex;
    margin-left: 6px;
    transition: var(--animate-transition-transform);
}

header nav a.toolkit-signin:hover::before {
    position: absolute;
    width: 0;
    height: 0;
    background: url(../img/signin-arrow-hover.svg);
    content: '';
}

header nav a.toolkit-signin:hover::after {
    content: url(../img/signin-arrow-hover.svg);
    transform: var(--animate-transform);
}

.mobile-link a {
    background-color: var(--gb-blue-text);
    color: var(--gb-white);
    width: 100%;
}

.mobile-link a:hover {
    color: var(--gb-white);
}

.mobile-logo,
.mobile-link {
    display: none;
}

header nav ul {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}

.reduce {
    padding: 12px 0px;    
    /* box-shadow: 0 0 28px 0 rgba(0, 156, 222, 0.08), inset 0 0 0 3px var(--gb-white); */
    border-bottom: 1px solid rgba(0, 156, 222, 0.15);
    filter: drop-shadow(0px 0px 10px rgba(173, 217, 228, 0.3));
    background: linear-gradient(0deg, var(--gb-blue-two) 0%, var(--gb-white) 0%);
}

header.reduce nav ul li {
    font-size: 14px;
}

header.reduce nav ul li a img {
    height: 45px;
}

header.reduce nav a.request-quote {
    font-size: 14px;
    width: 150px;
    height: 40px;
}

header.reduce nav a.toolkit-signin {
    font-size: 16px;
    width: 106px;
    height: 40px;
}

/**
 * Responsive code for Header & Navigation
 */
@media only screen and (max-width: 1350px) {
    header nav {
        margin-left: 60px;
        margin-right: 60px;
    }
}

@media only screen and (max-width: 1218px) {
    header nav ul li {
        font-size: 14px;
    }
    header nav ul li a {
        padding: 12px 14px;
    }
    header nav a.request-quote {
        font-size: 14px;
        width: 150px;
        height: 40px;
    }
    header nav a.toolkit-signin {
        font-size: 16px;
        width: 106px;
        height: 40px;
    }
}

@media only screen and (max-width: 1024px) {
    header nav {
        flex-direction: row-reverse;
    }
    .mobile-logo,
    .mobile-link {
        display: block;
    }
    .mobile-logo img {
        width: 48px;
        display: block;
    }
    header nav a.request-quote {
        display: none;
    }
    header nav ul li:first-child {
        display: none;
    }
    header nav ul {
        position: absolute;
        flex-direction: column;
        align-items: flex-start;
        z-index: 3;
        background: var(--gb-white);
        width: 100%;
        overflow: hidden;
        border-radius: 6px 0px 6px 6px;
    }
    header nav a.toolkit-signin {
        margin-left: 0px;
    }
    header nav ul li a::after {
        content: none;
    }
    header nav ul li {
        width: 100%;
        border-bottom: 1px dotted var(--gb-grey-one);
    }
    header nav ul li:last-child {
        border-bottom: 0px;
    }
    body {
        padding-top: 122px;
    }
}

@media only screen and (max-width: 834px) {
    header {
        padding: 16px 0px;
    }
    header nav {
        margin-left: var(--mobile-viewport-spacing);
        margin-right: var(--mobile-viewport-spacing);
    }
    header.reduce nav a.toolkit-signin,
    header nav a.toolkit-signin {
        width: 74px;
        height: 34px;
        font-size: 14px;
    }
    header nav a.toolkit-signin::after,
    header nav a.toolkit-signin:hover::after {
        content: none;
    }
    header.reduce .mobile-logo img {
        width: 35px;
        display: block;
    }
    .reduce {
        padding: 6px 0px;
    }
    body {
        padding-top: 90px;
    }
}

/* ==========================================================================
   Hero Banner
   ========================================================================== */
.hero-wrapper {
    background: linear-gradient(0deg, var(--gb-white) -39.41%, #F4FCFF 100%);
    position: relative;
}

.hero-wrapper.careers {
    height: 880px;
}

.hero-wrapper-shapes {
    background: url(../img/careers-hero-bg.png);
    background-repeat: no-repeat;
    background-position: top 34px right 34px;
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1900px;
    justify-content: center;
    margin: 0px auto;
    overflow: hidden;
    box-sizing: border-box;
}

.hero {
    display: flex;
    align-items: center;
    max-width: var(--1280);
    margin: 0px auto;
}

.hero .message {
    padding-right: 15px;
}

.hero .message.careers {
    width: 50%;
}

.hero .message.efficacy {
    /* width: 70%; was here before */
    width: 100%;
    text-align: center; /* remove if not good */
}

.hero .message h1 {
    font-family: var(--font-family);
    font-weight: 900;
    color: var(--gb-dark-blue-text);
    margin: 0px;
    transition: font-size 0.3s ease;
}

.hero .message.careers h1 {
    font-size: 100px;
    line-height: 92%;
}

.hero .message.efficacy h1 {
    /* font-size:42px;
    line-height:52px;
    margin-top: 148px; was here before */
    font-size: 60px;
    line-height: 72px;
    margin-top: 63px;
}

.hero .message.efficacy h1 span {
    font-weight: 500;
    color: #17465acc;
}

.hero .message p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 133%;
    color: rgba(15, 17, 18, 0.75);
}

.hero .message.efficacy p {
    /* margin-top: 30px; was here before
    margin-bottom: 60px; */
    width: 76%;
    margin: 14px auto 60px auto;
}

.hero .message a {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 23px;
    color: var(--gb-blue-text);
    text-decoration: none;
    display: inline-flex;
    border-bottom: 2px solid #c1e1f4;
    padding-bottom: 12px;
    transition: var(--animate-transition);
}

.hero .message a:hover {
    color: var(--gb-dark-blue-text);
    border-bottom-color: var(--gb-orange-text);
}

.hero .message a::after {
    content: url(../img/hero-link-arrow.svg);
    display: inline-flex;
    margin-left: 12px;
    transition: var(--animate-transition-transform);
}

.hero .message a:hover::after {
    transform: rotate(90deg);
}

.hero .image {
    width: 50%;
}

.divide {
    position: absolute;
    border: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    margin: 0px auto;
}

.divide-in {
    display: flex;
    margin: 0px auto;
}

/**
 * Responsive code for Hero Banner
 */
@media only screen and (max-width: 1780px) {
    .hero-wrapper-shapes {
        background-position: top 34px right -30%;
    }
}

@media only screen and (max-width: 1350px) {
    .hero-wrapper-shapes {
        padding-left: 60px;
        padding-right: 60px;
    }
    .hero {
        width: 100%;
        gap: 20px;
    }
    .divide,
    .divide-in,
    .evidence-endorse-container .div-img {
        width: 100%;
        height: 1px;
    }
}

@media only screen and (max-width: 1320px) {
    .hero .message.careers h1 {
        font-size: 60px;
    }
}

@media only screen and (max-width: 1024px) {
    .hero .message.efficacy h1 {
        font-size: 40px;
        line-height: 48px;
    }
}

@media only screen and (max-width: 900px) {
    .hero-wrapper.careers {
        height: 590px;
    }
    .hero-wrapper-shapes {
        background-position: top 82px left 386px;
        background-size: 60%;
    }
    .hero .message {
        padding-right: initial;
    }
    .hero .message.careers h1 {
        font-size: 45px;
        line-height: 100%;
    }
    .hero .message.careers p {
        font-size: 18px;
    }
    .hero .image img {
        width: 132%;
    }
}

@media only screen and (max-width: 834px) {
    .hero-wrapper.careers,
    .hero-wrapper.research-studies {
        height: 100%;
    }
    .hero-wrapper-shapes {
        height: 100%;
    }
    .hero {
        flex-direction: column;
        margin: 109px 0px 109px 0px;
        /* margin: 45px 0px 80px 0px; before centering mobile hero */
    }
    .hero-wrapper-shapes {
        /* background-position: top 224px left 200px; before centering mobile hero */
        background-position: top 26% center;
        background-size: 90%;
    }
    .hero .message.careers {
        width: 100%;
    }
    .hero .image {
        /* width: 100%;
        display: flex;
        justify-content: flex-end;
        position: relative; before centering mobile hero */
        display: none;
    }
    .hero .image img {
        width: 70%;
        position: absolute;
        top: -84px;
        right: -64px;
    }
    .hero-wrapper-shapes {
        padding-left:  var(--mobile-viewport-spacing);
        padding-right:  var(--mobile-viewport-spacing);
    }
    .hero .message.careers h1 {
        /* font-size: 38px; before centering mobile hero */
        font-size: 58px;
    }
    .hero .message.careers p {
        font-size: 16px;
    }
    .hero .message.efficacy h1 {
        font-size: 26px;
        line-height: 30px;
        margin-top: 30px;
    }
    .hero .message.efficacy h1 span {
        display: block;
        margin-top: 10px;
    }
    .hero .message.efficacy p {
        width: 90%;
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 30px;
    }
    .hero-wrapper.research-studies .hero {
        margin: 0px;
    }
}

/* ==========================================================================
   Stay Informed
   ========================================================================== */
.stay-informed-wrapper {
    background: linear-gradient(90deg, rgba(253, 255, 255, 0.95) 0%, rgba(241, 252, 255, 0.95) 50.5%, rgba(253, 255, 255, 0.95) 100%);
    height: 142px;
    display: flex;
    align-items: center;
    position: relative;
}

.stay-informed {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--1280);
    width: 100%;
    margin: 0px auto;
}

.stay-informed h2 {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 34px;
    color: var(--gb-dark-blue-text);
    display: flex;
}

.stay-informed h2::after {
    content: url(../img/heading-div.svg);
    display: inline-flex;
    margin-left: 8px;
    height: 22px;
    align-items: center;
}

.stay-informed p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 122%;
    color: #0f1112;
}

.stay-informed p span {
    font-size: 16px;
    color: rgba(15, 17, 18, 0.75);
    display: block;
}

.stay-informed a {
    background-color: var(--gb-white);
    border: 1px solid var(--gb-grey-one);
    border-radius: 6px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    color: #0f1112;
    text-decoration: none;    display: flex;
    align-items: center;
    padding: 8px 14px;
    width: 242px;
    transition: var(--animate-transition);
    white-space: nowrap;
}

.stay-informed a:hover {
    background-color: var(--gb-orange-text);
    border-color: var(--gb-orange-two);
    color: var(--gb-white);
}

.stay-informed a::after {
    content: url(../img/follow-arrow.svg);
    display: inline-flex;
    margin-left: 8px;
    width: 26px;
    transition: var(--animate-transition-transform);
}

.stay-informed a:hover::before {
    position: absolute;
    width: 0;
    height: 0;
    background: url(../img/follow-arrow-hover.svg);
    content: '';
}

.stay-informed a:hover::after {
    content: url(../img/follow-arrow-hover.svg);
    transform: var(--animate-transform);
}

/**
 * Responsive code for Stay Informed
 */
@media only screen and (max-width: 1350px) {
    .stay-informed {
        margin-left: 60px;
        margin-right: 60px;
        gap: 20px;
    }
    .stay-informed h2 {
        min-width: 268px;
    }
}

@media only screen and (max-width: 900px) {
    .stay-informed-wrapper {
        height: unset
    }
    .stay-informed {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0px;
        margin-top: 12px;
        margin-bottom: 45px;
    }
    .stay-informed h2 {
        margin-bottom: 0px;
        font-size: 26px;
    }
}

@media only screen and (max-width: 834px) {
    .stay-informed {
        margin-left: var(--mobile-viewport-spacing);
        margin-right: var(--mobile-viewport-spacing);
    }
    .stay-informed p,
    .stay-informed a {
        font-size: 16px;
    }
    .stay-informed a {
        width: unset;
    }
}

/* ==========================================================================
   Job Openings
   ========================================================================== */
.openings-wrapper {
    display: flex;
    position: relative;
    flex-direction: column;
    background-color: #FCFEFF;
}

.openings-wrapper-line {
    max-width: var(--1400);
    margin: 80px auto 0px auto;
    padding: 68px 59px 0px 59px;
    border-radius: 16px;
    position: relative;
    /* border: 1px solid rgba(0, 156, 222, 0.15); */
    background: 
        radial-gradient(circle at 100% 100%, var(--gb-light-blue-border) 0, var(--gb-light-blue-border) 15px, transparent 15px) 0% 0%/16px 16px no-repeat,
        radial-gradient(circle at 0 100%, var(--gb-light-blue-border) 0, var(--gb-light-blue-border) 15px, transparent 15px) 100% 0%/16px 16px no-repeat,
        radial-gradient(circle at 100% 0, var(--gb-light-blue-border) 0, var(--gb-light-blue-border) 15px, transparent 15px) 0% 100%/16px 16px no-repeat,
        radial-gradient(circle at 0 0, var(--gb-light-blue-border) 0, var(--gb-light-blue-border) 15px, transparent 15px) 100% 100%/16px 16px no-repeat,
        linear-gradient(var(--gb-light-blue-border), var(--gb-light-blue-border)) 50% 50%/calc(100% - 2px) calc(100% - 32px) no-repeat,
        linear-gradient(var(--gb-light-blue-border), var(--gb-light-blue-border)) 50% 50%/calc(100% - 32px) calc(100% - 2px) no-repeat,
        linear-gradient(0deg, transparent 30%, rgba(0,156,222,0.15) 100%);
}

/* .openings {
    max-width: var(--1280);
    width: 100%;
    margin: 0px auto;
} */

.openings {
    max-width: var(--1280);
    margin: 0px auto;
    position: absolute;
    top: -35px;
    left: 38px;
    background: #FCFEFF;
    padding: 20px;
    display: inline-block;
}

/* .openings h2 {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 34px;
    line-height: 74%;
    color: var(--gb-dark-blue-text);
    margin: 80px auto 60px auto;
} */

.openings h2 {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 34px;
    line-height: 74%;
    color: var(--gb-dark-blue-text);
    margin: 0px;
    display: inline-block;
}

.openings h2 span {
    color: var(--gb-blue-text);
    position: relative;
    padding: 0px 3px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.openings h2 span::after {
    content: url(../img/openings-hooray.svg);
    position: absolute;
    margin: 0px auto;
    width: 26px;
    top: -32px;
    right: 0px;
    left: 0px;
}

.departments-wrapper {
    max-width: var(--1280);
    width: 100%;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 26px;
}

.departments-head {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 104%;
    color: var(--gb-dark-grey-text);
    border-bottom: 2px solid #606e75;
    width: 100%;
    padding: 20px 0px
}

.departments-openings {
    display: grid;
    grid-template-areas: "job-title job-location job-apply";
    grid-template-columns: 2fr 2fr 1fr;
    grid-auto-rows: auto; /* revisit to adjust row column widths */
    gap: 20px;
    width: 100%;
    padding: 10px 0px;
    font-family: var(--font-family);
    border-bottom: 1px solid var(--gb-grey-one);
    align-items: center;
}

.departments-openings .title {
    font-weight: 400;
    font-size: 22px;
    color: var(--gb-dark-grey-text);
    grid-area: job-title;
}

.departments-openings .location {
    font-weight: 400;
    font-size: 22px;
    color: var(--gb-light-grey-text);
    grid-area: job-location;
}

.departments-openings .apply {
    text-align: right;
    grid-area: job-apply;
}

.departments-openings .apply a {
    background-color: var(--gb-white);
    border: 1px solid var(--gb-grey-one);
    border-radius: 6px;
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--gb-dark-grey-text);
    text-decoration: none;
    padding: 10px 24px;
    transition: var(--animate-transition);
}

.departments-openings .apply a:hover {
    background-color: var(--gb-orange-text);
    border-color: var(--gb-orange-two);
    color: var(--gb-white);
}

.departments-openings .apply a::after {
    content: url(../img/apply-arrow.svg);
    margin-left: 6px;
    display: inline-flex;
    transition: var(--animate-transition-transform);
}

.departments-openings .apply a:hover::before {
    position: absolute;
    width: 0;
    height: 0;
    background: url(../img/apply-arrow-hover.svg);
    content: '';
}

.departments-openings .apply a:hover::after {
    content: url(../img/apply-arrow-hover.svg);
    transform: var(--animate-transform);
}

.openings-wrapper .ai-footnote {
    max-width: var(--1280);
    width: 100%;
    margin: 40px auto 60px auto;
    border-top: 2px solid #606e75;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: var(--gb-dark-grey-text);
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0%, rgba(244, 252, 255, 0.4) 17%, rgba(244, 252, 255, 0.4) 85%, rgba(255, 255, 255, 0.4) 100%), linear-gradient(0deg, rgba(255, 255, 255, 0.6) 7.5%, rgba(244, 252, 255, 0.6) 100%);
}

.openings-wrapper .ai-footnote img {
    margin: 25px 15px;
}

.openings-wrapper .ai-footnote p {
    margin: 25px 15px 25px 0px;
    line-height: 150%;
}

/**
 * Responsive code for Job Openings
 */
@media only screen and (max-width: 1350px) {
    .openings-wrapper-line {
        max-width: unset;
        width: 100%;
        margin: 80px auto 0px auto;
        padding: 0px 60px;
        position: relative;
        background: none;
    }
    .openings {
        position: unset;
        background: transparent;
        padding: 0px;
        display: inline-block;
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 900px) {
    .openings-wrapper-line {
        margin-top: 45px;
    }
    .openings {
        margin-bottom: 34px;
    }
    .openings h2 {
        font-size: 26px;
        line-height: 115%;
    }
    .openings h2 span::after {
        top: -24px;
        left: -1px;
    }
    .departments-head {
        font-size: 20px;
    }
    .departments-openings .title,
    .departments-openings .location,
    .openings-wrapper .ai-footnote {
        font-size: 14px;
    }
    .departments-openings .apply a {
        font-size: 16px;
    }
    .openings-wrapper .ai-footnote {
        margin-bottom: 26px;
    }
}

@media only screen and (max-width: 834px) {
    .departments-wrapper {
        margin-bottom: 16px;
    }
    .departments-head {
        padding: 16px 0px;
    }
    .openings-wrapper-line {
        margin-top: 45px;
        padding: 0px var(--mobile-viewport-spacing);
    }
    .openings-wrapper-line {
        margin-bottom: 25px;
    }
    .openings h2 {
        font-size: 24px;
    }
    .openings h2 span::after {
        left: -3px;
    }
    .departments-openings {
        grid-template-areas: 
            "job-title job-apply"
            "job-location job-apply";
        grid-template-columns: 2fr 1fr;
        row-gap: 4px;
        column-gap: 12px;
    }
    .departments-openings .title {
        font-size: 15px;
    }
    .departments-openings .apply a {
        padding: 10px 16px;
    }
    .openings-wrapper .ai-footnote {
        margin-bottom: 0px;
    }
}

/* ==========================================================================
   Who We Are & Our Core Values
   ========================================================================== */
.who-wrapper {
    background-color: #F4FCFF;
    position: relative;
    padding-top: 80px;
    padding-bottom: 50px;
}

.who-we-are {
    font-family: var(--font-family);
    max-width: var(--1280);
    width: 100%;
    margin: 0px auto;
    position: relative;
}

.who-flag {
    position: absolute;
    top: -80px;
    right: 0px;
}

.who-we-are h2 {
    font-weight: 800;
    font-size: 34px;
    color: var(--gb-dark-blue-text);
    display: flex;
    margin: 0px;
}

.who-we-are h2::after {
    content: url(../img/heading-div.svg);
    display: inline-flex;
    margin-left: 8px;
    height: 22px;
    align-items: center;
}

.who-we-are h3 {
    max-width: 1080px;
    font-weight: 900;
    font-size: 54px;
    line-height: 111%;
    color: var(--gb-dark-blue-text);
}

.who-we-are p {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: var(--gb-dark-grey-text);
}

.our-core-values {
    font-family: var(--font-family);
    margin-top: 60px;
}

.our-core-values h2 {
    font-weight: 800;
    font-size: 34px;
    color: var(--gb-dark-blue-text);
    display: flex;
    margin: 0px;    
    max-width: var(--1280);
    width: 100%;
    margin: 0px auto;
}

.our-core-values h2::after {
    content: url(../img/heading-div.svg);
    display: inline-flex;
    margin-left: 8px;
    height: 22px;
    align-items: center;
}

.core-mark-left {
    position: absolute;
    top: -34px;
    left: -28px;
}

.core-mark-right {
    position: absolute;
    bottom: -34px;
    right: -28px;
}

.our-core-values .relationships {
    position: relative;
    max-width: var(--1400);
    width: 100%;
    margin: 80px auto 38px auto;
    border: 1px solid rgba(0, 156, 222, 0.15);
    border-radius: 6px;
    background: var(--gb-white), linear-gradient(270deg, rgba(247, 246, 255, 0.29) 0%, var(--gb-white) 100%);
}

.our-core-values .relationships .background {
    box-shadow: 0 0 28px 0 rgba(0, 156, 222, 0.08), inset 0 0 0 3px var(--gb-white);
    background: url(../img/relationships-bg.svg) repeat-y;
    background-color: var(--gb-white);
    padding: 3px 60px;
    border-radius: 6px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;    
    justify-items: center;
    align-items: center;
}

.our-core-values .relationships .background .message h2 {
    font-weight: 900;
    font-size: 44px;
    line-height: 89%;
    margin-bottom: 42px;
    color: var(--gb-dark-blue-text);
}

.our-core-values .relationships .background .message h2::after {
    content: none;
}

.our-core-values .relationships .background .message p {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: var(--gb-dark-grey-text);
    margin: 0px;
}

.our-core-values .relationships .background .image,
.our-core-values .growth .background .image {
    position: relative;
    height: 389px;
    width: 100%;
    display: flex;
}

.our-core-values .relationships .background .image img,
.our-core-values .growth .background .image img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.our-core-values .growth {
    position: relative;
    max-width: var(--1400);
    width: 100%;
    margin: 0px auto 80px auto;
    border: 1px solid rgba(0, 156, 222, 0.15);
    border-radius: 6px;
    background: var(--gb-white), linear-gradient(90deg, rgba(247, 255, 250, 0.75) 0%, var(--gb-white) 100%);
}

.our-core-values .growth .background {
    box-shadow: 0 0 28px 0 rgba(0, 156, 222, 0.08), inset 0 0 0 3px var(--gb-white);
    background: url(../img/growth-bg.jpg) repeat-y;
    background-color: var(--gb-white);
    padding: 3px 60px;
    border-radius: 6px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;    
    justify-items: center;
    align-items: center;
}

.our-core-values .growth .background .message h2 {
    font-weight: 900;
    font-size: 44px;
    line-height: 89%;
    margin-bottom: 42px;
    color: var(--gb-dark-blue-text);
}

.our-core-values .growth .background .message h2::after {
    content: none;
}

.our-core-values .growth .background .message p {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: var(--gb-dark-grey-text);
    margin: 0px;
}

.our-core-values p {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: var(--gb-dark-grey-text);
    max-width: var(--1280);
    width: 100%;
    margin: 0px auto 30px auto;
}

.our-core-values a {
    margin-top: 30px;
    font-weight: 500;
    font-size: 23px;
    color: var(--gb-blue-text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid #c1e1f4;
    padding-bottom: 12px;
    transition: var(--animate-transition);
}

.our-core-values a:hover {
    color: var(--gb-dark-blue-text);
    border-bottom-color: var(--gb-orange-text);
}

.our-core-values a::after {
    content: url(../img/hero-link-arrow.svg);
    display: inline-flex;
    margin-left: 12px;
    transition: var(--animate-transition-transform);
}

.our-core-values a:hover::after {
    transform: var(--animate-transform);
}

/**
 * Responsive code for Who We Are & Our Core Values
 */
@media only screen and (max-width: 1470px) {
    .our-core-values .relationships,
    .our-core-values .growth {
        max-width: var(--1280);
    }
}

@media only screen and (max-width: 1350px) {
    .who-wrapper {
        padding-left: 60px;
        padding-right: 60px;
    }
    .our-core-values .relationships .background,
    .our-core-values .growth .background {
        gap: 20px
    }
    .our-core-values .relationships .background .image img, 
    .our-core-values .growth .background .image img {
        height: unset;
    }
}

@media only screen and (max-width: 1080px) {
    .our-core-values .relationships .background,
    .our-core-values .growth .background {
        padding: 18px 60px 3px 60px;
    }
    .our-core-values .relationships .background .image img,
    .our-core-values .growth .background .image img {
        width: 100%;
    }
}

@media only screen and (max-width: 1080px) {
    .our-core-values .relationships .background,
    .our-core-values .growth .background {
        grid-template-columns: repeat(1, 1fr); 
    }
    .our-core-values .relationships .background .image img, 
    .our-core-values .growth .background .image img {
        position: relative;
    }
    .our-core-values .relationships .background .image, 
    .our-core-values .growth .background .image {
        order: 2;
    }
}

@media only screen and (max-width: 900px) {
    .who-wrapper {
        padding-top: 45px;
        padding-bottom: 26px;
    }
    .who-flag {
        top: -45px;
        width: 28px;
    }
    .who-we-are h3 {
        font-size: 40px;
    }
    .who-we-are h2,
    .our-core-values h2 {
        font-size: 26px;
    }
    .our-core-values {
        margin-top: 45px;
    }
    .our-core-values .relationships {
        margin-top: 60px;
    }
    .our-core-values .growth {
        margin-bottom: 45px;
    }
    .our-core-values .relationships .background,
    .our-core-values .growth .background {
        padding: 45px;
    }
    .our-core-values .relationships .background .message h2,
    .our-core-values .growth .background .message h2 {
        font-size: 34px;
        margin-bottom: 32px;
    }
    .who-we-are p,
    .our-core-values p,
    .our-core-values .relationships .background .message p,
    .our-core-values .growth .background .message p {
        font-size: 16px;
    }
    .our-core-values a {
        margin-top: 8px;
    }
}

@media only screen and (max-width: 834px) {
    .who-wrapper {
        padding-left: var(--mobile-viewport-spacing);
        padding-right: var(--mobile-viewport-spacing);
    }
    .core-mark-left,
    .core-mark-right {
        display: none;
    }
    .who-we-are h3 {
        font-size: 32px;
    }
    .our-core-values .relationships .background .message h2, 
    .our-core-values .growth .background .message h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    .our-core-values .relationships {
        margin-top: 26px;
    }
    .our-core-values .relationships .background, 
    .our-core-values .growth .background {
        grid-template-columns: repeat(1, 1fr);
        padding: 25px;
        gap: var(--mobile-viewport-spacing);
    }
    .our-core-values .relationships {
        margin-bottom: var(--mobile-viewport-spacing);
    }
    .our-core-values .relationships .background .image, 
    .our-core-values .growth .background .image {
        height: unset;
    }
    .our-core-values .growth {
        margin-bottom: 26px;
    }
    .our-core-values a {
        font-size: 16px;
        flex-wrap: nowrap;
    }
    .our-core-values a::after {
        content: "";
        display: block;
        margin-left: 6px;
        height: 12px;
        width: 12px;
        background-size: 12px 12px;
        background-image: url(../img/hero-link-arrow.svg);
        background-repeat: no-repeat;
    }
    .our-core-values .relationships .background .image img,
    .our-core-values .growth .background .image img {
        margin-bottom: -23px;
    }
}

/* ==========================================================================
   Team Member Spotlight
   ========================================================================== */
.team-spotlight-wrapper {
    font-family: var(--font-family);
    background: linear-gradient(0deg, rgba(244, 252, 255, 0.53), rgba(244, 252, 255, 0.53)), var(--gb-white);
    font-weight: 400;
    font-size: 24px;
    line-height: 154%;
    color: var(--gb-dark-grey-text);
    padding: 80px 0px;
}

.team-spotlight-wrapper-bg-shapes {
    background: url(../img/team-member-shapes-bg.png) center center no-repeat;
    background-size: contain;
}

.team-spotlight-wrapper h2 {
    font-weight: 800;
    font-size: 34px;
    color: var(--gb-dark-blue-text);
    display: flex;
    margin: 0px auto; 
    max-width: var(--1280);
    width: 100%;
    line-height: normal;
}

.team-spotlight-wrapper h2::after {
    content: url(../img/heading-div.svg);
    display: inline-flex;
    margin-left: 8px;
    height: 22px;
    align-items: center;
}

.team-spotlight-wrapper span,
.team-spotlight-wrapper span p {
    margin: 0px auto; 
    max-width: var(--1280);
    width: 100%;
    display: flex;
    line-height: 150%;
}

.team-member-spotlights {
    margin: 50px auto 25px auto;
    max-width: var(--1400);
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 50px;
    filter:none;
    z-index: 9;
    position: relative;
}

.team-members-bg-blur {
    z-index: -1;
    background: rgba(0, 156, 222, 0.09);
    filter: blur(28.5px);
    position: absolute;
    width: 100%;
    height: 100%;
}

.team-member {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background-color: var(--gb-white);
    border: 1px solid #d4e9f1;
    font-weight: 500;
    font-size: 16px;
    transition: var(--animate-transition);
}

.team-member:hover {
    filter: drop-shadow(0px 0px 30px rgba(173, 217, 228, 0.6));
}

.team-member a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--gb-dark-grey-text);
    position: relative;
    overflow: hidden;
    transition: var(--animate-transition);
    border-radius: 16px;
    border-bottom: 2px solid transparent;
    height: 100%;
}

.team-member a:hover {
    border-radius: 16px;
    border-bottom: 2px solid;
    border-color: var(--gb-orange-text);
}

.team-member div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-member img {
    border-radius: 16px 16px 0 0;
    margin-bottom: 18px;
    width: 100%;
    min-height: 234px;
}

.team-member strong {
    font-weight: 700;
    font-size: 24px;
    line-height: 92%;
    color: var(--gb-dark-grey-text);
    margin: 0px 18px;
}

.team-member p {
    margin: 6px 18px 10px 18px;
    line-height: normal;
}

.team-member span {
    font-weight: 400;
    font-size: 14px;
    margin: 0px 18px 18px 18px;
    line-height: 10px;
}

.team-more {
    margin: 0px auto;
    max-width: var(--1280);
    width: 100%;
    text-align: right;
}

.team-more a {
    margin-top: 30px;
    font-weight: 500;
    font-size: 23px;
    color: var(--gb-blue-text);
    text-decoration: none;
    display: inline-flex;
    border-bottom: 2px solid #c1e1f4;
    padding-bottom: 12px;
    transition: var(--animate-transition);
    align-items: center;
}

.team-more a:hover {
    color: var(--gb-dark-blue-text);
    border-bottom-color: var(--gb-orange-text);
}

.team-more a::after {
    content: url(../img/hero-link-arrow.svg);
    display: inline-flex;
    margin-left: 12px;
    transition: var(--animate-transition-transform);
}

.team-more a:hover::after {
    transform: var(--animate-transform);
}

/**
 * Responsive code for Team Member Spotlight
 */
@media only screen and (max-width: 1470px) {
    .team-member-spotlights {
        max-width: var(--1280);
    }
}

@media only screen and (max-width: 1350px) {
    .team-spotlight-wrapper {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media only screen and (max-width: 1228px) {
    .team-member-spotlights {
        gap: 25px;
    }
}

@media only screen and (max-width: 1160px) {
    .team-spotlight-wrapper h2 {
        font-size: 26px;
    }
    .team-spotlight-wrapper span {
        font-size: 18px;
    }
    .team-member-spotlights {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-member a {
        flex-direction: row;
    }
    .team-member img {
        border-radius: 16px 0 0 0;
        margin-bottom: 0px;
        width: 125px;
        min-height: auto;
    }
    .team-member strong {
        font-size: 20px;
    }
    .team-member span {
        margin-bottom: 0px;
    }
    .team-member span,
    .team-member p {
        font-size: 14px;
    }
}

@media only screen and (max-width: 900px) {
    .team-spotlight-wrapper {
        padding-top: 45px;
        padding-bottom: 45px;
    }
}

@media only screen and (max-width: 768px) {
    .team-spotlight-wrapper-bg-shapes {
        background-size: contain;
    }
    .team-member-spotlights {
        grid-template-columns: repeat(1, 1fr);
        gap: var(--mobile-viewport-spacing);
        margin-top: 25px;
    }
    .team-more a {
        font-size: 16px;
        flex-wrap: nowrap;
        line-height: normal;
        margin-top: 0px;
    }
    .team-spotlight-wrapper span {
        font-size: 16px;
    }
    .team-more a::after {
        content: "";
        display: block;
        margin-left: 6px;
        height: 12px;
        width: 12px;
        background-size: 12px 12px;
        background-image: url(../img/hero-link-arrow.svg);
        background-repeat: no-repeat;
    }
    #team-member-5,
    #team-member-6,
    #team-member-7,
    #team-member-8 {
        display: none;
    }
}

@media only screen and (max-width: 834px) {
    .team-spotlight-wrapper {
        padding-left: var(--mobile-viewport-spacing);
        padding-right: var(--mobile-viewport-spacing);
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: #002132;
    margin-top: auto;
}

.footer-wrapper {
    max-width: var(--1280);
    width: 100%;
    margin: 0px auto;
    padding: 39px 0px 32px 0px;
}

.footer-logo {
    margin-bottom: 48px;
}

.footer-logo a {
    transition: var(--animate-transition);
}

.footer-logo a:hover {
    filter: drop-shadow(0px 0px 22px rgba(0, 156, 222, 0.6));
}

.footer-logo a img {
    display: inline-block;
}
    
.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
}

.footer-nav .company,
.footer-nav .solutions,
.footer-nav .legal,
.footer-nav .request-more-information {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 16px;
    line-height: 181%;
    color: var(--gb-white);
}

.footer-nav ul {
    margin: 0px;
    padding: 0px;
}

.footer-nav ul li {
    list-style: none;
    font-weight: 400;
}

.footer-nav ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--animate-transition);
}

.footer-nav ul li a:hover {
    color: var(--gb-white);
}

.footer-nav .request-more-information {
    grid-column: span 2;
}

.footer-nav .request-more-information p {
    font-weight: 400;
    margin-top: 0px;
    line-height: 150%;
}

.footer-nav .request-more-information a {
    /* border: 1px solid #00769f;
    background: var(--gb-blue-text); */
    box-shadow: var(--gb-light-grey-text) 0 0 0 1px inset;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    color: var(--gb-white);
    text-decoration: none;
    padding: 8px 26px;
    margin-top: 6px;
    display: inline-block;
    transition: var(--animate-transition);
}

.footer-nav .request-more-information a:hover {
    /* background-color: var(--gb-dark-grey-text);
    border-color: var(--gb-dark-grey-text); */
    box-shadow: white 0 0 0 2px inset;

}

.footer-nav .request-more-information span {
    font-weight: 400;
    font-size: 14px;
    line-height: 207%;
    color: var(--gb-white);
    justify-content: flex-end;
    display: flex;
}

.footer-footer {
    width: 100%;
    margin: 0px auto;
    padding: 32px 0px;
    background-color: #002738;
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--gb-white);
}

.footer-footer .legal-resources {
    max-width: var(--1280);
    width: 100%;
    margin: 0px auto;
}

.footer-footer .legal-resources ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    line-height: 0;
}

.footer-footer .legal-resources ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--animate-transition);
}

.footer-footer .legal-resources ul li a:hover {
    color: var(--gb-white);
}

/**
 * Responsive code for Footer
 */
 @media only screen and (max-width: 1350px) {
    .footer-wrapper {
        margin-left: 60px;
        margin-right: 60px;
        width: auto;
    }
    .footer-footer .legal-resources {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media only screen and (max-width: 900px) {
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--mobile-viewport-spacing);
    }
    .footer-nav .request-more-information {
        order: 1;
    }
    .footer-nav .company {
        order: 2;
    }
    .footer-nav .solutions {
        order: 3;
    }
}

@media only screen and (max-width: 834px) {
    .footer-wrapper {
        margin-left: var(--mobile-viewport-spacing);
        margin-right: var(--mobile-viewport-spacing);
        width: auto;
        padding: 45px 0px;
    }
    .footer-nav {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0px;
    }
    .footer-logo {
        margin-bottom: 26px;
    }
    .footer-logo a img {
        height: 40px;
    }
    .footer-nav .request-more-information {
        width: 100%;
        margin-bottom: 26px;
    }
    .footer-nav .company {
        width: 49.99999998%;
        box-sizing: border-box;
        display: block;
    }
    .footer-nav .solutions {
        width: 49.99999998%;
        box-sizing: border-box;
        display: block;
    }
    .footer-footer .legal-resources {
        padding-left: var(--mobile-viewport-spacing);
        padding-right: var(--mobile-viewport-spacing);
        box-sizing: border-box;
    }
}



/* menu icon */

header nav .menu-icon {
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0px;
    position: relative;
    user-select: none;
    width: 121px;
    height: 45px;
    box-sizing: border-box;
}

header nav .menu-icon .navicon {
    background: var(--gb-dark-blue-text);
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
    margin-left: 6px;
    margin-right: 6px;
}

header nav .menu-icon .navicon:before,
header nav .menu-icon .navicon:after {
    background: var(--gb-dark-blue-text);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

header nav .menu-icon .navicon:before {
    top: 5px;
}

header nav .menu-icon .navicon:after {
    top: -5px;
}

label.menu-icon {
    font-family: var(--font-family);
    font-size: 18px;
    color: var(--gb-dark-blue-text);
    border: 1px solid var(--gb-grey-one);
    border-radius: 6px;
}

header nav .menu-btn:checked ~ label.menu-icon,
header.reduce nav .menu-btn:checked ~ label.menu-icon {
    border-radius: 6px 6px 0px 0px;
}

header nav .menu-btn:checked ~ ul {
    border: 1px solid var(--gb-grey-one);
}

@media only screen and (max-width: 1024px) {
    header nav .menu-btn:checked ~ ul {
        top: 48px;
    }
    header.reduce nav .menu-btn:checked ~ ul {
        top: 48px;
    }
}

@media only screen and (max-width: 834px) {
    header nav .menu-icon {
        width: 74px;
        height: 34px;
        justify-content: flex-end;
    }
    label.menu-icon {
        font-family: var(--font-family);
        font-size: 14px;
        color: var(--gb-dark-blue-text);
        border: 1px solid var(--gb-grey-one);
        border-radius: 6px;
        margin-bottom: 0px;
    }
    header nav .menu-btn:checked ~ ul {
        top: 43px;
    }
    header.reduce nav .menu-btn:checked ~ ul {
        top: 35px;
    }
}

/* menu btn */

header nav .menu-btn {
    display: none;
}

header nav .menu-btn:checked ~ ul {
    max-height: fit-content;
    width: fit-content;
}

header nav .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
}

header nav .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
}

header nav .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
}

header nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
header nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
}

@media (min-width: 1025px) {
    header nav ul {
        clear: none;
        float: right;
        max-height: none;
    }
    header nav .menu-icon {
        display: none;
    }
}


/* ==========================================================================
   Corrections for old theme, remove once new theme 
   has been implemented in all pages
   ========================================================================== */
.footer-nav .request-more-information p {
    color: var(--gb-white);
    font-size: 16px;
}

/* ==========================================================================
   Spotlight Series page notice if no sessions exist
   ========================================================================== */
.notice-sticky {
    background-color: var(--gb-yellow-one);
    display: flex;
    padding: 20px;
    border: 1px dotted #fef49d;
    border-radius: 6px;
    font-size: 18px;
    justify-content: center;
    align-items: center;
}


/* ==========================================================================
   Efficacy Page
   ========================================================================== */
.hero-wrapper.research-studies {
    padding-bottom: 60px;
}

.efficacy-hero-sub {
    display: flex;
    align-items: center;
    max-width: var(--1400);
    margin: 0px auto;
    border: 1px solid rgba(0, 156, 222, 0.15);
    border-radius: 6px;
    flex-direction: column;
    /* padding-top: 60px; was here before */
    font-family: var(--font-family);
    position: relative;
}

.efficacy-hero-sub-box {
    width: 100%;
    box-shadow: 0 0 28px 0 rgba(0, 156, 222, 0.08), inset 0 0 0 3px var(--gb-white);
    background: url(../img/relationships-bg.svg) repeat-y;
    background-color: var(--gb-white);
    padding: 60px 60px 3px 60px;
    display: flex;
    gap: 30px;
    flex-direction: row-reverse;
    position: relative;
}

.efficacy-hero-sub-box .image {
    width: auto;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.efficacy-hero-sub-box .image img {
    display: block;
    width: 100%;
    position: relative;
    bottom: 0px;
}

.efficacy-hero-sub-box .image .caption {
    display: inline-flex;
    position: absolute;
    top: -10px;
    right: -60px;
    background: #f4fcff8c;
    padding: 10px 30px;
    z-index: 99;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border: 1px solid var(--gb-white);
    font-size: 14px;
    backdrop-filter: blur(25px);
    flex-direction: row;
    color: var(--gb-dark-grey-text);
    border-top: 1px solid #e0edf7;
    border-bottom: 1px solid #e0edf7;
    border-left: 1px solid #e0edf7;
    font-weight: bold;
}

.efficacy-hero-sub-box .image .caption span {
    color: #4D4F50;
    display: block;
    margin-bottom: 4px;
    font-weight: normal;
}

.efficacy-hero-sub-box .image .caption img {
    width: 38px;
    margin-right: 10px;
}

.efficacy-hero-sub-box .message {
    width: 65%;
}

.efficacy-hero-sub p {
    font-family: var(--font-family);
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: #545758;
    padding: 0px 0px 18px 0px;
    margin: 0px;
}

.efficacy-hero-sub-box .message p.quote {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: var(--gb-dark-grey-text);
}

.efficacy-hero-sub-box .message .message-by {
    font-size: 16px;
    line-height: 24px;
}

.efficacy-hero-sub-box .message .message-by span {
    color: #CDCFD0;
}

.efficacy-hero-sub-box .message .message-by em {
    font-weight: 300;
    color: #4D4F50;
}

@media (max-width: 1470px) {
    .efficacy-hero-sub {
        max-width: var(--1280);
    }
    .efficacy-hero-sub-box .message .message-by {
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 1350px) {
    .hero-wrapper.research-studies {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media only screen and (max-width: 1218px) {
    .efficacy-hero-sub-box {
        flex-direction: column-reverse;
    }
    .efficacy-hero-sub-box .message {
        width: 100%;
    }
    .efficacy-hero-sub-box .message .message-by {
        margin-bottom: 0px;
    }
    .efficacy-hero-sub-box .image {
        justify-content: center;
    }
    .efficacy-hero-sub-box .image img {
        width: 68%;
    }
}

@media only screen and (max-width: 834px) {
    .efficacy-hero-sub {
        margin-bottom: 45px;
    }
    .hero-wrapper.research-studies {
        padding-left: var(--mobile-viewport-spacing);
        padding-right: var(--mobile-viewport-spacing);
        padding-bottom: 0px;
    }
    .efficacy-hero-sub-box {
        flex-direction: column-reverse;
        padding: 25px 25px 3px 25px;
        gap: var(--mobile-viewport-spacing);
    }
    .efficacy-hero-sub-box .image {
        padding-top: 8px;
    }
    .efficacy-hero-sub-box .image img {
        width: 100%;
    }
    .efficacy-hero-sub-box .image .caption {
        right: -26px;
        left: -26px;
        border-radius: 0px;
        border: 1px solid #e0edf7;
        top: -20px;
        padding: 10px 25px;
        font-size: 12px;
    }
    .efficacy-hero-sub-box .message .message-by {
        margin-bottom: 25px;
    }
    .efficacy-hero-sub-box .message p.quote {
        font-size: 20px;
        line-height: 26px;
    }
}

/* ==========================================================================
   Research-Backed Insights
   ========================================================================== */
.research-backed-insights-wrapper {
    display: flex;
    position: relative;
    flex-direction: column;
    background-color: var(--gb-white);
    padding-top: 60px;
    padding-bottom: 60px;
}

.research-backed-insights {
    font-family: var(--font-family);
    max-width: var(--1400);
    width: 100%;
    margin: 0px auto;
    position: relative;
}

.research-backed-insights h2 {
    font-weight: 700;
    font-size: 30px;
    color: var(--gb-dark-blue-text);
    display: flex;
    margin: 0px;
    justify-content: center;
}

.research-backed-insights h2:nth-of-type(2) {
    margin-top: 50px;
    margin-bottom: 2px;
}

/* .research-backed-insights h2::after {
    content: url(../img/heading-div.svg);
    display: inline-flex;
    margin-left: 8px;
    height: 22px;
    align-items: center;
} */

.research-backed-insights h3 {
    /* font-size: 54px;
    line-height: 111%; */
    max-width: 1080px;
    font-weight: 900;
    font-size: 42px;
    line-height: 50px;
    color: var(--gb-dark-blue-text);
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 6px auto;
    text-align: center;
}

.research-backed-insights p {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: var(--gb-dark-grey-text);
    width: 70%;
    margin: 0px auto;
    text-align: center;
}

/*.research-backed-insights ul {
    margin: 0px;
    margin-bottom: 10px;
    padding: 0px;
    box-sizing: border-box;
    list-style: none;
}

 .research-backed-insights ul li {
    font-weight: 400;
    font-size: 18px;
    line-height: 162.5%;
    color: var(--gb-dark-grey-text);
    border-bottom: 1px solid #ECEEEF;
    box-sizing: border-box;
    margin-bottom: 0px;
    padding: 14px 0px 14px 24px;
    background-image: url(../img/blue-bullet.png);
    background-repeat: no-repeat;
    background-position: 0 24px;
}

.research-backed-insights ul li:last-child {
    border-bottom: 0px;
} */

.research-backed-insights ul {
    width: 100%;
    padding: 60px 30px;
    margin: 0px;
    box-sizing: border-box;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.research-backed-insights ul li {
    font-weight: 400;
    font-size: 18px;
    line-height: 162.5%;
    color: var(--gb-dark-grey-text);
    border-bottom: 1px solid #EBDDF7;
    box-sizing: border-box;
    margin-bottom: 0px;
    padding: 30px;
    border-right: 1px solid #EBDDF7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    box-shadow: inset 0 0 0 1px var(--gb-white);
}

.research-backed-insights ul li:nth-of-type(4),
.research-backed-insights ul li:nth-of-type(5),
.research-backed-insights ul li:nth-of-type(6) {
    border-bottom: 0px;
}

.research-backed-insights ul li:nth-of-type(3),
.research-backed-insights ul li:nth-of-type(6) {
    border-right: 0px;
}

.research-backed-insights ul li img {
    width: 64px;
    margin-bottom: 12px;
    z-index: 2;
}

.research-backed-insights ul li strong {
    font-size: 20px;
    margin-bottom: 12px;
    z-index: 2;
}

.research-backed-insights ul li p {
    z-index: 2;
    width: 100%;
}

.research-backed-insights ul li div {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

.research-backed-insights ul li:nth-of-type(1),
.research-backed-insights ul li:nth-of-type(2) {
    background: linear-gradient(120.72deg, transparent 75.81%, #FAF7FD 100%);
}

.research-backed-insights ul li:nth-of-type(2) div,
.research-backed-insights ul li:nth-of-type(3) {
    background: linear-gradient(239.28deg, transparent 75.81%, #FAF7FD 100%);
}

.research-backed-insights ul li:nth-of-type(4),
.research-backed-insights ul li:nth-of-type(5) div {
    background: linear-gradient(59.28deg, transparent 75.81%, #FAF7FD 100%);
}

.research-backed-insights ul li:nth-of-type(5),
.research-backed-insights ul li:nth-of-type(6) {
    background: linear-gradient(300.72deg, transparent 75.81%, #FAF7FD 100%);
}

@media only screen and (max-width: 1350px) {
    .research-backed-insights-wrapper {
        padding-left: 60px;
        padding-right: 60px;
    }
    .research-backed-insights ul {
        width: 100%;
        margin: 30px 0px;
        padding: 0px;
    }
}

@media only screen and (max-width: 834px) {    
    .research-backed-insights-wrapper {
        padding-left: var(--mobile-viewport-spacing);
        padding-right: var(--mobile-viewport-spacing);
        padding-top: 45px;
        padding-bottom: 45px;
    }
    .research-backed-insights h2 {
        font-size: 22px;
    }
    .research-backed-insights h3 {
        font-size: 26px;
        line-height: 30px;
    }
    .research-backed-insights p {
        font-size: 16px;
        width: 100%;
    }
    .research-backed-insights ul {
        margin: 0px;
        padding: 0px;
        grid-template-columns: 1fr;
        margin-bottom: 25px;
    }
    .research-backed-insights ul li {
        border-right: 0px;
        padding: 25px 0px;
    }
    .research-backed-insights ul li img {
        width: 32px;
        margin-bottom: 6px;
    }
    .research-backed-insights ul li strong {
        font-size: 18px;
        margin-bottom: 0px;
    }
    .research-backed-insights ul li:nth-of-type(4), 
    .research-backed-insights ul li:nth-of-type(5), 
    .research-backed-insights ul li:nth-of-type(6) {
        border-bottom: 1px solid #EBDDF7;
    }
    .research-backed-insights ul li:nth-of-type(1), 
    .research-backed-insights ul li:nth-of-type(2),
    .research-backed-insights ul li:nth-of-type(4), 
    .research-backed-insights ul li:nth-of-type(5) div,
    .research-backed-insights ul li:nth-of-type(5), 
    .research-backed-insights ul li:nth-of-type(6),
    .research-backed-insights ul li:nth-of-type(2) div, 
    .research-backed-insights ul li:nth-of-type(3) {
        background: none;
    }
}

/* ==========================================================================
   ESSA Timeline
   ========================================================================== */
.efficacy-timeline-wrapper {
    display: flex;
    position: relative;
    flex-direction: column;
    background: linear-gradient(0deg, var(--gb-white) 58.87%, #F4FCFF 100%);
    padding-top: 60px;
    padding-bottom: 60px;
}

.efficacy-timeline {
    font-family: var(--font-family);
    max-width: var(--1400);
    width: 100%;
    margin: 0px auto;
    position: relative;
}

.efficacy-timeline .headline-wrapper {
    max-width: var(--1400);
    background: url(../img/essa-timeline-one.png);
    background-position: 0px 50px;
    background-repeat: no-repeat;
    display: flex;
}

.efficacy-timeline .headline {
    display: flex;
    flex-direction: row;
    color: var(--gb-dark-blue-text);
    font-size: 34px;
    line-height: 42px;
    font-weight: 900;
    align-items: center;
    max-width: var(--1280);
    margin: 0px auto 30px auto;
}

.efficacy-timeline .headline .years {
    margin-right: 10px;
    font-size: 92px;
    line-height: 100%;
    color: var(--gb-orange-text);
}

.efficacy-timeline .headline .years span {
    color: #FD855F;
}

.essa-timeline-wrapper {
    position: relative;
    max-width: var(--1400);
    margin: 0px auto;
    padding-bottom: 30px;
    display: flex;
    background: url(../img/essa-time-line.png) top left repeat-y;
}

.essa-timeline-wrapper:last-of-type {
    background: url(../img/essa-time-line-last.png) top left no-repeat;
    padding-bottom: 60px;
}

.essa-timeline-connect {
    position: absolute;
    left: 0px;
    top: 76px;
    z-index: 999;
}

.essa-timeline {
    max-width: var(--1280);
    margin: 0px auto;
    width: 100%;
}

.timeline {
    width: 100%;
    box-shadow: 0 0 28px 0 rgba(0, 156, 222, 0.08), inset 0 0 0 3px var(--gb-white);
    background: url(../img/relationships-bg.svg) repeat-y;
    background-color: var(--gb-white);
    padding: 3px;
    border: 1px solid rgba(0, 156, 222, 0.15);
    border-radius: 6px;
    display: flex;
}

.timeline .details {
    display: flex;
    flex-direction: row;
}

.timeline .details .description {
    padding-top: 30px;
    padding-right: 30px;
}

.timeline .details .description h1 {
    color: var(--gb-dark-blue-text);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.timeline .details .description p {
    color: var(--gb-dark-grey-text);
    font-size: 18px;
    line-height: 26px;
}

.timeline .details .description .findings {
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    background-color: var(--gb-white);
    border: 1px solid #DFE1E3;
    padding: 20px 30px 0px 30px;
    margin-top: 20px;
}

.timeline .details .description .findings strong {
    font-size: 18px;
    line-height: 26px;
    color: var(--gb-dark-blue-text);
}

.timeline .details .description .findings ul {
    margin: 0px;
    margin-bottom: 10px;
    padding: 0px;
    box-sizing: border-box;
    list-style: none;
}

.timeline .details .description .findings ul li {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: var(--gb-dark-grey-text);
    border-bottom: 1px dotted #DFE1E3;
    box-sizing: border-box;
    margin-bottom: 0px;
    padding: 14px 0px 14px 24px;
    background-image: url(../img/blue-bullet.png);
    background-repeat: no-repeat;
    background-position: 0 24px;
}

.timeline .details .description .findings ul li:last-child {
    border-bottom: 0px;
}

.timeline .details .description .white-button {
    justify-content: flex-end;
}

.timeline .details .other-info {
    background: url(../img/essa-dotted-bg-line.png) top left repeat-y rgba(255, 255, 255, 0.86);
    padding: 30px;
    max-width: 244px;
    width: 100%;
}

.timeline .details .other-info .study-location,
.timeline .details .other-info .study-institution {
    color: var(--gb-dark-blue-text);
    font-size: 18px;
    font-weight: 700;
}

.timeline .details .other-info .study-institution {
    margin-top: 20px;
    white-space: nowrap;
}

.timeline .details .other-info .study-location::before {
    content: url(../img/study-location.svg);
    margin-right: 4px;
}

.timeline .details .other-info .study-institution::before {
    content: url(../img/study-institution.svg);
    margin-right: 4px;
}

.side-info ul {
    margin: 0px;
    padding: 0px;
}

.side-info ul li {
    list-style: none;
    font-size: 14px;
    line-height: 20px;
    color: #4D4F50;
    padding-top: 6px;
    padding-bottom: 6px;
    border-top: 1px dashed #dfe1e3;
    margin: 0px;
}

.side-info ul li:first-child {
    border-top: 0px;
}

.essa-tier-badge {
    display: block;
    margin: 0px auto;
    margin-bottom: 20px;
}

.timeline .details .cover-wrapper {
    position: relative;
}

.timeline .details .cover-wrapper .cover {
    box-sizing: border-box;
    position: relative;
    width: 344px;
    height: 486px;
    left: -34px;
    top: 30px;
    border: 1px solid rgba(0, 156, 222, 0.15);
    box-shadow: 0px 0px 28px rgba(0, 156, 222, 0.08), inset 0px 0px 0px 3px var(--gb-white);
    border-radius: 6px;
}

.timeline .details .cover-wrapper .cover.one {
    background: url(../img/book-2024.jpg) top center no-repeat #FBF8FF;
    background-size: cover;
}

.timeline .details .cover-wrapper .cover.two {
    background: url(../img/book-2023.jpg) top center no-repeat #F0F8FC;
    background-size: cover;
}

.timeline .details .cover-wrapper .cover.three {
    background: url(../img/book-2022.jpg) top center no-repeat #F2FBFA;
    background-size: cover;
}

.timeline .details .cover-wrapper .cover.four {
    background: url(../img/book-2021.jpg) top center no-repeat var(--gb-orange-five);
    background-size: cover;
}

.timeline .details .cover-wrapper .cover.five {
    background: url(../img/book-2020.jpg) top center no-repeat var(--gb-blue-two);
    background-size: cover;
}

.timeline .details .cover-wrapper .cover.six {
    background: url(../img/book-2020b.jpg) top center no-repeat #f8f8f8;
    background-size: cover;
}

.timeline .details .cover-wrapper .cover.seven {
    background: url(../img/book-2018.jpg) top center no-repeat #f4f5ff;
    background-size: cover;
}

.timeline .details .cover-wrapper .cover.eight {
    background: url(../img/book-2014.jpg) top center no-repeat #f4f5ff;
    background-size: cover;
}

.timeline .details .cover-wrapper .cover.nine {
    background: url(../img/book-2014b.jpg) top center no-repeat var(--gb-blue-two);
    background-size: cover;
}

.timeline .details .cover-wrapper .cover.ten {
    background: url(../img/book-2024a.jpg) top center no-repeat var(--gb-blue-two);
    background-size: cover;
}

.timeline .details .cover-wrapper .cover.eleven {
    background: url(../img/book-2024b.jpg) top center no-repeat var(--gb-blue-two);
    background-size: cover;
}

.timeline .details .cover-wrapper .cover.twelve {
    background: url(../img/book-2024c.jpg) top center no-repeat var(--gb-blue-two);
    background-size: cover;
}

.timeline .details .cover-wrapper .cover .year {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 0px 6px 6px 0px;
    color: var(--gb-dark-blue-text);
    font-size: 54px;
    font-weight: 900;
    display: inline-flex;
    width: 188px;
    padding: 2px 30px;
    margin-top: 30px;
}

.white-button {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
    margin-bottom: 20px;
    
}

.white-button a {
    background-color: var(--gb-white);
    border: 1px solid var(--gb-grey-one);
    border-radius: 6px;
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--gb-dark-grey-text);
    text-decoration: none;
    padding: 10px 24px;
    transition: var(--animate-transition);
}

.white-button a:hover {
    background-color: var(--gb-orange-text);
    border-color: var(--gb-orange-two);
    color: var(--gb-white);
}

.white-button a::after {
    content: url(../img/apply-arrow.svg);
    margin-left: 6px;
    display: inline-flex;
    transition: var(--animate-transition-transform);
}

.white-button a:hover::before {
    position: absolute;
    width: 0;
    height: 0;
    background: url(../img/apply-arrow-hover.svg);
    content: '';
}

.white-button a:hover::after {
    content: url(../img/apply-arrow-hover.svg);
    transform: var(--animate-transform);
}

.ten-years-mobile {
    display: none;
}

.essa-timeline-wrapper:nth-of-type(10) .timeline .details .description .white-button {
    margin-bottom: 94px;
}

#study-filters {
    font-size: 16px;
}

#study-filters div {
    padding-top: 30px;
    border-top: 1px dashed #c5e4f8;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    max-width: var(--1280);
    margin: 0px auto;
}

#study-filters span {
    font-weight: bold;
    color: #17465a;
}

#filter-impact,
#filter-practice {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: white url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" fill="%23FD6A3C" viewBox="0 0 10 6"><path d="M0 0l5 6 5-6H0z"/></svg>') no-repeat right 16px center;
    background-size: 8px;
    padding: 8px 16px;
    border: 1px solid #e1eff8;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    color: #0f1112;
    box-shadow: 0 0 28px 0 rgba(0, 156, 222, 0.08), inset 0 0 0 3px var(--gb-white);
    min-width: 242px;
}

#filter-impact {
    margin: 0px 10px;
}

#studies-results {
    transition: opacity 0.05s ease-in-out;
    opacity: 1;
}

#studies-results.fading-out {
    opacity: 0;
}

.pagination {
    margin-top: 1rem;
}

.pagination button {
    margin: 0 5px;
    padding: 5px 10px;
    cursor: pointer;
}

.essa-no-result {
    margin-left: 60px;
    font-size: 20px;
    font-weight: bold;
    color: #17465a;
}

@media only screen and (max-width: 1350px) {
    .efficacy-timeline-wrapper {
        padding-left: 60px;
        padding-right: 60px;
    }
    .efficacy-timeline,
    .efficacy-timeline .headline-wrapper
    .essa-timeline-wrapper {
        max-width: var(--1280);
    }
    .efficacy-timeline .headline {
        padding-left: 60px;
    }
    .essa-timeline-wrapper {
        padding-left: 60px;
    }
}

@media only screen and (max-width: 1218px) {
    .timeline .details .cover-wrapper .cover {
        width: 308px;
        height: 434px;
    }
    .essa-timeline-wrapper:nth-of-type(10) .timeline .details .description .white-button {
        margin-bottom: 18px;
    }

    .timeline .details {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .timeline .details .cover-wrapper {
        width: 34%;
    }
    .timeline .details .description {
        width: 60%;
    }
    .essa-timeline-wrapper:nth-of-type(10) .timeline .details .description .white-button {
        margin-bottom: 18px;
    }
    .timeline .details .other-info {
        max-width: 100%;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.86);
        border-top: 1px dashed #DFE1E3;
    }
    .essa-tier-badge {
        margin: 0px;
        width: 100px;
        height: fit-content;
    }
}

@media only screen and (max-width: 960px) {
    .timeline .details .description {
        width: 50%;
    }
}

@media only screen and (max-width: 834px) {
    .efficacy-timeline-wrapper {
        padding-left: var(--mobile-viewport-spacing);
        padding-right: var(--mobile-viewport-spacing);
        padding-top: 45px;
        padding-bottom: 22px;
    }
    .timeline {
        padding: 0px;
    }
    .efficacy-timeline .headline-wrapper {
        background: none;
    }
    .essa-timeline-wrapper {
        padding-left: 0px;
        background: none;
        padding-bottom: 16px;
    }
    .efficacy-timeline .headline {
        padding-left: 0px;
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 25px;
    }
    .timeline .details {
        flex-direction: column;
    }
    .essa-timeline-connect {
        display: none;
    }
    .timeline .details .cover-wrapper {
        order: 1;
        width: 100%;
    }
    .timeline .details .cover-wrapper .cover {
        left: unset;
        top: unset;
        border: none;
        background-size: contain;
        width: 100%;
        height: 340px;
    }
    .timeline .details .cover-wrapper .cover.one,
    .timeline .details .cover-wrapper .cover.two,
    .timeline .details .cover-wrapper .cover.three,
    .timeline .details .cover-wrapper .cover.four,
    .timeline .details .cover-wrapper .cover.five,
    .timeline .details .cover-wrapper .cover.six,
    .timeline .details .cover-wrapper .cover.seven,
    .timeline .details .cover-wrapper .cover.eight,
    .timeline .details .cover-wrapper .cover.nine,
    .timeline .details .cover-wrapper .cover.ten,
    .timeline .details .cover-wrapper .cover.eleven,
    .timeline .details .cover-wrapper .cover.twelve {
        background-size: contain;
        width: 100%;
        height: 340px;
    }
    .essa-timeline-wrapper:nth-of-type(10) {
        background: none;
        padding-bottom: 22px;
    }
    .timeline .details .description {
        padding: 0px 25px;
        order: 3;
        width: 100%;
    }
    .timeline .details .description h1 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .timeline .details .description p {
        font-size: 16px;
    }
    .timeline .details .description .findings {
        padding: 16px 16px 0px 16px;
        margin-left: -14px;
        margin-right: -14px;
    }
    .timeline .details .description .findings ul li {
        font-size: 16px;
        line-height: 24px;
        background-image: none;
        padding: 14px 0px;
    }
    .timeline .details .other-info {
        order: 2;
        max-width: 99%;
        width: 100%;
        border-bottom: 1px solid rgba(0, 156, 222, 0.15);
        display: flex;
        padding: 16px 25px;
        align-items: flex-start;
        justify-content: center;
        flex-direction: row-reverse;
        border-top: 0px;
    }
    .essa-tier-badge {
        width: 68px;
        height: fit-content;
        margin: 0px;
        margin-left: 14px;
    }
    .timeline .details .other-info p {
        margin-top: 0px;
    }
    .timeline .details .other-info .study-location, 
    .timeline .details .other-info .study-institution {
        font-size: 16px;
    }
    .timeline .details .other-info .study-institution {
        margin-top: 12px;
    }
    .timeline .details .other-info div {
        width: 100%;
    }
    .timeline .details .description .white-button {
        justify-content: center;
    }
    .timeline .details .cover-wrapper .cover .year {
        font-size: 32px;
        width: 130px;
    }
    .years {
        display: none;
    }
    .ten-years-mobile {
        display: inline-block;
        color: var(--gb-orange-text);
        margin-right: 4px;
    }
    .essa-timeline-wrapper:nth-of-type(10) .timeline .details .description .white-button {
        margin-bottom: 25px;
    }
}

@media only screen and (max-width: 630px) {
    #study-filters div {
        flex-direction: column;
    }
    #filter-impact, #filter-practice {
        width: 100%;
        margin-top: 16px;
    }
}

/* ==========================================================================
   Other Info
   ========================================================================== */
.other-info-wrapper {
    display: flex;
    position: relative;
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 0px;
    max-width: var(--1280);
    margin: 0px auto;
}

.other-info {
    font-family: var(--font-family);
    width: 100%;
    margin: 0px auto;
    position: relative;
}

.other-info h2 {
    font-weight: 800;
    font-size: 34px;
    color: var(--gb-dark-blue-text);
    display: flex;
    margin: 0px;
    margin-bottom: 20px;
}

.other-info h2::after {
    content: url(../img/heading-div.svg);
    display: inline-flex;
    margin-left: 8px;
    height: 22px;
    align-items: center;
}

.other-info-wrapper .other-info p {
    color: var(--gb-dark-grey-text);
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 60px;
}

.endorsers {
    display: flex;
    flex-direction: row;
    padding: 60px;
}

.endorsers div {
    width: 50%;
}

.endorsers div:nth-of-type(1) {
    padding-right: 60px;
    border-right: 1px dotted #DFE1E3;
}

.endorsers div:nth-of-type(2) {
    padding-left: 60px;
}

.endorsers div img {
    display: block;
    margin-bottom: 30px;
    max-width: 100%;
}

.endorsers div p {
    color: var(--gb-dark-grey-text);
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 0px;
}


.cta-one-wrapper {
    display: flex;
    position: relative;
    flex-direction: column;
    background-color: var(--gb-white);
    padding-top: 60px;
    padding-bottom: 60px;
}

.cta-one {
    font-family: var(--font-family);
    max-width: var(--1280);
    width: 100%;
    margin: 0px auto;
    position: relative;
    box-shadow: 0 0 28px 0 rgba(0, 156, 222, 0.08), inset 0 0 0 0px var(--gb-white);
    /* background: url(../img/relationships-bg.svg) repeat-y;
    background-color: #6a00a9; 3B3679; #25573C
    background-color: #F2FBFA; */
    background-color: #F1F8F3;
    padding: 60px 60px 40px 60px;
    border: 1px solid rgba(0, 156, 222, 0.15);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
}

.cta-one .message {
    width: 56%;
    text-align: center;
    margin: 0px auto;
}

.cta-one .message h1 {
    color: var(--gb-dark-blue-text);
    font-size: 54px;
    font-weight: 900;
    line-height: 111%;
    margin: 0px;
}

.cta-one .message p {
    color: #545758;;
    font-size: 26px;
    margin: 10px 0px;
}

.cta-one .message .white-button {
    justify-content: center;
}

mark {
    color: var(--gb-dark-blue-text);
    margin: 0 -0.4em;
    padding: 0.025em 0.4em;
    border-radius: 0.8em 0.3em;
    background: transparent;
    background-image: linear-gradient(to right, rgba(255, 225, 0, 0.1), rgb(255 225 0 / 47%) 4%, rgba(255, 225, 0, 0.3));
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

@media only screen and (max-width: 1350px) {
    .cta-one-wrapper {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media only screen and (max-width: 1218px) {
    .cta-one .message {
        width: 68%;
    }
}

@media only screen and (max-width: 834px) {
    .cta-one-wrapper {
        padding-left: var(--mobile-viewport-spacing);
        padding-right: var(--mobile-viewport-spacing);
        padding-top: 22px;
        padding-bottom: 45px;
    }
    .other-info-wrapper {
        padding-top: 22px;
    }
    .other-info h2 {
        font-size: 26px;
        line-height: 30px;
    }
    .other-info-wrapper .other-info p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 25px;
    }
    .endorsers {
        flex-direction: column;
        padding: 25px;
    }
    .endorsers div {
        width: 100%;
    }
    .endorsers div:nth-of-type(1) {
        padding-right: 0px;
        padding-bottom: 25px;
        border-bottom: 1px dotted #DFE1E3;
        border-right: 0px;
    }
    .endorsers div:nth-of-type(2) {
        padding-left: 0px;
        padding-top: 25px;
    }
    .endorsers div p {
        font-size: 16px;
        line-height: 24px;
    }
    .endorsers div img {
        margin-bottom: 25px;
    }
    .cta-one {
        padding: 25px 25px 4px 25px;
    }
    .cta-one .message {
        width: 100%;
    }
    .cta-one .message h1 {
        font-size: 34px;
    }
    .cta-one .message p {
        font-size: 22px;
        line-height: 30px;
    }
}

.orange-button {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
    
}

.orange-button a {
    background-color: var(--gb-orange-text);
    border: 1px solid var(--gb-orange-two);
    color: var(--gb-white);
    border-radius: 6px;
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    padding: 10px 24px;
    transition: var(--animate-transition);
}

.orange-button a:hover {
    background-color: #e4410e;
    border-color: var(--gb-orange-two);
    color: var(--gb-white);
}

.orange-button a::after {
    content: url(../img/apply-arrow-hover.svg);
    margin-left: 6px;
    display: inline-flex;
    transition: var(--animate-transition-transform);
}

.orange-button a:hover::before {
    position: absolute;
    width: 0;
    height: 0;
    background: url(../img/apply-arrow-hover.svg);
    content: '';
}

.orange-button a:hover::after {
    content: url(../img/apply-arrow-hover.svg);
    transform: var(--animate-transform);
}

@media only screen and (max-width: 576px) {
    .orange-button a {
        font-size: 16px;
        padding: 10px 16px;
    }
    .white-button a {
        font-size: 16px;
    }
}