#head
{
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  z-index:100;
  >label
  {
    color:#fff;
  }
  #main-menu
  {
    >label
    {
      color:#fff;
    }
    ul
    {
      li
      {
        a
        {
          color:#fff;
        }
      }
    }
  }
  #logo
  {
    a
    {
      picture
      {
        img
        {
          display: block;
          &.main
          {
            display: none;
          }
        }
      }
    }
  }
}

#banner
{
  margin-bottom:30px;
  padding-top:125px;
  position: relative;
  height: 56.25vw;
  picture
  {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height:100%;
    img
    {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
  }
  .breadcrumb
  {
    position: relative;
    z-index: 1;
    li
    {
      color:#fff;
      a
      {
        color:#fff;
      }
    }
  }
  .content
  {
    position: relative;
    z-index:1;
    background-color: rgba(0,0,0,.5);
    padding:24px;
    color:#fff;
    h2
    {
      font-size: 30px;
      font-weight: 700;
      line-height: 45px;
      letter-spacing: 3px;
    }
    p
    {
      padding:20px 0;
    }
  }
  @media(min-width:768px)
  {
    display: flex;
    align-items:flex-start;
    flex-direction:column;
    justify-content:space-between;
    padding-bottom:125px;
  }
  @media(max-width:767px)
  {
    height:auto;
    padding-bottom:30px;
    .content
    {
      h2
      {
        font-size: 20px;
        font-weight: 500;
        line-height: 30px;
        letter-spacing: 2px;
      }
    }
  }
}
#body
{

  article
  {
    padding-bottom:80px;
    header
    {
      
      h1
      {
        padding-bottom:20px;
        margin-bottom: 20px;
        border-bottom: 3px solid $main-color;
      }
    }
  }
}