  .full-Screen { 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: hidden;
    transition: opacity .35s, visibility .35s, width .35s;
    z-index: 50;
  }
  .full-Screen:before {
    content: '';
    background: #011633;
    left: -55%;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: left .35s ease;
  }
  
  .full-Screen.open {
    visibility: visible;
    height: 100%;
    text-align: center;
  }
  .full-Screen.open:before {
    left: 0;
  }

  .full-Screen p{
    text-align: center !important;
    color: #fff;
    margin: 0 auto;
  }
  

  .full-Screen.open li {
    -webkit-animation: fadeInRight .5s ease forwards;
    animation: fadeInRight .5s ease forwards;
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
    margin: 20px;
  }

  .full-Screen.open li:nth-of-type(2) {
    -webkit-animation-delay: .45s;
            animation-delay: .45s;
  }
  .full-Screen.open li:nth-of-type(3) {
    -webkit-animation-delay: .55s;
            animation-delay: .55s;
  }
  .full-Screen.open li:nth-of-type(4) {
    -webkit-animation-delay: .65s;
            animation-delay: .65s;
  }
  .full-Screen.open li:nth-of-type(5) {
    -webkit-animation-delay: .65s;
            animation-delay: .65s;
  }

  .full-Screen.open li:nth-of-type(6) {
    -webkit-animation-delay: .65s;
            animation-delay: .65s;
  }

  .full-Screen.open li:nth-of-type(7) {
    -webkit-animation-delay: .65s;
            animation-delay: .65s;
  }

  .full-Screen ul{
    /* position: relative; */
    /* height: 70%; */
    /* top: 38%; */
    /* -webkit-transform: translateY(-50%); */
    /* transform: translateY(-50%); */
    /* gap: 50px; */
    font-size: 50px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    text-align: center;
    z-index: 100;
  }
  .full-Screen ul {
    list-style: none;
    padding: 0;
    margin: auto;
    display: inline-block;
    position: relative;
    /* height: 60vh; */
  }
  .full-Screen ul li {
    display: block;
    height: 20%;
    height: calc(100% / 7);
    min-height: 50px;
    position: relative;
    opacity: 0;
  }
  .full-Screen ul li a {
    display: block;
    position: relative;
    color: #FFF;
    text-decoration: none;
    overflow: hidden;
  }
@media screen and (max-width: 640px ){ .full-Screen ul li a{font-size: 1.5rem } }
  .full-Screen ul li a:hover:after, .full-Screen ul li a:focus:after, .full-Screen ul li a:active:after {
    width: 95%;
  }
  .full-Screen ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 2px;
    background: #FFF;
    transition: .35s;
  }
  
  @-webkit-keyframes fadeInRight {
    0% {
      opacity: 0;
      left: 20%;
    }
    100% {
      opacity: 1;
      left: 0;
    }
  }
  
  @keyframes fadeInRight {
    0% {
      opacity: 0;
      left: 20%;
    }
    100% {
      opacity: 1;
      left: 0;
    }
  }