@font-face {
  font-family: Baroqe;
  src: url("../fonts/BaroqueScript.ttf");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: Allura;
  src: url("../fonts/Allura.ttf");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: Lato-Italic;
  src: url("../fonts/Lato/Lato-Italic.ttf");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: Lato-Light;
  src: url("../fonts/Lato/Lato-Light.ttf");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: Lato-LightItalic;
  src: url("../fonts/Lato/Lato-LightItalic.ttf");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: Lato-Heavy;
  src: url("../fonts/Lato/Lato-Heavy.ttf");
  font-weight: normal;
  font-style: normal; }
* {
  box-sizing: border-box; }

img {
  max-width: 100%;
  height: auto; }

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  font-weight: 300; }

.wrapper {
  width: 100vw;
  height: 100vh;
  overflow: auto; }

.title-section {
  margin: 60px 10px;
  text-align: center;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  background: linear-gradient(293deg, rgba(255, 255, 255, 0.5), rgba(152, 0, 255, 0.2), rgba(255, 255, 255, 0.5), rgba(228, 47, 165, 0.2), rgba(255, 255, 255, 0.5), rgba(21, 234, 179, 0.2), rgba(255, 255, 255, 0.5), rgba(232, 58, 58, 0.2));
  background-size: 1600% 1600%;
  -webkit-animation: memg-block-anim 36s ease infinite;
  -moz-animation: memg-block-anim 36s ease infinite;
  -o-animation: memg-block-anim 36s ease infinite;
  animation: memg-block-anim 36s ease infinite; }
  @media all and (min-width: 1224px) {
    .title-section {
      margin: 60px; } }
  @media all and (min-width: 1624px) {
    .title-section {
      margin: 60px 90px; } }
@-webkit-keyframes memg-block-anim {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }
@-moz-keyframes memg-block-anim {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }
@-o-keyframes memg-block-anim {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }
@keyframes memg-block-anim {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }
  .title-section h1 {
    text-align: center;
    font-weight: 300;
    font-size: calc(3vw + 30px);
    line-height: 50px;
    color: #692a21;
    font-family: Allura;
    background: url(../images/foo/bg-03.png) repeat;
    background-color: white;
    padding: 45px 20px; }
  .title-section p {
    font-family: Lato-LightItalic;
    font-size: 18px;
    color: #231f20;
    padding: 30px;
    background: url(../images/foo/bg-03.png) repeat;
    background-color: white; }
    .title-section p span {
      font-family: Lato-Italic; }
  .title-section div.sepp {
    margin: 2px 0;
    height: 30px;
    width: 100%;
    position: relative;
    background: url(../images/foo/bg-03.png) repeat;
    background-color: rgba(255, 255, 255, 0.6); }
    .title-section div.sepp:before {
      content: "";
      background: url("../images/foo/sepp_02.png") no-repeat;
      height: 16px;
      width: 200px;
      margin: 0 auto;
      margin-left: -100px;
      position: absolute;
      top: 7px;
      left: 50%;
      display: block; }

.gallery {
  margin: auto;
  margin-top: 4px;
  text-align: center;
  margin-right: -4px; }
  .gallery .item {
    width: 24%;
    height: 200px;
    background: #000;
    margin-bottom: 4px;
    overflow: hidden; }
    .gallery .item .desc {
      position: absolute;
      background: rgba(255, 255, 255, 0.8);
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      -webkit-transition: all 300ms ease;
      transition: all 300ms ease;
      opacity: 0; }
      .gallery .item .desc h4 {
        color: #000;
        font-weight: 300;
        font-size: 1.4em;
        text-transform: uppercase;
        opacity: 0;
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
        -webkit-transition-delay: 0.3s;
        transition-delay: 0.3s;
        font-size: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%) scale(0);
        transform: translate(-50%, -50%) scale(0);
        margin: 0;
        padding: 0;
        width: 80%; }
    .gallery .item img {
      display: block;
      -webkit-transition: all 700ms ease;
      transition: all 700ms ease;
      object-fit: contain; }
    .gallery .item:hover .desc {
      opacity: 1; }
      .gallery .item:hover .desc h4 {
        opacity: 1;
        font-family: Lato-Heavy;
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1); }
        .gallery .item:hover .desc h4.desc-short {
          font-size: 1.4em; }
    .gallery .item:hover img {
      width: 100%;
      max-width: 100%; }

@media all and (min-width: 320px) {
  .gallery .item {
    width: calc( ( 100% / 0 - 4px));
    height: 80px; } }
@media all and (min-width: 480px) {
  .gallery .item {
    width: calc( ( 100% / 1 - 4px));
    height: 100px; } }
@media all and (min-width: 768px) {
  .gallery .item {
    width: calc( ( 100% / 2 - 4px));
    height: 120px; } }
@media all and (min-width: 1024px) {
  .gallery .item {
    width: calc( ( 100% / 3 - 4px));
    height: 140px; } }
@media all and (min-width: 1224px) {
  .gallery .item {
    width: calc( ( 100% / 4 - 4px));
    height: 160px; } }
@media all and (min-width: 1424px) {
  .gallery .item {
    width: calc( ( 100% / 5 - 4px));
    height: 180px; } }
/*
@media all and (max-width: 1500px) {
  .gallery .item {
    width: 33%;
    height: 240px;
  }
}

@media all and (max-width: 1180px) {
  .gallery .item {
    width: 49%;
    height: 220px;
  }
}

@media all and (max-width: 920px) {
  .gallery .item {
    height: 200px;
  }
}

@media all and (max-width: 780px) {
  .gallery {
    padding-left: 20px;
    padding-right: 20px;
    .item {
      width: 100%;
      height: 240px;
    }
  }
}

@media all and (max-width: 580px) {
  .gallery .item {
    width: 100%;
    height: 200px;
  }
}*/
.project-view {
  width: calc( 100% - 110px);
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  z-index: 12;
  border-top: 25px solid #000; }
  .project-view .project-article-header {
    text-align: center;
    height: 30vh;
    background-size: cover !important;
    position: relative; }
    .project-view .project-article-header::before {
      background: url("../images/foo/bg-11.png") repeat;
      content: "";
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      position: absolute;
      background-color: rgba(0, 0, 0, 0.5); }
    .project-view .project-article-header .project-article-title {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
      .project-view .project-article-header .project-article-title h1 {
        font-size: calc( 100% + 2vw );
        font-weight: 300;
        margin: 0;
        color: #fff;
        text-transform: uppercase; }
  .project-view .project-article-content {
    padding: auto;
    max-width: 100%;
    padding-bottom: calc( 20px + 1vw); }
    .project-view .project-article-content .item-articles .item-title {
      margin-top: 40px; }
      .project-view .project-article-content .item-articles .item-title-0-0 {
        margin-top: 0px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-0-0 {
            margin-top: 0px; } }
      .project-view .project-article-content .item-articles .item-title-0-1 {
        margin-top: 0px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-0-1 {
            margin-top: 10px; } }
      .project-view .project-article-content .item-articles .item-title-0-2 {
        margin-top: 0px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-0-2 {
            margin-top: 20px; } }
      .project-view .project-article-content .item-articles .item-title-0-3 {
        margin-top: 0px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-0-3 {
            margin-top: 30px; } }
      .project-view .project-article-content .item-articles .item-title-0-4 {
        margin-top: 0px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-0-4 {
            margin-top: 40px; } }
      .project-view .project-article-content .item-articles .item-title-0-5 {
        margin-top: 0px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-0-5 {
            margin-top: 50px; } }
      .project-view .project-article-content .item-articles .item-title-0-6 {
        margin-top: 0px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-0-6 {
            margin-top: 60px; } }
      .project-view .project-article-content .item-articles .item-title-0-7 {
        margin-top: 0px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-0-7 {
            margin-top: 70px; } }
      .project-view .project-article-content .item-articles .item-title-0-8 {
        margin-top: 0px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-0-8 {
            margin-top: 80px; } }
      .project-view .project-article-content .item-articles .item-title-0-9 {
        margin-top: 0px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-0-9 {
            margin-top: 90px; } }
      .project-view .project-article-content .item-articles .item-title-0-10 {
        margin-top: 0px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-0-10 {
            margin-top: 100px; } }
      .project-view .project-article-content .item-articles .item-title-0-11 {
        margin-top: 0px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-0-11 {
            margin-top: 110px; } }
      .project-view .project-article-content .item-articles .item-title-0-12 {
        margin-top: 0px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-0-12 {
            margin-top: 120px; } }
      .project-view .project-article-content .item-articles .item-title-0-13 {
        margin-top: 0px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-0-13 {
            margin-top: 130px; } }
      .project-view .project-article-content .item-articles .item-title-0-14 {
        margin-top: 0px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-0-14 {
            margin-top: 140px; } }
      .project-view .project-article-content .item-articles .item-title-0-15 {
        margin-top: 0px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-0-15 {
            margin-top: 150px; } }
      .project-view .project-article-content .item-articles .item-title-0-16 {
        margin-top: 0px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-0-16 {
            margin-top: 160px; } }
      .project-view .project-article-content .item-articles .item-title-0-17 {
        margin-top: 0px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-0-17 {
            margin-top: 170px; } }
      .project-view .project-article-content .item-articles .item-title-0-18 {
        margin-top: 0px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-0-18 {
            margin-top: 180px; } }
      .project-view .project-article-content .item-articles .item-title-0-19 {
        margin-top: 0px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-0-19 {
            margin-top: 190px; } }
      .project-view .project-article-content .item-articles .item-title-1-0 {
        margin-top: 10px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-1-0 {
            margin-top: 0px; } }
      .project-view .project-article-content .item-articles .item-title-1-1 {
        margin-top: 10px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-1-1 {
            margin-top: 10px; } }
      .project-view .project-article-content .item-articles .item-title-1-2 {
        margin-top: 10px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-1-2 {
            margin-top: 20px; } }
      .project-view .project-article-content .item-articles .item-title-1-3 {
        margin-top: 10px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-1-3 {
            margin-top: 30px; } }
      .project-view .project-article-content .item-articles .item-title-1-4 {
        margin-top: 10px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-1-4 {
            margin-top: 40px; } }
      .project-view .project-article-content .item-articles .item-title-1-5 {
        margin-top: 10px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-1-5 {
            margin-top: 50px; } }
      .project-view .project-article-content .item-articles .item-title-1-6 {
        margin-top: 10px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-1-6 {
            margin-top: 60px; } }
      .project-view .project-article-content .item-articles .item-title-1-7 {
        margin-top: 10px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-1-7 {
            margin-top: 70px; } }
      .project-view .project-article-content .item-articles .item-title-1-8 {
        margin-top: 10px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-1-8 {
            margin-top: 80px; } }
      .project-view .project-article-content .item-articles .item-title-1-9 {
        margin-top: 10px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-1-9 {
            margin-top: 90px; } }
      .project-view .project-article-content .item-articles .item-title-1-10 {
        margin-top: 10px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-1-10 {
            margin-top: 100px; } }
      .project-view .project-article-content .item-articles .item-title-1-11 {
        margin-top: 10px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-1-11 {
            margin-top: 110px; } }
      .project-view .project-article-content .item-articles .item-title-1-12 {
        margin-top: 10px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-1-12 {
            margin-top: 120px; } }
      .project-view .project-article-content .item-articles .item-title-1-13 {
        margin-top: 10px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-1-13 {
            margin-top: 130px; } }
      .project-view .project-article-content .item-articles .item-title-1-14 {
        margin-top: 10px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-1-14 {
            margin-top: 140px; } }
      .project-view .project-article-content .item-articles .item-title-1-15 {
        margin-top: 10px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-1-15 {
            margin-top: 150px; } }
      .project-view .project-article-content .item-articles .item-title-1-16 {
        margin-top: 10px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-1-16 {
            margin-top: 160px; } }
      .project-view .project-article-content .item-articles .item-title-1-17 {
        margin-top: 10px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-1-17 {
            margin-top: 170px; } }
      .project-view .project-article-content .item-articles .item-title-1-18 {
        margin-top: 10px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-1-18 {
            margin-top: 180px; } }
      .project-view .project-article-content .item-articles .item-title-1-19 {
        margin-top: 10px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-1-19 {
            margin-top: 190px; } }
      .project-view .project-article-content .item-articles .item-title-2-0 {
        margin-top: 20px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-2-0 {
            margin-top: 0px; } }
      .project-view .project-article-content .item-articles .item-title-2-1 {
        margin-top: 20px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-2-1 {
            margin-top: 10px; } }
      .project-view .project-article-content .item-articles .item-title-2-2 {
        margin-top: 20px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-2-2 {
            margin-top: 20px; } }
      .project-view .project-article-content .item-articles .item-title-2-3 {
        margin-top: 20px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-2-3 {
            margin-top: 30px; } }
      .project-view .project-article-content .item-articles .item-title-2-4 {
        margin-top: 20px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-2-4 {
            margin-top: 40px; } }
      .project-view .project-article-content .item-articles .item-title-2-5 {
        margin-top: 20px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-2-5 {
            margin-top: 50px; } }
      .project-view .project-article-content .item-articles .item-title-2-6 {
        margin-top: 20px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-2-6 {
            margin-top: 60px; } }
      .project-view .project-article-content .item-articles .item-title-2-7 {
        margin-top: 20px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-2-7 {
            margin-top: 70px; } }
      .project-view .project-article-content .item-articles .item-title-2-8 {
        margin-top: 20px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-2-8 {
            margin-top: 80px; } }
      .project-view .project-article-content .item-articles .item-title-2-9 {
        margin-top: 20px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-2-9 {
            margin-top: 90px; } }
      .project-view .project-article-content .item-articles .item-title-2-10 {
        margin-top: 20px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-2-10 {
            margin-top: 100px; } }
      .project-view .project-article-content .item-articles .item-title-2-11 {
        margin-top: 20px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-2-11 {
            margin-top: 110px; } }
      .project-view .project-article-content .item-articles .item-title-2-12 {
        margin-top: 20px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-2-12 {
            margin-top: 120px; } }
      .project-view .project-article-content .item-articles .item-title-2-13 {
        margin-top: 20px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-2-13 {
            margin-top: 130px; } }
      .project-view .project-article-content .item-articles .item-title-2-14 {
        margin-top: 20px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-2-14 {
            margin-top: 140px; } }
      .project-view .project-article-content .item-articles .item-title-2-15 {
        margin-top: 20px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-2-15 {
            margin-top: 150px; } }
      .project-view .project-article-content .item-articles .item-title-2-16 {
        margin-top: 20px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-2-16 {
            margin-top: 160px; } }
      .project-view .project-article-content .item-articles .item-title-2-17 {
        margin-top: 20px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-2-17 {
            margin-top: 170px; } }
      .project-view .project-article-content .item-articles .item-title-2-18 {
        margin-top: 20px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-2-18 {
            margin-top: 180px; } }
      .project-view .project-article-content .item-articles .item-title-2-19 {
        margin-top: 20px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-2-19 {
            margin-top: 190px; } }
      .project-view .project-article-content .item-articles .item-title-3-0 {
        margin-top: 30px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-3-0 {
            margin-top: 0px; } }
      .project-view .project-article-content .item-articles .item-title-3-1 {
        margin-top: 30px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-3-1 {
            margin-top: 10px; } }
      .project-view .project-article-content .item-articles .item-title-3-2 {
        margin-top: 30px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-3-2 {
            margin-top: 20px; } }
      .project-view .project-article-content .item-articles .item-title-3-3 {
        margin-top: 30px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-3-3 {
            margin-top: 30px; } }
      .project-view .project-article-content .item-articles .item-title-3-4 {
        margin-top: 30px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-3-4 {
            margin-top: 40px; } }
      .project-view .project-article-content .item-articles .item-title-3-5 {
        margin-top: 30px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-3-5 {
            margin-top: 50px; } }
      .project-view .project-article-content .item-articles .item-title-3-6 {
        margin-top: 30px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-3-6 {
            margin-top: 60px; } }
      .project-view .project-article-content .item-articles .item-title-3-7 {
        margin-top: 30px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-3-7 {
            margin-top: 70px; } }
      .project-view .project-article-content .item-articles .item-title-3-8 {
        margin-top: 30px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-3-8 {
            margin-top: 80px; } }
      .project-view .project-article-content .item-articles .item-title-3-9 {
        margin-top: 30px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-3-9 {
            margin-top: 90px; } }
      .project-view .project-article-content .item-articles .item-title-3-10 {
        margin-top: 30px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-3-10 {
            margin-top: 100px; } }
      .project-view .project-article-content .item-articles .item-title-3-11 {
        margin-top: 30px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-3-11 {
            margin-top: 110px; } }
      .project-view .project-article-content .item-articles .item-title-3-12 {
        margin-top: 30px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-3-12 {
            margin-top: 120px; } }
      .project-view .project-article-content .item-articles .item-title-3-13 {
        margin-top: 30px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-3-13 {
            margin-top: 130px; } }
      .project-view .project-article-content .item-articles .item-title-3-14 {
        margin-top: 30px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-3-14 {
            margin-top: 140px; } }
      .project-view .project-article-content .item-articles .item-title-3-15 {
        margin-top: 30px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-3-15 {
            margin-top: 150px; } }
      .project-view .project-article-content .item-articles .item-title-3-16 {
        margin-top: 30px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-3-16 {
            margin-top: 160px; } }
      .project-view .project-article-content .item-articles .item-title-3-17 {
        margin-top: 30px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-3-17 {
            margin-top: 170px; } }
      .project-view .project-article-content .item-articles .item-title-3-18 {
        margin-top: 30px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-3-18 {
            margin-top: 180px; } }
      .project-view .project-article-content .item-articles .item-title-3-19 {
        margin-top: 30px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-3-19 {
            margin-top: 190px; } }
      .project-view .project-article-content .item-articles .item-title-4-0 {
        margin-top: 40px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-4-0 {
            margin-top: 0px; } }
      .project-view .project-article-content .item-articles .item-title-4-1 {
        margin-top: 40px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-4-1 {
            margin-top: 10px; } }
      .project-view .project-article-content .item-articles .item-title-4-2 {
        margin-top: 40px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-4-2 {
            margin-top: 20px; } }
      .project-view .project-article-content .item-articles .item-title-4-3 {
        margin-top: 40px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-4-3 {
            margin-top: 30px; } }
      .project-view .project-article-content .item-articles .item-title-4-4 {
        margin-top: 40px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-4-4 {
            margin-top: 40px; } }
      .project-view .project-article-content .item-articles .item-title-4-5 {
        margin-top: 40px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-4-5 {
            margin-top: 50px; } }
      .project-view .project-article-content .item-articles .item-title-4-6 {
        margin-top: 40px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-4-6 {
            margin-top: 60px; } }
      .project-view .project-article-content .item-articles .item-title-4-7 {
        margin-top: 40px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-4-7 {
            margin-top: 70px; } }
      .project-view .project-article-content .item-articles .item-title-4-8 {
        margin-top: 40px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-4-8 {
            margin-top: 80px; } }
      .project-view .project-article-content .item-articles .item-title-4-9 {
        margin-top: 40px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-4-9 {
            margin-top: 90px; } }
      .project-view .project-article-content .item-articles .item-title-4-10 {
        margin-top: 40px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-4-10 {
            margin-top: 100px; } }
      .project-view .project-article-content .item-articles .item-title-4-11 {
        margin-top: 40px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-4-11 {
            margin-top: 110px; } }
      .project-view .project-article-content .item-articles .item-title-4-12 {
        margin-top: 40px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-4-12 {
            margin-top: 120px; } }
      .project-view .project-article-content .item-articles .item-title-4-13 {
        margin-top: 40px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-4-13 {
            margin-top: 130px; } }
      .project-view .project-article-content .item-articles .item-title-4-14 {
        margin-top: 40px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-4-14 {
            margin-top: 140px; } }
      .project-view .project-article-content .item-articles .item-title-4-15 {
        margin-top: 40px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-4-15 {
            margin-top: 150px; } }
      .project-view .project-article-content .item-articles .item-title-4-16 {
        margin-top: 40px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-4-16 {
            margin-top: 160px; } }
      .project-view .project-article-content .item-articles .item-title-4-17 {
        margin-top: 40px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-4-17 {
            margin-top: 170px; } }
      .project-view .project-article-content .item-articles .item-title-4-18 {
        margin-top: 40px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-4-18 {
            margin-top: 180px; } }
      .project-view .project-article-content .item-articles .item-title-4-19 {
        margin-top: 40px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-4-19 {
            margin-top: 190px; } }
      .project-view .project-article-content .item-articles .item-title-5-0 {
        margin-top: 50px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-5-0 {
            margin-top: 0px; } }
      .project-view .project-article-content .item-articles .item-title-5-1 {
        margin-top: 50px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-5-1 {
            margin-top: 10px; } }
      .project-view .project-article-content .item-articles .item-title-5-2 {
        margin-top: 50px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-5-2 {
            margin-top: 20px; } }
      .project-view .project-article-content .item-articles .item-title-5-3 {
        margin-top: 50px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-5-3 {
            margin-top: 30px; } }
      .project-view .project-article-content .item-articles .item-title-5-4 {
        margin-top: 50px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-5-4 {
            margin-top: 40px; } }
      .project-view .project-article-content .item-articles .item-title-5-5 {
        margin-top: 50px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-5-5 {
            margin-top: 50px; } }
      .project-view .project-article-content .item-articles .item-title-5-6 {
        margin-top: 50px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-5-6 {
            margin-top: 60px; } }
      .project-view .project-article-content .item-articles .item-title-5-7 {
        margin-top: 50px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-5-7 {
            margin-top: 70px; } }
      .project-view .project-article-content .item-articles .item-title-5-8 {
        margin-top: 50px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-5-8 {
            margin-top: 80px; } }
      .project-view .project-article-content .item-articles .item-title-5-9 {
        margin-top: 50px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-5-9 {
            margin-top: 90px; } }
      .project-view .project-article-content .item-articles .item-title-5-10 {
        margin-top: 50px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-5-10 {
            margin-top: 100px; } }
      .project-view .project-article-content .item-articles .item-title-5-11 {
        margin-top: 50px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-5-11 {
            margin-top: 110px; } }
      .project-view .project-article-content .item-articles .item-title-5-12 {
        margin-top: 50px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-5-12 {
            margin-top: 120px; } }
      .project-view .project-article-content .item-articles .item-title-5-13 {
        margin-top: 50px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-5-13 {
            margin-top: 130px; } }
      .project-view .project-article-content .item-articles .item-title-5-14 {
        margin-top: 50px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-5-14 {
            margin-top: 140px; } }
      .project-view .project-article-content .item-articles .item-title-5-15 {
        margin-top: 50px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-5-15 {
            margin-top: 150px; } }
      .project-view .project-article-content .item-articles .item-title-5-16 {
        margin-top: 50px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-5-16 {
            margin-top: 160px; } }
      .project-view .project-article-content .item-articles .item-title-5-17 {
        margin-top: 50px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-5-17 {
            margin-top: 170px; } }
      .project-view .project-article-content .item-articles .item-title-5-18 {
        margin-top: 50px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-5-18 {
            margin-top: 180px; } }
      .project-view .project-article-content .item-articles .item-title-5-19 {
        margin-top: 50px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-5-19 {
            margin-top: 190px; } }
      .project-view .project-article-content .item-articles .item-title-6-0 {
        margin-top: 60px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-6-0 {
            margin-top: 0px; } }
      .project-view .project-article-content .item-articles .item-title-6-1 {
        margin-top: 60px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-6-1 {
            margin-top: 10px; } }
      .project-view .project-article-content .item-articles .item-title-6-2 {
        margin-top: 60px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-6-2 {
            margin-top: 20px; } }
      .project-view .project-article-content .item-articles .item-title-6-3 {
        margin-top: 60px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-6-3 {
            margin-top: 30px; } }
      .project-view .project-article-content .item-articles .item-title-6-4 {
        margin-top: 60px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-6-4 {
            margin-top: 40px; } }
      .project-view .project-article-content .item-articles .item-title-6-5 {
        margin-top: 60px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-6-5 {
            margin-top: 50px; } }
      .project-view .project-article-content .item-articles .item-title-6-6 {
        margin-top: 60px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-6-6 {
            margin-top: 60px; } }
      .project-view .project-article-content .item-articles .item-title-6-7 {
        margin-top: 60px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-6-7 {
            margin-top: 70px; } }
      .project-view .project-article-content .item-articles .item-title-6-8 {
        margin-top: 60px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-6-8 {
            margin-top: 80px; } }
      .project-view .project-article-content .item-articles .item-title-6-9 {
        margin-top: 60px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-6-9 {
            margin-top: 90px; } }
      .project-view .project-article-content .item-articles .item-title-6-10 {
        margin-top: 60px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-6-10 {
            margin-top: 100px; } }
      .project-view .project-article-content .item-articles .item-title-6-11 {
        margin-top: 60px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-6-11 {
            margin-top: 110px; } }
      .project-view .project-article-content .item-articles .item-title-6-12 {
        margin-top: 60px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-6-12 {
            margin-top: 120px; } }
      .project-view .project-article-content .item-articles .item-title-6-13 {
        margin-top: 60px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-6-13 {
            margin-top: 130px; } }
      .project-view .project-article-content .item-articles .item-title-6-14 {
        margin-top: 60px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-6-14 {
            margin-top: 140px; } }
      .project-view .project-article-content .item-articles .item-title-6-15 {
        margin-top: 60px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-6-15 {
            margin-top: 150px; } }
      .project-view .project-article-content .item-articles .item-title-6-16 {
        margin-top: 60px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-6-16 {
            margin-top: 160px; } }
      .project-view .project-article-content .item-articles .item-title-6-17 {
        margin-top: 60px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-6-17 {
            margin-top: 170px; } }
      .project-view .project-article-content .item-articles .item-title-6-18 {
        margin-top: 60px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-6-18 {
            margin-top: 180px; } }
      .project-view .project-article-content .item-articles .item-title-6-19 {
        margin-top: 60px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-6-19 {
            margin-top: 190px; } }
      .project-view .project-article-content .item-articles .item-title-7-0 {
        margin-top: 70px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-7-0 {
            margin-top: 0px; } }
      .project-view .project-article-content .item-articles .item-title-7-1 {
        margin-top: 70px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-7-1 {
            margin-top: 10px; } }
      .project-view .project-article-content .item-articles .item-title-7-2 {
        margin-top: 70px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-7-2 {
            margin-top: 20px; } }
      .project-view .project-article-content .item-articles .item-title-7-3 {
        margin-top: 70px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-7-3 {
            margin-top: 30px; } }
      .project-view .project-article-content .item-articles .item-title-7-4 {
        margin-top: 70px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-7-4 {
            margin-top: 40px; } }
      .project-view .project-article-content .item-articles .item-title-7-5 {
        margin-top: 70px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-7-5 {
            margin-top: 50px; } }
      .project-view .project-article-content .item-articles .item-title-7-6 {
        margin-top: 70px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-7-6 {
            margin-top: 60px; } }
      .project-view .project-article-content .item-articles .item-title-7-7 {
        margin-top: 70px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-7-7 {
            margin-top: 70px; } }
      .project-view .project-article-content .item-articles .item-title-7-8 {
        margin-top: 70px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-7-8 {
            margin-top: 80px; } }
      .project-view .project-article-content .item-articles .item-title-7-9 {
        margin-top: 70px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-7-9 {
            margin-top: 90px; } }
      .project-view .project-article-content .item-articles .item-title-7-10 {
        margin-top: 70px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-7-10 {
            margin-top: 100px; } }
      .project-view .project-article-content .item-articles .item-title-7-11 {
        margin-top: 70px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-7-11 {
            margin-top: 110px; } }
      .project-view .project-article-content .item-articles .item-title-7-12 {
        margin-top: 70px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-7-12 {
            margin-top: 120px; } }
      .project-view .project-article-content .item-articles .item-title-7-13 {
        margin-top: 70px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-7-13 {
            margin-top: 130px; } }
      .project-view .project-article-content .item-articles .item-title-7-14 {
        margin-top: 70px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-7-14 {
            margin-top: 140px; } }
      .project-view .project-article-content .item-articles .item-title-7-15 {
        margin-top: 70px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-7-15 {
            margin-top: 150px; } }
      .project-view .project-article-content .item-articles .item-title-7-16 {
        margin-top: 70px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-7-16 {
            margin-top: 160px; } }
      .project-view .project-article-content .item-articles .item-title-7-17 {
        margin-top: 70px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-7-17 {
            margin-top: 170px; } }
      .project-view .project-article-content .item-articles .item-title-7-18 {
        margin-top: 70px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-7-18 {
            margin-top: 180px; } }
      .project-view .project-article-content .item-articles .item-title-7-19 {
        margin-top: 70px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-7-19 {
            margin-top: 190px; } }
      .project-view .project-article-content .item-articles .item-title-8-0 {
        margin-top: 80px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-8-0 {
            margin-top: 0px; } }
      .project-view .project-article-content .item-articles .item-title-8-1 {
        margin-top: 80px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-8-1 {
            margin-top: 10px; } }
      .project-view .project-article-content .item-articles .item-title-8-2 {
        margin-top: 80px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-8-2 {
            margin-top: 20px; } }
      .project-view .project-article-content .item-articles .item-title-8-3 {
        margin-top: 80px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-8-3 {
            margin-top: 30px; } }
      .project-view .project-article-content .item-articles .item-title-8-4 {
        margin-top: 80px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-8-4 {
            margin-top: 40px; } }
      .project-view .project-article-content .item-articles .item-title-8-5 {
        margin-top: 80px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-8-5 {
            margin-top: 50px; } }
      .project-view .project-article-content .item-articles .item-title-8-6 {
        margin-top: 80px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-8-6 {
            margin-top: 60px; } }
      .project-view .project-article-content .item-articles .item-title-8-7 {
        margin-top: 80px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-8-7 {
            margin-top: 70px; } }
      .project-view .project-article-content .item-articles .item-title-8-8 {
        margin-top: 80px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-8-8 {
            margin-top: 80px; } }
      .project-view .project-article-content .item-articles .item-title-8-9 {
        margin-top: 80px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-8-9 {
            margin-top: 90px; } }
      .project-view .project-article-content .item-articles .item-title-8-10 {
        margin-top: 80px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-8-10 {
            margin-top: 100px; } }
      .project-view .project-article-content .item-articles .item-title-8-11 {
        margin-top: 80px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-8-11 {
            margin-top: 110px; } }
      .project-view .project-article-content .item-articles .item-title-8-12 {
        margin-top: 80px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-8-12 {
            margin-top: 120px; } }
      .project-view .project-article-content .item-articles .item-title-8-13 {
        margin-top: 80px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-8-13 {
            margin-top: 130px; } }
      .project-view .project-article-content .item-articles .item-title-8-14 {
        margin-top: 80px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-8-14 {
            margin-top: 140px; } }
      .project-view .project-article-content .item-articles .item-title-8-15 {
        margin-top: 80px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-8-15 {
            margin-top: 150px; } }
      .project-view .project-article-content .item-articles .item-title-8-16 {
        margin-top: 80px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-8-16 {
            margin-top: 160px; } }
      .project-view .project-article-content .item-articles .item-title-8-17 {
        margin-top: 80px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-8-17 {
            margin-top: 170px; } }
      .project-view .project-article-content .item-articles .item-title-8-18 {
        margin-top: 80px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-8-18 {
            margin-top: 180px; } }
      .project-view .project-article-content .item-articles .item-title-8-19 {
        margin-top: 80px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-8-19 {
            margin-top: 190px; } }
      .project-view .project-article-content .item-articles .item-title-9-0 {
        margin-top: 90px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-9-0 {
            margin-top: 0px; } }
      .project-view .project-article-content .item-articles .item-title-9-1 {
        margin-top: 90px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-9-1 {
            margin-top: 10px; } }
      .project-view .project-article-content .item-articles .item-title-9-2 {
        margin-top: 90px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-9-2 {
            margin-top: 20px; } }
      .project-view .project-article-content .item-articles .item-title-9-3 {
        margin-top: 90px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-9-3 {
            margin-top: 30px; } }
      .project-view .project-article-content .item-articles .item-title-9-4 {
        margin-top: 90px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-9-4 {
            margin-top: 40px; } }
      .project-view .project-article-content .item-articles .item-title-9-5 {
        margin-top: 90px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-9-5 {
            margin-top: 50px; } }
      .project-view .project-article-content .item-articles .item-title-9-6 {
        margin-top: 90px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-9-6 {
            margin-top: 60px; } }
      .project-view .project-article-content .item-articles .item-title-9-7 {
        margin-top: 90px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-9-7 {
            margin-top: 70px; } }
      .project-view .project-article-content .item-articles .item-title-9-8 {
        margin-top: 90px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-9-8 {
            margin-top: 80px; } }
      .project-view .project-article-content .item-articles .item-title-9-9 {
        margin-top: 90px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-9-9 {
            margin-top: 90px; } }
      .project-view .project-article-content .item-articles .item-title-9-10 {
        margin-top: 90px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-9-10 {
            margin-top: 100px; } }
      .project-view .project-article-content .item-articles .item-title-9-11 {
        margin-top: 90px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-9-11 {
            margin-top: 110px; } }
      .project-view .project-article-content .item-articles .item-title-9-12 {
        margin-top: 90px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-9-12 {
            margin-top: 120px; } }
      .project-view .project-article-content .item-articles .item-title-9-13 {
        margin-top: 90px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-9-13 {
            margin-top: 130px; } }
      .project-view .project-article-content .item-articles .item-title-9-14 {
        margin-top: 90px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-9-14 {
            margin-top: 140px; } }
      .project-view .project-article-content .item-articles .item-title-9-15 {
        margin-top: 90px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-9-15 {
            margin-top: 150px; } }
      .project-view .project-article-content .item-articles .item-title-9-16 {
        margin-top: 90px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-9-16 {
            margin-top: 160px; } }
      .project-view .project-article-content .item-articles .item-title-9-17 {
        margin-top: 90px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-9-17 {
            margin-top: 170px; } }
      .project-view .project-article-content .item-articles .item-title-9-18 {
        margin-top: 90px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-9-18 {
            margin-top: 180px; } }
      .project-view .project-article-content .item-articles .item-title-9-19 {
        margin-top: 90px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-9-19 {
            margin-top: 190px; } }
      .project-view .project-article-content .item-articles .item-title-10-0 {
        margin-top: 100px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-10-0 {
            margin-top: 0px; } }
      .project-view .project-article-content .item-articles .item-title-10-1 {
        margin-top: 100px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-10-1 {
            margin-top: 10px; } }
      .project-view .project-article-content .item-articles .item-title-10-2 {
        margin-top: 100px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-10-2 {
            margin-top: 20px; } }
      .project-view .project-article-content .item-articles .item-title-10-3 {
        margin-top: 100px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-10-3 {
            margin-top: 30px; } }
      .project-view .project-article-content .item-articles .item-title-10-4 {
        margin-top: 100px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-10-4 {
            margin-top: 40px; } }
      .project-view .project-article-content .item-articles .item-title-10-5 {
        margin-top: 100px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-10-5 {
            margin-top: 50px; } }
      .project-view .project-article-content .item-articles .item-title-10-6 {
        margin-top: 100px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-10-6 {
            margin-top: 60px; } }
      .project-view .project-article-content .item-articles .item-title-10-7 {
        margin-top: 100px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-10-7 {
            margin-top: 70px; } }
      .project-view .project-article-content .item-articles .item-title-10-8 {
        margin-top: 100px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-10-8 {
            margin-top: 80px; } }
      .project-view .project-article-content .item-articles .item-title-10-9 {
        margin-top: 100px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-10-9 {
            margin-top: 90px; } }
      .project-view .project-article-content .item-articles .item-title-10-10 {
        margin-top: 100px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-10-10 {
            margin-top: 100px; } }
      .project-view .project-article-content .item-articles .item-title-10-11 {
        margin-top: 100px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-10-11 {
            margin-top: 110px; } }
      .project-view .project-article-content .item-articles .item-title-10-12 {
        margin-top: 100px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-10-12 {
            margin-top: 120px; } }
      .project-view .project-article-content .item-articles .item-title-10-13 {
        margin-top: 100px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-10-13 {
            margin-top: 130px; } }
      .project-view .project-article-content .item-articles .item-title-10-14 {
        margin-top: 100px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-10-14 {
            margin-top: 140px; } }
      .project-view .project-article-content .item-articles .item-title-10-15 {
        margin-top: 100px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-10-15 {
            margin-top: 150px; } }
      .project-view .project-article-content .item-articles .item-title-10-16 {
        margin-top: 100px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-10-16 {
            margin-top: 160px; } }
      .project-view .project-article-content .item-articles .item-title-10-17 {
        margin-top: 100px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-10-17 {
            margin-top: 170px; } }
      .project-view .project-article-content .item-articles .item-title-10-18 {
        margin-top: 100px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-10-18 {
            margin-top: 180px; } }
      .project-view .project-article-content .item-articles .item-title-10-19 {
        margin-top: 100px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-10-19 {
            margin-top: 190px; } }
      .project-view .project-article-content .item-articles .item-title-11-0 {
        margin-top: 110px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-11-0 {
            margin-top: 0px; } }
      .project-view .project-article-content .item-articles .item-title-11-1 {
        margin-top: 110px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-11-1 {
            margin-top: 10px; } }
      .project-view .project-article-content .item-articles .item-title-11-2 {
        margin-top: 110px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-11-2 {
            margin-top: 20px; } }
      .project-view .project-article-content .item-articles .item-title-11-3 {
        margin-top: 110px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-11-3 {
            margin-top: 30px; } }
      .project-view .project-article-content .item-articles .item-title-11-4 {
        margin-top: 110px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-11-4 {
            margin-top: 40px; } }
      .project-view .project-article-content .item-articles .item-title-11-5 {
        margin-top: 110px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-11-5 {
            margin-top: 50px; } }
      .project-view .project-article-content .item-articles .item-title-11-6 {
        margin-top: 110px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-11-6 {
            margin-top: 60px; } }
      .project-view .project-article-content .item-articles .item-title-11-7 {
        margin-top: 110px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-11-7 {
            margin-top: 70px; } }
      .project-view .project-article-content .item-articles .item-title-11-8 {
        margin-top: 110px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-11-8 {
            margin-top: 80px; } }
      .project-view .project-article-content .item-articles .item-title-11-9 {
        margin-top: 110px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-11-9 {
            margin-top: 90px; } }
      .project-view .project-article-content .item-articles .item-title-11-10 {
        margin-top: 110px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-11-10 {
            margin-top: 100px; } }
      .project-view .project-article-content .item-articles .item-title-11-11 {
        margin-top: 110px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-11-11 {
            margin-top: 110px; } }
      .project-view .project-article-content .item-articles .item-title-11-12 {
        margin-top: 110px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-11-12 {
            margin-top: 120px; } }
      .project-view .project-article-content .item-articles .item-title-11-13 {
        margin-top: 110px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-11-13 {
            margin-top: 130px; } }
      .project-view .project-article-content .item-articles .item-title-11-14 {
        margin-top: 110px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-11-14 {
            margin-top: 140px; } }
      .project-view .project-article-content .item-articles .item-title-11-15 {
        margin-top: 110px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-11-15 {
            margin-top: 150px; } }
      .project-view .project-article-content .item-articles .item-title-11-16 {
        margin-top: 110px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-11-16 {
            margin-top: 160px; } }
      .project-view .project-article-content .item-articles .item-title-11-17 {
        margin-top: 110px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-11-17 {
            margin-top: 170px; } }
      .project-view .project-article-content .item-articles .item-title-11-18 {
        margin-top: 110px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-11-18 {
            margin-top: 180px; } }
      .project-view .project-article-content .item-articles .item-title-11-19 {
        margin-top: 110px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-11-19 {
            margin-top: 190px; } }
      .project-view .project-article-content .item-articles .item-title-12-0 {
        margin-top: 120px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-12-0 {
            margin-top: 0px; } }
      .project-view .project-article-content .item-articles .item-title-12-1 {
        margin-top: 120px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-12-1 {
            margin-top: 10px; } }
      .project-view .project-article-content .item-articles .item-title-12-2 {
        margin-top: 120px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-12-2 {
            margin-top: 20px; } }
      .project-view .project-article-content .item-articles .item-title-12-3 {
        margin-top: 120px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-12-3 {
            margin-top: 30px; } }
      .project-view .project-article-content .item-articles .item-title-12-4 {
        margin-top: 120px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-12-4 {
            margin-top: 40px; } }
      .project-view .project-article-content .item-articles .item-title-12-5 {
        margin-top: 120px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-12-5 {
            margin-top: 50px; } }
      .project-view .project-article-content .item-articles .item-title-12-6 {
        margin-top: 120px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-12-6 {
            margin-top: 60px; } }
      .project-view .project-article-content .item-articles .item-title-12-7 {
        margin-top: 120px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-12-7 {
            margin-top: 70px; } }
      .project-view .project-article-content .item-articles .item-title-12-8 {
        margin-top: 120px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-12-8 {
            margin-top: 80px; } }
      .project-view .project-article-content .item-articles .item-title-12-9 {
        margin-top: 120px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-12-9 {
            margin-top: 90px; } }
      .project-view .project-article-content .item-articles .item-title-12-10 {
        margin-top: 120px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-12-10 {
            margin-top: 100px; } }
      .project-view .project-article-content .item-articles .item-title-12-11 {
        margin-top: 120px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-12-11 {
            margin-top: 110px; } }
      .project-view .project-article-content .item-articles .item-title-12-12 {
        margin-top: 120px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-12-12 {
            margin-top: 120px; } }
      .project-view .project-article-content .item-articles .item-title-12-13 {
        margin-top: 120px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-12-13 {
            margin-top: 130px; } }
      .project-view .project-article-content .item-articles .item-title-12-14 {
        margin-top: 120px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-12-14 {
            margin-top: 140px; } }
      .project-view .project-article-content .item-articles .item-title-12-15 {
        margin-top: 120px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-12-15 {
            margin-top: 150px; } }
      .project-view .project-article-content .item-articles .item-title-12-16 {
        margin-top: 120px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-12-16 {
            margin-top: 160px; } }
      .project-view .project-article-content .item-articles .item-title-12-17 {
        margin-top: 120px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-12-17 {
            margin-top: 170px; } }
      .project-view .project-article-content .item-articles .item-title-12-18 {
        margin-top: 120px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-12-18 {
            margin-top: 180px; } }
      .project-view .project-article-content .item-articles .item-title-12-19 {
        margin-top: 120px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-12-19 {
            margin-top: 190px; } }
      .project-view .project-article-content .item-articles .item-title-13-0 {
        margin-top: 130px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-13-0 {
            margin-top: 0px; } }
      .project-view .project-article-content .item-articles .item-title-13-1 {
        margin-top: 130px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-13-1 {
            margin-top: 10px; } }
      .project-view .project-article-content .item-articles .item-title-13-2 {
        margin-top: 130px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-13-2 {
            margin-top: 20px; } }
      .project-view .project-article-content .item-articles .item-title-13-3 {
        margin-top: 130px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-13-3 {
            margin-top: 30px; } }
      .project-view .project-article-content .item-articles .item-title-13-4 {
        margin-top: 130px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-13-4 {
            margin-top: 40px; } }
      .project-view .project-article-content .item-articles .item-title-13-5 {
        margin-top: 130px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-13-5 {
            margin-top: 50px; } }
      .project-view .project-article-content .item-articles .item-title-13-6 {
        margin-top: 130px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-13-6 {
            margin-top: 60px; } }
      .project-view .project-article-content .item-articles .item-title-13-7 {
        margin-top: 130px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-13-7 {
            margin-top: 70px; } }
      .project-view .project-article-content .item-articles .item-title-13-8 {
        margin-top: 130px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-13-8 {
            margin-top: 80px; } }
      .project-view .project-article-content .item-articles .item-title-13-9 {
        margin-top: 130px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-13-9 {
            margin-top: 90px; } }
      .project-view .project-article-content .item-articles .item-title-13-10 {
        margin-top: 130px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-13-10 {
            margin-top: 100px; } }
      .project-view .project-article-content .item-articles .item-title-13-11 {
        margin-top: 130px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-13-11 {
            margin-top: 110px; } }
      .project-view .project-article-content .item-articles .item-title-13-12 {
        margin-top: 130px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-13-12 {
            margin-top: 120px; } }
      .project-view .project-article-content .item-articles .item-title-13-13 {
        margin-top: 130px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-13-13 {
            margin-top: 130px; } }
      .project-view .project-article-content .item-articles .item-title-13-14 {
        margin-top: 130px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-13-14 {
            margin-top: 140px; } }
      .project-view .project-article-content .item-articles .item-title-13-15 {
        margin-top: 130px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-13-15 {
            margin-top: 150px; } }
      .project-view .project-article-content .item-articles .item-title-13-16 {
        margin-top: 130px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-13-16 {
            margin-top: 160px; } }
      .project-view .project-article-content .item-articles .item-title-13-17 {
        margin-top: 130px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-13-17 {
            margin-top: 170px; } }
      .project-view .project-article-content .item-articles .item-title-13-18 {
        margin-top: 130px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-13-18 {
            margin-top: 180px; } }
      .project-view .project-article-content .item-articles .item-title-13-19 {
        margin-top: 130px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-13-19 {
            margin-top: 190px; } }
      .project-view .project-article-content .item-articles .item-title-14-0 {
        margin-top: 140px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-14-0 {
            margin-top: 0px; } }
      .project-view .project-article-content .item-articles .item-title-14-1 {
        margin-top: 140px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-14-1 {
            margin-top: 10px; } }
      .project-view .project-article-content .item-articles .item-title-14-2 {
        margin-top: 140px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-14-2 {
            margin-top: 20px; } }
      .project-view .project-article-content .item-articles .item-title-14-3 {
        margin-top: 140px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-14-3 {
            margin-top: 30px; } }
      .project-view .project-article-content .item-articles .item-title-14-4 {
        margin-top: 140px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-14-4 {
            margin-top: 40px; } }
      .project-view .project-article-content .item-articles .item-title-14-5 {
        margin-top: 140px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-14-5 {
            margin-top: 50px; } }
      .project-view .project-article-content .item-articles .item-title-14-6 {
        margin-top: 140px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-14-6 {
            margin-top: 60px; } }
      .project-view .project-article-content .item-articles .item-title-14-7 {
        margin-top: 140px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-14-7 {
            margin-top: 70px; } }
      .project-view .project-article-content .item-articles .item-title-14-8 {
        margin-top: 140px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-14-8 {
            margin-top: 80px; } }
      .project-view .project-article-content .item-articles .item-title-14-9 {
        margin-top: 140px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-14-9 {
            margin-top: 90px; } }
      .project-view .project-article-content .item-articles .item-title-14-10 {
        margin-top: 140px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-14-10 {
            margin-top: 100px; } }
      .project-view .project-article-content .item-articles .item-title-14-11 {
        margin-top: 140px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-14-11 {
            margin-top: 110px; } }
      .project-view .project-article-content .item-articles .item-title-14-12 {
        margin-top: 140px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-14-12 {
            margin-top: 120px; } }
      .project-view .project-article-content .item-articles .item-title-14-13 {
        margin-top: 140px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-14-13 {
            margin-top: 130px; } }
      .project-view .project-article-content .item-articles .item-title-14-14 {
        margin-top: 140px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-14-14 {
            margin-top: 140px; } }
      .project-view .project-article-content .item-articles .item-title-14-15 {
        margin-top: 140px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-14-15 {
            margin-top: 150px; } }
      .project-view .project-article-content .item-articles .item-title-14-16 {
        margin-top: 140px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-14-16 {
            margin-top: 160px; } }
      .project-view .project-article-content .item-articles .item-title-14-17 {
        margin-top: 140px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-14-17 {
            margin-top: 170px; } }
      .project-view .project-article-content .item-articles .item-title-14-18 {
        margin-top: 140px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-14-18 {
            margin-top: 180px; } }
      .project-view .project-article-content .item-articles .item-title-14-19 {
        margin-top: 140px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-14-19 {
            margin-top: 190px; } }
      .project-view .project-article-content .item-articles .item-title-15-0 {
        margin-top: 150px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-15-0 {
            margin-top: 0px; } }
      .project-view .project-article-content .item-articles .item-title-15-1 {
        margin-top: 150px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-15-1 {
            margin-top: 10px; } }
      .project-view .project-article-content .item-articles .item-title-15-2 {
        margin-top: 150px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-15-2 {
            margin-top: 20px; } }
      .project-view .project-article-content .item-articles .item-title-15-3 {
        margin-top: 150px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-15-3 {
            margin-top: 30px; } }
      .project-view .project-article-content .item-articles .item-title-15-4 {
        margin-top: 150px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-15-4 {
            margin-top: 40px; } }
      .project-view .project-article-content .item-articles .item-title-15-5 {
        margin-top: 150px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-15-5 {
            margin-top: 50px; } }
      .project-view .project-article-content .item-articles .item-title-15-6 {
        margin-top: 150px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-15-6 {
            margin-top: 60px; } }
      .project-view .project-article-content .item-articles .item-title-15-7 {
        margin-top: 150px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-15-7 {
            margin-top: 70px; } }
      .project-view .project-article-content .item-articles .item-title-15-8 {
        margin-top: 150px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-15-8 {
            margin-top: 80px; } }
      .project-view .project-article-content .item-articles .item-title-15-9 {
        margin-top: 150px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-15-9 {
            margin-top: 90px; } }
      .project-view .project-article-content .item-articles .item-title-15-10 {
        margin-top: 150px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-15-10 {
            margin-top: 100px; } }
      .project-view .project-article-content .item-articles .item-title-15-11 {
        margin-top: 150px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-15-11 {
            margin-top: 110px; } }
      .project-view .project-article-content .item-articles .item-title-15-12 {
        margin-top: 150px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-15-12 {
            margin-top: 120px; } }
      .project-view .project-article-content .item-articles .item-title-15-13 {
        margin-top: 150px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-15-13 {
            margin-top: 130px; } }
      .project-view .project-article-content .item-articles .item-title-15-14 {
        margin-top: 150px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-15-14 {
            margin-top: 140px; } }
      .project-view .project-article-content .item-articles .item-title-15-15 {
        margin-top: 150px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-15-15 {
            margin-top: 150px; } }
      .project-view .project-article-content .item-articles .item-title-15-16 {
        margin-top: 150px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-15-16 {
            margin-top: 160px; } }
      .project-view .project-article-content .item-articles .item-title-15-17 {
        margin-top: 150px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-15-17 {
            margin-top: 170px; } }
      .project-view .project-article-content .item-articles .item-title-15-18 {
        margin-top: 150px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-15-18 {
            margin-top: 180px; } }
      .project-view .project-article-content .item-articles .item-title-15-19 {
        margin-top: 150px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-15-19 {
            margin-top: 190px; } }
      .project-view .project-article-content .item-articles .item-title-16-0 {
        margin-top: 160px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-16-0 {
            margin-top: 0px; } }
      .project-view .project-article-content .item-articles .item-title-16-1 {
        margin-top: 160px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-16-1 {
            margin-top: 10px; } }
      .project-view .project-article-content .item-articles .item-title-16-2 {
        margin-top: 160px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-16-2 {
            margin-top: 20px; } }
      .project-view .project-article-content .item-articles .item-title-16-3 {
        margin-top: 160px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-16-3 {
            margin-top: 30px; } }
      .project-view .project-article-content .item-articles .item-title-16-4 {
        margin-top: 160px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-16-4 {
            margin-top: 40px; } }
      .project-view .project-article-content .item-articles .item-title-16-5 {
        margin-top: 160px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-16-5 {
            margin-top: 50px; } }
      .project-view .project-article-content .item-articles .item-title-16-6 {
        margin-top: 160px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-16-6 {
            margin-top: 60px; } }
      .project-view .project-article-content .item-articles .item-title-16-7 {
        margin-top: 160px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-16-7 {
            margin-top: 70px; } }
      .project-view .project-article-content .item-articles .item-title-16-8 {
        margin-top: 160px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-16-8 {
            margin-top: 80px; } }
      .project-view .project-article-content .item-articles .item-title-16-9 {
        margin-top: 160px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-16-9 {
            margin-top: 90px; } }
      .project-view .project-article-content .item-articles .item-title-16-10 {
        margin-top: 160px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-16-10 {
            margin-top: 100px; } }
      .project-view .project-article-content .item-articles .item-title-16-11 {
        margin-top: 160px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-16-11 {
            margin-top: 110px; } }
      .project-view .project-article-content .item-articles .item-title-16-12 {
        margin-top: 160px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-16-12 {
            margin-top: 120px; } }
      .project-view .project-article-content .item-articles .item-title-16-13 {
        margin-top: 160px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-16-13 {
            margin-top: 130px; } }
      .project-view .project-article-content .item-articles .item-title-16-14 {
        margin-top: 160px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-16-14 {
            margin-top: 140px; } }
      .project-view .project-article-content .item-articles .item-title-16-15 {
        margin-top: 160px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-16-15 {
            margin-top: 150px; } }
      .project-view .project-article-content .item-articles .item-title-16-16 {
        margin-top: 160px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-16-16 {
            margin-top: 160px; } }
      .project-view .project-article-content .item-articles .item-title-16-17 {
        margin-top: 160px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-16-17 {
            margin-top: 170px; } }
      .project-view .project-article-content .item-articles .item-title-16-18 {
        margin-top: 160px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-16-18 {
            margin-top: 180px; } }
      .project-view .project-article-content .item-articles .item-title-16-19 {
        margin-top: 160px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-16-19 {
            margin-top: 190px; } }
      .project-view .project-article-content .item-articles .item-title-17-0 {
        margin-top: 170px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-17-0 {
            margin-top: 0px; } }
      .project-view .project-article-content .item-articles .item-title-17-1 {
        margin-top: 170px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-17-1 {
            margin-top: 10px; } }
      .project-view .project-article-content .item-articles .item-title-17-2 {
        margin-top: 170px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-17-2 {
            margin-top: 20px; } }
      .project-view .project-article-content .item-articles .item-title-17-3 {
        margin-top: 170px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-17-3 {
            margin-top: 30px; } }
      .project-view .project-article-content .item-articles .item-title-17-4 {
        margin-top: 170px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-17-4 {
            margin-top: 40px; } }
      .project-view .project-article-content .item-articles .item-title-17-5 {
        margin-top: 170px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-17-5 {
            margin-top: 50px; } }
      .project-view .project-article-content .item-articles .item-title-17-6 {
        margin-top: 170px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-17-6 {
            margin-top: 60px; } }
      .project-view .project-article-content .item-articles .item-title-17-7 {
        margin-top: 170px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-17-7 {
            margin-top: 70px; } }
      .project-view .project-article-content .item-articles .item-title-17-8 {
        margin-top: 170px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-17-8 {
            margin-top: 80px; } }
      .project-view .project-article-content .item-articles .item-title-17-9 {
        margin-top: 170px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-17-9 {
            margin-top: 90px; } }
      .project-view .project-article-content .item-articles .item-title-17-10 {
        margin-top: 170px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-17-10 {
            margin-top: 100px; } }
      .project-view .project-article-content .item-articles .item-title-17-11 {
        margin-top: 170px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-17-11 {
            margin-top: 110px; } }
      .project-view .project-article-content .item-articles .item-title-17-12 {
        margin-top: 170px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-17-12 {
            margin-top: 120px; } }
      .project-view .project-article-content .item-articles .item-title-17-13 {
        margin-top: 170px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-17-13 {
            margin-top: 130px; } }
      .project-view .project-article-content .item-articles .item-title-17-14 {
        margin-top: 170px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-17-14 {
            margin-top: 140px; } }
      .project-view .project-article-content .item-articles .item-title-17-15 {
        margin-top: 170px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-17-15 {
            margin-top: 150px; } }
      .project-view .project-article-content .item-articles .item-title-17-16 {
        margin-top: 170px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-17-16 {
            margin-top: 160px; } }
      .project-view .project-article-content .item-articles .item-title-17-17 {
        margin-top: 170px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-17-17 {
            margin-top: 170px; } }
      .project-view .project-article-content .item-articles .item-title-17-18 {
        margin-top: 170px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-17-18 {
            margin-top: 180px; } }
      .project-view .project-article-content .item-articles .item-title-17-19 {
        margin-top: 170px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-17-19 {
            margin-top: 190px; } }
      .project-view .project-article-content .item-articles .item-title-18-0 {
        margin-top: 180px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-18-0 {
            margin-top: 0px; } }
      .project-view .project-article-content .item-articles .item-title-18-1 {
        margin-top: 180px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-18-1 {
            margin-top: 10px; } }
      .project-view .project-article-content .item-articles .item-title-18-2 {
        margin-top: 180px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-18-2 {
            margin-top: 20px; } }
      .project-view .project-article-content .item-articles .item-title-18-3 {
        margin-top: 180px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-18-3 {
            margin-top: 30px; } }
      .project-view .project-article-content .item-articles .item-title-18-4 {
        margin-top: 180px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-18-4 {
            margin-top: 40px; } }
      .project-view .project-article-content .item-articles .item-title-18-5 {
        margin-top: 180px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-18-5 {
            margin-top: 50px; } }
      .project-view .project-article-content .item-articles .item-title-18-6 {
        margin-top: 180px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-18-6 {
            margin-top: 60px; } }
      .project-view .project-article-content .item-articles .item-title-18-7 {
        margin-top: 180px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-18-7 {
            margin-top: 70px; } }
      .project-view .project-article-content .item-articles .item-title-18-8 {
        margin-top: 180px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-18-8 {
            margin-top: 80px; } }
      .project-view .project-article-content .item-articles .item-title-18-9 {
        margin-top: 180px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-18-9 {
            margin-top: 90px; } }
      .project-view .project-article-content .item-articles .item-title-18-10 {
        margin-top: 180px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-18-10 {
            margin-top: 100px; } }
      .project-view .project-article-content .item-articles .item-title-18-11 {
        margin-top: 180px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-18-11 {
            margin-top: 110px; } }
      .project-view .project-article-content .item-articles .item-title-18-12 {
        margin-top: 180px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-18-12 {
            margin-top: 120px; } }
      .project-view .project-article-content .item-articles .item-title-18-13 {
        margin-top: 180px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-18-13 {
            margin-top: 130px; } }
      .project-view .project-article-content .item-articles .item-title-18-14 {
        margin-top: 180px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-18-14 {
            margin-top: 140px; } }
      .project-view .project-article-content .item-articles .item-title-18-15 {
        margin-top: 180px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-18-15 {
            margin-top: 150px; } }
      .project-view .project-article-content .item-articles .item-title-18-16 {
        margin-top: 180px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-18-16 {
            margin-top: 160px; } }
      .project-view .project-article-content .item-articles .item-title-18-17 {
        margin-top: 180px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-18-17 {
            margin-top: 170px; } }
      .project-view .project-article-content .item-articles .item-title-18-18 {
        margin-top: 180px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-18-18 {
            margin-top: 180px; } }
      .project-view .project-article-content .item-articles .item-title-18-19 {
        margin-top: 180px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-18-19 {
            margin-top: 190px; } }
      .project-view .project-article-content .item-articles .item-title-19-0 {
        margin-top: 190px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-19-0 {
            margin-top: 0px; } }
      .project-view .project-article-content .item-articles .item-title-19-1 {
        margin-top: 190px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-19-1 {
            margin-top: 10px; } }
      .project-view .project-article-content .item-articles .item-title-19-2 {
        margin-top: 190px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-19-2 {
            margin-top: 20px; } }
      .project-view .project-article-content .item-articles .item-title-19-3 {
        margin-top: 190px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-19-3 {
            margin-top: 30px; } }
      .project-view .project-article-content .item-articles .item-title-19-4 {
        margin-top: 190px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-19-4 {
            margin-top: 40px; } }
      .project-view .project-article-content .item-articles .item-title-19-5 {
        margin-top: 190px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-19-5 {
            margin-top: 50px; } }
      .project-view .project-article-content .item-articles .item-title-19-6 {
        margin-top: 190px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-19-6 {
            margin-top: 60px; } }
      .project-view .project-article-content .item-articles .item-title-19-7 {
        margin-top: 190px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-19-7 {
            margin-top: 70px; } }
      .project-view .project-article-content .item-articles .item-title-19-8 {
        margin-top: 190px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-19-8 {
            margin-top: 80px; } }
      .project-view .project-article-content .item-articles .item-title-19-9 {
        margin-top: 190px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-19-9 {
            margin-top: 90px; } }
      .project-view .project-article-content .item-articles .item-title-19-10 {
        margin-top: 190px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-19-10 {
            margin-top: 100px; } }
      .project-view .project-article-content .item-articles .item-title-19-11 {
        margin-top: 190px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-19-11 {
            margin-top: 110px; } }
      .project-view .project-article-content .item-articles .item-title-19-12 {
        margin-top: 190px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-19-12 {
            margin-top: 120px; } }
      .project-view .project-article-content .item-articles .item-title-19-13 {
        margin-top: 190px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-19-13 {
            margin-top: 130px; } }
      .project-view .project-article-content .item-articles .item-title-19-14 {
        margin-top: 190px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-19-14 {
            margin-top: 140px; } }
      .project-view .project-article-content .item-articles .item-title-19-15 {
        margin-top: 190px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-19-15 {
            margin-top: 150px; } }
      .project-view .project-article-content .item-articles .item-title-19-16 {
        margin-top: 190px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-19-16 {
            margin-top: 160px; } }
      .project-view .project-article-content .item-articles .item-title-19-17 {
        margin-top: 190px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-19-17 {
            margin-top: 170px; } }
      .project-view .project-article-content .item-articles .item-title-19-18 {
        margin-top: 190px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-19-18 {
            margin-top: 180px; } }
      .project-view .project-article-content .item-articles .item-title-19-19 {
        margin-top: 190px; }
        @media all and (min-width: 1224px) {
          .project-view .project-article-content .item-articles .item-title-19-19 {
            margin-top: 190px; } }
    .project-view .project-article-content p {
      font-size: 1em; }
    .project-view .project-article-content img {
      display: block;
      margin: 20px auto;
      max-width: 100%; }
    .project-view .project-article-content .appended-data .pull-left {
      text-align: right; }
    .project-view .project-article-content .appended-data .pull-right {
      text-align: left; }
    .project-view .project-article-content .appended-data h1 {
      font-size: 26px;
      font-weight: bold;
      margin-bottom: 20px; }
    .project-view .project-article-content .appended-data h2 {
      font-size: 22px;
      font-weight: bold;
      margin-bottom: 20px; }
    .project-view .project-article-content .appended-data h3 {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 20px; }
    .project-view .project-article-content .appended-data article {
      text-align: justify; }

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.87);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  z-index: 10; }

.articles-navigation {
  position: fixed;
  top: 55px;
  left: 25px;
  height: 40px; }

.close, .next-btn, .prev-btn {
  float: left; }

.close {
  width: 60px;
  height: 60px;
  cursor: pointer;
  position: relative;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }
  .close div {
    width: 60px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff; }
    .close div:nth-child(1) {
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    .close div:nth-child(2) {
      -webkit-transform: translate(-50%, -50%) rotate(90deg);
      transform: translate(-50%, -50%) rotate(90deg); }

.article-opened .project-view {
  -webkit-transform: translate(0);
  transform: translate(0); }
.article-opened .overlay {
  visibility: visible;
  opacity: 1; }

#article-contents {
  display: none;
  visibility: hidden; }

/*# sourceMappingURL=style-gallery.css.map */
