.breadcrumb{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    min-height: 351px; 
 
    @media only screen and (max-width:992px){
        min-height: 182px; 
    }
    .image_breadcrumb{ 
        // position: relative;
        img{
            position: absolute;
            z-index: -1;
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 182px;
            left: 0;
            top: 0;
        }
       
    }
    .text_breadcrumb   {
        text-align: center;
        max-width: calc(100% - 30px);
        margin: 100px 0 10px;
            .phat_breadcrumb ul{
            font-weight: 300;
            font-size: 16px;
            text-transform: capitalize;
            display: flex;
            justify-content: center;
            list-style-type: none;
            padding-top: 7px;
            transform: translateX(-14px);
            color: #FFFFFF;
                li{
                    font-family: $Jost;
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 25px;
                    margin: 0px 5px;
                    white-space: nowrap;
                    a{
                        color: #FFFFFF; 
                    }
                }
            }

            .title_breadcrumb{
                font-family: $Playfair;
                font-weight: 400;
                font-size: 54px;
                line-height: 70px;
                text-align: center;
                text-transform: uppercase;
                color: #FFFFFF;
            }
    }
    @media only screen and (max-width:992px){
        .text_breadcrumb {
            bottom: 12px;
            .title_breadcrumb{
                font-size: 36px;
                line-height: 48px;
            
              }
               .phat_breadcrumb ul {
                padding-top: 0;
                }
        }
            
       
    }
}