/* === Custom Block Styling === */

.helpWinBlock{
    padding: 64px 0px;
    background-color: #093188;
}

.helpWin__contentSection{
    padding: 16px 32px 16px 0px;
    cursor: crosshair;
}

.helpWin__contentSection::after{
    content: '';
    background-color: #5b5b5b;
    width: 90%;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.4s ease-in;
    z-index: 10;
}

.helpWin__contentSection:last-of-type::after{
    display: none;
}

.helpWin__contentSection.active::after{
    background-color: #fff;
    width: 120%;
    transition: all 0.4s ease-in;
}

.helpWin__blockHeading{
    color: #fff;
    font-weight: 500;
    padding-bottom: 32px;
    font-weight: 500;
    text-transform: uppercase;
}

.helpWin__contentTitle, .helpWin__contentTitle .addHeaderKerning{
    color: #5b5b5b !important;
    font-weight: 500 !important;
    padding-bottom: 20px;
    text-transform: uppercase;
}

.helpWin__contentTitle .addHeaderKerning{
    color: #5b5b5b !important;
    font-weight: 500 !important;
    position: relative;
    left: -4px;
}

.helpWin__contentCopy{
    color: #5b5b5b;
}

.helpWin__contentSection.active .helpWin__contentTitle, 
.helpWin__contentSection.active .helpWin__contentTitle .addHeaderKerning, 
.helpWin__contentSection.active .helpWin__contentCopy{
    color: #fff !important;
    transition: all 0.3s ease-in;
}

.helpWin__imageCol{
    z-index: -1;
}

.helpWin__imageWrapper{
    height: 100%;
}

.helpWin__image{
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.helpWin__topWrapper{
    display: flex;
    justify-content: flex-end;
    background-color: #fff;
    width: 100%;
}

.helpWin__bottomWrapper{
    background-color: #fff;
}

.helpWin__mobileLayout{
    display: none;
}

@media screen and (max-width: 991.98px){
    .helpWin__desktopLayout{
        display: none;
    }
    .helpWin__mobileLayout{
        display: block;
    }
    .helpWin__blockHeading{
        text-align: center;
    }
    .helpWin__mobileImage{
        padding-bottom: 200px;
        background-size: cover;
        background-position: center;
        margin-bottom: 16px;
    }
    .helpWin__contentTitle,
    .helpWin__contentCopy,
    .helpWin__contentTitle .addHeaderKerning{
        color: #fff !important;
        text-align: center;
    }
    .helpWinSwiper .swiper-wrapper{
        padding-bottom: 32px;
    }
    .helpWin__pagination .swiper-pagination-bullet{
        background-color: transparent;
        border: solid 1px #fff;
        opacity: 1;
    }
    .helpWin__pagination .swiper-pagination-bullet-active{
        background-color: #fff;
    }
}

@media screen and (max-width: 767px){
    .helpWin__topWrapper svg,
    .helpWin__bottomWrapper svg{
        width: 50px;
        height: 50px;
    }
}