/*------------- #LAYOUTS --------------*/
/*------------- #VARIABLES --------------*/
/*------------- #404-PAGE --------------*/
.content-page-404 {
  padding: 230px 0 510px;
  background: url("../img/404-img.png") 0 100% no-repeat;
  text-align: center;
  background-size: contain;
  background-color: #F7F9F9; }
  @media (max-width: 800px) {
    .content-page-404 {
      padding: 100px 0 300px; } }
  @media (max-width: 360px) {
    .content-page-404 {
      padding: 50px 0 250px; } }
  .content-page-404 .title {
    font-size: 257px;
    margin-bottom: 15px;
    line-height: 1; }
    @media (max-width: 800px) {
      .content-page-404 .title {
        font-size: 150px; } }
    @media (max-width: 480px) {
      .content-page-404 .title {
        font-size: 100px; } }
  .content-page-404 .subtitle {
    font-size: 47px;
    margin-bottom: 30px;
    line-height: 1; }
    @media (max-width: 800px) {
      .content-page-404 .subtitle {
        font-size: 36px; } }
  .content-page-404 .text {
    font-size: 28px;
    margin-bottom: 53px;
    line-height: 1.3; }
    @media (max-width: 800px) {
      .content-page-404 .text {
        font-size: 22px; } }
  .content-page-404 .btn {
    font-size: 32px;
    text-transform: uppercase; }

.read-more-state {
  display: none;
}

.read-more-target {
  opacity: 0;
  max-height: 0;
  font-size: 0;
  transition: .25s ease;
}

.read-more-state:checked ~ .read-more-wrap .read-more-target {
  opacity: 1;
  font-size: inherit;
  max-height: 999em;
}

.read-more-state ~ .read-more-trigger:before {
  content: 'Show more';
}

.read-more-state:checked ~ .read-more-trigger:before {
  content: 'Show less';
}

.read-more-trigger {
  cursor: pointer;
  display: inline-block;
  padding: 0 .5em;
  color: #666;
  font-size: .9em;
  line-height: 2;
  border: 1px solid #ddd;
  border-radius: .25em;
}