@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900");


* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  overflow: hidden;
}

#notfound {
  position: relative;
  height: 100vh;
}
#notfound .notfound-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('../images/aminities/front24hrs.jpg');
  background-size: cover;
}

#notfound .notfound-bg:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1818183b;
}

#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: 910px;
  width: 100%;
  line-height: 1.4;
  text-align: center;
}

.notfound .notfound-404 {
  position: relative;
  height: 120px;
  margin-bottom: 20px;
}

.notfound .notfound-404 h1 {
  font-family: 'Poppins', sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 140px;
  font-weight: 600;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 10px;

}

.notfound h6 {
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  white-space: nowrap;
  margin: 0 auto;
  color: #fff;
  padding: 0 30px;
  text-shadow: 0px 0px 10px #000;
  animation: typing 3.5s steps(40, end) ;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}
.notfound .home-btn, .notfound .contact-btn {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  font-weight: 500;
  text-decoration: none;
  background-color: transparent;
  border: 2px solid #fff;
  text-transform: uppercase;
  padding: 13px 25px;
  font-size: 18px;
  border-radius: 40px;
  margin: 7px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.notfound .home-btn:hover{
  background-color: transparent;
}

.notfound .contact-btn:hover{
  color: #ffc30f;
}

.notfound .home-btn {
  color: #ffc30f;
  background: #fff;
}

.notfound .contact-btn {
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: rgba(255, 255, 255, 0.9);
}

.notfound-social {
  margin-top: 25px;
}

.notfound-social a  {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  width: 40px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0px 6px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.notfound-social>a:hover {
  color: #000000;
  background-color: #fff;
  border-radius: 50%;
}

.notfound-social a i{
  font-size: 16px;
}

@media only screen and (max-width: 767px) {
  .notfound .notfound-404 h1 {
    font-size: 120px;
  }
}

@media only screen and (max-width: 480px) {
  .notfound .notfound-404 {
    position: relative;
    height: 80px;
  }
  .notfound .notfound-404 h1 {
    font-size: 80px;
  }
  .notfound h6 {
    font-size: 16px;
  }
  .notfound .home-btn, .notfound .contact-btn {
    font-size: 14px;
  }
}
