.hero26-editable {

    --hero-color-primary: #DB0A40;
    /*--hero-color-secondary: rgba(0, 17, 54, 0.85);*/
    --hero-color-secondary: #001136;

    --hero-container-padding-x: 20px;
    --hero-content-width: 1344px;

    --hero-content-padding-x: calc(130px - var(--hero-container-padding-x) - ((1440px - (var(--hero-container-padding-x) * 2) - var(--hero-content-width)) / 2));

    /* --hero-animation-timing-function: cubic-bezier(0.4, 0.0, 0.2, 1); */
    /* --hero-animation-timing-function: cubic-bezier(0.370, 0.010, 0.080, 0.995); */
    --hero-animation-timing-function: cubic-bezier(.18,.8,.28,.99);

    height: auto;
    padding: 0 var(--hero-container-padding-x);
    /*padding-bottom: 115px;*/
    padding-bottom: 35px;
    box-sizing: border-box;

    /*background: transparent;*/
    background: var(--hero-color-secondary);
    /*background-size: cover;*/
    /*background-position-y: calc(50% - 20px);*/

    overflow: hidden;
    position: relative;

}

@media (min-width: 768px) {
    .hero26-editable {
        padding-bottom: 115px;
    }
}

.hero26-editable .hero26-editable--bg--layer1 {
    position: absolute;
    right: 0;
    /*left: calc(50% - min(240px, 16.666666vw));*/
    left: 0;
    top: 0;
    bottom: 0;

    background: url('../img/hero26-editable-bg.jpg') no-repeat center center;
    background-size: cover;
}

.hero26-editable .hero26-editable--bg--layer3 {
    display: block;
    position: absolute;
    right: 9%;
    top: 0;
    opacity: 0.5;
}

.hero26-editable .hero26-editable--bg--layer2 {
    position: absolute;
    right: 0;
    /*left: calc(50% - min(240px, 16.666666vw) - 1px);*/
    left: 0;
    top: 0;
    bottom: 0;
    background: var(--hero-color-secondary);
    opacity: 0.86;

}

.hero26-editable .hero26-editable--bg--pattern {
    width: 3000px;
    height: 1000px;
    position: absolute;
    right: calc(50% - 1540px);
    bottom: -420px;
    /* We no longer animate right/bottom, start at neutral */
    transform: rotate(-6deg) translate(0, 0);
    /*background: linear-gradient(270deg, rgba(1, 18, 55, 0) 0%, #011237 100%);*/

    animation: hero26-editable-bg-pattern-move 12s ease-in-out infinite alternate;

    opacity: 0.5;
}

@keyframes hero26-editable-bg-pattern-move {
    0% {
        /* At rest: no translation, always apply the rotation */
        transform: rotate(-6deg) translate(0, 0);
    }
    100% {
        /* Translate horizontally and vertically, rotation always present */
        transform: rotate(-20deg) translate(600px, -420px);
    }
}

@media (min-width: 768px) {

    .hero26-editable .hero26-editable--bg--layer1 {
        position: absolute;
        right: 0;
        left: 0;
        top: 0;
        bottom: 0;
        background: url('../img/hero26-editable-bg.jpg') no-repeat center center;
        background-size: cover;
    }

    .hero26-editable .hero26-editable--bg--layer3 {
        display: none;
    }

    .hero26-editable .hero26-editable--bg--layer2 {
        position: absolute;
        right: 0;
        left: 0;
        top: 0;
        bottom: 0;
        /*background: linear-gradient(270deg, rgba(1, 18, 55, 0) 0%, rgba(1, 18, 55, 0) 60%, #011237 100%);*/
        background: linear-gradient(160deg, #001136 44.3%, rgba(0, 47, 99, 0) 86.23%);
        opacity: 1;
    }

    .hero26-editable .hero26-editable--bg--pattern {
        width: 3000px;
        height: 1000px;
        position: absolute;
        right: calc(50% - 1540px);
        bottom: -420px;
        /* We no longer animate right/bottom, start at neutral */
        transform: rotate(-6deg) translate(0, 0);
        /*background: linear-gradient(270deg, rgba(1, 18, 55, 0) 0%, #011237 100%);*/

        animation: hero26-editable-bg-pattern-move 12s ease-in-out infinite alternate;
        opacity: 1;
    }

    @keyframes hero26-editable-bg-pattern-move {
        0% {
            /* At rest: no translation, always apply the rotation */
            transform: rotate(-6deg) translate(0, 0);
        }
        100% {
            /* Translate horizontally and vertically, rotation always present */
            transform: rotate(-20deg) translate(600px, -420px);
        }
    }


}

.hero26-editable .hero26-editable--bg--bolid {
    --size-factor: 0.6;
    position: absolute;
    width: calc(294px * var(--size-factor));
    /*max-width: 540px;*/
    height: calc(490px * var(--size-factor));
    right: 30%;
    left: auto;
    top: auto;
    bottom: 20px;
    background: url('../img/hero-winter-bolid.png') no-repeat center center;
    background-size: contain;

    opacity: 0;
    animation: reveal-cl 1.5s forwards;
    animation-timing-function: var(--hero-animation-timing-function);
    animation-delay: 1s;
    display: none;

}

@media (min-width: 768px) {

    .hero26-editable .hero26-editable--bg--bolid {
        --size-factor: 1;

        /*right: calc(50% + 410px);*/
        right: calc(80% - 20px);

        left: auto;
        top: 110px;
        bottom: auto;
        display: block;
    }

}

@media (min-width: 1180px) {

    .hero26-editable .hero26-editable--bg--bolid {
        /*top: 290px;*/
        /*width: max(min(56.466666vw, 847px), 300px);*/
        /*left: calc(50% - min(200px, 13.33333vw));*/
        /*right: auto;*/
        /*max-width: 100%;*/
        /*width: min(56.466666vw, 847px);*/
        /*left: calc(50% - 200px);*/

        /*width: 294px;*/
        /*height: 490px;*/
        --size-factor: 1;

        /*right: calc(50% + 410px);*/
        right: calc(80% - 20px);
        left: auto;
        top: 110px;
        bottom: auto;

    }

}

.hero26-editable .hero26-editable--content {

    /*margin: 0 auto;*/
    /*width: min(100%, calc(var(--hero-content-width) - (var(--hero-content-padding-x) * 2)));*/
    /*height: 100%;*/
    /*padding: 95px 0 0;*/

    /*position: relative;*/
    max-width: 1160px;
    margin: 0 auto;
    padding: 100px 0 0 0;

}

@media (min-width: 768px) {

    .hero26-editable .hero26-editable--content {
        /*padding: 112px 0 0;*/
        padding: 120px 0 0 0;
    }

}

@media (min-width: 1024px) {

    .hero26-editable .hero26-editable--content {
        /*padding: 112px 0 0;*/
        padding: 140px 0 0 0;
    }

}

@media (min-width: 1260px) {

    .hero26-editable .hero26-editable--content {
        padding: 140px 0 0 0;
    }

}

.hero26-editable .hero26-editable--title {


    /*font-size: 80px;*/
    /*line-height: 80px;*/
    /*letter-spacing: 0%;*/
    /*color: white;*/
    /*font-weight: 700;*/
    /*font-family: 'Bull', sans-serif;*/


    max-width: 386px;
    margin: 0 auto;

    text-align: left;

    /*opacity: 0;*/
    /*animation: reveal-cl 1.5s forwards;*/
    /*animation-timing-function: var(--hero-animation-timing-function);*/

}

.hero26-editable .hero26-editable--title {

    font-size: 32px;
    line-height: 32px;
    color: white;
    font-weight: 700;
    font-family: 'Bull', sans-serif;

    margin-block-start: 0;
    margin-block-end: 0;

    opacity: 0;
    animation: reveal-cl 1.5s forwards;
    animation-timing-function: var(--hero-animation-timing-function);

    text-align: left;




}

@media (min-width: 375px) {

    .hero26-editable .hero26-editable--title {

        font-size: 38px;
        line-height: 38px;

    }

}

@media (min-width: 768px) {

    .hero26-editable .hero26-editable--title {

        font-size: 48px;
        line-height: 48px;
        text-align: center;
        margin: 0 auto 0 0;
        max-width: 1160px;

    }

}

.hero26-editable .hero26-editable--boxes {

    --hero-box-size-factor: min(1px, calc((100vw - 40px) / 386));

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: calc(25 * var(--hero-box-size-factor));
    /*margin-top: calc(31 * var(--hero-box-size-factor));*/
    margin-top: 31px;

}

@media (min-width: 768px) {
    .hero26-editable .hero26-editable--boxes {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        /*background-color: #001136;*/
        /*background-color: var(--hero-color-secondary);*/
    }
}

.hero26-editable .hero26-editable--box {

    --hero26-editable-box-base-width: 386;
    --hero26-editable-box-base-height: 275;

    width: calc(var(--hero26-editable-box-base-width) * var(--hero-box-size-factor));
    /*height: calc(var(--hero26-editable-box-base-height) * var(--hero-box-size-factor));*/

    position: relative;

    /*opacity: 0;*/
    /*animation: reveal-bc 1.5s forwards;*/
    /*animation-delay: 0.35s;*/
    /*animation-timing-function: var(--hero-animation-timing-function);*/

}

.hero26-editable .hero26-editable--box .hero26-editable--box--hover {
    transition: transform .4s;
    transition-timing-function: cubic-bezier(0.370, 0.010, 0.080, 0.995);
}



.hero26-editable .hero26-editable--box:hover .hero26-editable--box--hover {
    transform: translateY(calc(-20 * var(--hero-box-size-factor)));
}

.hero26-editable .hero26-editable--box:hover .hero26-editable--box--shaker {
    animation: jump-shaking 1s;
}

.hero26-editable .hero26-editable--box:hover .hero26-editable--box--chevron {
    transform: rotate(720deg);
}

@media (min-width: 768px) {
    .hero26-editable .hero26-editable--box:hover .hero26-editable--box--cta {
        /*background-color: #001136;*/
        /*background-color: var(--hero-color-secondary);*/
    }
}

.hero26-editable .hero26-editable--box .hero26-editable--box--inner-wrapper {
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    box-shadow: inset 1px 1px 2px -1px rgba(255, 255, 255, 1), inset -1px -1px 2px -1px rgba(255, 255, 255, 1), inset 4px 4px 18px 0px rgba(0, 0, 0, 0.2);
    border-radius: 12px;

    padding: calc(24 * var(--hero-box-size-factor));

    overflow: hidden;

    transform: translateZ(0);
}

.hero26-editable .hero26-editable--box--bg {

    /*width: calc(var(--hero26-editable-box-base-width) * var(--hero-box-size-factor));*/
    /*height: calc((var(--hero26-editable-box-base-height)) * var(--hero-box-size-factor));*/

    width: 100%;
    height: 100%;

    /*overflow: hidden;*/
    position: absolute;
    /*top: calc(33 * var(--hero-box-size-factor));*/
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

}

.hero26-editable .hero26-editable--box-right .hero26-editable--box--bg {

    background: linear-gradient(180deg, #DB0A40 0%, rgba(219, 10, 64, 0.2) 100%);

}

.hero26-editable .hero26-editable--box .hero26-editable--box--bg {
    /*width: calc(var(--hero26-editable-box-base-width) * var(--hero-box-size-factor));*/
    /*height: calc((var(--hero26-editable-box-base-height) - 64.42) * var(--hero-box-size-factor));*/
}

.hero26-editable .hero26-editable--box-right {

    animation-delay: 0.7s;

}

.hero26-editable .hero26-editable--box--esim {

    position: relative;
    /*background-color: #ffffff;*/
    color: #ffffff;
    font-family: 'Bull', sans-serif;
    font-weight: 700;
    text-align: center;

    font-size: calc(13 * var(--hero-box-size-factor));
    line-height: calc(18 * var(--hero-box-size-factor));
    margin-top: calc(10 * var(--hero-box-size-factor));
}

.hero26-editable .hero26-editable--box-left .hero26-editable--box--esim {



}

.hero26-editable .hero26-editable--box-right .hero26-editable--box--esim {

    /*background-color: var(--hero-color-primary);*/
    /*color: #ffffff;*/

}

.hero26-editable .hero26-editable--box-right .hero26-editable--box--price {

    /*color: var(--hero-color-primary);*/

}

.hero26-editable .hero26-editable--box--content {

    color: #ffffff;
    font-size: calc(30 * var(--hero-box-size-factor));
    font-family: 'Bull', sans-serif;
    font-weight: 700;
    line-height: calc(30 * var(--hero-box-size-factor));
    text-align: left;

    position: relative;

    display: flex;
    flex-direction: column;

}

.hero26-editable .hero26-editable--box--content {
}

.hero26-editable .hero26-editable--box--content-space {

    flex-grow: 1;

}

.hero26-editable .hero26-editable--box--title {

    color: #ffffff;
    font-size: calc(28 * var(--hero-box-size-factor));
    font-family: 'Bull', sans-serif;
    font-weight: 700;
    line-height: calc(28 * var(--hero-box-size-factor));
    text-align: left;
    text-transform: uppercase;

}

.hero26-editable .hero26-editable--box--price-row {

    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: calc(28 * var(--hero-box-size-factor));
    margin-top: calc(22 * var(--hero-box-size-factor));
}

.hero26-editable .hero26-editable--box--price {

    color: #ffffff;
    font-size: calc(40 * var(--hero-box-size-factor));
    font-family: 'Bull', sans-serif;
    font-weight: 700;
    line-height: calc(48 * var(--hero-box-size-factor));
    word-spacing: calc(-5 * var(--hero-box-size-factor));

    margin-top: calc(12 * var(--hero-box-size-factor));
    flex-grow: 0;
    flex-shrink: 0;
    width: fit-content;
}
.hero26-editable .hero26-editable--box--price--digit {

    font-size: calc(80 * var(--hero-box-size-factor));
}

.hero26-editable .hero26-editable--box--disclaimer {

    /*flex-grow: 0;*/
    /*flex-shrink: 1;*/

}

.hero26-editable .hero26-editable--box--disclaimer .part1 {

    color: #ffffff;
    font-size: calc(20 * var(--hero-box-size-factor));
    font-family: 'Bull', sans-serif;
    font-weight: 700;
    line-height: calc(24 * var(--hero-box-size-factor));
    display: block;

}

.hero26-editable .hero26-editable--box--disclaimer .part2 {

    color: #ffffff;
    font-size: calc(12 * var(--hero-box-size-factor));
    font-family: 'Bull', sans-serif;
    font-weight: 400;
    line-height: calc(16 * var(--hero-box-size-factor));
    display: block;
    margin-top: calc(8 * var(--hero-box-size-factor));

}

.hero26-editable .hero26-editable--box--disclaimer strong {

    font-weight: 700;

}

.hero26-editable .hero26-editable--box--cta {

    color: #ffffff;
    font-family: 'Bull', sans-serif;
    font-weight: 700;
    text-transform: uppercase;

    position: relative;

    /*margin-top: calc(26 * var(--hero-box-size-factor));*/


    margin-top: calc(22 * var(--hero-box-size-factor));
    line-height: calc(48 * var(--hero-box-size-factor));
    text-align: center;
    background-color: var(--hero-color-primary);
    border-radius: 9999px;
    font-size: calc(16 * var(--hero-box-size-factor));
    transition: background-color .3s ease;
}

.hero26-editable .hero26-editable--box-right .hero26-editable--box--cta {

    color: var(--hero-color-primary);
    background-color: #ffffff;
}

.hero26-editable .hero26-editable--marketing-consent {

    color: #ffffff;
    font-family: 'Bull', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;

    /*width: min(384px, 100%);*/
    margin-top: 40px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;

    display: flex;
    flex-direction: row;
    gap: 7px;
    align-items: center;
    justify-content: center;

    opacity: 0;
    animation: reveal-bc 1.5s forwards;
    animation-delay: 0.85s;
    animation-timing-function: var(--hero-animation-timing-function);

    max-width: 386px;
}

@media (min-width: 768px) {
    .hero26-editable .hero26-editable--marketing-consent {
        margin-left: auto;
        margin-right: auto;
        max-width: initial;
        /*background-color: #001136;*/
        /*background-color: var(--hero-color-secondary);*/
    }
}

.hero26-editable .hero26-editable--marketing-consent--dot {

    height: 24px;
    width: 24px;
    text-align: center;
    line-height: 24px;
    vertical-align: middle;
    background-color: var(--hero-color-primary);
    border-radius: 9999px;

}

.hero26-editable .hero26-editable--marketing-consent--text {

    /*margin-top: 2px;*/
    width: fit-content;
    text-wrap: balance;

}

.hero26-editable .hero26-editable--marketing-consent strong {

    font-weight: 700;

}

.hero26-editable .hero26-editable--box--banner {
    position: absolute;
    top: calc(22 * var(--hero-box-size-factor));
    right: calc(-40 * var(--hero-box-size-factor));
    background: var(--hero-color-secondary);
    color: #FFFFFF;
    font-family: 'Bull', sans-serif;
    font-weight: 700;
    font-size: calc(12 * var(--hero-box-size-factor));
    line-height: calc(30 * var(--hero-box-size-factor));
    text-transform: uppercase;
    /*padding: calc(3 * var(--hero-box-size-factor)) calc(25 * var(--hero-box-size-factor));*/
    transform: rotate(30deg);
    transform-origin: center;
    z-index: 10;
    white-space: nowrap;
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);*/
    pointer-events: none;
    height: calc(30 * var(--hero-box-size-factor));
    width: calc(200 * var(--hero-box-size-factor));
    text-align: center
}

.hero26-editable .hero26-editable--box {
    overflow: visible;
}
