/* :root {
  --bobo-sidebanner-title-size: 36px;
}

.bobo-sidebanner {
  height: 280px;
  background-size: cover;
  background-repeat: no-repeat;
}

.bobo-sidebanner .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bobo-sidebanner .container h1,
.bobo-sidebanner .container h2 {
  font-size: var(--bobo-sidebanner-title-size);
}

.bobo-sidebanner .container .left {
  width: 100%;
  text-align: left;
}

.bobo-sidebanner .container path p {
  color: var(--text-color);
}

@media screen and (max-width: 1500px) {
  :root {
    --bobo-sidebanner-title-size: 32px;
  }
}

@media screen and (max-width: 1280px) {
  :root {
    --bobo-sidebanner-title-size: 28px;
  }
}

@media screen and (max-width: 1200px) {
  :root {
    --bobo-sidebanner-title-size: 26px;
  }
}

@media screen and (max-width: 992px) {
  :root {
    --bobo-sidebanner-title-size: 32px;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --bobo-sidebanner-title-size: 28px;
  }
  .bobo-sidebanner {
    height: auto;
    padding: 30px 0
  }
}

@media screen and (max-width: 576px) {
  :root {
    --bobo-sidebanner-title-size: 24px;
  }
} */


.sidebanner {
  position: relative;
  height: 348px;
  margin-top: 100px;
}

.path {
  position: absolute;
  left: 0;
  bottom: 125px;
  right: 0
}

.path h2 {
  font-size: 36px;
  color: #fff;
  font-weight: 700
}

.path p {
  margin: 25px 0 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden
}

.path p span {
  margin: 0 8px
}

.path p a:hover {
  color: var(--color-primary);
}

@media screen and (max-width: 768px) {
  .sidebanner {
    height: auto;
    padding: 30px 0;
    margin-top: 0;
  }

  .path h2 {
    font-size: 30px
  }

  .path {
    position: static;
    text-align: center
  }

  .path p {
    font-size: 14px;
    margin: 15px 0 0
  }
}

@media screen and (max-width: 480px) {
  .path h2 {
    font-size: 24px
  }
}
 
