.tv-form-global fieldset {
    width: 100% !important;
    max-width: 1000px !important;
}

.tv-form-global label {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
}

.tv-form-global .hs-form-required {
    color: #F56565;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    margin-left: 4px;
}

.tv-form-global fieldset input {
    width: calc(100% - 16px) !important;
    height: 32px;
    border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    border-color: #D5D6DD;
    margin-top: 8px;
    margin-right: 16px;
    margin-bottom: 16px;
    padding: 0 8px;
    font-family: Lexend;
}

.tv-form-global fieldset select {
    width: calc(100%) !important;
    height: 36px;
    border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    border-color: #D5D6DD;
    margin-top: 8px;
    margin-right: 16px;
    margin-bottom: 16px;
}

.tv-form-global fieldset textarea {
    width: calc(100% - 16px) !important;
    height: 108px;
    border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    border-color: #D5D6DD;
    margin-top: 8px;
    margin-right: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    padding: 8px;
    font-family: Lexend;
}

.tv-form-global .hs_submit {
    width: 100%;
}

.tv-form-global .hs_submit input {
    width: calc(100% - 4px) !important;
    margin-top: 8px;
    padding: 8px 16px 8px 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;

}
@mixin hexToRgba($hex, $alpha) {
    $r: red($hex);
    $g: green($hex);
    $b: blue($hex);
    rgba($r, $g, $b, $alpha);
}

:root {
    --primary: #0b83c5;
    --primary-rgb: 11, 131, 197;
    --primary-900-rgba: rgba(11, 131, 197, 0.9);
    --text-light: #06476A;
    --text-light2: #353A57;
    --text-dark: #FFFFFF;
    --background-light: #FFFFFF;
    --background-light2: #F6F7F9;
    --background-light3: #15244B;
    --white: #FFFFFF;
    --athens-gray: #F6F7F9;
    --french-gray: #C2C4CD;
    --dark-blue: #15244B;
    --medium-blue: #06476A;
    --violet: #353A57;
    --gradient-light-1-rgb: 246, 247, 249;
    --gradient-light-2-rgb: 255, 255, 255;
    --gradient-dark-1-rgb: 21, 36, 75;
    --gradient-dark-2-rgb: 21, 36, 75;
    --dashed-line-url: url("//22126809.fs1.hubspotusercontent-na1.net/hubfs/22126809/raw_assets/public/threeventures-theme/src/images/dashed-line.svg");
    --lines-url: url("//22126809.fs1.hubspotusercontent-na1.net/hubfs/22126809/raw_assets/public/threeventures-theme/src/images/lines.svg");
    --lines-gray-url: url("//22126809.fs1.hubspotusercontent-na1.net/hubfs/22126809/raw_assets/public/threeventures-theme/src/images/lines-grey.svg");
    --lines-black-url: url("//22126809.fs1.hubspotusercontent-na1.net/hubfs/22126809/raw_assets/public/threeventures-theme/src/images/lines-black.svg");
    --green: #0ec44c;
    --hover-bg: rgb(230, 236, 240);
    --midnight-blue: #073056;
    --mobile-menu-bg: var(--white);
    --mobile-menu-footer-text-color: var(--text-light);
}

html {
    --text: var(--text-light);
    --text2: var(--text-light2);
    --background: var(--background-light);
    --background2: var(--background-light2);
    --background3: var(--background-light3);
    --background-accent: var(--french-gray);
    --gradient1: var(--gradient-light-1-rgb);
    --gradient2: var(--gradient-light-2-rgb);
    --gradient1-opacity: 0.79;
    --gradient2-opacity: 1.0;
    --gradient-dark1: var(--gradient-dark-1-rgb);
    --gradient-dark2: var(--gradient-dark-2-rgb);
    --gradient-dark1-opacity: 0.9;
    --gradient-dark2-opacity: 0.9;
    --gradient-start: 47.65%;
    --gradient-stop: 82.42%;
    --dashed-line: var(--dashed-line-url);
    --lines: var(--lines-url);
    --lines-gray: var(--lines-gray-url);
    --lines-black: var(--lines-black-url);
    font-family: Lexend;
}

.body-menu-margin {
    padding-top: 76px;
}

.body-scroll-lock {
    overflow: hidden !important;
}

.tv-lines-bg {
    position: relative;
    z-index: 0;
}

.tv-lines-bg:after {
    content: "";
    background-image: var(--lines);
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    position: absolute;
    inset: 0;
    opacity: 0.05;
    z-index: 1;
}

.tv-lines-bg--gray:after {
    content: "";
    background-image: var(--lines-gray);
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    position: absolute;
    inset: 0;
    opacity: 0.05;
    z-index: 1;
}

.tv-lines-bg--black:after {
    content: "";
    background-image: var(--lines-black);
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    position: absolute;
    inset: 0;
    opacity: 0.05;
    z-index: 1;
}

.tv-dashed-line {
    position: relative;
    z-index: 0;
}

.tv-dashed-line:after {
    content: "";
    background-image: var(--dashed-line);
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    position: absolute;
    inset: 0;
    opacity: 0.6;
    z-index: 1;
}

.tv--highlight-blue {
    color: #0B83C5;
    background-size: 100%;
    position: relative;
    margin: 0 10px;
}

.tv--highlight-blue::after {
    content: "";
    position: absolute;
    top: 15%;
    bottom: -15%;
    left: -8px;
    right: -8px;
    background: url("//22126809.fs1.hubspotusercontent-na1.net/hubfs/22126809/raw_assets/public/threeventures-theme/src/images/underline-blue.svg") no-repeat bottom;
    background-size: 100%;
}

.tv--highlight-orange {
    color: #FF5C35;
    background-size: 100%;
    position: relative;
    margin: 0 10px;
}

.tv--highlight-orange::after {
    content: "";
    position: absolute;
    top: 15%;
    bottom: -15%;
    left: -8px;
    right: -8px;
    background: url("//22126809.fs1.hubspotusercontent-na1.net/hubfs/22126809/raw_assets/public/threeventures-theme/src/images/underline-orange.svg") no-repeat bottom;
    background-size: 100%;
}

h1 {
    font-size: 30px;
    font-weight: 400;
    line-height: 39px;
}

h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 31px;
}

h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
}

h4 {
    font-size: 18px;
    font-weight: 400;
    line-height: 23px;
}

h5 {
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
}

h6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
}

@media screen and (min-width: 1024px) {
    h1 {
        font-size: 36px;
        font-weight: 400;
        line-height: 43px;
    }

    h2 {
        font-size: 32px;
        font-weight: 400;
        line-height: 38px;
    }

    h3 {
        font-size: 28px;
        font-weight: 400;
        line-height: 33px;
    }

    h4 {
        font-size: 24px;
        font-weight: 400;
        line-height: 29px;
    }

    h5 {
        font-size: 18px;
        font-weight: 500;
        line-height: 22px;
    }

    h6 {
        font-size: 16px;
        font-weight: 400;
        line-height: 19px;
    }
}

@media screen and (min-width: 1280px) {
    h1 {
        font-size: 48px;
        font-weight: 400;
        line-height: 58px;
    }

    h2 {
        font-size: 36px;
        font-weight: 400;
        line-height: 43px;
    }

    h3 {
        font-size: 32px;
        font-weight: 400;
        line-height: 38px;
    }

    h4 {
        font-size: 28px;
        font-weight: 400;
        line-height: 33px;
    }

    h5 {
        font-size: 24px;
        font-weight: 500;
        line-height: 29px;
    }

    h6 {
        font-size: 18px;
        font-weight: 400;
        line-height: 22px;
    }
}

.hs-button {
    width: fit-content;
    background-color: var(--primary);
    border-radius: 4px;
    border: 0;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-family: Lexend;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding: 12px 24px;
}

.hs-button:hover {
    filter: brightness(115%);
    cursor: pointer;
}

.hs-button:active {
    filter: brightness(90%);
}


/* CSS variables */

:root {
    --column-gap: 2.13%;
    --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}


.row-fluid .span1,
.row-fluid .span2,
.row-fluid .span3,
.row-fluid .span4,
.row-fluid .span5,
.row-fluid .span6,
.row-fluid .span7,
.row-fluid .span8,
.row-fluid .span9,
.row-fluid .span10,
.row-fluid .span11,
.row-fluid .span12{
    min-height: 1px;
    width: 100%;
}

/* Desktop layout */

@media (min-width: 1024px) {
    .row-fluid {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    
        .row-fluid .span1 {
            width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
        }
    
        .row-fluid .span2 {
            width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
        }
    
        .row-fluid .span3 {
            width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
        }
    
        .row-fluid .span4 {
            width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
        }
    
        .row-fluid .span5 {
            width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
        }
    
        .row-fluid .span6 {
            width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
        }
    
        .row-fluid .span7 {
            width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
        }
    
        .row-fluid .span8 {
            width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
        }
    
        .row-fluid .span9 {
            width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
        }
    
        .row-fluid .span10 {
            width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
        }
    
        .row-fluid .span11 {
            width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
        }
    
}

.tv-body {
    margin: 0;
    position: relative;
    overflow-x: hidden !important;
    width: 100vw;
    background-color: var(--background);
}

.skip-to-content {
    background: var(--primary);
    padding: 12px;
    top: 0;
    left: 0;
    color: var(--white);
    position: absolute;
    transform: translateY(-100%);
    transition: transform 0.3s;
}

.skip-to-content:focus {
    transform: translateY(0%);
}

.page_content-row-0-padding {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.page_content-row-1-padding {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Breakpoints */
@media (max-width: 639px) {
    .container > .row-fluid:first-child {
        width: 100% !important;
    }

    .container .tv-footer  {
        width: 100% !important;
    }

    .container > .tv-header {
        margin-left: 16px !important;
        margin-right: 16px !important;
    }
}

@media (min-width: 640px) {
    .container > .row-fluid:first-child {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .container .tv-footer {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .container > .tv-header {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (min-width: 640px) and (max-width: 767px) {
    .container > .row-fluid:first-child {
        width: 608px !important;
    }

    .container .tv-footer  {
        width: 608px !important;
    }

    .container .tv-footer  {
        width: 608px !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .container > .row-fluid:first-child {
        width: 736px !important;
    }

    .container .tv-footer  {
        width: 736px !important;
    }

    .container .tv-header  {
        width: 736px !important;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .container > .row-fluid:first-child {
        width: 992px !important;
    }

    .container .tv-footer  {
        width: 992px !important;
    }

    .container .tv-header  {
        width: 992px !important;
    }
}

@media (min-width: 1280px) and (max-width: 1535px) {
    .container > .row-fluid:first-child {
        width: 1248px !important;
    }

    .container .tv-footer  {
        width: 1248px !important;
    }

    .container .tv-header  {
        width: 1248px !important;
    }
}

@media (min-width: 1536px) {
    .container > .row-fluid:first-child {
        width: 1504px !important;
    }

    .container .tv-footer  {
        width: 1504px !important;
    }

    .container .tv-header  {
        width: 1504px !important;
    }
}
.tv-link {
    position: relative;
    height: 18px;
    width: fit-content;
    white-space: nowrap;
}

.tv-link::after {
    content: "";
    width: 16px;
    height: 2px;
    background-color: var(--primary);
    position: absolute;
    left: 0;
    top: 0;
    transition: width 0.2s ease-in-out;
    transform: translateY(6px);
}

.tv-link:hover::after {
    width: 32px;
}

.tv-link:hover a {
    transform: translateX(32px);
}

.tv-link a {
    position: absolute;
    inset: 0;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    margin-left: 8px;
    transition: transform 0.2s ease-in-out;
    transform: translateX(18px);
}
.hs-form fieldset {
    width: 100% !important;
    max-width: 1000px !important;
}

.hs-form label {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
}

.hs-form .hs-form-required {
    color: #F56565;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    margin-left: 4px;
}

.hs-form fieldset input {
    width: calc(100% - 16px) !important;
    height: 32px;
    border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    border-color: #D5D6DD;
    margin-top: 8px;
    margin-right: 16px;
    margin-bottom: 16px;
    padding: 0 8px;
    font-family: Lexend;
}

.hs-form fieldset select {
    width: calc(100%) !important;
    height: 36px;
    border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    border-color: #D5D6DD;
    margin-top: 8px;
    margin-right: 16px;
    margin-bottom: 16px;
}

.hs-form fieldset textarea {
    width: calc(100% - 16px) !important;
    height: 108px;
    border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    border-color: #D5D6DD;
    margin-top: 8px;
    margin-right: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    padding: 8px;
    font-family: Lexend;
}

.hs-form .hs_submit {
    width: 100%;
}

.hs-form .hs_submit input {
    width: calc(100% - 4px) !important;
    margin-top: 8px;
    padding: 8px 16px 8px 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;

}
.tv-section > .row-fluid {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
}

.tv-section--no-padding > .row-fluid {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

@media (min-width: 640px) and (max-width: 767px) {
    .tv-section > .row-fluid {
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }

    .tv-section--no-padding > .row-fluid {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .tv-section > .row-fluid {
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }

    .tv-section--no-padding > .row-fluid {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .tv-section > .row-fluid {
        padding-top: 44px !important;
        padding-bottom: 24px !important;
    }

    .tv-section--no-padding > .row-fluid {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
}

@media (min-width: 1280px) and (max-width: 1535px) {
    .tv-section > .row-fluid {
        padding-top: 44px !important;
        padding-bottom: 24px !important;
    }

    .tv-section--no-padding > .row-fluid {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
}

@media (min-width: 1536px) {
    .tv-section > .row-fluid {
        padding-top: 44px !important;
        padding-bottom: 24px !important;
    }

    .tv-section--no-padding > .row-fluid {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
}
.tv-html {
    overflow-x: hidden;
}
.tv-footer__wrapper {
    width: calc(100% - 32px);
    height: fit-content;
    padding: 64px 16px;
    background-color: var(--background-light3);
}

.tv-footer {
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.tv-footer__socials {
    width: fit-content;
    margin: 0 0 32px 0;
}

.tv-footer__links {
    flex-grow: 1;
    width: 100%;
    margin: 0 0 32px 0;
}

.tv-footer__contact-info {
    width: 100%;
}

@media screen and (min-width: 1024px) {
    .tv-footer__socials {
        width: 20%;
    }

    .tv-footer__links {
        width: 47%;
    }

    .tv-footer__contact-info {
        max-width: 33%;
        width: fit-content;
        margin: 0 16px;
    }

    .tv-footer {
        height: fit-content;
        display: flex;
        flex-direction: row;
    }
}

@media screen and (min-width: 1280px) {
    .tv-footer__socials {
        margin: 0 auto 32px auto;
    }

    .tv-footer__links {
        width: 47%;
        flex-grow: 1;
        flex-shrink: 0;
        margin: 0 auto 32px auto;
    }

    .tv-footer__contact-info {
        max-width: 33%;
        flex-grow: 0;
        flex-shrink: 1;
    }
}
.tv-header--wrapper {
    --hamburger-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 22 17' xmlns='http://www.w3.org/2000/svg' fill='%2315244B'%3E%3Cpath d='M22 1.889H0V0h22v1.889ZM22 17H0v-1.889h22V17Zm0-7.57H0V7.555h22v1.873Z' class='fill-inherit'/%3E%3C/svg%3E");
    --item-border: rgba(255, 255, 255,  0.1);
    --mobile-menu-bg: var(--white);
    --mobile-menu-footer-bg: var(--background2);
    --mobile-menu-footer-text-color: var(--text-light);
    --mobile-menu-x: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 2 2 16M16 16 2 2' stroke='%2315244B' stroke-width='2' stroke-miterlimit='10' stroke-linecap='square'/%3E%3C/svg%3E");
}

.tv-header--wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
    width: 100vw;
    height: 76px;
    background-color: var(--background);
    transition: transform 0.2s ease;
    overflow-x: hidden;
}

.tv-scroll-up {
    transform: translateY(-100%);
}

.tv-header {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.tv-header--logo {
    width: 200px;
    height: fit-content;
}

.tv-header--logo-image {
    width: 200px;
    height: auto;
}

.tv-header--theme-toggle {
    margin-left: 24px;
}

.tv-header--links {
    width: 100%;
}

.tv-header--button {
    width: fit-content;
    white-space: nowrap;
}

/* Mobile menu */
.tv-header--mobile {
    overflow: hidden;
    overflow-x: hidden !important;
}

.tv-header-menu-button-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.tv-header-menu-mobile--button {
    position: relative;
    display: hidden;
    width: 0px;
    height: 0px;
}

.tv-header-menu-mobile-button--custom {
    display: none;
    width: 18px;
    height: 32px;
    content: var(--hamburger-icon);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.tv-header-menu-mobile--button {
    position: relative;
    visibility: hidden;
    width: 0px;
    height: 0px;
}

.tv-header-menu-mobile--button:hover {
    cursor: pointer;
}

.tv-header-menu-mobile--overlay {
    background-color: var(--dark-blue);
    opacity: 70%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9;
    transition: transform 0.3s ease;
    transform: translateX(200%);
    overflow: hidden;
}

.tv-header-menu-mobile--wrapper {
    background-color: var(--mobile-menu-bg);
    width: 100%;
    max-width: 420px;
    height: 100vh;
    min-height: fit-content;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    transition: transform 0.3s ease;
    transform: translateX(300%);
    overflow: hidden;
}

.translate-left {
    transform: translateX(0);
}

.tv-header-menu-mobile {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tv-header-menu-mobile--content {
    position: relative;
    overflow-y: auto;
}

.tv-header-mobile-menu--header {
    max-width: 100%;
    height: 32px;
    padding: 24px 16px;
    border-bottom: 1px solid var(--item-border);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 11;
    background-color: var(--mobile-menu-bg);
}

.tv-header-mobile-menu--header-x {
    width: 16px;
    height: 16px;
    content: var(--mobile-menu-x);
}

.tv-header-mobile-menu--header-x-button {
    visibility: hidden;
}

.tv-header-mobile-menu--header-links {
    position: relative;
    z-index: 10;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
}

.tv-header-mobile-menu--footer {
    padding: 24px;
    height: fit-content;
    background-color: var(--mobile-menu-footer-bg);
}

.tv-header-mobile-menu--footer-text {
    color: var(--mobile-menu-footer-text-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 16px;
    text-align: center;
}

.tv-header-mobile-menu--footer-button {
    width: fit-content;
    margin: 0 auto;
}

@media screen and (max-width: 1023px) {
    .tv-header .tv-btn {
        display: none;
    }

    .tv-header-links__wrapper {
        display: none;
    }

    .tv-header-menu-mobile-button--custom {
        display: block;
    }

    .tv-header-link {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .tv-header--links {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    .tv-header-links-menu-mobile--wrapper {
        display: none;
    }

    .tv-header-menu-button-wrapper {
        display: none;
    }

    .tv-header-menu-mobile--button {
        display: none;
    }

    .tv-header--links {
        display: block;
    }

    .tv-header-menu-mobile--overlay {
        display: none;
    }

    .tv-header-menu-mobile--wrapper {
        display: none;
    }
}

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

    .tv-header .tv-btn {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Custom layout behavior for header */


@media (min-width: 268px) {
    .tv-header .row-fluid {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    
        .th-header .row-fluid .span1 {
            width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
        }
    
        .th-header .row-fluid .span2 {
            width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
        }
    
        .th-header .row-fluid .span3 {
            width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
        }
    
        .th-header .row-fluid .span4 {
            width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
        }
    
        .th-header .row-fluid .span5 {
            width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
        }
    
}
.tv-benefits .tv-hero-banner-standard-header-and-text{
    padding-right: 32px;
}

.tv-benefits .tv-image-with-flare__module {
    display: none;
}

@media screen and (min-width: 1024px) {
    .tv-benefits .tv-image-with-flare__module {
        display: block;
    }
}
.tv-cta-section {
 position:relative;
 z-index: 0;
}

.tv-cta-section::after {
 content: "";
 display: block;
 position: absolute;
 top: 0;
 bottom: 0;
 left: 0;
 right: 0;
 z-index: 1;
 background: radial-gradient(71.82% 50% at 50% 50%, rgba(21, 36, 75, 0.648) 0%, rgba(21, 36, 75, 0.8) 100%),
 linear-gradient(180deg, #15244B 0%, rgba(21, 36, 75, 0) 100%);
}

.tv-cta-section > .row-fluid:first-child {
 position: relative;
 z-index: 2;
}

.tv-cta-section .tv-form__section {
 margin-top: 0;
}
.tv-hero-banner {
    position:relative;
    display: flex;
    z-index: 0;
    gap: 24px;
}

.tv-hero-banner::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(var(--gradient1), var(--gradient1-opacity)) var(--gradient-start), rgba(var(--gradient2), var(--gradient2-opacity)) var(--gradient-stop));
}

.tv-hero-banner-with-form::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(var(--gradient-dark1), var(--gradient-dark1-opacity)) var(--gradient-start), rgba(var(--gradient-dark2), var(--gradient-dark2-opacity)) var(--gradient-stop));
}

.tv-hero-banner > .row-fluid:first-child {
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1023px) {
    .tv-hero-banner .page_content-row-0-vertical-alignment > .row-fluid {
        flex-direction: column !important;
    }

    .tv-hero-banner .tv-video-with-lightbox {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    .tv-hero-banner .row-fluid {
        flex-direction: row;
    }

    .tv-hero-banner .tv-video-with-lightbox {
        display: block;
    }
}
.tv-price-table-section > .row-fluid {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}
.tv-problem {
    position:relative;
    display: flex;
    z-index: 0;
    gap: 24px;
}

.tv-problem::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.07) 47.65%, rgba(0, 0, 0, 0.05) 82.42%);
}

.tv-problem .tv-hero-banner-standard-header-and-text{
    padding-right: 32px;
}

.tv-problem .widget-type-linked_image {
    position: absolute;
    inset: 0;
}

.tv-problem .row-fluid .dnd-column:nth-child(2) .hs_cos_wrapper_type_linked_image {
    position: absolute;
    inset: 0;
}

.tv-problem .row-fluid .dnd-column:nth-child(2) .hs_cos_wrapper_type_linked_image img {
    position: absolute;
    width: auto !important;
    max-height: 100%;
    margin-left: auto;
    margin-right: 0;
    right: 0;
    bottom: -40px;
}

.tv-problem .row-fluid .dnd-column:nth-child(2) {
    position: relative;
}
.tv-service-parts-section {
    position:relative;
    z-index: 0;
}

.tv-service-parts-section::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-color: #FFFFFF;
    opacity: 0.95;
}

.tv-service-parts-section > .row-fluid:first-child {
    position: relative;
    z-index: 2;
}
.tv-why-three-ventures {
    background-color: var(--background-light3);
}

.tv-why-three-ventures-with-lob-cards > .row-fluid:first-child > .dnd-column:first-child > .row-fluid-wrapper:first-child {
    margin-top: 0;
    margin-bottom: 20px;
}

.tv-why-three-ventures-with-lob-cards > .row-fluid:first-child > .dnd-column:first-child > .row-fluid-wrapper:last-child {
    position: relative;
}

.tv-why-three-ventures-with-lob-cards > .row-fluid:first-child > .dnd-column:first-child > .row-fluid-wrapper:last-child:after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    top: 235px;
    left: -200px;
    right: -200px;
    bottom: -40px;
    background-color: var(--background-light2);
}

@media screen and (min-width: 1024px) {
    .tv-why-three-ventures-with-lob-cards > .row-fluid:first-child > .dnd-column:first-child > .row-fluid-wrapper:first-child {
        margin-top: 60px;
        margin-bottom: 120px;
    }

    .tv-why-three-ventures-with-lob-cards > .row-fluid:first-child > .dnd-column:first-child > .row-fluid-wrapper:last-child:after {
        top: 535px;
    }
}