* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

#notfound {
  position: relative;
  height: 100vh;
  background: #f6f6f6;
}

#notfound .notfound {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.notfound {
  max-width: 767px;
  width: 100%;
  line-height: 1.4;
  padding: 110px 40px;
  text-align: center;
  /*background: #fff;*/
  /*-webkit-box-shadow: 0 15px 15px -10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 15px -10px rgba(0, 0, 0, 0.1);*/
}

.notfound .notfound-404 {
  position: relative;
  height: 180px;
}

.notfound .notfound-404 h1 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 165px;
  font-weight: 700;
  margin: 0px;
  color: #707070;
  text-transform: uppercase;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.notfound .notfound-404 h1>span {
  color: #004098;
}

.notfound h2 {
  font-size: 22px;
  font-weight: 400;
  color: #151515;
  margin-top: 0px;
  margin-bottom: 25px;
}
.nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
.logo { width: 250px; margin: 5px auto;}
.navbar {
     display: block;
     padding: 10px 20px;
     background: rgba(0, 0, 0, 0);
     border: 1px rgba(0, 0, 0, .2) solid;
     color: #333;
     margin:5px;
     border-radius: 50px;
     font-weight: bold;
     font-size: 1.125rem;
     transition: .3s;
     text-decoration: none;

}
.navbar:hover {
      cursor: pointer;
      transition: .3s;
      background: #333;
      color: #fff;
}


.notfound .notfound-search {
  position: relative;
  max-width: 320px;
  width: 100%;
  margin: auto;
}

.notfound .notfound-search {
  width: 100%;
  color: #333333;
  font-size: 12px;
}

.pdlist {
  list-style: none;  
}
.pdlist li { display: inline; color: #cfcfcf;

}
.pdlist li a {
  text-decoration: none;
  padding: 5px;
  font-size: 12px;
  color: #262626;

}
.pdlist li a:hover {
  color: #c51043;;
}

@media only screen and (max-width: 767px) {
  .notfound h2 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 480px) {
  .notfound .notfound-404 h1 {
    font-size: 141px;
  }
}
