/* Container and Layout Styles */
.WhereYouLeftBtns{
    box-shadow: 0px 4px 4px 0px #00000040;
}

.WhereYouLeftBtns .LeftCard__container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 72px;
}

/* Banner/Hoarding Styles */
.WhereYouLeftBtns .hoarding-flag-desktop {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0px auto;
    padding: 5px 15px;
    background: linear-gradient(91.12deg, #005E9E 16.4%, #1B99EF 137.81%);
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    position: relative;
    border-bottom-left-radius: 3.5px;
    border-bottom-right-radius: 3.5px;
}

.WhereYouLeftBtns .hoarding-flag-desktop::after,
.WhereYouLeftBtns .hoarding-flag-desktop::before {
    content: "";
    position: absolute;
    top: 0;
}

.WhereYouLeftBtns .hoarding-flag-desktop::after {
    right: -38px;
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-bottom: 34px solid transparent;
    border-left: 40px solid #1286D5;
    /* z-index: -1; */
}

.WhereYouLeftBtns .hoarding-flag-desktop::before {
    left: -38px;
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-bottom: 34px solid transparent;
    border-right: 40px solid #005E9E;
    /* z-index: -1; */
}


.WhereYouLeftBtns .hoarding-flag-mobile {
    display: none;
}

/* Card Wrapper Styles */
.WhereYouLeftBtns .cardWrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 72px;
    border-right: 2px dashed #1F7BD2;
    padding-bottom: 21px;
    padding-top: 15px;
}

.WhereYouLeftBtns .LeftCard__container .cardWrapper:nth-child(even) {
    border: none;
    padding-right: 0px;
}

/* Button Styles */
.WhereYouLeftBtns .card-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 8px 15px;
    border: 1px solid #ED1C24;
    border-radius: 4px;
    color: #ED1C24;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    cursor: pointer;
}

.WhereYouLeftBtns .card-btn:hover {
    box-shadow: 0 5px 7px rgb(228 24 32 / 40%);
    color: #ED1C24;
}
 @media screen and (max-width:767px) {
    .WhereYouLeftBtns{
        padding: 20px 0px;
    }

    .WhereYouLeftBtns .hoarding-flag-desktop {
        display: none;
    }

    .WhereYouLeftBtns .hoarding-flag-mobile {
        display: block;
        background-color: #FDD1D1;
        font-size: 18px;
        font-weight: 600;
        line-height: 27px;
        text-align: center;
        color: #005E9E;
        padding: 10px;
    }

    .WhereYouLeftBtns .LeftCard__container {
        flex-direction: column;
        gap: 22px;
        margin-top: 13px;
    }

    .WhereYouLeftBtns .card-left-icon {
        display: none;
    }

    .WhereYouLeftBtns  .cardWrapper {
        border: none;
        gap: 10px;
        width: 100%;
        padding: 0px;
    }
    .WhereYouLeftBtns  .card-btn{
        width: 100%;
    }

} 



