* {
    font-variant-ligatures: none;
    transition: all 0.3s ease-in-out;     
}

header nav ul li a {
    transition: none !important;
}

/* Preload the hover image */

body::before {
    content: '';
    position: absolute;
    background: url(../img/home-hero-bg-hover.png) no-repeat;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* ==========================================================================
   Toolkit Hero Section
   ========================================================================== */
.home-hero-wrapper {
    background: linear-gradient(0deg, #FFFFFF 40.07%, #f6fdff 100%);
    padding: 20px 0px 0px 0px;
    position: relative;
}

.home-hero-container {
    display: flex;
    max-width: 1480px;
    margin: 0 auto;
    gap: 32px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    border-radius: 6px;
    padding: 60px 100px;
    height: 600px;
    background: url(../img/header-bg-seven.jpg) no-repeat top right;
    background-color: #fff;
    border: 1px solid #e4f1fb;
    box-shadow: 0px 0px 28px rgba(0, 156, 222, 0.08);
    backdrop-filter: blur(25px);
}

.home-hero-container.test-one {
    background: url(../img/header-bg-eight.jpg) no-repeat top right #fff !important;
}

.home-hero-container.test-two {
    background: url(../img/header-bg-nine.jpg) no-repeat top right #fff !important;
}

.home-hero-container.test-three {
    background: url(../img/header-bg-ten.jpg) no-repeat top right #fff !important;
}

.home-hero-container.test-four {
    background: url(../img/header-bg-eleven.jpg) no-repeat top right #fff !important;
}

.home-title {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    z-index: 2;
}

.home-title h1 {
    font-family: var(--font-family);
    color: var(--gb-dark-blue-text);
    font-size: 60px;
    line-height: 62px;
    font-weight: 900;
    max-width: 800px;
}

.home-title p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 133%;
    color: rgba(15, 17, 18, 0.75);
    max-width: 610px;
    margin-top: 24px;
}

.home-title-img {
    display: flex;
    width: 50%;
    background: url(../img/careers-hero-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.home-title-img img {
    display: block;
    width: 100%;
}

.home-title-buttons {
    display: flex;
    gap: 16px;
    margin-top: 18px;
}

.home-vid-flex {
    display: flex;
    flex-direction: row;
    padding: 0px;
    background: url(../img/home-video.jpg) no-repeat center left;
    background-size: contain;
    min-height: 540px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.home-vid-wrap {
    background: #fff;
    padding: 80px 0px;
    position: relative;
}

.home-vid-wrapper {
    width: 1480px;
    box-sizing: border-box;
    background: #FFFFFF;    
    border: 1px solid #e4f1fb;
    box-shadow: 0px 0px 28px rgba(0, 156, 222, 0.08), inset 0px 0px 0px 3px #FFFFFF;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 60px;
    position: relative;
}

.home-vid-container {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    border-radius: 6px;
}

/* testing */

.home-vid {
    position: relative;
    display: flex;
    width: 50%;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.home-vid-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container properly */
    z-index: 1;
    opacity: 1; /* Start fully visible */
    transition: opacity 0.5s ease-in-out; /* Smooth fade-out */
    max-width: 100%;
    /* height: auto; */
    border-radius: 6px;
}

.home-vid-thumbnail.hidden {
    opacity: 0; /* Hide the thumbnail when playing the video */
}

.home-vid iframe {
    aspect-ratio: 16 / 9; /* Maintain a 16:9 ratio */
    width: 100%;
    height: 100%;
    border: none;
    opacity: 0; /* Start hidden */
    transition: opacity 0.5s ease; /* Fade-in effect */
    border-radius: 6px;
}

.home-vid iframe.visible {
    opacity: 1; /* Make visible after loaded */
}

.loading-placeholder {
    display: none; /* Hide spinner initially */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #FD6A3C;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-placeholder.active {
    display: block; /* Show spinner when active */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* end testing */

.home-vid-quote {
    display: flex;
    flex-direction: column;
    position: relative;
}

.home-vid-quote p {
    max-width: 920px;
    width: 100%;
    margin: 0px auto;
    font-size: 28px;
    line-height: 34px;
    font-family: var(--font-family);
    color: var(--gb-dark-blue-text); 
    padding: 0px;
    margin-bottom: 20px;
}

.home-vid-quote ul {
    list-style: none;
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
    margin: 0px auto;
    padding: 0px;
}

.home-vid-quote ul li {
    font-size: 18px;
    color: var(--gb-dark-grey-text);
    line-height: 24px;    
    padding: 0px;
    margin: 0px;
}

.home-vid-quote ul li img {
    margin-right: 14px;
    width: 48px;
}

.home-vid-quote ul li i {
    display: block;
    color: #4D4F50;
    font-size: 16px;
}

.home-vid-quote-icon {
    position: absolute;
    top: -108px;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    width: 96px;
}


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

.bottom-sixty {
    margin-bottom: 60px;
}

.home-hero-gradient {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 50%, rgba(253, 246, 236, 0) 100%);
    box-sizing: border-box;
    display: none;
    border-radius: 6px;
    z-index: 1;
}

@media only screen and (max-width: 1540px) {
    .home-hero-container {
        width: auto;
        max-width: none;
        margin-right: 60px;
        margin-left: 60px;
    }
}

@media only screen and (max-width: 1320px) {
    .home-hero-container {
        padding: 60px;
        background-position: 60% 100%;
    }
}

@media only screen and (max-width: 1024px) {
    .home-title h1 {
        font-size: 40px;
        line-height: 100%;
        width: 80%;
    }
    .home-title p {
        font-size: 18px;
        line-height: 26px;
        width: 80%;
    }
}

@media only screen and (max-width: 834px) {
    .home-hero-container {
        margin-left: var(--mobile-viewport-spacing);
        margin-right: var(--mobile-viewport-spacing);
        padding: 45px 25px;
    }
    .home-title-buttons {
        flex-direction: column;
    }
    .home-title-buttons .orange-button {
        margin-bottom: 0px;
    }
    .home-title-buttons .white-button {
        margin-top: 0px;
    }
}

@media only screen and (max-width: 576px) {
    .home-hero-wrapper {
        padding: 10px 0px 00px 0px;
    }
    .home-hero-container {
        background-position: 64% 0%;
        height: auto;
    }
    .home-hero-gradient {
        display: block;
    }
    .home-title h1,
    .home-title-buttons,
    .home-title-buttons .white-button {
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .home-title p {
        margin-top: 10px;
        margin-bottom: 16px;
    }
    .home-title-buttons .orange-button {
        margin-top: 0px;
    }
}

/* ==========================================================================
   Home Toolkit Section
   ========================================================================== */
.home-toolkit {
    background: #FFFFFF;
    padding: 80px 0px;
    position: relative;
}

.home-toolkit-wrapper {
    width: var(--1400);
    box-sizing: border-box;
    background: #FFFFFF;
    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 #FFFFFF;
    backdrop-filter: blur(25px);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    padding: 1px;
}

.home-toolkit-container {
    display: flex;
    flex-direction: row;
    position: relative;
    background: linear-gradient(271deg, #012132 55%, #002738 100%);
    width: 100%;
    border-radius: 6px;
    padding: 0px;
    align-items: center;
}

.home-toolkit-container .info h2 {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 34px;
    color: #fff;
    display: flex;
    justify-content: center;
    margin: 0px auto;
    line-height: 46px;
}

.home-toolkit-container .info p {
    font-size: 18px;
    color: #d9edf7;
    line-height: 24px;
    margin: 0px auto;
    padding: 0px;
    margin-top: 14px;
    margin-bottom: 14px;
    max-width: 840px;
}

.home-toolkit-container .info ul li {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #d9edf7;
    border-bottom: 1px dotted #606060;
    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;
}

.comp-test {
    position: absolute;
    bottom: 0px;
    right: -1px;
}

.home-toolkit-container .info {
    width: 47%;
    padding: 60px;
}

/* ==========================================================================
   Home Research Section
   ========================================================================== */
.home-research {
    background: #FFFFFF;
    padding: 80px 0px;
    position: relative;
}

.home-research-wrapper {
    width: 1480px;
    box-sizing: border-box;
    background: #FFFFFF;
    border: 1px solid #e4f1fb;
    box-shadow: 0px 0px 28px rgba(0, 156, 222, 0.08), inset 0px 0px 0px 3px #FFFFFF;
    backdrop-filter: blur(25px);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.home-research-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    position: relative;
    width: 100%;
    border-radius: 6px;
    padding: 0px;
}

.home-research-container .info-img {
    background: url(../img/home-research.jpg) no-repeat center right;
    background-size: cover;
    display: flex;
    align-items: stretch;
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
}

.home-research-container .info-img-two {
    background: url(../img/home-research-2.jpg) no-repeat center right;
    background-size: cover;
    display: flex;
    align-items: stretch;
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
    width: 50%;
}

.home-research-container .info-img-three {
    background: url(../img/home-research-3.jpg) no-repeat center right;
    background-size: cover;
    display: flex;
    align-items: stretch;
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
    width: 50%;
}

.home-research-container .info-img-four {
    background: url(../img/home-research-4.jpg) no-repeat center right;
    background-size: cover;
    display: flex;
    align-items: stretch;
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
    width: 50%;
}

.home-research-container .info-img-five {
    background: url(../img/home-research-5.jpg) no-repeat center right;
    background-size: cover;
    display: flex;
    align-items: stretch;
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
    width: 50%;
}

.home-research-img,
.home-whitepaper-img,
.home-video-img {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.home-research-img,
.home-whitepaper-img,
.home-casestudy-img,
.home-video-img {
    max-width: 756px;
}

@media only screen and (max-width: 1540px) {
    .home-research-wrapper {
        width: auto;
        max-width: none;
        margin-right: 60px;
        margin-left: 60px;
    }
}

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

/* ==========================================================================
   Home Whitepaper Section
   ========================================================================== */
.home-whitepaper {
    background: #FFFFFF;
    padding: 80px 0px;
    position: relative;
}

.home-whitepaper-wrapper {
    width: 1480px;
    box-sizing: border-box;
    background: #FFFFFF;
    border: 1px solid #e4f1fb;
    box-shadow: 0px 0px 28px rgba(0, 156, 222, 0.08);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.home-whitepaper-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    position: relative;
    width: 100%;
    border-radius: 6px;
    padding: 0px;
}

.home-whitepaper-container .info-img {
    background: url(../img/home-whitepaper.jpg) no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: stretch;
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
}

/* ==========================================================================
   Home Case Studies Section
   ========================================================================== */
.home-case-studies {
    background: #FFFFFF;
    padding: 0px;
    position: relative;
}

.home-case-studies-wrapper {
    width: 1480px;
    box-sizing: border-box;
    border: 1px solid #e4f1fb;
    box-shadow: 0px 0px 28px rgba(0, 156, 222, 0.08);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    background: url(../img/home-casestudy.jpg) top right no-repeat;
    background-size: 69% 100%;
    background-color: #FFFFFF;
}

.home-case-studies-wrapper.test-one {
    background: url(../img/home-casestudy-2.jpg) top right no-repeat !important;
    background-size: contain;
    background-color: #FFFFFF;
}

.home-case-studies-wrapper.test-two {
    background: url(../img/home-casestudy-3.jpg) top right no-repeat !important;
    background-size: contain;
    background-color: #FFFFFF;
}

.testimonies-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #ffffff5e;
    padding-top: 40px;
    align-items: flex-start;
}

.testimonies-container h2 {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 26px;
    color: var(--gb-dark-blue-text);
    display: flex;
    justify-content: flex-start;
    text-align: center;
    margin: 0px;
    margin-left: 100px;
}

.testimonies-container p {
    font-size: 18px;
    color: var(--gb-dark-grey-text);
    line-height: 24px;
    padding: 0px;
    margin: 10px 0px;
    max-width: 840px;
    margin-left: 100px;
}

.home-case-studies-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    width: 100%;
    border-radius: 6px;
    padding: 0px;
}

.home-vid-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    padding: 60px 100px;
}

.home-research-container .info,
.home-whitepaper-container .info,
.home-case-studies-container .info {
    width: 50%;
    padding: 60px 100px;
}

.home-case-studies-container .info {
    padding-bottom: 30px;
}

.home-toolkit-container .info-img,
.home-research-container .info-img,
.home-whitepaper-container .info-img,
.home-case-studies-container .info-img {
    width: 50%;
}

.home-research-container .info h2,
.home-whitepaper-container .info h2,
.home-case-studies-container .info h2,
.home-vid-info h2 {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 34px;
    color: var(--gb-dark-blue-text);
    display: flex;
    justify-content: center;
    margin: 0px auto;
    line-height: 44px;
    text-align: left;
}

.home-research-container .info p,
.home-whitepaper-container .info p,
.home-case-studies-container .info p,
.home-vid-info p {
    font-size: 18px;
    color: var(--gb-dark-grey-text);
    line-height: 24px;
    margin: 0px auto;
    padding: 0px;
    margin-top: 14px;
    margin-bottom: 14px;
    max-width: 840px;
}

.home-toolkit-container .info ul,
.home-research-container .info ul,
.home-whitepaper-container .info ul,
.home-case-studies-container .info ul {
    margin: 0px;
    margin-bottom: 10px;
    padding: 0px;
    box-sizing: border-box;
    list-style: none;
}

.home-research-container .info ul li,
.home-whitepaper-container .info ul li,
.home-case-studies-container .info 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;
}

.home-toolkit-container .info ul li:last-child,
.home-research-container .info ul li:last-child,
.home-whitepaper-container .info ul li:last-child,
.home-case-studies-container .info ul li:last-child {
    border-bottom: 0px;
}


.home-vid-info h2 {
    width: 84%;
    justify-content: flex-start;
    margin-left: 0px;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1280px;
    overflow: hidden;
    margin: auto;
    padding-top: 30px;
    padding-bottom: 60px;
}

.carousel-card-msg {
    font-size: 16px;
    line-height: 26px;
    color: var(--gb-dark-grey-text);
    font-weight: bold;
    margin: 30px;
    margin-top: 0px;
    padding: 0px;
    display: flex;
    height: 100%;
    align-items: flex-start;
    text-align: left;
}

.carousel-card-info {
    width: 100%;
    background-color: #fff;
    border-top: 0px;
    position: relative;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.carousel-card {
    flex-direction: column-reverse;
}

.carousel-container .icon-quote {
    position: absolute;
    display: flex;
    left: 0px;
    right: 0px;
    top: -6px;
    z-index: 99;
    margin: 0px auto;
    width: 74px;
}

.carousel-card-info ul {
    margin-bottom: 10px;
}

.cta-one {
    max-width: 1480px;
    position: relative;
    border: 1px solid #e4f1fb;
    background: url(../img/home-quote-bg.jpg) top right no-repeat #F1F8F3;
    background-size: contain;
    padding: 60px 100px;
}

.cta-one .message {
    width: 50%;
    text-align: left;
    margin: 0px;
    z-index: 2;
}

.cta-one .message .orange-button {
    justify-content: flex-start;
    margin-bottom: 0px;
}

.cta-one-wrapper {
    padding: 0px;
}

.carousel-card-info ul li img {
    border: 1px solid #c3d9e9;
}

.cta-one .message p {
    font-size: 22px; 
    line-height: 32px;
}

.white-gradient-rl {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%);
    z-index: 1;
    display: none;
}

.green-gradient-lr {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgba(240,248,243,1) 50%, rgba(240,248,243,0) 100%);
    z-index: 1;
    display: none;
}

@media only screen and (max-width: 1540px) {
    .home-case-studies-wrapper,
    .home-vid-wrapper,
    .cta-one,
    .home-whitepaper-wrapper {
        width: auto;
        max-width: none;
        margin-right: 60px;
        margin-left: 60px;
    }
    .carousel-container {
        padding-right: 25px;
        padding-left: 25px;
    }
    .home-vid-info h2 {
        width: 100%;
    }
}

@media only screen and (max-width: 1320px) {
    .home-research-container .info, 
    .home-whitepaper-container .info, 
    .home-case-studies-container .info,
    .home-vid-info,
    .cta-one {
        padding: 60px;
    }
    .home-research,
    .home-whitepaper {
        padding: 60px 0px;
    }
    .testimonies-container h2 {
        margin-left: 60px;
    }
    .home-vid-flex {
        background-position: -8%;
    }
    .carousel-track {
        column-gap: 25px;
        justify-content: center;
    }
    .home-vid-wrap {
        padding: 60px 0px;
    }
}

@media only screen and (max-width: 1150px) {
    .cta-one {
        background-size: cover;
    }
}

@media only screen and (max-width: 1024px) {
    .home-research-container .info h2, 
    .home-whitepaper-container .info h2, 
    .home-case-studies-container .info h2, 
    .home-vid-info h2 {
        font-size: 26px;
        line-height: 115%;
        justify-content: flex-start;
    }
    .home-research-container .info p, 
    .home-whitepaper-container .info p, 
    .home-case-studies-container .info p, 
    .home-vid-info p {
        line-height: 150%;
    }
    .carousel-track {
        gap: 16px;
        flex-direction: column;
    }
    .carousel-card {
        max-width: none;
        width: 100%;
    }
    .home-vid-flex {
        background-size: cover;
    }
    .cta-one .message h1 {
        font-size: 40px;
        line-height: 100%;
    }
    .cta-one .message p {
        font-size: 18px;
        line-height: 26px;
    }
    .home-vid-info {
        z-index: 2;
    }
    .white-gradient-rl,
    .green-gradient-lr {
        display: block;
    }
    .home-whitepaper-container .info-img {
        background: url(../img/home-whitepaper-md.jpg) no-repeat center center;
        background-size: cover;
    }
    .home-case-studies-wrapper {
        background-size: 80% 100%;
    }
}

@media only screen and (max-width: 834px) {
    .home-research,
    .home-vid-wrap,
    .home-whitepaper {
        padding-top: var(--mobile-viewport-spacing);
        padding-bottom: var(--mobile-viewport-spacing);
    }
    .home-research-container {
        flex-direction: column-reverse;
    }
    .home-research-container .info-img {
        min-height: 263px;
        width: 100%;
        background-size: 77%;
        background-position: center left;
        border-bottom-left-radius: 0px;
    }
    .home-research-container .white-button {
        margin-bottom: 0px;
    }
    .home-research-container .info, 
    .home-whitepaper-container .info, 
    .home-case-studies-container .info,
    .home-vid-info,
    .cta-one {
        padding: 25px;
    }
    .home-research-container .info, 
    .home-whitepaper-container .info, 
    .home-case-studies-container .info,
    .home-vid-info,
    .cta-one .message {
        width: 100%;
    }
    .home-case-studies-wrapper {
        background-size: 100% 263px;
        padding-top: 263px;
        margin-right: var(--mobile-viewport-spacing);
        margin-left: var(--mobile-viewport-spacing);
    }
    .home-case-studies-container,
    .home-whitepaper-container {
        flex-direction: column-reverse;
    }
    .carousel-container {
        padding-right: 16px;
        padding-left: 16px;
        padding-top: 25px;
        padding-bottom: 16px;
    }
    .testimonies-container h2 {
        margin-left: 25px;
        text-align: left;
    }
    .testimonies-container {
        padding-top: 0px;
    }
    .home-vid-wrapper,
    .cta-one,
    .home-whitepaper-wrapper {
        margin-right: var(--mobile-viewport-spacing);
        margin-left: var(--mobile-viewport-spacing);
    }
    .home-vid-flex {
        flex-direction: column;
        background-size: 54% 263px;
        background-position: top left;
        min-height: auto;
    }
    .home-vid {
        min-height: 263px;
        background-size: 52% 130%;
        background-position: center left;
        width: 100%;
        border-bottom-left-radius: 0px;
    }
    .home-vid-info .white-button,
    .home-whitepaper-container .white-button {
        margin-bottom: 0px;
    }
    .cta-one {
        background-position: top left;
        background-size: 100% 263px;
    }
    .cta-one .message {
        margin-top: 263px;
    }
    .home-whitepaper-container .info-img {
        min-height: 263px;
        width: 100%;
        background-size: 77%;
        background-position: center left;
        border-bottom-left-radius: 0px;
    }
}

@media only screen and (max-width: 834px) {
    .home-vid-flex {
        background: url(../img/home-video-mobile.jpg) no-repeat top center;
        border-top-right-radius: 6px;
        background-size: 100% 263px;
    }
    .home-research-container .info-img {
        background: url(../img/home-research-mobile.jpg) no-repeat center center;
        border-top-right-radius: 6px;
        background-size: 100% 263px;
    }
    .home-case-studies-wrapper {
        background: url(../img/home-casestudy-mobile.jpg) no-repeat top center;
        background-size: 100% 263px;
    }
    .cta-one {
        background: url(../img/home-quote-bg-mobile.jpg) top right no-repeat #F1F8F3;
        background-size: 100% 263px;
    }
    .home-whitepaper-container .info-img {
        background: url(../img/home-whitepaper-mobile.jpg) no-repeat top left;
        background-size: 100% 263px;
    }
    .white-gradient-rl,
    .green-gradient-lr {
        display: none;
    }
}

@media only screen and (max-width: 576px) {
    .home-vid-flex {
        background-size: 100% 138px;
    }
    .home-research-container .info-img {
        background-size: 100% 138px;
    }
    .home-case-studies-wrapper {
        background-size: 100% 138px;
    }
    .cta-one {
        background-size: 100% 138px;
    }
    .home-whitepaper-container .info-img {
        background-size: 100% 138px;
    }
    .cta-one .message h1 {
        font-size: 26px;
        line-height: 115%;
    }
    .home-research-container .info-img,
    .home-vid,
    .home-whitepaper-container .info-img {
        min-height: 138px;
    }
    .home-case-studies-wrapper {
        padding-top: 138px;
    }
    .cta-one .message {
        margin-top: 138px;
    }
}