body, h1, h2, h4, p {
  font-family: 'Avenir Next Cyr'; }

.list-block {
  display: flex;
  flex-direction: column; }

.item-block {
  height: calc(100vh / 4 - 20px);
  position: relative;
  padding: 10px;
  background-size: cover; }
  .item-block .head-block h1 {
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    font-size: 28px; }
    .item-block .head-block h1 span {
      font-weight: normal; }
  .item-block .menu-block {
    position: fixed;
    bottom: 0;
    top: 0;
    width: 100vw;
    right: -100%;
    transition: right 0.8s;
    z-index: 50; }
    .item-block .menu-block ul {
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      list-style: none;
      height: 100%;
      justify-content: center; }
      .item-block .menu-block ul li {
        text-align: center;
        display: block; }
      .item-block .menu-block ul a {
        display: block;
        color: #ffffff;
        text-transform: uppercase;
        text-decoration: none;
        font-size: 20px;
        padding: 10px 0; }
  .item-block .menu-open {
    right: 0; }
  .item-block .logo-block {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    left: 0;
    right: 0;
    top: 20px;
    z-index: 60;
    transform: scale(0, 0);
    transition: all 0.6s; }
    .item-block .logo-block img {
      height: 60px;
      width: auto; }
    .item-block .logo-block p {
      padding: 0;
      margin: 0;
      color: #fff;
      text-transform: uppercase; }
  .item-block .logo-open {
    opacity: 1;
    visibility: visible;
    transform: scale(1, 1);
    transition: all 0.6s 0.4s; }
  .item-block .link-block {
    position: absolute;
    bottom: 10px; }
    .item-block .link-block a {
      color: #ffffff;
      text-decoration: none; }
      .item-block .link-block a span {
        font-weight: bold; }
  .item-block .link-open {
    position: fixed;
    text-align: center;
    left: 0;
    right: 0;
    bottom: inherit;
    top: 130px;
    z-index: 60;
    font-size: 20px;
    transform: scale(0, 0);
    animation: scaleLink 0.6s 0.8s;
    animation-fill-mode: forwards; }
  .item-block .ind-arrow {
    position: absolute;
    right: 15px;
    top: calc(50% - 20px); }
    .item-block .ind-arrow img {
      height: 40px;
      width: auto; }
  .item-block .ind-close {
    position: absolute;
    right: calc(50% - 20px);
    z-index: 60;
    bottom: 40px;
    transition: transform 0.8s; }
    .item-block .ind-close img {
      height: 40px;
      width: 40px; }
  .item-block .close-rotate {
    transform: rotate(180deg); }

.one-block {
  background: #146ac7 url("/images/bg_mob_1.png") right center no-repeat;
  background-size: contain; }
  .one-block .menu-block {
    background-color: #146ac7; }

.two-block {
  background: #f95738 url("/images/bg_mob_5.png") right center no-repeat;
  background-size: contain; }
  .two-block .menu-block {
    background-color: #f95738; }

.three-block {
  background: #5cc769 url("/images/bg_mob_2.png") right center no-repeat;
  background-size: contain; }
  .three-block .menu-block {
    background-color: #5cc769; }

.four-block {
  background: #f4a62d url("/images/bg_mob_4.png") right center no-repeat;
  background-size: contain; }
  .four-block .menu-block {
    background-color: #f4a62d; }

.five-block {
  background: #d4a373 url("/images/bg_mob_3.png") right center no-repeat;
  background-size: contain; }
  .five-block .menu-block {
    background-color: #d4a373; }
    
@keyframes scaleLink {
  from {
    transform: scale(0, 0); }
  to {
    transform: scale(1, 1); } }
