* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: "Signika Negative", sans-serif;
}

.header nav {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  display: flex;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
  box-shadow: 9px 9px 50px white;
  background-repeat: no-repeat;
  background-size: cover;
}

.header nav .logo_img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
}

.header nav .logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: tomato;
}

.header nav .nav_links {
  flex: 1;
  text-align: right;
}

.header nav .nav_links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}

.header nav .nav_links ul li ::after {
  content: "";
  width: 0;
  height: 2px;
  background: #f44336;
  display: block;
  margin: auto;
  transition: 0.7s;
}

.header nav .nav_links ul li :hover::after {
  width: 100%;
}

.header nav .nav_links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
}

.header nav #fa_1,
.header nav #fa_2 {
  display: none;
}

/*
.fot {
   background-color: black;
   color: white;
   height: 30vh;
   padding: 20px 20px;
   margin-top: 11vh;

   .Help {
      .a1 {
         font-size: 1.6rem;
      }
   }

   .div33 {
      text-align: center;
      margin: 3rem 0;

      .pp1 {
         margin: 15px;
         font-size: 1.4rem;
      }
   }
}
*/
@media (max-width: 770px) {
  .header nav .nav_links {
    position: absolute;
    background-color: #881f81df;
    backdrop-filter: blur(15px);
    border-radius: 0 0 16px 16px;
    width: 50%;
    top: 80px;
    right: -500px;
    text-align: center;
    z-index: 2;
    transition: 1s;
  }
  .header nav .nav_links ul {
    margin: 80px 0;
  }
  .header nav .nav_links ul li {
    display: block;
    margin: 20px 0;
  }
  .header nav #fa_1,
.header nav #fa_2 {
    display: block;
    font-size: 28px;
    margin: 10px;
    color: #ffffff;
  }
  .header nav #fa_1 {
    display: none;
  }
  /*
   .fot {
      background-color: black;
      color: white;
      height: 30vh;
      padding: 20px 20px;
      margin-top: 11vh;

      .Help {
         .a1 {
            font-size: 1.6rem;
         }
      }

      .div33 {
         text-align: center;
         margin: 3rem 0;

         .pp1 {
            margin: 15px;
            font-size: 1.4rem;
         }
      }
   }
*/
}

@media (max-width: 560px) {
  .header nav .nav_links {
    position: absolute;
    background-color: #881f81df;
    backdrop-filter: blur(15px);
    border-radius: 0 0 16px 16px;
    height: 60%;
    width: 50%;
    top: 72px;
    right: -500px;
    text-align: center;
    z-index: 2;
    transition: 1s;
  }
}
