.breadcrumb-area-bg {
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
  }
  .breadcrumb-area-bg:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.1;
    z-index: -1;
    content: "";
  }
  
  .breadcrumb-page-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 0;
  }
  @media (max-width: 1200px) {
    .breadcrumb-page-title {
      font-size: calc(1.375rem + 1.5vw);
    }
  }
  .breadcrumb-page-title--style2 {
    margin-bottom: 100px;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-page-title--style2 {
      margin-bottom: 50px;
    }
  }
  @media only screen and (max-width: 767px) {
    .breadcrumb-page-title--style2 {
      margin-bottom: 30px;
    }
  }
  @media only screen and (max-width: 479px) {
    .breadcrumb-page-title--style2 {
      margin-bottom: 15px;
      font-size: 2.1875rem;
    }
  }
  @media only screen and (max-width: 479px) and (max-width: 1200px) {
    .breadcrumb-page-title--style2 {
      font-size: calc(1.34375rem + 1.125vw);
    }
  }
  
  .breadcrumb-page-list {
    text-align: right;
  }
  @media only screen and (max-width: 575px) {
    .breadcrumb-page-list {
      text-align: left;
      margin-top: 10px;
    }
  }
  .breadcrumb-page-list li {
    display: inline-block;
    color: #ffffff;
    font-size: 0.8125rem;
    line-height: 1.2;
    font-weight: 700;
  }
  .breadcrumb-page-list li.has-children {
    position: relative;
    padding-right: 25px;
  }
  .breadcrumb-page-list li.has-children a {
    color: #ffffff;
    position: relative;
    letter-spacing: 0.5px;
    padding: 2px 0;
  }
  .breadcrumb-page-list li.has-children a:after {
    -webkit-transition: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    transition: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    content: "";
    width: 0;
    height: 1px;
    bottom: 0;
    position: absolute;
    left: auto;
    right: 0;
    z-index: 1;
    background-color: transparent;
  }

  .breadcrumb-page-list li.has-children:hover a:after {
    background-color: #ffffff;
    width: 100%;
    left: 0;
    right: auto;
  }
  .breadcrumb-page-list--style2 {
    text-align: left;
  }
  
  .breadcrumb-page-list.text-uppercase a{
    color: #222222;
  }
  .breadcrumb-page-list.text-uppercase{
    color: #222222;
  }