/*Scrollbar Edit*/
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #232323;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #ffae00;
  border-radius: 20px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #ae7700;
}
/*Scrollbar Edit*/

footer {
  background-color: rgb(0, 0, 0);
  padding: 50px 100px;
}
.footer-main-heading {
  color: #ffae00;
  font-size: 28px;
}

.footer-about {
  color: rgb(160, 160, 160);
}
.quick-navigate-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-navigate-footer li {
  list-style: none;
  text-align: center;
  color: rgb(160, 160, 160);
  font-size: 16px;
}
.quick-navigate-footer a:link,
.quick-navigate-footer a:visited,
.quick-navigate-footer a:hover {
  text-decoration: none;
  color: rgb(160, 160, 160) !important;
  font-size: 16px;
}
.social-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.social-container a {
  font-size: 18px;
  color: #fff;
  background-color: rgb(255 255 255 / 30%);
  padding: 5px 9px 3px 9px;
}

/*Footer Copyright*/

.footer-copyright {
  background-color: rgb(4, 4, 4);
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright-text {
  color: rgb(160, 160, 160);
  padding: 0;
  margin: 0;
}

@media only screen and (max-width: 600px) {
  footer {
    padding: 20px;
  }
}
