.tsl-hero {
    position: relative;
    container-type: inline-size;

    width: calc(100% - 160px);
    max-width: 1500px;

    aspect-ratio: 1600 / 720;

    margin: 0 auto;

    overflow: hidden;

    background: #fff;
    color: #111;

    box-sizing: border-box;
}

.tsl-hero-mobile-bar {
    display: none;
}

.tsl-hero-mobile-calc {
    display: none;
}

.tsl-hero-mobile-actions {
    display: none;
}


.tsl-hero-mobile-bar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    height: 1px;
    background: #d8dde0;
    transform: translateX(-50%);
    pointer-events: none;
}

.tsl-hero-bg-text {
    position: absolute;
    top: 6%;
    left: 63%;
    z-index: 1;
    transform: translateX(-50%);
    font-size: 46cqw;
    font-weight: 800;
    line-height: .78;
    letter-spacing: -3cqw;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    background: linear-gradient(
        180deg,
        rgba(55, 58, 62, .95) 0%,
        rgba(73, 77, 82, .82) 35%,
        rgba(110, 115, 120, .48) 65%,
        rgba(180, 184, 188, .14) 83%,
        rgba(255, 255, 255, 0) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    will-change: transform;
}

.tsl-hero-main-img {
    position: absolute;
    left: 60%;
    bottom: 1%;
    z-index: 5;
    width: 92cqw !important;
    max-width: none !important;
    height: auto !important;
    max-height: none !important;
    transform: translateX(-50%);
    object-fit: contain;
    object-position: bottom center;
    pointer-events: none;
    will-change: transform;
}

.tsl-hero-left {
    position: absolute;
    top: 44%;
    left: 0;
    z-index: 10;
    width: 34%;
    max-width: 520px;
    transform: translateY(-50%);
}

.tsl-hero-title {
    margin: 0 0 2cqw;
    font-size: clamp(42px, 4.4cqw, 70px);
    font-weight: 600;
    line-height: .98;
    letter-spacing: -.045em;
    color: #111;
}

.tsl-hero-title span {
    color: #747a80;
}

.tsl-hero-description {
    width: 100%;
    max-width: 430px;
    margin: 0 0 2.6cqw;
    font-size: clamp(14px, 1.1cqw, 18px);
    font-weight: 400;
    line-height: 1.55;
    color: #696f75;
}

.tsl-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tsl-hero-btn {
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none !important;
    white-space: nowrap;
    box-sizing: border-box;
    transform: none !important;
}

.tsl-hero-types {
    display: none !important;
}

.tsl-apply-button,
.tsl-hero-btn-dark {
    min-height: 60px !important;
    padding: 0 14px 0 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    flex: 0 0 auto !important;
    border: 1px solid #111 !important;
    border-radius: 10px !important;
    background: #111 !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
    transition:
        background-color .3s ease,
        color .3s ease,
        border-color .3s ease !important;
}

.tsl-apply-icon,
.tsl-hero-btn-arrow {
    width: 30px !important;
    height: 30px !important;
    flex: 0 0 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    border-radius: 50% !important;
    background: #fff !important;
    color: #111 !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    transition:
        background-color .3s ease,
        color .3s ease !important;
}

:is(
    .tsl-apply-button,
    .tsl-hero-btn-dark
):is(:hover, :focus, :focus-visible) {
    background: #e7e7e7 !important;
    border-color: #e7e7e7 !important;
    color: #111 !important;
    text-decoration: none !important;
    transform: none !important;
}

:is(
    .tsl-apply-button,
    .tsl-hero-btn-dark
):is(:hover, :focus, :focus-visible)
:is(
    .tsl-apply-icon,
    .tsl-hero-btn-arrow
) {
    background: #111 !important;
    color: #fff !important;
    transform: none !important;
}

.tsl-hero-btn-light {
    min-height: 60px;
    padding: 0 28px;
    border: 1px solid #dfe3e7;
    border-radius: 10px;
    background: #68B3D1;
    color: #fff !important;
    transition:
        background-color .3s ease,
        color .3s ease,
        border-color .3s ease !important;
}

.tsl-hero-btn-light:is(:hover, :focus, :focus-visible) {
    background: #e7e7e7;
    border-color: #e7e7e7;
    color: #111 !important;
    transform: none !important;
}


@media (min-width: 1471px) {
    .tsl-hero:not(.tsl-hero--page) {
        width: 100%;
    }

    .tsl-hero:not(.tsl-hero--page) .tsl-hero-main-img {
        left: 50%;
        bottom: 0;
        width: 100cqw !important;
    }
}

@media (max-width: 1350px) and (min-width: 768px) {
.tsl-hero {
        width: calc(100% - 64px);
    }

.tsl-hero-bg-text {
        top: 7%;
        left: 61%;
    }

.tsl-hero-main-img {
        left: 57%;
    }

.tsl-hero-left {
        top: 43%;
        width: 33%;
    }

.tsl-hero-title {
        margin-bottom: 22px;
        font-size: clamp(34px, 4.4cqw, 52px);
    }

.tsl-hero-description {
        margin-bottom: 28px;
        font-size: clamp(13px, 1.1cqw, 15px);
    }

.tsl-hero-actions {
        gap: 10px;
    }

.tsl-hero-btn-dark {
        min-height: 52px !important;
        padding: 0 11px 0 20px !important;
        gap: 10px !important;
        font-size: 14px !important;
    }

.tsl-hero-btn-arrow {
        width: 26px !important;
        height: 26px !important;
        flex-basis: 26px !important;
        font-size: 18px !important;
    }

.tsl-hero-btn-light {
        min-height: 52px;
        padding: 0 18px;
        font-size: 14px;
    }
}

@media (max-width: 1470px) and (min-width: 768px) {
.tsl-hero {
        width: calc(100% - 48px);
        min-height: 600px;
    }

.tsl-hero-bg-text {
        top: 90px;
        left: 64%;
        font-size: 42cqw;
    }

.tsl-hero-main-img {
        left: 61%;
        width: 82cqw !important;
    }

.tsl-hero-left {
        top: 104px;
        width: 35%;
        max-width: 350px;
        transform: none;
    }

.tsl-hero-title {
        font-size: 34px;
    }

.tsl-hero-description {
        font-size: 13px;
    }

.tsl-hero-actions {
        width: 100%;
        max-width: 230px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .tsl-hero-actions .tsl-hero-btn {
        width: 100%;
    }
}



@media (min-width: 768px) and (max-width: 1470px) {
    .tsl-hero-mobile-bar {
        position: relative;
        z-index: 20;
        width: 100%;
        padding: 16px 0 18px;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        background: #fff;
    }

    .tsl-hero-mobile-bar::after {
        background: #d8dde0;
    }

    .tsl-hero-mobile-brand {
        min-width: 0;
        margin-right: auto;
        display: inline-flex;
        align-items: center;
        gap: 11px;
        color: #111 !important;
        text-decoration: none !important;
    }

    .tsl-hero-mobile-mark {
        color: #111;
        font-size: 27px;
        font-weight: 800;
        line-height: 1;
        letter-spacing: -.08em;
    }

    .tsl-hero-mobile-brand-text {
        padding-left: 11px;
        border-left: 1px solid #d8d8d8;
        color: #666;
        font-size: 10px;
        font-weight: 600;
        line-height: 1.25;
        letter-spacing: .03em;
        text-transform: uppercase;
    }

    .tsl-hero-mobile-actions {
        display: flex;
        align-items: center;
        flex: 0 0 auto;
        gap: 0;
        padding: 3px;
        border-radius: 15px;
        background: #252a2d;
        gap: 10px;
        padding: 0;
        background: transparent;
    }

    .tsl-hero-mobile-calc {
        height: 40px;
        min-height: 40px;
        padding: 0 12px;
        height: 44px;
        min-height: 44px;
        padding: 0 16px 0 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        flex: 0 0 auto;
        border: 0;
        border-radius: 12px;
        border: 1px solid #dfe3e6;
        border-radius: 999px;
        background: #fff;
        color: #17191a !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
        box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
        font-size: 12px;
        font-weight: 700;
        line-height: 1;
        text-decoration: none !important;
        white-space: nowrap;
    }

    .tsl-hero-mobile-calc-icon {
        display: inline-flex;
        width: 16px;
        height: 16px;
        flex: 0 0 16px;
        color: #257f9f;
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
        align-items: center;
        justify-content: center;
        padding: 4px;
        border-radius: 50%;
        background: #68b3d1;
        color: #fff;
        box-sizing: border-box;
    }

    .tsl-hero-mobile-calc-icon svg {
        width: 100%;
        height: 100%;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .tsl-hero-mobile-menu {
        width: 40px;
        min-width: 40px;
        max-width: 40px;
        height: 40px;
        min-height: 40px;
        max-height: 40px;
        flex: 0 0 40px;
        width: 44px;
        min-width: 44px;
        max-width: 44px;
        height: 44px;
        min-height: 44px;
        max-height: 44px;
        flex: 0 0 44px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        margin: 0;
        padding: 0;
        border: 0 !important;
        border-radius: 12px !important;
        background: transparent !important;
        border: 1px solid #dfe3e6 !important;
        border-radius: 50% !important;
        background: #fff !important;
        box-shadow: none !important;
        outline: none !important;
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        box-sizing: border-box;
    }

    .tsl-hero-mobile-menu span {
        width: 18px;
        height: 2px;
        display: block;
        flex: 0 0 2px;
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 2px;
        background: #fff !important;
        background: #17191a !important;
        pointer-events: none;
    }

    .tsl-hero-mobile-calc:is(:hover, :focus, :focus-visible, :active) {
        border-color: #cfd6da;
        background: #fff;
        background: #f5f7f8;
        color: #17191a !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
        box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
        outline: none;
    }

    .tsl-hero-mobile-menu:is(:hover, :focus, :focus-visible, :active) {
        background: #353b3f !important;
        border-color: #cfd6da !important;
        background: #f1f3f4 !important;
        box-shadow: none !important;
        outline: none !important;
        transform: none !important;
    }

    body:not(.elementor-editor-active) .tsl-top-bar {
        display: none !important;
    }
}

@media (max-width: 767px) {
.tsl-hero {
        container-type: normal;
        width: 100%;
        aspect-ratio: auto;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "mobilebar"
            "title"
            "description"
            "visual"
            "actions";
        padding: 0 14px 8px;
    }

.tsl-hero-mobile-bar {
        grid-area: mobilebar;
        position: relative;
        z-index: 20;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: auto;
        gap: 8px;
        margin: 0 -14px 32px;
        padding: 0 14px 16px;
        background: #fff;
        box-sizing: border-box;
    }

.tsl-hero--page .tsl-hero-mobile-bar {
        padding-top: 10px;
    }

.tsl-hero-mobile-bar::after {
        left: -10px;
        width: calc(100% + 20px);
        transform: none;
        background: #d8dde0;
    }

.tsl-hero-mobile-brand {
        display: inline-flex;
        align-items: center;
        gap: 11px;
        color: #111 !important;
        text-decoration: none !important;
        min-width: 0;
        margin-right: auto;
    }

.tsl-hero-mobile-mark {
        color: #111;
        font-size: 27px;
        font-weight: 800;
        line-height: 1;
        letter-spacing: -.08em;
    }

.tsl-hero-mobile-brand-text {
        padding-left: 11px;
        border-left: 1px solid #d8d8d8;
        color: #666;
        font-size: 10px;
        font-weight: 600;
        line-height: 1.25;
        letter-spacing: .03em;
        text-transform: uppercase;
    }

.tsl-hero-mobile-actions {
        display: flex;
        align-items: center;
        flex: 0 0 auto;
        gap: 0;
        padding: 3px;
        border-radius: 15px;
        background: #252a2d;
        gap: 10px;
        padding: 0;
        background: transparent;
    }

.tsl-hero-mobile-calc {
        height: 40px;
        min-height: 40px;
        height: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        flex: 0 0 auto;
        padding: 0 12px;
        border: 0;
        border-radius: 12px;
        padding: 0 16px 0 10px;
        border: 1px solid #dfe3e6;
        border-radius: 999px;
        background: #fff;
        color: #17191a !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
        box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
        font-size: 12px;
        font-weight: 700;
        line-height: 1;
        text-decoration: none !important;
        white-space: nowrap;
    }

.tsl-hero-mobile-calc-icon {
        display: inline-flex;
        width: 16px;
        height: 16px;
        flex: 0 0 16px;
        color: #257f9f;
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
        align-items: center;
        justify-content: center;
        padding: 4px;
        border-radius: 50%;
        background: #68b3d1;
        color: #fff;
        box-sizing: border-box;
    }

.tsl-hero-mobile-calc-icon svg {
        width: 100%;
        height: 100%;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.tsl-hero-mobile-calc:is(:hover, :focus, :focus-visible, :active) {
        border-color: #cfd6da;
        background: #fff;
        background: #f5f7f8;
        color: #17191a !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
        box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
        outline: none;
    }

.tsl-hero-mobile-menu {
    width: 40px;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    flex: 0 0 40px;
    width: 44px;
    min-width: 44px;
    max-width: 44px;
    height: 44px;
    min-height: 44px;
    max-height: 44px;
    flex: 0 0 44px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 6px;

    margin: 0;
    padding: 0;

    border: 0 !important;
    border-radius: 12px !important;
    border: 1px solid #dfe3e6 !important;
    border-radius: 50% !important;

    background: transparent !important;
    background: #fff !important;

    box-shadow: none !important;
    outline: none !important;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;

    box-sizing: border-box;
}

.tsl-hero-mobile-menu span {
    width: 18px;
    height: 2px;

    display: block;
    flex: 0 0 2px;

    margin: 0;
    padding: 0;

    border: 0;
    border-radius: 2px;

    background: #fff !important;
    background: #17191a !important;

    pointer-events: none;
}

.tsl-hero-mobile-menu:is(:hover, :focus, :focus-visible, :active) {
    width: 40px;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    width: 44px;
    min-width: 44px;
    max-width: 44px;
    height: 44px;
    min-height: 44px;
    max-height: 44px;

    border: 0 !important;
    background: #353b3f !important;
    border: 1px solid #cfd6da !important;
    background: #f1f3f4 !important;

    outline: none !important;
    box-shadow: none !important;

    transform: none !important;
}

.tsl-hero-mobile-menu:is(:hover, :focus, :focus-visible, :active) span {
    background: #fff !important;
    background: #17191a !important;
}

.tsl-hero-left {
        display: contents;
        position: static;
        transform: none;
    }

.tsl-hero-title {
        grid-area: title;
        position: relative;
        z-index: 10;
        width: 100%;
        margin: 0 0 26px;
        font-size: clamp(27px, 7.2vw, 34px);
        line-height: 1.02;
    }

.tsl-hero-description {
        grid-area: description;
        position: relative;
        z-index: 10;
        width: 100%;
        max-width: none;
        margin: 0 0 8px;
        font-size: 17px;
    }

.tsl-hero-bg-text {
        grid-area: visual;
        position: relative !important;
        inset: auto !important;
        align-self: start;
        justify-self: center;
        width: max-content;
        margin: 10px 0 0;
        transform: none !important;
        font-size: 52vw;
        letter-spacing: -3.4vw;
        will-change: auto;
    }

.tsl-hero-main-img {
        grid-area: visual;
        position: relative !important;
        inset: auto !important;
        align-self: end;
        justify-self: center;
        width: 88vw !important;
        margin: 24vw 0 0 !important;
        transform: none !important;
        will-change: auto;
    }

.tsl-hero-actions {
        display: none !important;
    }

.tsl-hero-btn-dark {
        display: none !important;
    }

.tsl-hero-btn-dark .tsl-hero-btn-arrow {
        display: none !important;
    }

.tsl-hero-btn-light {
        display: none !important;
}

body:not(.elementor-editor-active) .tsl-top-bar {
        display: none !important;
    }
}

@media (max-width: 420px) {
    .tsl-hero-mobile-brand-text {
        display: none;
    }
}