/* === GENERAL STYLES === */

body, html {
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #13181a;
}

b, strong {
    font-weight: 600;
}

a {
    text-decoration: none;
}

.svg-convert.logo:hover .cls-1 {
    fill: #FFF;
    fill-rule: evenodd;
}

.svg-convert.showrunner-logo:hover g {
    fill: #22b67e;
    fill-rule: evenodd;
}

:root {
    --verve-green: #00ba7e;
}

.single-content ul li {
    list-style: disc;
}

.single-content li::marker {
    color: #1db47d !important;
}

svg .cls-1 {
    fill: var(--verve-green);
}

svg .st0 {
    fill: var(--verve-green);
}

::selection {
    background: #22b67e !important;
    color: #024751;
}

/* === CONTAINER EDITS === */

@media (min-width: 1400px) {
    .wide.container, .wide.container-lg, .wide.container-md, .wide.container-sm, .wide.container-xl, .wide.container-xxl {
        max-width: 90%;
    }
}

@media (min-width: 1200px) {
    .wide.container, .wide.container-lg, .wide.container-md, .wide.container-sm, .wide.container-xl {
        max-width: 90%;
    }
}

/* === NAVBAR === */

.navbar-nav {
    flex-grow: 1;
}
.navbar-right-logo {
    margin-right: 10px;
}

.navbar {
    position: fixed;
    width: 100%;
    /*background: rgb(0, 0, 0) !important;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5038209033613446) 0%, rgba(0, 0, 0, 0) 100%) !important;
    background-color: transparent !important;*/
    padding: 20px 30px;
    z-index: 99;
    transition-duration: 0.5s;
}

.navbar.sticky {
    background-color: #024751 !important;
    transition-duration: 0.5s;
    background: #13181a !important;
}

.navbar .logo {
    width: 120px;
}

.nav-link {
    color: #FFF;
    padding: 8px 20px !important;    
}

.nav-link:hover {
    color: var(--verve-green);
}

.mobile-nav, .navbar-toggler {
    display: none;
}

.nav-item .showrunner-logo {
    height: 18px;
    width: auto;
    max-width: 175px;
}

.navbar-expand-lg .navbar-nav {
    justify-content: center;
    align-items: center;
}

.navbar:hover {
    background: #13181a !important;
    transition-duration: 0.5s;            
}

.navbar {
    transition-duration: 0.5s;
    padding-top: 0;
    padding-bottom: 0;
}        

.nav-item {
    position: relative;
    z-index: 999999999999;
    padding-top: 20px;
    padding-bottom: 20px;
}

.nav-item .nav-dropdown {
    display: none;
    opacity: 1;
    position: absolute;
    background: #f7f6f4;
    width: 45vw;
    padding: 30px;
    border-radius: 25px;
    border-bottom-right-radius: 25px;
    left: 0;
    right: 0;
    margin: auto;
    color: #13181a;
    border: #f7f6f4 1px solid;
    border-top: 0;
    top: 85px;
    z-index: 999999999999;
    transition-duration: 0.5s;
}

.nav-item .nav-dropdown:before {
    content: '';
    border-bottom: 15px solid #f7f6f4;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    position: absolute;
    top: -15px;
}

.nav-item .nav-dropdown ul li:first-child .nav-label {
    margin-top: -3px;
}

.nav-item .nav-dropdown ul li:last-child {
    margin-bottom: 0;
}

.nav-item:hover {
    cursor: pointer;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    top: 75px;
    height: auto;
    transition-duration: 0.5s;
    display: flex;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.nav-item .nav-dropdown ul {
    padding: 0;
}

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

.nav-item .nav-dropdown .col-lg-6:nth-child(1) {
    border-right: 1px solid var(--verve-green);
    padding-right: 40px;
}

.nav-item .nav-dropdown .col-lg-6:nth-child(2) {
    padding-left: 40px;
}

.nav-item .nav-dropdown .nav-label {
    font-family: 'ivypresto-headline';
    font-size: 22px;
    position: relative;
    width: fit-content;
    line-height: 25px;
    margin-bottom: 4px;
}

.nav-item .nav-dropdown .nav-description {
    font-size: 14px;
    font-weight: 300;
}

.nav-dropdown li:hover {
    cursor: pointer;
}

.nav-dropdown li:hover .nav-label {
    color: var(--verve-green);
}

.nav-dropdown li .nav-label:after {
    opacity: 0;
    position: absolute !important;
    height: 18px;
    width: 18px;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center;
    top: 10px;
    right: -5px;
    transition-duration: 0.25s;
    content: "";
    background: url(/wp-content/themes/verveliveagency/assets/images/right-arrow.svg);
}

.nav-dropdown li:hover .nav-label:after {
    opacity: 1;
    height: 18px;
    width: 18px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    top: 7px;
    position: relative;
    right: -30px;
    transition-duration: 0.25s;
    content: "";
    background: url('/wp-content/themes/verveliveagency/assets/images/right-arrow.svg');
}

.nav-link i {
    margin-left: 5px; /* Adjust spacing */
    transform: rotate(0deg);
    transition-duration: 0.2s;
}

.nav-item:hover i {
    transform: rotate(180deg);
    transition-duration: 0.2s;
}

.nav-dropdown a {
    text-decoration: none;
    color: inherit;
}


/* == BUTTONS == */

.btn-primary {
    background: rgb(138,235,139);
    background: linear-gradient(56deg, rgba(138,235,139,1) 0%, rgba(96,201,192,1) 50%, rgba(92,197,199,1) 100%);    
    border: 0;
    border-radius: 50px;
    color: #024751;
    font-weight: 600;
    padding: 10px 40px;
    font-size: 18px;
    transition-duration: 0.5s;
    position: relative;
    width: 200px;
    overflow: hidden;
}

.btn-primary {
    transition: all 0.2s linear 0s;
}

.btn-primary:before {
    content: "";
    font-family: FontAwesome;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 30px;
    transition: all 0.2s linear 0s;
}

.btn-primary:hover {
    text-indent: -9999px;
    color: #024751;
}

.btn-primary:hover:before {
    top: 0;
    text-indent: 0;
}

.btn-secondary {
    border-radius: 500px;
    color: #024751;
    font-weight: 600;
    padding: 10px 40px;
    font-size: 18px;
    transition-duration: 0.5s;
    position: relative;
    width: 200px;
    overflow: hidden;
    background: transparent;
    border: 10px solid;
    border-image-slice: 1;
    border-width: 3px;
    border-image-source: linear-gradient(to left, #00C853, #B2FF59);
}

.btn-secondary {
    transition: all 0.2s linear 0s;
}

.btn-secondary:before {
    content: "";
    font-family: FontAwesome;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 30px;
    transition: all 0.2s linear 0s;
}

.btn-secondary:hover {
    text-indent: -9999px;
    color: #024751;
}

.btn-secondary:hover:before {
    top: 0;
    text-indent: 0;
}

.btn-nav {
    position: relative;
    padding: 10px 40px;
    color: #FFF;
    outline: none;
    background: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-nav {
    color: #13181a;
    background: linear-gradient(90deg, rgb(224, 251, 14) 0%, rgb(0, 187, 126) 89%) border-box;
    border-radius: 15px;    
}

.btn-nav:hover {
    color: #FFF;
    background: transparent;
    border-radius: 15px;    
}

.btn-nav:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    border: 2px solid transparent;
    background: linear-gradient(
            90deg,
            rgb(224, 251, 14) 0%,
            rgb(0, 187, 126) 89%
        ) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    transition: background-position 0.5s ease;
    background-size: 200%; /* Allows movement within a larger area */
    background-position: 0% 0%; /* Initial position */
}

.btn-nav.btn-light {
    color: #13181a;
}

.btn-nav.btn-blue {
    color: #13181a;
    border-radius: 15px;
    background: var(--verve-green);
    outline: 0;
}

.btn-nav.btn-blue:before {
    display: none;
}


.btn-nav.btn-blue:hover {
    color: #13181a;
    background: linear-gradient(90deg, rgb(224, 251, 14) 0%, rgb(0, 187, 126) 89%) border-box;
}

.btn-outline {
    position: relative;
    padding: 10px 40px;
    color: #FFF;
    outline: none;
    background: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: background-position 0.5s ease;
}

.btn-outline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    border: 2px solid transparent;
    background: linear-gradient(
            90deg,
            rgb(224, 251, 14) 0%,
            rgb(0, 187, 126) 89%
        ) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    transition: background-position 0.5s ease;
    background-size: 200%; /* Allows movement within a larger area */
    background-position: 0% 0%; /* Initial position */
}

.btn-outline:hover {
    color: #13181a;
    background: linear-gradient(90deg, rgb(224, 251, 14) 0%, rgb(0, 187, 126) 89%) border-box;
    border-radius: 15px;    
}

.btn-outline:hover::before {
    display: none;
}


/* == HOME HERO == */

.hero-home {
    position: relative;
    width: 100%;
    height: 100vh; /* Full height of the viewport */
    overflow: hidden; /* Ensure the video doesn't overflow the section */
}

.hero-home video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the video covers the entire section without stretching */
}

.scroll-down {
    width: 30px;
    position: absolute;
    bottom: 30px;
    rotate: 90deg;
    height: 28px;
    z-index: 98;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;        
    opacity: 1;
    animation: bubble-move 3s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

@keyframes bubble-move {
    0%, 100% {
        transform: translateX(-20px);
    }
    50% {
        transform: translateX(0px);
    }
}

.scroll-down img {
    width: 100%;        
}

.video-background {
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
}

@media (min-aspect-ratio: 16/9) {
    .video-background iframe {
        /* height = 100 * (9 / 16) = 56.25 */
        height: 56.25vw;
    }
}
@media (max-aspect-ratio: 16/9) {
    .video-background iframe {
        /* width = 100 / (9 / 16) = 177.777777 */
        width: 177.78vh;
    }
}    

/* === HOME BLOG === */

.full-width-news {
    width: 100%;
    padding: 20px 0 40px;    
}

img[data-emoji] {
	width: 30px;
}
	
.owl-dots {
    display: none;
}

.blog-home {
    background: #13181a;        
    position: relative;
    z-index: 9;
}

.blog-home .owl-carousel {
}        

.blog-home .item {
    background: #FFF;
}

.blog-tag, .blog-date {
    color: #969696;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    padding-bottom: 15px;        
}

.blog-date {
    color: var(--verve-green);        
}

.blog-title h3 {
    font-family: 'ivypresto-headline';
    font-size: 36px;  
    margin-bottom: 0;      
}

.blog-home-meta {
    padding: 40px 140px 40px 40px; 
    background: #FFF;  
    height: 300px;     
}

.owl-prev-btn, .owl-next-btn {
    height: 20px;
    padding: 0 !important;
    background: transparent !important;   
    position: relative;     
}

.owl-prev .owl-prev-btn {
    left: 0;
    transition-duration: 0.25s;
}

.owl-prev:hover .owl-prev-btn {
    left: -5px;
    transition-duration: 0.25s;
}

.owl-next .owl-next-btn {
    right: 0;
    transition-duration: 0.25s;
}

.owl-next:hover .owl-next-btn {
    right: -5px;
    transition-duration: 0.25s;
}

.owl-theme .owl-nav [class*=owl-] {
    background: transparent !important;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
}

.owl-prev-btn {
    rotate: 180deg;
}

.owl-theme .owl-nav {
    margin-top: 80px;
}    

.blog-title-block {
    margin-top: -360px;
}

.blog-top {
    height: 460px;
    width: 100%;
    background: #f7f6f4;
}

.blog-title-block h2 {
    font-family: 'ivypresto-headline';
    font-size: 68px;
    padding-bottom: 60px;        
}


/* == HOME PROJECT == */

.home-projects {
    padding: 120px 0;
    background: #13181a;
    position: relative;
}

.home-projects h2 {
    font-family: 'ivypresto-headline';
    font-size: 44px;
    padding-bottom: 60px;
    color: #FFF;
    /*padding-left: 40px;*/
}                

.single-project {
    color: #024751;
    width: 90%;
    margin: 0 auto 60px;
    overflow: hidden;
    transition-duration: 0.5s;
    position: relative;
}

.single-project.wide-project {
    width: 95%;
}

.single-project.wide-project .single-project-img {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 9 / 16 = 0.5625, or 56.25% */
    position: relative;
}

.single-project-title {
    font-family: ivypresto-headline;
    line-height: 26px;
    font-size: 38px;
    font-weight: 400;
    color: #FFF;
}

.single-project-tag {
    color: var(--verve-green);
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
    padding: 20px 0 10px;
    letter-spacing: 1px;
}

.single-project .single-project-tag, .single-project .single-project-title {
    transition-duration: 0.5s;
}

.single-project:hover .single-project-title {
    transition-duration: 0.5s;
    cursor: pointer;
}

.single-project-img {
    height: 432px;
    position: relative;
    cursor: pointer;
    opacity: 1;
    transition-duration: 0.5s;
}


.single-project {
    position: relative;
    overflow: hidden; 
    transition-duration: 0.5s;
}

.single-project-img {
    position: relative;
    overflow: hidden;
    transition: opacity 0.5s ease;
}

.vimeo-video {
    position: absolute;
    top: -25%;
    left: -25%;
    right: 0;
    bottom: 0;
    width: 150%;
    height: 150%;
    transition: opacity 0.5s ease; 
    opacity: 0;
}

.single-project:hover .single-project-img {
    background-image: none;
}

.single-project:hover .vimeo-video {
    opacity: 1;
}

.single-project-link {
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-size: 16px;
    padding: 40px 0 0;                    
    position: relative;
    cursor: pointer;
}

.single-project-link a {
    color: #FFF;
}

.single-project-link .arrow {
    position: absolute;
    height: 15px;
    bottom: 5px;
    padding-left: 30px;
    transition-duration: 0.25s;
}

.single-project:hover .arrow {
    padding-left: 50px;
    transition-duration: 0.75s;
}

.expand-project {
    max-width: 90%;
    transition: max-width 0s; /* No transition for max-width handled by JS */
}

.expand-project .col-lg-12 {
    padding: 0; /* Start with no padding */
    transition: padding 0s; /* No transition for padding */
}

.expand-project .single-project.wide-project {
    width: 95%; /* Initial width */
    transition: width 0s; /* No transition for width handled by JS */
}

.expanded-project .single-project-meta {
    width: 90% !important;
    margin: -50px auto 60px !important;            
}

/* === CASE STUDY SINGLE === */

.case_study_img_two {
    margin-bottom: 60px;
}

.case_study_hero {
    height: 90vh;
    padding: 120px 0;
}

.case_study_hero h1 {
    color: #FFF;
    font-family: 'ivypresto-headline';
    font-size: 72px;
}

.case_study_body {
    padding: 120px 0 200px;
    background: #f7f6f4;
    color: #000000;
    text-align: center;
}

.case_study_body .case_study_img_full {
    margin-top: 120px;
    margin-bottom: 60px;
}

.case_study_body .case_study_img_full:nth-child(1) {
    margin-top: 0;
}

.case_study_body .case_study_img_full img, .case_study_body .case_study_img_two img {
    width: 100%;
}

.case_study_img_two {
    margin-top: 120px;
}

.case_study_body h2 {
    font-family: 'ivypresto-headline';
    font-size: 68px;
    margin-bottom: 30px;
}

.case_study_sub {
    width: 65%;
    margin: 0 auto;
    font-size: 32px;
    line-height: 46px;
    font-weight: 300;
    text-align: center;
}

.two-then-one {
    margin-top: 20px;
}

.case_study_sub_2 {
    width: 50%;
    text-align: right;
    margin-left: auto;
    padding: 60px 30px 60px 0;
    font-size: 32px;
    line-height: 46px;
    font-weight: 300;
}

h2.the-task {
    position: relative;
    width: fit-content;
    margin: 0 auto 30px;
}

h2.the-task video {
    position: absolute;
    width: 130%;
    height: 130%;
    left: 115px;
    top: -10px;        
}

h2.the-solution {
    position: relative;
    width: fit-content;
    margin: 0 auto 60px;
}

h2.the-solution video {
    position: absolute;
    width: 130%;
    height: 130%;
    left: -45px;
    top: 40px;      
}

.case_study_stats {
    background: #111619;
    padding: 80px 0;
    color: #FFF;
    font-family: 'ivypresto-headline';
    text-align: center;
    font-size: 60px;
}

.case_study_stats .stat_sub {
    font-family: 'Poppins';
    font-size: 18px;
}

.case_study_hero {
    position: relative;
}

.case_study_hero .header-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(17,22,25);
    background: linear-gradient(180deg, rgba(17,22,25,1) 0%, rgba(17,22,25,0) 50%);
    top: 0;
    left: 0;
}

/* == WHAT WE DO HEADER == */

.sub-page-header {
    padding: 120px 0;
    background: #13181a;
    color: #FFF;
    position: relative;        
}

.sub-page-header h2 {
    position: relative;
    font-size: 5rem;
    line-height: 5rem;
    z-index: 3;
    width: fit-content;
    font-family: 'ivypresto-headline';
    font-weight: 500;
}

.sub-page-header h2 video {
    position: absolute;
    width: 100%;
    height: 100%;
    left: -60%;
    bottom: -60%;
    z-index: -1;
}

.about-text {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--verve-green);
    width: 70%;
    height: 100%;
}

.about-row:last-child .about-text {
    border-bottom: none;
}

.about-row {
    margin-bottom: 60px;
}

.about-sub-header {
    padding-bottom: 0;
}

.about-text h3 {
    font-size: 38px;
    font-family: 'ivypresto-headline';
    width: 100%;
    line-height: 46px;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text p {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.about-text:nth-child(2) {
    border: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* === HOME BCORP === */

.home-bcorp {
    padding: 0 0 120px;
    background: #f7f6f4;
    position: relative;
    z-index: 9;
}

.home-bcorp-img, .about-page-video {
    text-align: center;
    margin-top: -300px;
}

.home-bcorp-img img {
    width: 100%;        
}

.bcorp-top {
    height: 360px;
    width: 100%;
    background: #13181a;
}

.home-bcorp-title {
    font-size: 88px;
    font-family: ivypresto-headline;
    line-height: 96px;
    padding: 60px 0 30px;
}

.home-bcorp-logo {
    margin-top: 30px;
}

.home-bcorp-logo img {
    height: 170px;
}


/* === TEAM PAGE === */

.single-team .team-name {
    color: #FFF;
    font-family: 'ivypresto-headline';
    font-size: 26px;
    line-height: 30px;
    padding: 10px 0;        
}

.single-team .team-name .team-role {
    font-weight: 400;
    font-size: 14px;
    font-family: 'Poppins';
    line-height: 20px;
    margin-top: 10px;
}

.single-team .team-location {
    color: var(--verve-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins';
    font-size: 14px;    
}

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

.single-team {
    margin-bottom: 60px;
}

.single-team:hover .team-name {
    color: var(--verve-green);
}

.single-team:hover .team-role {
    color: #FFF;
}

.team-img {
    position: relative;
}

.team-img .team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #22b67e;
    opacity: 0;
}

.single-team:hover .team-overlay {
    opacity: 0;
    z-index: 2;
    mix-blend-mode: color;
}

.single-team:hover img {
    border-color: #22b67e;
}

.single-team:hover img {
}

.team-header {
    padding: 200px 0;
}

.title-after-large {
    position: relative;
}

.title-after-large:after {
    position: absolute;
    content: "";
    background: url(/wp-content/themes/verveliveagency/assets/images/title-after-large.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 148%;
    right: -98%;
    bottom: 0;
    z-index: 2;
}

.team-header h2 {
    color: #FFF;
    text-align: center;
    font-family: 'ivypresto-headline';
    font-size: 88px;
    line-height: 88px;        
}

.sub-header {
    font-size: 18px;
    font-family: 'Poppins';
    line-height: 24px;
    margin-top: 20px;
    font-weight: 400;
}

.meet-team {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

h2.meet-team video {
    position: absolute;
    width: 150%;
    height: 150%;
    left: 260px;
    top: -50px;
    z-index: -1;     
}

.single-team .team-img {
    overflow: hidden;
}

.single-team .team-img img {
    transition: transform 0.3s ease; /* Smooth transition for scaling */
}

.single-team:hover .team-img img {
    transform: scale(1.1);
    transition: transform 0.3s ease; /* Smooth transition for scaling */
}

/* === THANK YOU PAGE === */

.thank-you-body {
    padding: 120px 0;
    background: #f7f6f4;
    font-size: 32px;
    line-height: 46px;
    font-weight: 300;
}

.resp-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}

.resp-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.thank-you-body .resp-container {
    margin: 80px 0;
}

.thank-you-body a {
    color: var(--verve-green);
    text-decoration: none;
}

.thank-you-body a:hover {
    text-decoration: underline;
}


/* === CONTACT PAGE === */

.contact-form {
    padding: 120px 0;
    background: #f7f6f4;
}

.title-after-large {
    position: relative;
}

.title-after-large:after {
    position: absolute;
    content: "";
    background: url(/wp-content/themes/verveliveagency/assets/images/title-after-large.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 148%;
    right: -90%;
    bottom: 0;
    z-index: 2;
}

.contact-header {
    padding: 120px 0;
}

.form-container {
    text-align: center !important;
    margin-bottom: 120px !important;
}

.form-container label {
    color: #000 !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    display: block !important;   
    text-align: left !important;     
}

.form-container input, .form-container textarea, .form-container select {
    background: transparent !important;
    border: 1px solid #c9c9c9 !important;
    border-radius: 10px !important;
    width: 100% !important;
    padding: 11.5px 20px !important;
    color: #000 !important;
    margin-top: 5px !important;
    margin-bottom: 20px !important;
    outline: 0 !important; 
    height: initial !important;
    line-height: initial !important;
    box-shadow: initial !important;
    text-align: left !important;
    display: block !important; 
    resize: none !important;
}

.form-container .gform-theme--foundation .gform_fields {
    display: block !important;
}

.form-container textarea {
    height: 120px !important;
}

.form-container input:focus, .form-container textarea:focus, .form-container select:focus {
    border-color: #56c0a3 !important;
}

.form-container input[type="submit"] {
    border: 0 !important;
    color: #000000 !important;
    font-weight: 400 !important;
    padding: 15px 70px !important;
    font-size: 16px !important;
    transition-duration: 0.5s !important;
    position: relative !important;
    margin: 20px auto 0 !important;
    border-radius: 15px !important;
    background: rgb(0,187,126) !important;
    background: linear-gradient(120deg, rgba(0,187,126,1) 0%, rgba(0,187,126,1) 100%) !important;
    width: fit-content !important;
}

.form-container input[type="submit"]:hover {
    background: linear-gradient(90deg, rgb(224, 251, 14) 0%, rgb(0, 187, 126) 89%) border-box !important;    
}

.form-container .gfield_required {
    color: #000 !important;
    margin-left: 2px !important; 
}

.form-container .gform_required_legend {
    display: none !important;
}

.contact-header-img {
    width: 100%;
} 

.contact-header .get-in-touch {
    width: 80%;
}

.contact-header p {
    font-size: 34px;
    color: #FFF;
    line-height: 42px;
    padding-top: 60px;        
}

.contact-footer {
    font-family: 'ivypresto-headline';
    color: #000000;
    font-size: 36pt;
}

.contact-footer i {
    background: #13181a;
    width: 60px;
    height: 60px;
    border-radius: 50px; 
    margin-top: 30px;                   
}

.contact-footer i:before {
    color: var(--verve-green);
    font-size: 34px;
}

.contact-footer i:hover {
    background: var(--verve-green);
    color: #13181a;
} 

.contact-footer i:hover:before {
    color: #FFF;
}

/* === SUSTAINABILITY === */

.csr-home-btn {
    margin-top: 80px;
}

.half-header {
    background: #f7f6f4;
    padding: 206px 0 120px;
    color: #111619;
}

.csr-header {
    max-width: 100%;
}

.half-header h1 {
    font-family: 'ivypresto-headline';
    font-size: 88px;
    line-height: 88px;
    margin-bottom: 30px;
}

.bcorp-logos {
    width: fit-content;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 30px;
}

.bcorp-logos img {
    height: 140px;
    margin-top: 30px;
    margin-bottom: 20px;
}
.csr-icons .bcorp-logos img {
    margin-bottom: 0px;  margin-top: 0px;
}
.csr-icons{margin-top: 30px;}
.our-accreditations {
    background: #f7f6f4;
    padding: 120px;
    color: #111619;
}

.our-accreditations h2, .csr-team-top h2 {
    font-family: 'ivypresto-headline';
    font-size: 42px;
    padding-bottom: 60px;
}

.our-accreditations h4 {
    font-family: 'ivypresto-headline';
    font-size: 22px;
}

.single-accreditation {
    margin-bottom: 40px;
}

.single-accreditation img {
    width: 100%;
    height: auto;
}

.single-accreditation svg {
    width: 80%;
    height: auto;
}

.owl-carousel .owl-item img {
    display: block;
}

.csr-meta {
    padding: 20px 20px 40px;
    background: #FFF;
}

.csr-name {
    font-family: 'ivypresto-headline';
    font-size: 26px;        
}

.csr-role {
    text-transform: uppercase;
    font-size: 14px;
    color: #888888;        
}

.csr-team-top {
    background: #f7f6f4;
    padding: 0 0 120px;
}

.csr-team-top .owl-counter {
    margin-top: 60px !important;
    color: #212529 !important;        
}

.csr-bcorp .bcorp-top {
    height: 300px;
    background: #f7f6f4;
}

.csr-bcorp {
    padding: 0;
    background: #f7f6f4;
}

.csr-partners-meta {
    padding: 40px 60px 60px 40px;
}

.csr-partners-meta h3 {
    font-family: 'ivypresto-headline';
    font-size: 38px;
    margin: 30px 0 50px;
}

.csr-partners-meta .csr-title p {}

.csr-partners-meta .csr-logo {
    width: fit-content;
    margin-top: 20px;
}

.csr-partners-meta .csr-logo img {
    height: 80px;
}

.csr-img div {
    background: url('/wp-content/themes/verveliveagency/assets/images/csr-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100%;
}

.charity-partners .csr-img {
    max-width: 100%;
    aspect-ratio: 395 / 518;
}

/* === FOOTER CTA === */

.cta-1 {
    padding: 200px 0;
    position: relative;
    background: #13181a !important;
}

.cta-1_line_1, .cta-1_line_2 {
    color: #ffffff;
    font-size: 88px;
    line-height: 96px;
    font-family: 'ivypresto-headline';
    font-weight: 500;
}

.cta-1_line_1 {
}

.cta-1_line_2 {
}

.cta-1_line_1 span, .cta-1_line_2 span {
    color: #22b67e;        
}

.cta .btn {
    margin-top: 60px;
    width: 230px;
}

.csr-header-text a {
    color: #00ba7e;
    text-decoration: underline;
}

.csr-header-text a:hover {
    text-decoration: none;
}

/* === NEWS & INSIGHTS === */

.news-carousel-img {
    max-width: 100%;
}

.blog-listing {
    padding: 120px 0;
    background: #f7f6f4;
}

.blog-listing .blog-listing-meta {
    padding-top: 45px;
    padding-bottom: 45px; 
    background: #FFF; 
}

.blog-listing-meta {
    padding-left: 40px;
    padding-right: 180px;
}

.blog-listing .singe-blog {
}

.blog-listing .singe-blog .col-lg-5, .blog-listing .singe-blog .col-lg-7 {
    padding: 0;        
}

.blog-listing .singe-blog .col-lg-7 {
    padding-right: 30px;
}

.blog-listing .single-project-link {
    color: #000;
}

.blog-listing .col-lg-6 {

}


/* === OUR WORK === */

.filter-button-group {
    text-align: center;
    margin-bottom: 60px;
}           

.filter-button-group .btn-nav {
    margin-left: 10px;
    margin-right: 10px;
}

.filter-button-group button {
	margin: 0 5px 10px 0;
}

/* == FOOTER == */

footer {
    background: rgba(19,24,26,0.8);
    padding: 80px 30px 40px;
    color: #FFF;
    position: relative;
}

footer h2 {
    font-family: ivypresto-headline;
    font-weight: 400;
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

footer:hover h2:after {
    height: 15px;
}

.footer-address {
    font-size: 16px;
    line-height: 26px;
}

footer a {
    color: #FFF;
    text-decoration: none;
    font-weight: 400;
}

footer a:hover {
    text-decoration: underline;
}

footer .footer-logo {
    height: 55px;
}

footer .footer-opus {
    height: 55px;
    margin-left: 25px;
    border-left: 1px solid;
    padding-left: 25px;
}

footer .footer-bcorp {
    height: 80px;
    margin-right: 25px;
    border-right: 1px solid;
    padding-right: 50px;
}

.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;            
}

.footer-links ul li {
    display: block;
    margin-right: 20px;
    font-size: 14px;
}

.footer-links a {
    font-weight: normal;
}

.footer-socials {
    margin-top: 10px;
}

.footer-socials i {
    font-size: 20px;
    margin-right: 20px;
    transition-duration: 0.5s;
    color: #FFF;
}

.footer-socials i:hover {
    color: var(--verve-green);
    transition-duration: 0.5s;
}

.footer-logos {
    margin-bottom: -5px;
}

.footer-logos img {
}

.footer-verve {
    position: absolute;
    width: 38%;
    top: -15%;
    left: 2%;    
}

.divider {
    height: 1px;
    background: #FFF;
    margin: 60px 10px;
    width: calc(100% - 20px);   
}

/* === TITLE HEADER === */

.title-header {
    margin-top: 84px;
    padding: 120px 0;
    color: #FFF;
    text-align: center;        
}

.title-header-text {}

.title-header-text h2 {
    font-family: 'ivypresto-headline';
    font-size: 88px;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    z-index: 1;
    padding-bottom: 20px;
}

.title-header-text.header-journey-1 h2:after {
    content: "";
    position: absolute;
    background: url(/wp-content/themes/verveliveagency/assets/images/journey-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 600px;
    height: 205px;
    left: -40%;
    right: 0;
    top: -40%;
    z-index: -1;
}

.title-header-text.header-journey-2 h2:after {
    content: "";
    position: absolute;
    background: url(/wp-content/themes/verveliveagency/assets/images/journey-2.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 400px;
    height: 164px;
    right: -35%;
    top: -50%;
    z-index: -1;
}

.title-header-text .sub-header {
    font-size: 22px;
    position: relative;
    z-index: 1;
}

/* === CAREERS === */

.roles-block {
    padding: 60px 0 120px;
}

.roles-block h3 {
    font-family: 'ivypresto-headline';
    font-size: 48px;
}

.roles-block button {
    margin-top: 60px;
}

.roles-block .col-lg-6:nth-child(1) {
    border-right: 1px solid #00e0b0;
}

.roles-block {
    padding: 120px 0;
    background: #f7f6f4;
}

.part-time-content {
    background: #f7f6f4;
    color: #111619;
    font-size: 18px;
    line-height: 28px;
    padding: 120px 0;
}

.part-time-content h2 {
    margin-top: 60px;
}

.ginput_container_fileupload input[type="file"] {
    margin-bottom: 0 !important;
}

.gfield_description {
    text-align: left !important;
    margin-top: 5px !important;
    margin-bottom: 15px !important;
}

legend.gfield_label {
    color: #000 !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    display: block !important;
    text-align: left !important;    
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: relative !important;
    left: -9999px !important;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative !important;
    padding-left: 28px !important;
    cursor: pointer !important;
    line-height: 20px !important;
    display: inline-block !important;
    color: #FFf !important;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 18px !important;
    height: 18px !important;
    border: 1px solid #000 !important;
    border-radius: 100% !important;
    background: #fff !important;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '' !important;
    width: 12px !important;
    height: 12px !important;
    background: var(--verve-green) !important;
    position: absolute !important;
    top: 3px !important;
    left: 3px !important;
    border-radius: 100% !important;
    -webkit-transition: all 0.2s ease !important;
    transition: all 0.2s ease !important;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0 !important;
    -webkit-transform: scale(0) !important;
    transform: scale(0) !important;
}
[type="radio"]:checked + label:after {
    opacity: 1 !important;
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
}

.gfield_radio .gchoice {
    display: inline-block !important;
    margin-right: 20px !important;
}

.gfield_radio .gfield-choice-input {
    height: 0 !important;
    width: 0 !important;
}

input[type=checkbox] {
    position: relative !important;
    border: 1px solid var(--verve-green) !important;
    border-radius: 0px !important;
    background: none !important;
    cursor: pointer !important;
    line-height: 0 !important;
    margin: 0 .6em 0 0 !important;
    outline: 0 !important;
    padding: 0 !important;
    vertical-align: text-top !important;
    height: 20px !important;
    width: 20px !important;
    -webkit-appearance: none !important;
    background: #FFF !important;
}

input[type=checkbox]:hover {
    opacity: 1 !important;
}

input[type=checkbox]:checked {
    background-color: var(--verve-green) !important;
    opacity: 1 !important;
}

input[type=checkbox]:before {
    content: '' !important;
    position: absolute !important;
    right: 50% !important;
    top: 50% !important;
    width: 6px !important;
    height: 12px !important;
    border: solid #FFF !important;
    border-width: 0 2px 2px 0 !important;
    margin: -1px -1px 0 -1px !important;
    transform: rotate(45deg) translate(-50%, -50%) !important;
    z-index: 2 !important;
}

.form-container {
    margin-top: 30px;
}

.form-container label {
    margin-left: 5px !important;
}

.gfield_checkbox .gchoice {
/*    display: inline-block !important;
    margin-right: 30px !important;*/
}

.gfield_choice_all_toggle {
    background: transparent !important;
    border: 1px solid #ababab !important;
    color: #696969 !important;
    font-weight: 300 !important;
    margin-bottom: 30px !important;
    font-size: 12px !important;
    padding: 0 30px !important;
    line-height: 0 !important;
    margin-top: 10px !important;
    outline: 0 !important;    
}

.part-time-content .form-container {
    margin-bottom: 0 !important;
}

.office-photos {
    background: #f7f6f4;
    color: #111619;
    font-size: 18px;
    line-height: 28px;
    padding: 0 0 120px;        
}

.office-photos .office-photo:nth-child(1) {
    margin-bottom: 25px;
}

.office-photos .office-photo img {
    width: 100%;
    height: auto;
}

.office-photo-3 {
    width: 80%;
    margin-left: auto;
}

.office-photo-4 {
    width: 75%;
}


/* ==== JOB OFFER ==== */

.job-hero {
    color: #FFF;
    font-size: 48px;
    font-weight: 500;
    line-height: 64px;
    margin-top: 10px;
    padding: 60px 0;
    position: relative;
}

.job-hero:after {
    content: url('/wp-content/themes/subsea/assets/images/job-icon.png');
    position: absolute;
    right: -20px;
    bottom: -20px;
}

.job-hero a {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.28px;
    padding: 6px 16px;
    border-radius: 99px;
    border: 1px solid #FFF;
    text-decoration: none;
}

.job-hero h1 {
    margin-top: 40px;
}

.job-details {
    background: #f7f6f4;
    color: #111619;
    font-size: 18px;
    line-height: 24px;
}

.job-details .left-job strong, .job-details .right-job h2 {
    font-size: 18px;
    font-weight: 600;
    line-height: 32px;
}

.job-details .right-job h2:nth-child(1) {
    margin-top: 0;
}

.job-details .right-job h2 {
    margin: 40px 0 20px;
}

.job-details {
    padding: 80px 0;
}

.job-details ul {
    margin-top: 10px;
    margin-bottom: 40px;
    padding-left: 17px;
}

.job-details li {
    line-height: 24px;
    margin-bottom: 5px; 
    list-style: disc;    
}

.job-details li::marker {
    color: var(--verve-green);
}

.apply-btn {
    margin-top: 60px;
}

.apply-btn .btn-nav {
    font-size: 18px;
}


/* === CONTENT BLOCK === */

.content-block {
    padding: 120px 0;
    color: #111619;
    background: #FFF;
}

.content-block-text {
    font-size: 16px;
    line-height: 28px;
}

.content-block-text h3 {
    font-family: 'ivypresto-headline';
    font-size: 38px;
    font-weight: 500;
    margin-top: 80px;
    margin-bottom: 30px;
}

.content-block-text a {
    color: inherit;
    text-decoration: underline;
}

.content-block-text a:hover {
    text-decoration: none;
}

.content-block-text li {
    list-style: none;
    margin-bottom: 5px;
    position: relative;
}

.content-block-text li:before {
    position: absolute;
    content: "";
    background: url(/wp-content/themes/verveliveagency/assets/images/tick.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    left: -30px;
    top: 0;
    bottom: 0;
    margin: auto;
}



/* === JOBS LIST === */

.jobs-block {
    padding: 60px 0 120px;
    background: #f7f6f4;
}

.jobs-block h3 {
    font-size: 52px;
    font-family: 'ivypresto-headline';
    margin-bottom: 40px;
}

.single-job-list {
    border-bottom: 1px solid #dedede;
    padding: 20px 0;
}

.single-job-list.first-job {
    border-top: 1px solid #dedede;
}

.single-job-list .job-list-title {
    font-family: 'ivypresto-headline';
    font-size: 28px;
}

.single-job-list .job-list-location {
    font-size: 18px;
    font-weight: bold;
    color: #bbbbbb;
}

.single-job-list .col-lg-8 {
    padding: 0;
}

.single-job-list .btn-nav {
    padding-left: 80px;
    padding-right: 80px;
}

.job-list-title .arrow {
    display: inline-block;
    height: 20px;
    top: -4px;
    position: relative;
    left: 0;        
    opacity: 0;
    transition-duration: 0.5s;
}

.single-job-list:hover .arrow {
    opacity: 1;
    left: 20px;
    transition-duration: 0.5s;
}

.job-list-title a, .job-list-location a {
    color: inherit;
    text-decoration: inherit;
}

/* === NEWS INSIGHT SINGLE === */

.single-feat-img {
    width: 100%;
}

.single-content {
    padding: 60px 0 120px;
    font-size: 18px;
    line-height: 32px;
    color: #13181a;
    background: #FFF;
    border-top: 300px solid #FFF;
    margin-top: -300px;
}

.sub-head {
    color: #56c0a3;
    text-transform: uppercase;
}

.single-content h3 {
    font-weight: 600;
    font-size: 24px;
}

.single-content a {
    text-decoration: none;
    color: #56c0a3;
}

.single-content a:hover {
    text-decoration: underline;
}

.single-content p {
    margin-bottom: 30px;
}


.no-hero {
    height: 180px;
}

.title-after-large {
    position: relative;
}

.title-after-large:after {
    position: absolute;
    content: "";
    background: url(/wp-content/themes/verveliveagency/assets/images/title-after-large.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    right: -90%;
    bottom: -50%;
    z-index: 2;
}

.single-header {
    padding-bottom: 80px;
}

.single-header h2 {
    color: #FFF;
    font-size: 28px;
    line-height: 38px;
    padding: 30px 0 0;
    width: 85%;
    font-weight: 300;       
}

.single-date {
    color: #56c0a3;
    font-size: 16px;
    text-transform: uppercase;        
}

.single-header .container .title-cont {
    position: relative;
}

.single-bcorp img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 90px;
}

.resp-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}

.resp-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.title-after-large h1 {
    font-family: 'ivypresto-headline';
    font-size: 88px;
    line-height: 88px;
    color: #FFF;
    position: relative;
    z-index: 3;       
}


/* === SERVICES === */


.services-hero {
    height: 90vh;
    overflow: hidden !important;
    position: relative;
}

.subpage-hero {
    max-height: 80vh;
}

.hero-text {
    margin-top: auto;
    margin-bottom: auto;
    position: relative;
    z-index: 100;
    color: #FFF;
}

.hero-text h1 {
    font-family: 'ivypresto-headline';
    font-size: 66px;
}

.hero-text .hero-sub {
    font-size: 26px;
}

.subpage-hero {
    position: relative;
}

.video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background:rgba(0,0,0,0.4);
    top: 0;
    left: 0;
    z-index: 99;
}

.navbar {
    z-index: 999;
}



.blog-home-meta-outer {
    height: 100%;
}

/* === ABOUT === */

.services-hero.about-header {
    height: 70vh;
    overflow: hidden !important;
    position: relative;
}

.about-header h1 {
    font-size: 90px;
}

.about-header h1 svg {
    margin-top: -20px;
    margin-left: 20px;
    height: 90px;
    width: auto;
}

.about-header h1 svg:hover .cls-1 {
    fill: var(--verve-green) !important;
}

/* Ensure the parent section can contain the background */
.hero-home.subpage-hero {
    position: relative;
    overflow: hidden; /* Prevents scrollbars if the iframe exceeds the section size */
}

/* Container for the Vimeo iframe */
.video-background {
    position: initial !important;
}

@media (max-aspect-ratio: 16 / 9) {
    .vimeo-background iframe {
        width: 177.78vh;
    }
}

.vimeo-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
}

.text-block-plain {
    padding: 120px 0;
    background: #13181a;
}

.text-block-plain h3 {
    font-family: 'ivypresto-headline';
    font-size: 48px;        
    color: #f7f6f4;        
}

.text-block-plain h3 strong {
    font-weight: 300;
    color: var(--verve-green);
}

/* === 404 PAGE === */

.error-header {
    height: 100vh !important;
}

.error-header h1 .sub-title {
    font-size: 26px;
    font-weight: 200;
    margin-top: 20px;
}

.home-bcorp-title span {
    font-size: 22px;
    display: block;
    font-family: 'Poppins';
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    color: var(--verve-green);        
}

.home-bcorp-text {
    font-size: 22px;
    font-weight: 300;
    line-height: 36px; 
    margin-top: 30px;       
}

.home-bcorp-text a {
    color: var(--verve-green);
}

.home-bcorp-text a:hover {
    text-decoration: underline;
}


/* === MOBILE STYLES === */


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

    .blog-listing-meta {
        padding-left: 40px;
        padding-right: 40px;
    }

    .home-bcorp-img, .about-page-video {
        margin-top: initial;
    }

    .bcorp-top.about-top {
        display: none;
    }

    .about-page-video {
        padding: 60px 30px;
    }

    .case_study_sub_2 {
        width: 100%;
        text-align: center;
        padding: 60px 30px;
        font-size: 24px;
        line-height: 36px;
    }

    .about-header h1 svg {
        margin-top: -10px !important;
        margin-left: 10px !important;
        height: 45px !important;
    }

    /* === MOBILE NAV === */

    .mobile-nav {
        display: block;
        position: absolute;
        width: 100%;
        min-height: 100%;
        background: #000;
        height: 100%;
        top: 0;
        left: -200%;
        z-index: 9999;
        transition-duration: 0.25s;
    }

    .mobile-nav ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .mobile-nav.opened {
        position: fixed;
        left: 0;
        transition-duration: 0.25s;
    }

    .navbar-toggler {
        display: block;
        padding: 0;
        margin: 0;
        border: 0;
        outline: 0;
    }

    .navbar-toggler {
        position: fixed;
        right: 20px;
        top: 8px;
        z-index: 999999;
    }

    .navbar-toggler .line{
        width: 36px;
        height: 3px;
        background-color: var(--verve-green);
        display: block;
        margin: 10px auto;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .navbar-toggler:hover{
        cursor: pointer;
    }

    .navbar-toggler.is-active .line:nth-child(2){
        opacity: 0;
    }

    .navbar-toggler.is-active .line:nth-child(1){
        -webkit-transform: translateY(13px) rotate(45deg);
        -ms-transform: translateY(13px) rotate(45deg);
        -o-transform: translateY(13px) rotate(45deg);
        transform: translateY(13px) rotate(45deg);
    }

    .navbar-toggler.is-active .line:nth-child(3){
        -webkit-transform: translateY(-13px) rotate(-45deg);
        -ms-transform: translateY(-13px) rotate(-45deg);
        -o-transform: translateY(-13px) rotate(-45deg);
        transform: translateY(-13px) rotate(-45deg);
    }  

    .nav-item img {
        height: 14px;
    }

    .nav-link {
        font-size: 28px;        
    }

    .nav-link svg {
        height: 22px;
    }

    .mobile-nav button {
        margin-top: 20px;
    }

    .mobile-nav .btn-primary {
        font-size: 28px;
        width: auto;
    }

    /* === MOBILE PROJECT === */

    .single-project, .single-project.wide-project {
        width: 90% !important;
        overflow: hidden;
        transition-duration: 0.5s;
        position: relative;
    }

    .single-project.wide-project {
        width: 90% !important;
        transition: initial !important;
        max-width: 90% !important;
    }

    .single-project-img {
        aspect-ratio: 3 / 2.25;
        width: 100%;
        height: auto !important;
        object-fit: cover;
        position: relative;
    }

    .single-project-img .vimeo-video {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100vh;           /* Makes the video fill the height while covering the container */
        height: 100vh;          /* Ensures video fills container in a cover-like manner */
        transform: translate(-50%, -50%);
        min-width: 100%;        /* Ensures it fills the container width */
        min-height: 100%;       /* Ensures it fills the container height */
        object-fit: cover;      /* For newer browsers that support it on iframes */
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s ease;
    }

    .single-project:hover .single-project-img {
        background-image: none; /* Hide image on hover */
    }

    .single-project:hover .vimeo-video {
        opacity: 1; /* Show video on hover */
    }

    /* === MOBILE FOOTER === */

    footer {
        text-align: center;
    }

    .footer-logos {
    }

    footer .footer-logo {
        width: 40%;
    }

    footer .footer-opus {
        width: 20%;
    }

    footer .footer-socials {
        margin-bottom: 30px;
    }

    footer .footer-socials i {
        font-size: 32px;
    }

    .footer-address {
        margin-top: 30px;
    }

    .footer-verve {
        width: 100%;
        left: 0;
        top: -80px;        
    }

    .text-container {
        left: 30px;
        transform: scale(1);
    }
    

}

.hide-desktop {
    display: none !important;
}

.hide-mobile {
    display: block !important;
}

.mobile-overlay {
    display: none;
}
    
@media screen and (max-width: 991px) {

    .case_study_hero h1 {
        position: absolute;
        bottom: 0;
    }

    .case_study_hero h1 br {
        display: none;
    }

    .mobile-overlay {
        background: rgb(0, 0, 0);
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 25%, rgba(0, 0, 0, 0) 100%);
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 65%;            
        display: block;
        z-index: 0;
    }

    .hide-mobile {
        display: none !important;
    }

    .hide-desktop {
        display: block !important;
    }

    .hero-home {
        height: 85vh;
    }

    .navbar .logo {
        width: 80px;
        position: relative;
    }

    .navbar-toggler {}

    .home-projects {
        padding: 80px 0;
    }

    .home-projects h2, .blog-title-block h2 {
        font-size: 32px;
        padding-left: 20px;
        padding-bottom: 40px;
    }

    .single-project-title {
        font-size: 32px;
        line-height: 34px;
    }

    .single-project-link {
        font-size: 14px;
        padding: 30px 0 0;
    }

    .bcorp-top {
        height: 120px;
    }

    .home-bcorp {
        padding: 0 0 60px;
    }

    .home-bcorp-img {
        margin-top: -120px;
    }

    .home-bcorp-title {
        font-size: 48px;
        line-height: 52px;
        padding: 20px 0 30px;
    }

    .home-bcorp-logo img {
        width: auto;
        height: 125px;
    }

    .home-bcorp .btn-nav {
        margin-top: 40px;
    }

    .blog-top, .blog-home {
        display: none;
    }

    .blog-title-block {
        margin-top: initial;
    }

    .cta-1 {
        padding: 60px 0;
    }

    .cta-1_line_1, .cta-1_line_2 {
        font-size: 44px !important;
        line-height: 48px !important;
    }

    .footer-address.text-end, .footer-logos.text-end {
        text-align: center !important;
    }

    footer {
        border-top: 1px solid var(--verve-green);
        padding: 60px 0;
    }

    .footer-logos img {
        vertical-align: bottom;
    }

    .footer-socials {
        margin-top: 30px !important;
    }

    .footer-bcorp {
        display: none;
    }

    .team-header {
        padding: 140px 0 80px;
    }   

    .team-header h2, .title-header-text h2 {
        font-size: 55px !important;
        line-height: 55px !important;
    }

    .sub-header {
        font-size: 18px !important;
    }

    h2.meet-team video {
        position: absolute;
        width: 125%;
        height: 150%;
        left: 75%;
        top: -50%;
        z-index: -1;
    }

    .title-header {
        margin-top: 70px;
        padding: 80px 30px !important;
    }

    .work-header {
        padding: 80px 30px 0 !important;
    }

    .team-members .row {
        justify-content: center;        
    }

    .single-team {
        margin-bottom: 40px;
    }

    .title-header-text.header-journey-1 h2:after {
        width: 150%;
        height: 100%;
        left: 0;
    }

    .filter-button-group .btn-outline {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .roles-block {
        padding: 80px 0 !important;
    }

    .roles-block button {
        margin-top: 20px;
    }

    .roles-block .col-lg-6:nth-child(2) h3 {
        margin-top: 60px;
    }

    .title-header-text.header-journey-2 h2:after {
        width: 150%;
        height: 100%;
        left: 0;
    }

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

    .jobs-block {
        padding: 60px 30px;
    }

    .job-list-title, .job-list-location, .single-job-list .text-end {
        text-align: center !important;
    }

    .single-job-list .text-end {
        margin-top: 20px !important;
    }

    .job-list-title .arrow {
        display: none;
    }

    .single-job-list {
        padding: 30px 0 40px;
    }

    .part-time-content {
        padding: 80px 30px !important;
    }

    .form-container {
        margin-top: 60px !important;
    }

    .office-photo-3, .office-photo-4 {
        width: 100% !important;
    }

    .contact-form {
        padding: 80px 30px;
    }

    .contact-footer-text {
        font-size: 36px;
        line-height: 40px;
    }

    .thank-you-body {
        padding: 80px 30px !important;
    }

    .thank-you-body {
        font-size: 24px !important;
        line-height: 34px !important;
    }

    .thank-you-body .resp-container {
        margin: 40px 0 !important;
    }

    .hero-text h1 {
        font-size: 42px !important;
        line-height: 50px !important;
    }

    .hero-text .hero-sub {
        font-size: 18px !important;
    }

    .vimeo-background iframe {
        width: 175vw !important;
        height: 175vh !important;
    }

    .subpage-hero .hero-text {
        padding-top: 30px;
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .hero-text {
        padding-left: 30px;
        padding-right: 30px;
    }

    .sub-page-header {
        padding: 80px 15px;
    }

    .sub-page-header h2 video {
        bottom: 0;
    }

    .sub-page-header .title-after {
        margin-bottom: 70px;
    }

    .sub-page-header h2 {
        font-size: 55px;
        line-height: 62px;
    }

    .about-row {
        margin-bottom: 0;
    }

    .about-row .col-lg-6 {
        margin-bottom: 60px;
    }

    .about-row:last-child .about-text {
        border-bottom: 1px solid var(--verve-green);
    }

    .sub-page-header .col-lg-8 .about-row:nth-child(2) {
        margin-bottom: 0;
    }

    .sub-page-header .col-lg-8 .about-row:last-child .col-lg-6:nth-child(2) {
        margin-bottom: 0;
    }

    .sub-page-header .col-lg-8 .about-row:last-child .col-lg-6:nth-child(2) .about-text {
        border-bottom: 0;
        margin-bottom: 0;
    }

    .navbar {
        background: transparent !important;
    }

    .about-text {
        width: 100%;
    }

    .about-text p {
        font-size: 16px;
        font-weight: 400;
        line-height: 26px;
    }

    .about-text:nth-child(2) {
        margin-bottom: 40px;
        border-bottom: 1px solid var(--verve-green);
        padding-bottom: 40px;
    }

    .about-text.last-about-text {
        margin-bottom: 0;
        border-bottom: 0 !important;
        padding-bottom: 0;
    }

    .home-projectss {
        padding: 0 0 80px !important;
    }

    .home-projects h2 {
        padding-left: 20px !important;
    }

    .title-header video {
        width: 100% !important;
    }

    .navbar {
        padding: 20px 30px;        
    }

    .case_study_hero h1 {
        font-size: 55px;
        padding-left: 10px;
    }

    .case_study_hero {
        height: 70vh;
    }

    .case_study_stats {
        padding: 40px 0;
    }

    .single_stat {
        padding-bottom: 20px;
    }

    .case_study_body {
        padding: 80px 15px;
    }

    .case_study_body h2 {
        font-size: 44px;
    }

    .case_study_sub {
        width: 100%;
        font-size: 24px;
        line-height: 34px;
        font-weight: 200 !important;
    }

    .case_study_img_two img:nth-child(1) {
        margin-bottom: 30px;
    }

    .content-block {
        padding: 80px 15px;
    }

    .job-details {
        padding: 80px 15px;
    }

    .right-job {
        padding-top: 30px;
        font-size: 18px;
        line-height: 28px;
    }

    .footer-links ul li {
        margin-right: initial;
        font-size: 18px;
    }

    .blog-listing .singe-blog .col-lg-7 {
        padding-right: 0;
    }

    .news-img {
        aspect-ratio: 3 / 2;
   }

    .blog-listing .blog-home-meta {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .blog-home-meta-outer {
        height: initial !important;
    }

    .video-background iframe {
        position: absolute;
        top: 43%;
    }

    .half-header h1 {
        font-size: 68px;
        line-height: 68px;
    }
    .half-header-right {
        padding-left: 0;
        padding-top: 50px;
    }
    .our-accreditations { 
        padding: 80px 0px;
    }
    .single-accreditation img {
        max-width: 130px;
        margin-bottom: 30px;
    }
    .single-accreditation .col-lg-2 {
        text-align: left !important;
    }
    .half-header {  padding: 106px 0 40px;}
    .home-bcorp-logos{
        justify-content: flex-start !important;
    }
    .home-bcorp-logos .col{
        width: fit-content;
        flex: unset; 
        padding: 0 10px 0 0;
    }
    .home-bcorp-logo img {
        height: 140px;
    }
    /* .single-accreditation .col-lg-2 {
        width: 16%;
    }
    .single-accreditation .col-lg-9 {
        width: 78%;
        margin-left: 5.333%;
    } */

    .services-hero {
        max-height: 700px;
    }

    .title-after-large h1 {
        font-size: 55px;
        line-height: 62px;
        padding-right: 15%;
    }
}
@media screen and (max-width: 540px) {
    .half-header h1 {
        font-size: 58px;
        line-height: 58px;
    }
}
.bg-dark {
    background: transparent !important;
}