/*
Blocks:
/templates/block/topbanner/tb-aboutpage.html.twig
/templates/block/topbanner/tb-ipotekapage.html.twig
/templates/block/topbanner/tb-ocenkapage.html.twig
/templates/block/topbanner/tb-realtpage.html.twig
/templates/block/topbanner/tb-workpage.html.twig
/templates/block/topbanner/tb-yuridpage.html.twig
*/
.tb__section {
    min-height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tb__section > * {
    position: relative;
    z-index: 10;
  }
  
  .tb__section h1 {
    margin-bottom: 20px;
    font-size: 41px;
  }
  
  .tb__section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 1000px;
  }

  .tb__bread a {
    color: #fff;
  }

  @media only screen and (max-width: 767px) {
    .tb__section h1 {
        font-size: 32px;
    }
    .tb__section p {
        font-size: 14px;
      }
  }

  .tb__centered {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tb__bread {
    margin: 40px 10px 10px 20px;
  }
  .tb__bread ul {
    text-transform: uppercase;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
	justify-content: center;
	line-height: 26px;
  }

  .tb__bread a:hover {
    color: #0157BF;
  }

  .tb__bread li {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
  }
  .tb__bread li:not(:last-of-type):after {
    content: "";
    width: 16px;
    height: 2px;
    margin: 0 7px;
    background-color: #fff;
  }
