section#img-area{
  position: relative;
  width: 100%;
  overflow: hidden;
}
section#img-area::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url(./../../img/header-page.jpg) no-repeat center top;
  background-size: cover;
  filter: brightness(0.8) contrast(1.1) saturate(1.2);
  z-index: 0;
}
section#img-area .path{
    position: absolute;
    bottom: 10%;
    left: 12.5%;
    display: flex;
    flex-direction: column;
    text-align: start;
    gap: 1em;
}
section#img-area .path #title{
    user-select: none;
    pointer-events: none;
}
section#img-area .path span{
    font-weight: 500;
    color: #fff;
    text-shadow: 1px 1px 4px #000;
}
section#img-area .path span a{
    color: #fff;
    text-decoration: none;
}
section#img-area .path span i{
    font-size: .8rem;
}
@media screen and (min-width:1256px) {
    section#img-area{
        height: 50vh;
    }
    section#img-area .path #title{
        font-size: 1.5rem;
    }
    section#img-area .path span{
        font-size: 1.2rem;
    }
}
@media screen and (max-width:1256px) and (min-width:912px) {
    section#img-area{
        height: 40vh;
    }
    section#img-area .path #title{
        font-size: 1.4rem;
    }
    section#img-area .path span{
        font-size: 1.1rem;
    }
}
@media screen and (max-width:912px) and (min-width:576px) {
    section#img-area{
        height: 35vh;
    }
    section#img-area .path #title{
        font-size: 1.3rem;
    }
    section#img-area .path span{
        font-size: 1rem;
    }
}
@media screen and (max-width:576px){
    section#img-area{
        height: 30vh;
    }
    section#img-area .path #title{
        font-size: 1.3rem;
    }
    section#img-area .path span{
        font-size: 1rem;
    }
}