/* Bus World homepage Tours Promise section. */
.bw-tours-promise{
    position:relative;
    isolation:isolate;
    width:100%;
    height:clamp(
        var(--bw-tour-promise-desktop-min-height,460px),
        34vw,
        var(--bw-tour-promise-desktop-max-height,580px)
    );
    overflow:hidden;
    box-sizing:border-box;
    background-color:#111;
    background-image:var(--bw-tour-promise-background);
    background-position:var(--bw-tour-promise-position-desktop,center center);
    background-size:var(--bw-tour-promise-background-size,cover);
    background-repeat:var(--bw-tour-promise-background-repeat,no-repeat);
    color:#fff;
    font-family:var(--font-interface);
}

.bw-tours-promise::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:0;
    background:var(--bw-tour-promise-overlay-colour,#000000);
    opacity:var(--bw-tour-promise-overlay-opacity,.5);
    pointer-events:none;
}

.bw-tours-promise__container{
    position:relative;
    z-index:1;
    height:100%;
    display:flex;
    align-items:center;
    box-sizing:border-box;
    padding-top:var(--bw-tour-promise-desktop-top,126px);
    padding-bottom:var(--bw-tour-promise-desktop-bottom,126px);
}

.bw-tours-promise__content{
    width:min(100%,var(--bw-tour-promise-content-width,1120px));
    margin-inline:auto;
}

.bw-tours-promise--align-center .bw-tours-promise__content{text-align:center}
.bw-tours-promise--align-left .bw-tours-promise__content{text-align:left;margin-left:0}
.bw-tours-promise--align-right .bw-tours-promise__content{text-align:right;margin-right:0}

.bw-tours-promise__eyebrow{
    margin:0;
    color:#F30101;
    font-family:var(--font-interface);
    font-size:clamp(12px,.78vw,15px);
    font-weight:700;
    line-height:1.35;
    letter-spacing:.16em;
    text-transform:uppercase;
}

.bw-tours-promise__line{
    display:block;
    width:clamp(48px,4vw,68px);
    height:2px;
    margin:16px auto 0;
    background:#F30101;
}

.bw-tours-promise--align-left .bw-tours-promise__line{margin-left:0}
.bw-tours-promise--align-right .bw-tours-promise__line{margin-right:0}

.bw-tours-promise__title{
    margin:clamp(20px,1.8vw,28px) 0 0;
    color:var(--bw-tour-promise-heading-colour,#fff);
    font-family:var(--font-display);
    font-size:clamp(44px,4.15vw,72px);
    font-style:normal;
    font-weight:600;
    line-height:1.04;
    letter-spacing:-.035em;
    text-wrap:balance;
}

.bw-tours-promise__paragraph{
    width:min(100%,var(--bw-tour-promise-paragraph-width,940px));
    margin:clamp(18px,1.7vw,26px) auto 0;
    color:var(--bw-tour-promise-paragraph-colour,#fff);
    opacity:var(--bw-tour-promise-paragraph-opacity,.92);
    font-family:var(--font-interface);
    font-size:clamp(16px,1.15vw,20px);
    font-weight:400;
    line-height:1.62;
    text-wrap:pretty;
}

.bw-tours-promise--align-left .bw-tours-promise__paragraph{margin-left:0}
.bw-tours-promise--align-right .bw-tours-promise__paragraph{margin-right:0}

.bw-tours-promise--text-shadow .bw-tours-promise__title,
.bw-tours-promise--text-shadow .bw-tours-promise__paragraph{
    text-shadow:0 2px 16px rgba(0,0,0,.36);
}

@media (min-width:1024px) and (hover:hover) and (pointer:fine){
    .bw-tours-promise--desktop-fixed{background-attachment:fixed}
}

@media (max-width:1199px){
    .bw-tours-promise{
        height:auto;
        min-height:420px;
        max-height:none;
        background-position:var(--bw-tour-promise-position-tablet,center center);
        background-attachment:scroll;
    }

    .bw-tours-promise__container{
        min-height:420px;
        padding-top:var(--bw-tour-promise-tablet-top,104px);
        padding-bottom:var(--bw-tour-promise-tablet-bottom,104px);
    }

    .bw-tours-promise__title{font-size:clamp(42px,6vw,62px)}
    .bw-tours-promise__paragraph{font-size:clamp(16px,1.8vw,19px)}
}

@media (max-width:767px){
    .bw-tours-promise{
        min-height:380px;
        background-position:var(--bw-tour-promise-position-mobile,58% center);
        background-attachment:scroll;
    }

    .bw-tours-promise__container{
        min-height:380px;
        padding-top:var(--bw-tour-promise-mobile-top,82px);
        padding-bottom:var(--bw-tour-promise-mobile-bottom,82px);
    }

    .bw-tours-promise__content{width:100%}

    .bw-tours-promise__eyebrow{
        font-size:10px;
        letter-spacing:.14em;
    }

    .bw-tours-promise__line{
        width:46px;
        margin-top:14px;
    }

    .bw-tours-promise__title{
        margin-top:20px;
        font-size:clamp(38px,10.2vw,50px);
        line-height:1.05;
    }

    .bw-tours-promise__paragraph{
        margin-top:18px;
        font-size:clamp(16px,4.2vw,18px);
        line-height:1.58;
    }
}

@media (max-width:390px){
    .bw-tours-promise{min-height:370px}
    .bw-tours-promise__container{min-height:370px}
    .bw-tours-promise__title{font-size:clamp(36px,10.4vw,43px)}
}

@media (prefers-reduced-motion:reduce){
    .bw-tours-promise,
    .bw-tours-promise *{
        animation:none!important;
        transition:none!important;
        scroll-behavior:auto!important;
    }
}
