header
{
  padding-top:40px;
  margin-bottom:25px;
  h1
  {
    color:$text-color;
    font-size: 42px;
    font-weight: 500;
    line-height: 63px; /* 150% */
    letter-spacing: 4.2px;
  }
  .info
  {
    display: flex;
    align-items:center;
    a
    {
      margin-right:20px;
      padding:3px 17px;
      border-radius: 20px;
      display: flex;
      align-items:center;
      background-color: $main-color;
      border:1px solid $main-color;
      color:#fff;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px; /* 150% */
      letter-spacing: 1.6px;
      transition-duration:.5s;
      &::before
      {
        transition-duration:.5s;
        content:' ';
        width: 13px;
        height:13px;
        border-radius: 100%;
        background-color: #fff;
        margin-right:5px;
      }
      &:hover
      {
        background-color: #fff;
        color:$main-color;
        &::before
        {
          background-color: $main-color;
        }
      }
    }
  }
  @media(min-width:768px)
  {
    display: flex;
    align-items:flex-end;
    justify-content:space-between;
  }
}

article
{
  margin-bottom:80px;
  #main-photo
  {
    display: block;
    width: 100%;
    margin-bottom: 40px;
    img
    {
      display: block;
      width: 100%;
    }
  }
  .description
  {
    margin-bottom: 40px;
    background-color: #ededed;
    color:$text-color;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: 1.6px;
    padding-top:20px;
    padding-bottom:20px;
    p
    {
      max-width: 1100px;
      margin-left:auto;
      margin-right:auto;
      padding-left:10px;
      padding-right:10px;
    }
  }
  #content
  {
    max-width: 1080px;
    margin-left:auto;
    margin-right:auto;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: 1.6px;
    p,ul,li
    {
      padding:20px 0;
    }
    h2,h3,h4,h5
    {
      margin:20px 0;
      font-size: 20px;
      font-weight: 400;
      line-height: 30px; /* 150% */
      letter-spacing: 2px;
      border-left:1px solid $text-color;
      padding-left:20px;
    }

  }
}