@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700;900&display=swap');

:root {
  --red: #FF0000;
  --black: #000000;
  --white: #ffffff;
  --dark: rgba(6, 12, 34, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}

.collapse {
  flex-grow: 0 !important;
}

.navbar {
  background: var(--dark);
}

.navbar-image {
  width: 300px;
}

.fa-bars {
  color: var(--white);
}

.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
}

.nav-item {
  padding: 0 1rem;
}

.nav-link {
  color: var(--white) !important;
  font-weight: 900 !important;
}

.active ,.nav-item:hover .nav-link {
  color: var(--red) !important;
}

#footer {
  background-color: var(--red);
}

#footer .footer-top .social-links a {
  display: inline-block;
  text-decoration: none;
  background: var(--white);
  color: var(--black);
  line-height: 1;
  margin-right: 4px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#footer .footer-top .footer-links ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
#footer .footer-top .footer-links li {
  position: relative;
}
#footer .footer-top .footer-links ul li {
  white-space: nowrap;
  padding: 50px 0 10px 12px;
}
#footer .footer-top .footer-links ul a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  font-weight: bold;
  font-size: 18px;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  padding: 6px 32px;
  text-decoration: none;
}

#footer .footer-top .footer-links a:hover {
  color: var(--red);
}

.footer-top {
  background: var(--white);
  padding: 60px 0 30px 0;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
}

.copyright, .love {
  color: var(--white);
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--red);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
  text-decoration: none;
}

.fa-arrow-up {
  color: var(--white)
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


/* media query for mobile */
@media (max-width: 991px) {
  .navbar-image {
    width: 200px;
  }
  .dropdown-menu {
    background-color: var(--dark) !important;
    border: none !important;
  }

  .dropdown-item {
    color: var(--white) !important;
    font-weight: 900 !important;
  }

  .dropdown-item:focus, .dropdown-item:hover {
    color: var(--red) !important;
    background-color: var(--dark) !important;
  }

  #footer .footer-top .footer-links ul a {
    font-size: 15px;
  }

  .footer-logo {
    width: 200px;
  }
  .footer-copyright {
    display: block;
    text-align: center;
  }
}

.fa-beat:hover {
  animation:fa-beat 5s ease infinite;
}
@keyframes fa-beat {
  0% {
      transform:scale(1);
  }
  5% {
      transform:scale(1.25);
  }
  20% {
      transform:scale(1);
  }
  30% {
      transform:scale(1);
  }
  35% {
      transform:scale(1.25);
  }
  50% {
      transform:scale(1);
  }
  55% {
      transform:scale(1.25);
  }
  70% {
      transform:scale(1);
  }
}
