*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
body {
  width: 100%;
}

body {
  display: block;
  position: relative;
  background: #e8edef;
}

/* Project */
.project {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 100%;
  max-width: 1200px;
  min-height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.project__name {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 8% auto 4%;
  padding: 0 2%;
  font-family: Tahoma, Verdana, Arial, sans-serif;
  font-size: 45px;
  line-height: 1;
  color: #2d3436;
  text-align: center;
}
.project__list{
  display: inline-block;
  list-style: none;
  color: #7f8c8d;
  text-align: center;
}
.project__item{
  position: relative;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
  text-align: left;
  color: #7f8c8d;
}
.project__item_state_checked:before{
  content: "\2713";
  position: absolute;
  right: 100%;
}
.project__item ul,
.project__item ol{
  margin-left: 40px;
  margin-bottom: 20px;
  list-style: none;
}
.project__link{
  display: inline-block;
  margin-bottom: 20px;
  color: #7f8c8d;
  outline: none;
  text-decoration: underline;
}
.project__link_empty{
  display: block;
  cursor: default;
  color: #a8a4a4;
  text-decoration: none;
}
.project__link:hover{
  text-decoration: none;
}

/* Showcase */
.showcase{
  position: relative;
  z-index: 1;
  display: inline-block;
  white-space: nowrap;
}
.showcase:after {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  background-color: #DDD;
}
.showcase__group{
    display: inline-block;
    white-space: nowrap;
    vertical-align: top;
    margin: 0 10px;
}
.showcase__group:first-child{
    margin-left: 0;
}
.showcase__group:last-child{
    margin-right: 0;
}
.showcase__item{
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding-top: 60px;
}
.showcase__header{
    box-sizing: border-box;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: block;
    height: 60px;
    padding: 10px 20px;
    background-color: transparent;
    font-size: 16px;
    line-height: 1;
    font-family: sans-serif;
    font-weight: 600;
    color: #222;
    white-space: normal;
    text-align: center;
    overflow: hidden;
}
.showcase__image{
    display: inline-block;
    width: auto;
    margin: 0;
    padding: 0;
}
.showcase__link{
    color: inherit;
    text-decoration: underline;
}
.showcase__link:hover{
    text-decoration: none;
}
